diff --git a/clients/asset_generation_client.go b/clients/asset_generation_client.go new file mode 100644 index 00000000..4e6efa37 --- /dev/null +++ b/clients/asset_generation_client.go @@ -0,0 +1,275 @@ +// Copyright 2025 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" + "log/slog" + "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 newAssetGenerationClientHook clientHook + +// AssetGenerationCallOptions contains the retry settings for each method of AssetGenerationClient. +type AssetGenerationCallOptions struct { + GenerateText []gax.CallOption + GenerateImages []gax.CallOption +} + +func defaultAssetGenerationGRPCClientOptions() []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(), + internaloption.EnableNewAuthLibrary(), + option.WithGRPCDialOption(grpc.WithDefaultCallOptions( + grpc.MaxCallRecvMsgSize(math.MaxInt32))), + } +} + +func defaultAssetGenerationCallOptions() *AssetGenerationCallOptions { + return &AssetGenerationCallOptions{ + GenerateText: []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, + }) + }), + }, + GenerateImages: []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, + }) + }), + }, + } +} + +// internalAssetGenerationClient is an interface that defines the methods available from Google Ads API. +type internalAssetGenerationClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + GenerateText(context.Context, *servicespb.GenerateTextRequest, ...gax.CallOption) (*servicespb.GenerateTextResponse, error) + GenerateImages(context.Context, *servicespb.GenerateImagesRequest, ...gax.CallOption) (*servicespb.GenerateImagesResponse, error) +} + +// AssetGenerationClient 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 for generating new assets with generative AI. +type AssetGenerationClient struct { + // The internal transport-dependent client. + internalClient internalAssetGenerationClient + + // The call options for this service. + CallOptions *AssetGenerationCallOptions +} + +// 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 *AssetGenerationClient) 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 *AssetGenerationClient) 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 *AssetGenerationClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// GenerateText uses generative AI to generate text that can be used as assets in a +// campaign. +// +// List of thrown errors: +// AuthenticationError (at ) +// AuthorizationError (at ) +// AssetGenerationError (at ) +// HeaderError (at ) +// InternalError (at ) +// QuotaError (at ) +// RequestError (at ) +func (c *AssetGenerationClient) GenerateText(ctx context.Context, req *servicespb.GenerateTextRequest, opts ...gax.CallOption) (*servicespb.GenerateTextResponse, error) { + return c.internalClient.GenerateText(ctx, req, opts...) +} + +// GenerateImages uses generative AI to generate images that can be used as assets in a +// campaign. +// +// List of thrown errors: +// AuthenticationError (at ) +// AuthorizationError (at ) +// AssetGenerationError (at ) +// HeaderError (at ) +// InternalError (at ) +// QuotaError (at ) +// RequestError (at ) +func (c *AssetGenerationClient) GenerateImages(ctx context.Context, req *servicespb.GenerateImagesRequest, opts ...gax.CallOption) (*servicespb.GenerateImagesResponse, error) { + return c.internalClient.GenerateImages(ctx, req, opts...) +} + +// assetGenerationGRPCClient 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 assetGenerationGRPCClient struct { + // Connection pool of gRPC connections to the service. + connPool gtransport.ConnPool + + // Points back to the CallOptions field of the containing AssetGenerationClient + CallOptions **AssetGenerationCallOptions + + // The gRPC API client. + assetGenerationClient servicespb.AssetGenerationServiceClient + + // The x-goog-* metadata to be sent with each request. + xGoogHeaders []string + + logger *slog.Logger +} + +// NewAssetGenerationClient creates a new asset generation service client based on gRPC. +// The returned client must be Closed when it is done being used to clean up its underlying connections. +// +// Service for generating new assets with generative AI. +func NewAssetGenerationClient(ctx context.Context, opts ...option.ClientOption) (*AssetGenerationClient, error) { + clientOpts := defaultAssetGenerationGRPCClientOptions() + if newAssetGenerationClientHook != nil { + hookOpts, err := newAssetGenerationClientHook(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 := AssetGenerationClient{CallOptions: defaultAssetGenerationCallOptions()} + + c := &assetGenerationGRPCClient{ + connPool: connPool, + assetGenerationClient: servicespb.NewAssetGenerationServiceClient(connPool), + CallOptions: &client.CallOptions, + logger: internaloption.GetLogger(opts), + } + 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 *assetGenerationGRPCClient) 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 *assetGenerationGRPCClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version, "pb", protoVersion) + 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 *assetGenerationGRPCClient) Close() error { + return c.connPool.Close() +} + +func (c *assetGenerationGRPCClient) GenerateText(ctx context.Context, req *servicespb.GenerateTextRequest, opts ...gax.CallOption) (*servicespb.GenerateTextResponse, 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).GenerateText[0:len((*c.CallOptions).GenerateText):len((*c.CallOptions).GenerateText)], opts...) + var resp *servicespb.GenerateTextResponse + err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + var err error + resp, err = executeRPC(ctx, c.assetGenerationClient.GenerateText, req, settings.GRPC, c.logger, "GenerateText") + return err + }, opts...) + if err != nil { + return nil, err + } + return resp, nil +} + +func (c *assetGenerationGRPCClient) GenerateImages(ctx context.Context, req *servicespb.GenerateImagesRequest, opts ...gax.CallOption) (*servicespb.GenerateImagesResponse, 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).GenerateImages[0:len((*c.CallOptions).GenerateImages):len((*c.CallOptions).GenerateImages)], opts...) + var resp *servicespb.GenerateImagesResponse + err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + var err error + resp, err = executeRPC(ctx, c.assetGenerationClient.GenerateImages, req, settings.GRPC, c.logger, "GenerateImages") + return err + }, opts...) + if err != nil { + return nil, err + } + return resp, nil +} diff --git a/clients/campaign_goal_config_client.go b/clients/campaign_goal_config_client.go new file mode 100644 index 00000000..d3dcc1e8 --- /dev/null +++ b/clients/campaign_goal_config_client.go @@ -0,0 +1,227 @@ +// Copyright 2025 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" + "log/slog" + "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 newCampaignGoalConfigClientHook clientHook + +// CampaignGoalConfigCallOptions contains the retry settings for each method of CampaignGoalConfigClient. +type CampaignGoalConfigCallOptions struct { + MutateCampaignGoalConfigs []gax.CallOption +} + +func defaultCampaignGoalConfigGRPCClientOptions() []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(), + internaloption.EnableNewAuthLibrary(), + option.WithGRPCDialOption(grpc.WithDefaultCallOptions( + grpc.MaxCallRecvMsgSize(math.MaxInt32))), + } +} + +func defaultCampaignGoalConfigCallOptions() *CampaignGoalConfigCallOptions { + return &CampaignGoalConfigCallOptions{ + MutateCampaignGoalConfigs: []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, + }) + }), + }, + } +} + +// internalCampaignGoalConfigClient is an interface that defines the methods available from Google Ads API. +type internalCampaignGoalConfigClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + MutateCampaignGoalConfigs(context.Context, *servicespb.MutateCampaignGoalConfigsRequest, ...gax.CallOption) (*servicespb.MutateCampaignGoalConfigsResponse, error) +} + +// CampaignGoalConfigClient 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 campaign goal configs. +type CampaignGoalConfigClient struct { + // The internal transport-dependent client. + internalClient internalCampaignGoalConfigClient + + // The call options for this service. + CallOptions *CampaignGoalConfigCallOptions +} + +// 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 *CampaignGoalConfigClient) 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 *CampaignGoalConfigClient) 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 *CampaignGoalConfigClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// MutateCampaignGoalConfigs create or update campaign goal configs. +// +// List of thrown errors: +// AuthenticationError (at ) +// AuthorizationError (at ) +// HeaderError (at ) +// InternalError (at ) +// QuotaError (at ) +// RequestError (at ) +// CampaignGoalConfigError (at ) +// GoalServicesError (at ) +func (c *CampaignGoalConfigClient) MutateCampaignGoalConfigs(ctx context.Context, req *servicespb.MutateCampaignGoalConfigsRequest, opts ...gax.CallOption) (*servicespb.MutateCampaignGoalConfigsResponse, error) { + return c.internalClient.MutateCampaignGoalConfigs(ctx, req, opts...) +} + +// campaignGoalConfigGRPCClient 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 campaignGoalConfigGRPCClient struct { + // Connection pool of gRPC connections to the service. + connPool gtransport.ConnPool + + // Points back to the CallOptions field of the containing CampaignGoalConfigClient + CallOptions **CampaignGoalConfigCallOptions + + // The gRPC API client. + campaignGoalConfigClient servicespb.CampaignGoalConfigServiceClient + + // The x-goog-* metadata to be sent with each request. + xGoogHeaders []string + + logger *slog.Logger +} + +// NewCampaignGoalConfigClient creates a new campaign goal config 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 campaign goal configs. +func NewCampaignGoalConfigClient(ctx context.Context, opts ...option.ClientOption) (*CampaignGoalConfigClient, error) { + clientOpts := defaultCampaignGoalConfigGRPCClientOptions() + if newCampaignGoalConfigClientHook != nil { + hookOpts, err := newCampaignGoalConfigClientHook(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 := CampaignGoalConfigClient{CallOptions: defaultCampaignGoalConfigCallOptions()} + + c := &campaignGoalConfigGRPCClient{ + connPool: connPool, + campaignGoalConfigClient: servicespb.NewCampaignGoalConfigServiceClient(connPool), + CallOptions: &client.CallOptions, + logger: internaloption.GetLogger(opts), + } + 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 *campaignGoalConfigGRPCClient) 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 *campaignGoalConfigGRPCClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version, "pb", protoVersion) + 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 *campaignGoalConfigGRPCClient) Close() error { + return c.connPool.Close() +} + +func (c *campaignGoalConfigGRPCClient) MutateCampaignGoalConfigs(ctx context.Context, req *servicespb.MutateCampaignGoalConfigsRequest, opts ...gax.CallOption) (*servicespb.MutateCampaignGoalConfigsResponse, 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).MutateCampaignGoalConfigs[0:len((*c.CallOptions).MutateCampaignGoalConfigs):len((*c.CallOptions).MutateCampaignGoalConfigs)], opts...) + var resp *servicespb.MutateCampaignGoalConfigsResponse + err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + var err error + resp, err = executeRPC(ctx, c.campaignGoalConfigClient.MutateCampaignGoalConfigs, req, settings.GRPC, c.logger, "MutateCampaignGoalConfigs") + return err + }, opts...) + if err != nil { + return nil, err + } + return resp, nil +} diff --git a/clients/doc.go b/clients/doc.go index 55cdfe29..0d8c1ba4 100644 --- a/clients/doc.go +++ b/clients/doc.go @@ -42,7 +42,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.NewAssetGroupSignalClient(ctx) +// c, err := clients.NewCustomerClientLinkClient(ctx) // if err != nil { // // TODO: Handle error. // } @@ -56,11 +56,11 @@ // // The following is an example of making an API call with the newly created client, mentioned above. // -// req := &servicespb.MutateAssetGroupSignalsRequest{ +// req := &servicespb.MutateCustomerClientLinkRequest{ // // TODO: Fill request struct fields. -// // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#MutateAssetGroupSignalsRequest. +// // See https://pkg.go.dev/github.com/shenzhencenter/google-ads-pb/services#MutateCustomerClientLinkRequest. // } -// resp, err := c.MutateAssetGroupSignals(ctx, req) +// resp, err := c.MutateCustomerClientLink(ctx, req) // if err != nil { // // TODO: Handle error. // } @@ -69,7 +69,7 @@ // // # Use of Context // -// The ctx passed to NewAssetGroupSignalClient is used for authentication requests and +// The ctx passed to NewCustomerClientLinkClient 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/goal_client.go b/clients/goal_client.go new file mode 100644 index 00000000..b197cc51 --- /dev/null +++ b/clients/goal_client.go @@ -0,0 +1,227 @@ +// Copyright 2025 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" + "log/slog" + "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 newGoalClientHook clientHook + +// GoalCallOptions contains the retry settings for each method of GoalClient. +type GoalCallOptions struct { + MutateGoals []gax.CallOption +} + +func defaultGoalGRPCClientOptions() []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(), + internaloption.EnableNewAuthLibrary(), + option.WithGRPCDialOption(grpc.WithDefaultCallOptions( + grpc.MaxCallRecvMsgSize(math.MaxInt32))), + } +} + +func defaultGoalCallOptions() *GoalCallOptions { + return &GoalCallOptions{ + MutateGoals: []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, + }) + }), + }, + } +} + +// internalGoalClient is an interface that defines the methods available from Google Ads API. +type internalGoalClient interface { + Close() error + setGoogleClientInfo(...string) + Connection() *grpc.ClientConn + MutateGoals(context.Context, *servicespb.MutateGoalsRequest, ...gax.CallOption) (*servicespb.MutateGoalsResponse, error) +} + +// GoalClient 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 goals. +type GoalClient struct { + // The internal transport-dependent client. + internalClient internalGoalClient + + // The call options for this service. + CallOptions *GoalCallOptions +} + +// 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 *GoalClient) 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 *GoalClient) 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 *GoalClient) Connection() *grpc.ClientConn { + return c.internalClient.Connection() +} + +// MutateGoals create or update goals. +// +// List of thrown errors: +// AuthenticationError (at ) +// AuthorizationError (at ) +// HeaderError (at ) +// InternalError (at ) +// QuotaError (at ) +// RequestError (at ) +// GoalError (at ) +// GoalServicesError (at ) +func (c *GoalClient) MutateGoals(ctx context.Context, req *servicespb.MutateGoalsRequest, opts ...gax.CallOption) (*servicespb.MutateGoalsResponse, error) { + return c.internalClient.MutateGoals(ctx, req, opts...) +} + +// goalGRPCClient 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 goalGRPCClient struct { + // Connection pool of gRPC connections to the service. + connPool gtransport.ConnPool + + // Points back to the CallOptions field of the containing GoalClient + CallOptions **GoalCallOptions + + // The gRPC API client. + goalClient servicespb.GoalServiceClient + + // The x-goog-* metadata to be sent with each request. + xGoogHeaders []string + + logger *slog.Logger +} + +// NewGoalClient creates a new goal 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 goals. +func NewGoalClient(ctx context.Context, opts ...option.ClientOption) (*GoalClient, error) { + clientOpts := defaultGoalGRPCClientOptions() + if newGoalClientHook != nil { + hookOpts, err := newGoalClientHook(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 := GoalClient{CallOptions: defaultGoalCallOptions()} + + c := &goalGRPCClient{ + connPool: connPool, + goalClient: servicespb.NewGoalServiceClient(connPool), + CallOptions: &client.CallOptions, + logger: internaloption.GetLogger(opts), + } + 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 *goalGRPCClient) 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 *goalGRPCClient) setGoogleClientInfo(keyval ...string) { + kv := append([]string{"gl-go", gax.GoVersion}, keyval...) + kv = append(kv, "gapic", getVersionClient(), "gax", gax.Version, "grpc", grpc.Version, "pb", protoVersion) + 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 *goalGRPCClient) Close() error { + return c.connPool.Close() +} + +func (c *goalGRPCClient) MutateGoals(ctx context.Context, req *servicespb.MutateGoalsRequest, opts ...gax.CallOption) (*servicespb.MutateGoalsResponse, 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).MutateGoals[0:len((*c.CallOptions).MutateGoals):len((*c.CallOptions).MutateGoals)], opts...) + var resp *servicespb.MutateGoalsResponse + err := gax.Invoke(ctx, func(ctx context.Context, settings gax.CallSettings) error { + var err error + resp, err = executeRPC(ctx, c.goalClient.MutateGoals, req, settings.GRPC, c.logger, "MutateGoals") + 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 7f1912bf..625ec701 100644 --- a/common/ad_asset.pb.go +++ b/common/ad_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/ad_asset.proto +// source: google/ads/googleads/v22/common/ad_asset.proto package common @@ -45,9 +45,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.v21.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.v22.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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -56,7 +56,7 @@ type AdTextAsset struct { func (x *AdTextAsset) Reset() { *x = AdTextAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *AdTextAsset) String() string { func (*AdTextAsset) ProtoMessage() {} func (x *AdTextAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *AdTextAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdTextAsset.ProtoReflect.Descriptor instead. func (*AdTextAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{0} } func (x *AdTextAsset) GetText() string { @@ -123,7 +123,7 @@ type AdImageAsset struct { func (x *AdImageAsset) Reset() { *x = AdImageAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *AdImageAsset) String() string { func (*AdImageAsset) ProtoMessage() {} func (x *AdImageAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *AdImageAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdImageAsset.ProtoReflect.Descriptor instead. func (*AdImageAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{1} } func (x *AdImageAsset) GetAsset() string { @@ -171,7 +171,7 @@ type AdVideoAsset struct { func (x *AdVideoAsset) Reset() { *x = AdVideoAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *AdVideoAsset) String() string { func (*AdVideoAsset) ProtoMessage() {} func (x *AdVideoAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,7 +196,7 @@ func (x *AdVideoAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdVideoAsset.ProtoReflect.Descriptor instead. func (*AdVideoAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{2} } func (x *AdVideoAsset) GetAsset() string { @@ -231,7 +231,7 @@ type AdVideoAssetInfo struct { func (x *AdVideoAssetInfo) Reset() { *x = AdVideoAssetInfo{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -243,7 +243,7 @@ func (x *AdVideoAssetInfo) String() string { func (*AdVideoAssetInfo) ProtoMessage() {} func (x *AdVideoAssetInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -256,7 +256,7 @@ func (x *AdVideoAssetInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AdVideoAssetInfo.ProtoReflect.Descriptor instead. func (*AdVideoAssetInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{3} } func (x *AdVideoAssetInfo) GetAdVideoAssetInventoryPreferences() *AdVideoAssetInventoryPreferences { @@ -284,7 +284,7 @@ type AdVideoAssetInventoryPreferences struct { func (x *AdVideoAssetInventoryPreferences) Reset() { *x = AdVideoAssetInventoryPreferences{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -296,7 +296,7 @@ func (x *AdVideoAssetInventoryPreferences) String() string { func (*AdVideoAssetInventoryPreferences) ProtoMessage() {} func (x *AdVideoAssetInventoryPreferences) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -309,7 +309,7 @@ func (x *AdVideoAssetInventoryPreferences) ProtoReflect() protoreflect.Message { // Deprecated: Use AdVideoAssetInventoryPreferences.ProtoReflect.Descriptor instead. func (*AdVideoAssetInventoryPreferences) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{4} } func (x *AdVideoAssetInventoryPreferences) GetInFeedPreference() bool { @@ -344,7 +344,7 @@ type AdMediaBundleAsset struct { func (x *AdMediaBundleAsset) Reset() { *x = AdMediaBundleAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -356,7 +356,7 @@ func (x *AdMediaBundleAsset) String() string { func (*AdMediaBundleAsset) ProtoMessage() {} func (x *AdMediaBundleAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -369,7 +369,7 @@ func (x *AdMediaBundleAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdMediaBundleAsset.ProtoReflect.Descriptor instead. func (*AdMediaBundleAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{5} } func (x *AdMediaBundleAsset) GetAsset() string { @@ -390,7 +390,7 @@ type AdDemandGenCarouselCardAsset struct { func (x *AdDemandGenCarouselCardAsset) Reset() { *x = AdDemandGenCarouselCardAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -402,7 +402,7 @@ func (x *AdDemandGenCarouselCardAsset) String() string { func (*AdDemandGenCarouselCardAsset) ProtoMessage() {} func (x *AdDemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -415,7 +415,7 @@ func (x *AdDemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdDemandGenCarouselCardAsset.ProtoReflect.Descriptor instead. func (*AdDemandGenCarouselCardAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{6} } func (x *AdDemandGenCarouselCardAsset) GetAsset() string { @@ -436,7 +436,7 @@ type AdCallToActionAsset struct { func (x *AdCallToActionAsset) Reset() { *x = AdCallToActionAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -448,7 +448,7 @@ func (x *AdCallToActionAsset) String() string { func (*AdCallToActionAsset) ProtoMessage() {} func (x *AdCallToActionAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -461,7 +461,7 @@ func (x *AdCallToActionAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdCallToActionAsset.ProtoReflect.Descriptor instead. func (*AdCallToActionAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{7} } func (x *AdCallToActionAsset) GetAsset() string { @@ -482,7 +482,7 @@ type AdAppDeepLinkAsset struct { func (x *AdAppDeepLinkAsset) Reset() { *x = AdAppDeepLinkAsset{} - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -494,7 +494,7 @@ func (x *AdAppDeepLinkAsset) String() string { func (*AdAppDeepLinkAsset) ProtoMessage() {} func (x *AdAppDeepLinkAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -507,7 +507,7 @@ func (x *AdAppDeepLinkAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdAppDeepLinkAsset.ProtoReflect.Descriptor instead. func (*AdAppDeepLinkAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP(), []int{8} } func (x *AdAppDeepLinkAsset) GetAsset() string { @@ -517,23 +517,23 @@ func (x *AdAppDeepLinkAsset) GetAsset() string { return "" } -var File_google_ads_googleads_v21_common_ad_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_ad_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_ad_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -541,7 +541,7 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -549,7 +549,7 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -557,7 +557,7 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -570,7 +570,7 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -581,7 +581,7 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -623,55 +623,55 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x41, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_ad_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_ad_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_common_ad_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_ad_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_ad_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_ad_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_ad_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc), len(file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_common_ad_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_ad_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_ad_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_ad_asset_proto_rawDesc), len(file_google_ads_googleads_v22_common_ad_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_ad_asset_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_common_ad_asset_proto_goTypes = []any{ - (*AdTextAsset)(nil), // 0: google.ads.googleads.v21.common.AdTextAsset - (*AdImageAsset)(nil), // 1: google.ads.googleads.v21.common.AdImageAsset - (*AdVideoAsset)(nil), // 2: google.ads.googleads.v21.common.AdVideoAsset - (*AdVideoAssetInfo)(nil), // 3: google.ads.googleads.v21.common.AdVideoAssetInfo - (*AdVideoAssetInventoryPreferences)(nil), // 4: google.ads.googleads.v21.common.AdVideoAssetInventoryPreferences - (*AdMediaBundleAsset)(nil), // 5: google.ads.googleads.v21.common.AdMediaBundleAsset - (*AdDemandGenCarouselCardAsset)(nil), // 6: google.ads.googleads.v21.common.AdDemandGenCarouselCardAsset - (*AdCallToActionAsset)(nil), // 7: google.ads.googleads.v21.common.AdCallToActionAsset - (*AdAppDeepLinkAsset)(nil), // 8: google.ads.googleads.v21.common.AdAppDeepLinkAsset - (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 9: google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 10: google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (*AdAssetPolicySummary)(nil), // 11: google.ads.googleads.v21.common.AdAssetPolicySummary -} -var file_google_ads_googleads_v21_common_ad_asset_proto_depIdxs = []int32{ - 9, // 0: google.ads.googleads.v21.common.AdTextAsset.pinned_field:type_name -> google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - 10, // 1: google.ads.googleads.v21.common.AdTextAsset.asset_performance_label:type_name -> google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - 11, // 2: google.ads.googleads.v21.common.AdTextAsset.policy_summary_info:type_name -> google.ads.googleads.v21.common.AdAssetPolicySummary - 3, // 3: google.ads.googleads.v21.common.AdVideoAsset.ad_video_asset_info:type_name -> google.ads.googleads.v21.common.AdVideoAssetInfo - 4, // 4: google.ads.googleads.v21.common.AdVideoAssetInfo.ad_video_asset_inventory_preferences:type_name -> google.ads.googleads.v21.common.AdVideoAssetInventoryPreferences + return file_google_ads_googleads_v22_common_ad_asset_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_common_ad_asset_proto_goTypes = []any{ + (*AdTextAsset)(nil), // 0: google.ads.googleads.v22.common.AdTextAsset + (*AdImageAsset)(nil), // 1: google.ads.googleads.v22.common.AdImageAsset + (*AdVideoAsset)(nil), // 2: google.ads.googleads.v22.common.AdVideoAsset + (*AdVideoAssetInfo)(nil), // 3: google.ads.googleads.v22.common.AdVideoAssetInfo + (*AdVideoAssetInventoryPreferences)(nil), // 4: google.ads.googleads.v22.common.AdVideoAssetInventoryPreferences + (*AdMediaBundleAsset)(nil), // 5: google.ads.googleads.v22.common.AdMediaBundleAsset + (*AdDemandGenCarouselCardAsset)(nil), // 6: google.ads.googleads.v22.common.AdDemandGenCarouselCardAsset + (*AdCallToActionAsset)(nil), // 7: google.ads.googleads.v22.common.AdCallToActionAsset + (*AdAppDeepLinkAsset)(nil), // 8: google.ads.googleads.v22.common.AdAppDeepLinkAsset + (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 9: google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 10: google.ads.googleads.v22.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + (*AdAssetPolicySummary)(nil), // 11: google.ads.googleads.v22.common.AdAssetPolicySummary +} +var file_google_ads_googleads_v22_common_ad_asset_proto_depIdxs = []int32{ + 9, // 0: google.ads.googleads.v22.common.AdTextAsset.pinned_field:type_name -> google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + 10, // 1: google.ads.googleads.v22.common.AdTextAsset.asset_performance_label:type_name -> google.ads.googleads.v22.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + 11, // 2: google.ads.googleads.v22.common.AdTextAsset.policy_summary_info:type_name -> google.ads.googleads.v22.common.AdAssetPolicySummary + 3, // 3: google.ads.googleads.v22.common.AdVideoAsset.ad_video_asset_info:type_name -> google.ads.googleads.v22.common.AdVideoAssetInfo + 4, // 4: google.ads.googleads.v22.common.AdVideoAssetInfo.ad_video_asset_inventory_preferences:type_name -> google.ads.googleads.v22.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 @@ -679,36 +679,36 @@ var file_google_ads_googleads_v21_common_ad_asset_proto_depIdxs = []int32{ 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_ad_asset_proto_init() } -func file_google_ads_googleads_v21_common_ad_asset_proto_init() { - if File_google_ads_googleads_v21_common_ad_asset_proto != nil { +func init() { file_google_ads_googleads_v22_common_ad_asset_proto_init() } +func file_google_ads_googleads_v22_common_ad_asset_proto_init() { + if File_google_ads_googleads_v22_common_ad_asset_proto != nil { return } - file_google_ads_googleads_v21_common_asset_policy_proto_init() - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_policy_proto_init() + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes[8].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc), len(file_google_ads_googleads_v21_common_ad_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_ad_asset_proto_rawDesc), len(file_google_ads_googleads_v22_common_ad_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_ad_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_ad_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_ad_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_ad_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_ad_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_ad_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_ad_asset_proto = out.File - file_google_ads_googleads_v21_common_ad_asset_proto_goTypes = nil - file_google_ads_googleads_v21_common_ad_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_common_ad_asset_proto = out.File + file_google_ads_googleads_v22_common_ad_asset_proto_goTypes = nil + file_google_ads_googleads_v22_common_ad_asset_proto_depIdxs = nil } diff --git a/common/ad_type_infos.pb.go b/common/ad_type_infos.pb.go index da863607..67e1cf0e 100644 --- a/common/ad_type_infos.pb.go +++ b/common/ad_type_infos.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/ad_type_infos.proto +// source: google/ads/googleads/v22/common/ad_type_infos.proto package common @@ -52,7 +52,7 @@ type TextAdInfo struct { func (x *TextAdInfo) Reset() { *x = TextAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *TextAdInfo) String() string { func (*TextAdInfo) ProtoMessage() {} func (x *TextAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *TextAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TextAdInfo.ProtoReflect.Descriptor instead. func (*TextAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{0} } func (x *TextAdInfo) GetHeadline() string { @@ -124,7 +124,7 @@ type ExpandedTextAdInfo struct { func (x *ExpandedTextAdInfo) Reset() { *x = ExpandedTextAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *ExpandedTextAdInfo) String() string { func (*ExpandedTextAdInfo) ProtoMessage() {} func (x *ExpandedTextAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,7 +149,7 @@ func (x *ExpandedTextAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpandedTextAdInfo.ProtoReflect.Descriptor instead. func (*ExpandedTextAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{1} } func (x *ExpandedTextAdInfo) GetHeadlinePart1() string { @@ -214,7 +214,7 @@ type ExpandedDynamicSearchAdInfo struct { func (x *ExpandedDynamicSearchAdInfo) Reset() { *x = ExpandedDynamicSearchAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -226,7 +226,7 @@ func (x *ExpandedDynamicSearchAdInfo) String() string { func (*ExpandedDynamicSearchAdInfo) ProtoMessage() {} func (x *ExpandedDynamicSearchAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -239,7 +239,7 @@ func (x *ExpandedDynamicSearchAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpandedDynamicSearchAdInfo.ProtoReflect.Descriptor instead. func (*ExpandedDynamicSearchAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{2} } func (x *ExpandedDynamicSearchAdInfo) GetDescription() string { @@ -265,7 +265,7 @@ type HotelAdInfo struct { func (x *HotelAdInfo) Reset() { *x = HotelAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -277,7 +277,7 @@ func (x *HotelAdInfo) String() string { func (*HotelAdInfo) ProtoMessage() {} func (x *HotelAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -290,7 +290,7 @@ func (x *HotelAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelAdInfo.ProtoReflect.Descriptor instead. func (*HotelAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{3} } // A travel ad. @@ -302,7 +302,7 @@ type TravelAdInfo struct { func (x *TravelAdInfo) Reset() { *x = TravelAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *TravelAdInfo) String() string { func (*TravelAdInfo) ProtoMessage() {} func (x *TravelAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *TravelAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TravelAdInfo.ProtoReflect.Descriptor instead. func (*TravelAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{4} } // A Smart Shopping ad. @@ -339,7 +339,7 @@ type ShoppingSmartAdInfo struct { func (x *ShoppingSmartAdInfo) Reset() { *x = ShoppingSmartAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -351,7 +351,7 @@ func (x *ShoppingSmartAdInfo) String() string { func (*ShoppingSmartAdInfo) ProtoMessage() {} func (x *ShoppingSmartAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -364,7 +364,7 @@ func (x *ShoppingSmartAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingSmartAdInfo.ProtoReflect.Descriptor instead. func (*ShoppingSmartAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{5} } // A standard Shopping ad. @@ -376,7 +376,7 @@ type ShoppingProductAdInfo struct { func (x *ShoppingProductAdInfo) Reset() { *x = ShoppingProductAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -388,7 +388,7 @@ func (x *ShoppingProductAdInfo) String() string { func (*ShoppingProductAdInfo) ProtoMessage() {} func (x *ShoppingProductAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -401,7 +401,7 @@ func (x *ShoppingProductAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingProductAdInfo.ProtoReflect.Descriptor instead. func (*ShoppingProductAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{6} } // A Shopping Comparison Listing ad. @@ -416,7 +416,7 @@ type ShoppingComparisonListingAdInfo struct { func (x *ShoppingComparisonListingAdInfo) Reset() { *x = ShoppingComparisonListingAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -428,7 +428,7 @@ func (x *ShoppingComparisonListingAdInfo) String() string { func (*ShoppingComparisonListingAdInfo) ProtoMessage() {} func (x *ShoppingComparisonListingAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -441,7 +441,7 @@ func (x *ShoppingComparisonListingAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingComparisonListingAdInfo.ProtoReflect.Descriptor instead. func (*ShoppingComparisonListingAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{7} } func (x *ShoppingComparisonListingAdInfo) GetHeadline() string { @@ -467,7 +467,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.v21.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.v22.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"` @@ -488,7 +488,7 @@ type ImageAdInfo struct { func (x *ImageAdInfo) Reset() { *x = ImageAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -500,7 +500,7 @@ func (x *ImageAdInfo) String() string { func (*ImageAdInfo) ProtoMessage() {} func (x *ImageAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -513,7 +513,7 @@ func (x *ImageAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageAdInfo.ProtoReflect.Descriptor instead. func (*ImageAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{8} } func (x *ImageAdInfo) GetPixelWidth() int64 { @@ -649,7 +649,7 @@ type VideoBumperInStreamAdInfo struct { func (x *VideoBumperInStreamAdInfo) Reset() { *x = VideoBumperInStreamAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -661,7 +661,7 @@ func (x *VideoBumperInStreamAdInfo) String() string { func (*VideoBumperInStreamAdInfo) ProtoMessage() {} func (x *VideoBumperInStreamAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -674,7 +674,7 @@ func (x *VideoBumperInStreamAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoBumperInStreamAdInfo.ProtoReflect.Descriptor instead. func (*VideoBumperInStreamAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{9} } func (x *VideoBumperInStreamAdInfo) GetCompanionBanner() *AdImageAsset { @@ -716,7 +716,7 @@ type VideoNonSkippableInStreamAdInfo struct { func (x *VideoNonSkippableInStreamAdInfo) Reset() { *x = VideoNonSkippableInStreamAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -728,7 +728,7 @@ func (x *VideoNonSkippableInStreamAdInfo) String() string { func (*VideoNonSkippableInStreamAdInfo) ProtoMessage() {} func (x *VideoNonSkippableInStreamAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -741,7 +741,7 @@ func (x *VideoNonSkippableInStreamAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoNonSkippableInStreamAdInfo.ProtoReflect.Descriptor instead. func (*VideoNonSkippableInStreamAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{10} } func (x *VideoNonSkippableInStreamAdInfo) GetCompanionBanner() *AdImageAsset { @@ -785,7 +785,7 @@ type VideoTrueViewInStreamAdInfo struct { func (x *VideoTrueViewInStreamAdInfo) Reset() { *x = VideoTrueViewInStreamAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -797,7 +797,7 @@ func (x *VideoTrueViewInStreamAdInfo) String() string { func (*VideoTrueViewInStreamAdInfo) ProtoMessage() {} func (x *VideoTrueViewInStreamAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -810,7 +810,7 @@ func (x *VideoTrueViewInStreamAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoTrueViewInStreamAdInfo.ProtoReflect.Descriptor instead. func (*VideoTrueViewInStreamAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{11} } func (x *VideoTrueViewInStreamAdInfo) GetActionButtonLabel() string { @@ -848,7 +848,7 @@ type VideoOutstreamAdInfo struct { func (x *VideoOutstreamAdInfo) Reset() { *x = VideoOutstreamAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -860,7 +860,7 @@ func (x *VideoOutstreamAdInfo) String() string { func (*VideoOutstreamAdInfo) ProtoMessage() {} func (x *VideoOutstreamAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -873,7 +873,7 @@ func (x *VideoOutstreamAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoOutstreamAdInfo.ProtoReflect.Descriptor instead. func (*VideoOutstreamAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{12} } func (x *VideoOutstreamAdInfo) GetHeadline() string { @@ -900,14 +900,14 @@ 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.v21.enums.VideoThumbnailEnum_VideoThumbnail" json:"thumbnail,omitempty"` + Thumbnail enums.VideoThumbnailEnum_VideoThumbnail `protobuf:"varint,4,opt,name=thumbnail,proto3,enum=google.ads.googleads.v22.enums.VideoThumbnailEnum_VideoThumbnail" json:"thumbnail,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *InFeedVideoAdInfo) Reset() { *x = InFeedVideoAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -919,7 +919,7 @@ func (x *InFeedVideoAdInfo) String() string { func (*InFeedVideoAdInfo) ProtoMessage() {} func (x *InFeedVideoAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -932,7 +932,7 @@ func (x *InFeedVideoAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InFeedVideoAdInfo.ProtoReflect.Descriptor instead. func (*InFeedVideoAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{13} } func (x *InFeedVideoAdInfo) GetHeadline() string { @@ -972,7 +972,7 @@ type YouTubeAudioAdInfo struct { func (x *YouTubeAudioAdInfo) Reset() { *x = YouTubeAudioAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -984,7 +984,7 @@ func (x *YouTubeAudioAdInfo) String() string { func (*YouTubeAudioAdInfo) ProtoMessage() {} func (x *YouTubeAudioAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -997,7 +997,7 @@ func (x *YouTubeAudioAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeAudioAdInfo.ProtoReflect.Descriptor instead. func (*YouTubeAudioAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{14} } // A video ad. @@ -1022,7 +1022,7 @@ type VideoAdInfo struct { func (x *VideoAdInfo) Reset() { *x = VideoAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1034,7 +1034,7 @@ func (x *VideoAdInfo) String() string { func (*VideoAdInfo) ProtoMessage() {} func (x *VideoAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1047,7 +1047,7 @@ func (x *VideoAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoAdInfo.ProtoReflect.Descriptor instead. func (*VideoAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{15} } func (x *VideoAdInfo) GetVideo() *AdVideoAsset { @@ -1195,7 +1195,7 @@ type VideoResponsiveAdInfo struct { func (x *VideoResponsiveAdInfo) Reset() { *x = VideoResponsiveAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1207,7 +1207,7 @@ func (x *VideoResponsiveAdInfo) String() string { func (*VideoResponsiveAdInfo) ProtoMessage() {} func (x *VideoResponsiveAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1220,7 +1220,7 @@ func (x *VideoResponsiveAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoResponsiveAdInfo.ProtoReflect.Descriptor instead. func (*VideoResponsiveAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{16} } func (x *VideoResponsiveAdInfo) GetHeadlines() []*AdTextAsset { @@ -1309,7 +1309,7 @@ type ResponsiveSearchAdInfo struct { func (x *ResponsiveSearchAdInfo) Reset() { *x = ResponsiveSearchAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1321,7 +1321,7 @@ func (x *ResponsiveSearchAdInfo) String() string { func (*ResponsiveSearchAdInfo) ProtoMessage() {} func (x *ResponsiveSearchAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1334,7 +1334,7 @@ func (x *ResponsiveSearchAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResponsiveSearchAdInfo.ProtoReflect.Descriptor instead. func (*ResponsiveSearchAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{17} } func (x *ResponsiveSearchAdInfo) GetHeadlines() []*AdTextAsset { @@ -1402,7 +1402,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.v21.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.v22.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 @@ -1414,7 +1414,7 @@ type LegacyResponsiveDisplayAdInfo struct { func (x *LegacyResponsiveDisplayAdInfo) Reset() { *x = LegacyResponsiveDisplayAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1426,7 +1426,7 @@ func (x *LegacyResponsiveDisplayAdInfo) String() string { func (*LegacyResponsiveDisplayAdInfo) ProtoMessage() {} func (x *LegacyResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1439,7 +1439,7 @@ func (x *LegacyResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LegacyResponsiveDisplayAdInfo.ProtoReflect.Descriptor instead. func (*LegacyResponsiveDisplayAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{18} } func (x *LegacyResponsiveDisplayAdInfo) GetShortHeadline() string { @@ -1572,7 +1572,7 @@ type AppAdInfo struct { func (x *AppAdInfo) Reset() { *x = AppAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1584,7 +1584,7 @@ func (x *AppAdInfo) String() string { func (*AppAdInfo) ProtoMessage() {} func (x *AppAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1597,7 +1597,7 @@ func (x *AppAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AppAdInfo.ProtoReflect.Descriptor instead. func (*AppAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{19} } func (x *AppAdInfo) GetMandatoryAdText() *AdTextAsset { @@ -1671,7 +1671,7 @@ type AppEngagementAdInfo struct { func (x *AppEngagementAdInfo) Reset() { *x = AppEngagementAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1683,7 +1683,7 @@ func (x *AppEngagementAdInfo) String() string { func (*AppEngagementAdInfo) ProtoMessage() {} func (x *AppEngagementAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1696,7 +1696,7 @@ func (x *AppEngagementAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AppEngagementAdInfo.ProtoReflect.Descriptor instead. func (*AppEngagementAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{20} } func (x *AppEngagementAdInfo) GetHeadlines() []*AdTextAsset { @@ -1750,7 +1750,7 @@ type AppPreRegistrationAdInfo struct { func (x *AppPreRegistrationAdInfo) Reset() { *x = AppPreRegistrationAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1762,7 +1762,7 @@ func (x *AppPreRegistrationAdInfo) String() string { func (*AppPreRegistrationAdInfo) ProtoMessage() {} func (x *AppPreRegistrationAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1775,7 +1775,7 @@ func (x *AppPreRegistrationAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AppPreRegistrationAdInfo.ProtoReflect.Descriptor instead. func (*AppPreRegistrationAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{21} } func (x *AppPreRegistrationAdInfo) GetHeadlines() []*AdTextAsset { @@ -1812,7 +1812,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.v21.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.v22.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. @@ -1825,7 +1825,7 @@ type LegacyAppInstallAdInfo struct { func (x *LegacyAppInstallAdInfo) Reset() { *x = LegacyAppInstallAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1837,7 +1837,7 @@ func (x *LegacyAppInstallAdInfo) String() string { func (*LegacyAppInstallAdInfo) ProtoMessage() {} func (x *LegacyAppInstallAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1850,7 +1850,7 @@ func (x *LegacyAppInstallAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LegacyAppInstallAdInfo.ProtoReflect.Descriptor instead. func (*LegacyAppInstallAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{22} } func (x *LegacyAppInstallAdInfo) GetAppId() string { @@ -1943,7 +1943,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -1952,7 +1952,7 @@ type ResponsiveDisplayAdInfo struct { func (x *ResponsiveDisplayAdInfo) Reset() { *x = ResponsiveDisplayAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1964,7 +1964,7 @@ func (x *ResponsiveDisplayAdInfo) String() string { func (*ResponsiveDisplayAdInfo) ProtoMessage() {} func (x *ResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1977,7 +1977,7 @@ func (x *ResponsiveDisplayAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ResponsiveDisplayAdInfo.ProtoReflect.Descriptor instead. func (*ResponsiveDisplayAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{23} } func (x *ResponsiveDisplayAdInfo) GetMarketingImages() []*AdImageAsset { @@ -2136,7 +2136,7 @@ type LocalAdInfo struct { func (x *LocalAdInfo) Reset() { *x = LocalAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2148,7 +2148,7 @@ func (x *LocalAdInfo) String() string { func (*LocalAdInfo) ProtoMessage() {} func (x *LocalAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2161,7 +2161,7 @@ func (x *LocalAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalAdInfo.ProtoReflect.Descriptor instead. func (*LocalAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{24} } func (x *LocalAdInfo) GetHeadlines() []*AdTextAsset { @@ -2226,7 +2226,7 @@ func (x *LocalAdInfo) GetPath2() string { type DisplayUploadAdInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.DisplayUploadProductTypeEnum_DisplayUploadProductType" json:"display_upload_product_type,omitempty"` // The asset data that makes up the ad. // // Types that are valid to be assigned to MediaAsset: @@ -2239,7 +2239,7 @@ type DisplayUploadAdInfo struct { func (x *DisplayUploadAdInfo) Reset() { *x = DisplayUploadAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2251,7 +2251,7 @@ func (x *DisplayUploadAdInfo) String() string { func (*DisplayUploadAdInfo) ProtoMessage() {} func (x *DisplayUploadAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2264,7 +2264,7 @@ func (x *DisplayUploadAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayUploadAdInfo.ProtoReflect.Descriptor instead. func (*DisplayUploadAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{25} } func (x *DisplayUploadAdInfo) GetDisplayUploadProductType() enums.DisplayUploadProductTypeEnum_DisplayUploadProductType { @@ -2320,7 +2320,7 @@ type ResponsiveDisplayAdControlSpec struct { func (x *ResponsiveDisplayAdControlSpec) Reset() { *x = ResponsiveDisplayAdControlSpec{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2332,7 +2332,7 @@ func (x *ResponsiveDisplayAdControlSpec) String() string { func (*ResponsiveDisplayAdControlSpec) ProtoMessage() {} func (x *ResponsiveDisplayAdControlSpec) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2345,7 +2345,7 @@ func (x *ResponsiveDisplayAdControlSpec) ProtoReflect() protoreflect.Message { // Deprecated: Use ResponsiveDisplayAdControlSpec.ProtoReflect.Descriptor instead. func (*ResponsiveDisplayAdControlSpec) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{26} } func (x *ResponsiveDisplayAdControlSpec) GetEnableAssetEnhancements() bool { @@ -2377,7 +2377,7 @@ type SmartCampaignAdInfo struct { func (x *SmartCampaignAdInfo) Reset() { *x = SmartCampaignAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2389,7 +2389,7 @@ func (x *SmartCampaignAdInfo) String() string { func (*SmartCampaignAdInfo) ProtoMessage() {} func (x *SmartCampaignAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2402,7 +2402,7 @@ func (x *SmartCampaignAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignAdInfo.ProtoReflect.Descriptor instead. func (*SmartCampaignAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{27} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{27} } func (x *SmartCampaignAdInfo) GetHeadlines() []*AdTextAsset { @@ -2452,7 +2452,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.v21.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.v22.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 @@ -2464,7 +2464,7 @@ type CallAdInfo struct { func (x *CallAdInfo) Reset() { *x = CallAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2476,7 +2476,7 @@ func (x *CallAdInfo) String() string { func (*CallAdInfo) ProtoMessage() {} func (x *CallAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2489,7 +2489,7 @@ func (x *CallAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CallAdInfo.ProtoReflect.Descriptor instead. func (*CallAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{28} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{28} } func (x *CallAdInfo) GetCountryCode() string { @@ -2640,7 +2640,7 @@ type DemandGenMultiAssetAdInfo struct { func (x *DemandGenMultiAssetAdInfo) Reset() { *x = DemandGenMultiAssetAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2652,7 +2652,7 @@ func (x *DemandGenMultiAssetAdInfo) String() string { func (*DemandGenMultiAssetAdInfo) ProtoMessage() {} func (x *DemandGenMultiAssetAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2665,7 +2665,7 @@ func (x *DemandGenMultiAssetAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenMultiAssetAdInfo.ProtoReflect.Descriptor instead. func (*DemandGenMultiAssetAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{29} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{29} } func (x *DemandGenMultiAssetAdInfo) GetMarketingImages() []*AdImageAsset { @@ -2760,7 +2760,7 @@ type DemandGenCarouselAdInfo struct { func (x *DemandGenCarouselAdInfo) Reset() { *x = DemandGenCarouselAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2772,7 +2772,7 @@ func (x *DemandGenCarouselAdInfo) String() string { func (*DemandGenCarouselAdInfo) ProtoMessage() {} func (x *DemandGenCarouselAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2785,7 +2785,7 @@ func (x *DemandGenCarouselAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenCarouselAdInfo.ProtoReflect.Descriptor instead. func (*DemandGenCarouselAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{30} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{30} } func (x *DemandGenCarouselAdInfo) GetBusinessName() string { @@ -2858,7 +2858,7 @@ type DemandGenVideoResponsiveAdInfo struct { func (x *DemandGenVideoResponsiveAdInfo) Reset() { *x = DemandGenVideoResponsiveAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2870,7 +2870,7 @@ func (x *DemandGenVideoResponsiveAdInfo) String() string { func (*DemandGenVideoResponsiveAdInfo) ProtoMessage() {} func (x *DemandGenVideoResponsiveAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2883,7 +2883,7 @@ func (x *DemandGenVideoResponsiveAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenVideoResponsiveAdInfo.ProtoReflect.Descriptor instead. func (*DemandGenVideoResponsiveAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{31} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{31} } func (x *DemandGenVideoResponsiveAdInfo) GetHeadlines() []*AdTextAsset { @@ -2974,7 +2974,7 @@ type DemandGenProductAdInfo struct { func (x *DemandGenProductAdInfo) Reset() { *x = DemandGenProductAdInfo{} - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2986,7 +2986,7 @@ func (x *DemandGenProductAdInfo) String() string { func (*DemandGenProductAdInfo) ProtoMessage() {} func (x *DemandGenProductAdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2999,7 +2999,7 @@ func (x *DemandGenProductAdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenProductAdInfo.ProtoReflect.Descriptor instead. func (*DemandGenProductAdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP(), []int{32} + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP(), []int{32} } func (x *DemandGenProductAdInfo) GetHeadline() *AdTextAsset { @@ -3051,39 +3051,39 @@ func (x *DemandGenProductAdInfo) GetCallToAction() *AdCallToActionAsset { return nil } -var File_google_ads_googleads_v21_common_ad_type_infos_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_ad_type_infos_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -3163,14 +3163,14 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3191,7 +3191,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, + 0x32, 0x32, 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, @@ -3204,7 +3204,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3223,7 +3223,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3241,7 +3241,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x14, 0x0a, 0x12, 0x59, @@ -3249,72 +3249,72 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 0x6f, 0x22, 0xec, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x4b, 0x0a, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x05, 0x61, 0x75, 0x64, 0x69, 0x6f, 0x42, 0x08, 0x0a, 0x06, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x22, 0xc7, 0x04, 0x0a, 0x15, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3326,12 +3326,12 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x00, 0x52, 0x05, 0x70, 0x61, 0x74, 0x68, 0x31, 0x88, 0x01, 0x01, 0x12, 0x19, @@ -3376,7 +3376,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 0x69, 0x6e, 0x67, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3407,80 +3407,80 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x57, 0x0a, 0x0d, 0x61, 0x70, 0x70, 0x5f, 0x64, 0x65, 0x65, 0x70, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x41, 0x70, 0x70, 0x44, 0x65, 0x65, 0x70, 0x4c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0b, 0x61, 0x70, 0x70, 0x44, 0x65, 0x65, 0x70, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x61, 0x6c, 0x6c, 0x41, @@ -3488,7 +3488,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 0x06, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x05, 0x61, 0x70, 0x70, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3509,45 +3509,45 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x56, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x28, 0x09, 0x48, 0x00, @@ -3571,14 +3571,14 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x69, 0x6e, 0x67, 0x52, 0x0d, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x53, 0x65, 0x74, 0x74, 0x69, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3594,32 +3594,32 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3631,7 +3631,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 0x1b, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3640,7 +3640,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x4d, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x22, 0x8e, 0x01, 0x0a, @@ -3657,12 +3657,12 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x79, 0x5f, 0x63, 0x6f, @@ -3696,7 +3696,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3710,43 +3710,43 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, + 0x76, 0x32, 0x32, 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, 0x72, 0x0a, 0x1e, 0x74, 0x61, 0x6c, 0x6c, 0x5f, 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, 0x0a, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x1b, 0x74, 0x61, 0x6c, 0x6c, 0x50, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x49, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, + 0x32, 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, @@ -3767,17 +3767,17 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3786,7 +3786,7 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3794,27 +3794,27 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, 0x41, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3824,30 +3824,30 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, 0x65, 0x78, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x54, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3857,13 +3857,13 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3872,166 +3872,166 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x64, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescData []byte + file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc), len(file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc))) +func file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDesc), len(file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 33) -var file_google_ads_googleads_v21_common_ad_type_infos_proto_goTypes = []any{ - (*TextAdInfo)(nil), // 0: google.ads.googleads.v21.common.TextAdInfo - (*ExpandedTextAdInfo)(nil), // 1: google.ads.googleads.v21.common.ExpandedTextAdInfo - (*ExpandedDynamicSearchAdInfo)(nil), // 2: google.ads.googleads.v21.common.ExpandedDynamicSearchAdInfo - (*HotelAdInfo)(nil), // 3: google.ads.googleads.v21.common.HotelAdInfo - (*TravelAdInfo)(nil), // 4: google.ads.googleads.v21.common.TravelAdInfo - (*ShoppingSmartAdInfo)(nil), // 5: google.ads.googleads.v21.common.ShoppingSmartAdInfo - (*ShoppingProductAdInfo)(nil), // 6: google.ads.googleads.v21.common.ShoppingProductAdInfo - (*ShoppingComparisonListingAdInfo)(nil), // 7: google.ads.googleads.v21.common.ShoppingComparisonListingAdInfo - (*ImageAdInfo)(nil), // 8: google.ads.googleads.v21.common.ImageAdInfo - (*VideoBumperInStreamAdInfo)(nil), // 9: google.ads.googleads.v21.common.VideoBumperInStreamAdInfo - (*VideoNonSkippableInStreamAdInfo)(nil), // 10: google.ads.googleads.v21.common.VideoNonSkippableInStreamAdInfo - (*VideoTrueViewInStreamAdInfo)(nil), // 11: google.ads.googleads.v21.common.VideoTrueViewInStreamAdInfo - (*VideoOutstreamAdInfo)(nil), // 12: google.ads.googleads.v21.common.VideoOutstreamAdInfo - (*InFeedVideoAdInfo)(nil), // 13: google.ads.googleads.v21.common.InFeedVideoAdInfo - (*YouTubeAudioAdInfo)(nil), // 14: google.ads.googleads.v21.common.YouTubeAudioAdInfo - (*VideoAdInfo)(nil), // 15: google.ads.googleads.v21.common.VideoAdInfo - (*VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v21.common.VideoResponsiveAdInfo - (*ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v21.common.ResponsiveSearchAdInfo - (*LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v21.common.LegacyResponsiveDisplayAdInfo - (*AppAdInfo)(nil), // 19: google.ads.googleads.v21.common.AppAdInfo - (*AppEngagementAdInfo)(nil), // 20: google.ads.googleads.v21.common.AppEngagementAdInfo - (*AppPreRegistrationAdInfo)(nil), // 21: google.ads.googleads.v21.common.AppPreRegistrationAdInfo - (*LegacyAppInstallAdInfo)(nil), // 22: google.ads.googleads.v21.common.LegacyAppInstallAdInfo - (*ResponsiveDisplayAdInfo)(nil), // 23: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo - (*LocalAdInfo)(nil), // 24: google.ads.googleads.v21.common.LocalAdInfo - (*DisplayUploadAdInfo)(nil), // 25: google.ads.googleads.v21.common.DisplayUploadAdInfo - (*ResponsiveDisplayAdControlSpec)(nil), // 26: google.ads.googleads.v21.common.ResponsiveDisplayAdControlSpec - (*SmartCampaignAdInfo)(nil), // 27: google.ads.googleads.v21.common.SmartCampaignAdInfo - (*CallAdInfo)(nil), // 28: google.ads.googleads.v21.common.CallAdInfo - (*DemandGenMultiAssetAdInfo)(nil), // 29: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo - (*DemandGenCarouselAdInfo)(nil), // 30: google.ads.googleads.v21.common.DemandGenCarouselAdInfo - (*DemandGenVideoResponsiveAdInfo)(nil), // 31: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo - (*DemandGenProductAdInfo)(nil), // 32: google.ads.googleads.v21.common.DemandGenProductAdInfo - (enums.MimeTypeEnum_MimeType)(0), // 33: google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - (*AdImageAsset)(nil), // 34: google.ads.googleads.v21.common.AdImageAsset - (enums.VideoThumbnailEnum_VideoThumbnail)(0), // 35: google.ads.googleads.v21.enums.VideoThumbnailEnum.VideoThumbnail - (*AdVideoAsset)(nil), // 36: google.ads.googleads.v21.common.AdVideoAsset - (*AdTextAsset)(nil), // 37: google.ads.googleads.v21.common.AdTextAsset - (enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 38: google.ads.googleads.v21.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting - (*AdMediaBundleAsset)(nil), // 39: google.ads.googleads.v21.common.AdMediaBundleAsset - (*AdAppDeepLinkAsset)(nil), // 40: google.ads.googleads.v21.common.AdAppDeepLinkAsset - (enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 41: google.ads.googleads.v21.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore - (enums.DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 42: google.ads.googleads.v21.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType - (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 43: google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - (*AdDemandGenCarouselCardAsset)(nil), // 44: google.ads.googleads.v21.common.AdDemandGenCarouselCardAsset - (*AdCallToActionAsset)(nil), // 45: google.ads.googleads.v21.common.AdCallToActionAsset -} -var file_google_ads_googleads_v21_common_ad_type_infos_proto_depIdxs = []int32{ - 33, // 0: google.ads.googleads.v21.common.ImageAdInfo.mime_type:type_name -> google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - 34, // 1: google.ads.googleads.v21.common.ImageAdInfo.image_asset:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 2: google.ads.googleads.v21.common.VideoBumperInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 3: google.ads.googleads.v21.common.VideoNonSkippableInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 4: google.ads.googleads.v21.common.VideoTrueViewInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v21.common.AdImageAsset - 35, // 5: google.ads.googleads.v21.common.InFeedVideoAdInfo.thumbnail:type_name -> google.ads.googleads.v21.enums.VideoThumbnailEnum.VideoThumbnail - 36, // 6: google.ads.googleads.v21.common.VideoAdInfo.video:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 11, // 7: google.ads.googleads.v21.common.VideoAdInfo.in_stream:type_name -> google.ads.googleads.v21.common.VideoTrueViewInStreamAdInfo - 9, // 8: google.ads.googleads.v21.common.VideoAdInfo.bumper:type_name -> google.ads.googleads.v21.common.VideoBumperInStreamAdInfo - 12, // 9: google.ads.googleads.v21.common.VideoAdInfo.out_stream:type_name -> google.ads.googleads.v21.common.VideoOutstreamAdInfo - 10, // 10: google.ads.googleads.v21.common.VideoAdInfo.non_skippable:type_name -> google.ads.googleads.v21.common.VideoNonSkippableInStreamAdInfo - 13, // 11: google.ads.googleads.v21.common.VideoAdInfo.in_feed:type_name -> google.ads.googleads.v21.common.InFeedVideoAdInfo - 14, // 12: google.ads.googleads.v21.common.VideoAdInfo.audio:type_name -> google.ads.googleads.v21.common.YouTubeAudioAdInfo - 37, // 13: google.ads.googleads.v21.common.VideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 14: google.ads.googleads.v21.common.VideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 15: google.ads.googleads.v21.common.VideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 16: google.ads.googleads.v21.common.VideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 36, // 17: google.ads.googleads.v21.common.VideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 34, // 18: google.ads.googleads.v21.common.VideoResponsiveAdInfo.companion_banners:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 19: google.ads.googleads.v21.common.ResponsiveSearchAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 20: google.ads.googleads.v21.common.ResponsiveSearchAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 38, // 21: google.ads.googleads.v21.common.LegacyResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v21.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting - 37, // 22: google.ads.googleads.v21.common.AppAdInfo.mandatory_ad_text:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 23: google.ads.googleads.v21.common.AppAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 24: google.ads.googleads.v21.common.AppAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 25: google.ads.googleads.v21.common.AppAdInfo.images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 36, // 26: google.ads.googleads.v21.common.AppAdInfo.youtube_videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 39, // 27: google.ads.googleads.v21.common.AppAdInfo.html5_media_bundles:type_name -> google.ads.googleads.v21.common.AdMediaBundleAsset - 40, // 28: google.ads.googleads.v21.common.AppAdInfo.app_deep_link:type_name -> google.ads.googleads.v21.common.AdAppDeepLinkAsset - 37, // 29: google.ads.googleads.v21.common.AppEngagementAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 30: google.ads.googleads.v21.common.AppEngagementAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 31: google.ads.googleads.v21.common.AppEngagementAdInfo.images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 36, // 32: google.ads.googleads.v21.common.AppEngagementAdInfo.videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 37, // 33: google.ads.googleads.v21.common.AppPreRegistrationAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 34: google.ads.googleads.v21.common.AppPreRegistrationAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 35: google.ads.googleads.v21.common.AppPreRegistrationAdInfo.images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 36, // 36: google.ads.googleads.v21.common.AppPreRegistrationAdInfo.youtube_videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 41, // 37: google.ads.googleads.v21.common.LegacyAppInstallAdInfo.app_store:type_name -> google.ads.googleads.v21.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore - 34, // 38: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 39: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.square_marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 40: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.logo_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 41: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.square_logo_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 42: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 43: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.long_headline:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 44: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 36, // 45: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.youtube_videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 38, // 46: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v21.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting - 26, // 47: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo.control_spec:type_name -> google.ads.googleads.v21.common.ResponsiveDisplayAdControlSpec - 37, // 48: google.ads.googleads.v21.common.LocalAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 49: google.ads.googleads.v21.common.LocalAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 50: google.ads.googleads.v21.common.LocalAdInfo.call_to_actions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 51: google.ads.googleads.v21.common.LocalAdInfo.marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 52: google.ads.googleads.v21.common.LocalAdInfo.logo_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 36, // 53: google.ads.googleads.v21.common.LocalAdInfo.videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 42, // 54: google.ads.googleads.v21.common.DisplayUploadAdInfo.display_upload_product_type:type_name -> google.ads.googleads.v21.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType - 39, // 55: google.ads.googleads.v21.common.DisplayUploadAdInfo.media_bundle:type_name -> google.ads.googleads.v21.common.AdMediaBundleAsset - 37, // 56: google.ads.googleads.v21.common.SmartCampaignAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 57: google.ads.googleads.v21.common.SmartCampaignAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 43, // 58: google.ads.googleads.v21.common.CallAdInfo.conversion_reporting_state:type_name -> google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - 34, // 59: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 60: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.square_marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 61: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.portrait_marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 62: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.tall_portrait_marketing_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 34, // 63: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.logo_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 64: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 65: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 66: google.ads.googleads.v21.common.DemandGenCarouselAdInfo.logo_image:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 67: google.ads.googleads.v21.common.DemandGenCarouselAdInfo.headline:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 68: google.ads.googleads.v21.common.DemandGenCarouselAdInfo.description:type_name -> google.ads.googleads.v21.common.AdTextAsset - 44, // 69: google.ads.googleads.v21.common.DemandGenCarouselAdInfo.carousel_cards:type_name -> google.ads.googleads.v21.common.AdDemandGenCarouselCardAsset - 37, // 70: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 71: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 72: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v21.common.AdTextAsset - 36, // 73: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset - 34, // 74: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.logo_images:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 75: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.business_name:type_name -> google.ads.googleads.v21.common.AdTextAsset - 45, // 76: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v21.common.AdCallToActionAsset - 37, // 77: google.ads.googleads.v21.common.DemandGenProductAdInfo.headline:type_name -> google.ads.googleads.v21.common.AdTextAsset - 37, // 78: google.ads.googleads.v21.common.DemandGenProductAdInfo.description:type_name -> google.ads.googleads.v21.common.AdTextAsset - 34, // 79: google.ads.googleads.v21.common.DemandGenProductAdInfo.logo_image:type_name -> google.ads.googleads.v21.common.AdImageAsset - 37, // 80: google.ads.googleads.v21.common.DemandGenProductAdInfo.business_name:type_name -> google.ads.googleads.v21.common.AdTextAsset - 45, // 81: google.ads.googleads.v21.common.DemandGenProductAdInfo.call_to_action:type_name -> google.ads.googleads.v21.common.AdCallToActionAsset + return file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes = make([]protoimpl.MessageInfo, 33) +var file_google_ads_googleads_v22_common_ad_type_infos_proto_goTypes = []any{ + (*TextAdInfo)(nil), // 0: google.ads.googleads.v22.common.TextAdInfo + (*ExpandedTextAdInfo)(nil), // 1: google.ads.googleads.v22.common.ExpandedTextAdInfo + (*ExpandedDynamicSearchAdInfo)(nil), // 2: google.ads.googleads.v22.common.ExpandedDynamicSearchAdInfo + (*HotelAdInfo)(nil), // 3: google.ads.googleads.v22.common.HotelAdInfo + (*TravelAdInfo)(nil), // 4: google.ads.googleads.v22.common.TravelAdInfo + (*ShoppingSmartAdInfo)(nil), // 5: google.ads.googleads.v22.common.ShoppingSmartAdInfo + (*ShoppingProductAdInfo)(nil), // 6: google.ads.googleads.v22.common.ShoppingProductAdInfo + (*ShoppingComparisonListingAdInfo)(nil), // 7: google.ads.googleads.v22.common.ShoppingComparisonListingAdInfo + (*ImageAdInfo)(nil), // 8: google.ads.googleads.v22.common.ImageAdInfo + (*VideoBumperInStreamAdInfo)(nil), // 9: google.ads.googleads.v22.common.VideoBumperInStreamAdInfo + (*VideoNonSkippableInStreamAdInfo)(nil), // 10: google.ads.googleads.v22.common.VideoNonSkippableInStreamAdInfo + (*VideoTrueViewInStreamAdInfo)(nil), // 11: google.ads.googleads.v22.common.VideoTrueViewInStreamAdInfo + (*VideoOutstreamAdInfo)(nil), // 12: google.ads.googleads.v22.common.VideoOutstreamAdInfo + (*InFeedVideoAdInfo)(nil), // 13: google.ads.googleads.v22.common.InFeedVideoAdInfo + (*YouTubeAudioAdInfo)(nil), // 14: google.ads.googleads.v22.common.YouTubeAudioAdInfo + (*VideoAdInfo)(nil), // 15: google.ads.googleads.v22.common.VideoAdInfo + (*VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v22.common.VideoResponsiveAdInfo + (*ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v22.common.ResponsiveSearchAdInfo + (*LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v22.common.LegacyResponsiveDisplayAdInfo + (*AppAdInfo)(nil), // 19: google.ads.googleads.v22.common.AppAdInfo + (*AppEngagementAdInfo)(nil), // 20: google.ads.googleads.v22.common.AppEngagementAdInfo + (*AppPreRegistrationAdInfo)(nil), // 21: google.ads.googleads.v22.common.AppPreRegistrationAdInfo + (*LegacyAppInstallAdInfo)(nil), // 22: google.ads.googleads.v22.common.LegacyAppInstallAdInfo + (*ResponsiveDisplayAdInfo)(nil), // 23: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo + (*LocalAdInfo)(nil), // 24: google.ads.googleads.v22.common.LocalAdInfo + (*DisplayUploadAdInfo)(nil), // 25: google.ads.googleads.v22.common.DisplayUploadAdInfo + (*ResponsiveDisplayAdControlSpec)(nil), // 26: google.ads.googleads.v22.common.ResponsiveDisplayAdControlSpec + (*SmartCampaignAdInfo)(nil), // 27: google.ads.googleads.v22.common.SmartCampaignAdInfo + (*CallAdInfo)(nil), // 28: google.ads.googleads.v22.common.CallAdInfo + (*DemandGenMultiAssetAdInfo)(nil), // 29: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo + (*DemandGenCarouselAdInfo)(nil), // 30: google.ads.googleads.v22.common.DemandGenCarouselAdInfo + (*DemandGenVideoResponsiveAdInfo)(nil), // 31: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo + (*DemandGenProductAdInfo)(nil), // 32: google.ads.googleads.v22.common.DemandGenProductAdInfo + (enums.MimeTypeEnum_MimeType)(0), // 33: google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + (*AdImageAsset)(nil), // 34: google.ads.googleads.v22.common.AdImageAsset + (enums.VideoThumbnailEnum_VideoThumbnail)(0), // 35: google.ads.googleads.v22.enums.VideoThumbnailEnum.VideoThumbnail + (*AdVideoAsset)(nil), // 36: google.ads.googleads.v22.common.AdVideoAsset + (*AdTextAsset)(nil), // 37: google.ads.googleads.v22.common.AdTextAsset + (enums.DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 38: google.ads.googleads.v22.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting + (*AdMediaBundleAsset)(nil), // 39: google.ads.googleads.v22.common.AdMediaBundleAsset + (*AdAppDeepLinkAsset)(nil), // 40: google.ads.googleads.v22.common.AdAppDeepLinkAsset + (enums.LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 41: google.ads.googleads.v22.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore + (enums.DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 42: google.ads.googleads.v22.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType + (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 43: google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + (*AdDemandGenCarouselCardAsset)(nil), // 44: google.ads.googleads.v22.common.AdDemandGenCarouselCardAsset + (*AdCallToActionAsset)(nil), // 45: google.ads.googleads.v22.common.AdCallToActionAsset +} +var file_google_ads_googleads_v22_common_ad_type_infos_proto_depIdxs = []int32{ + 33, // 0: google.ads.googleads.v22.common.ImageAdInfo.mime_type:type_name -> google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + 34, // 1: google.ads.googleads.v22.common.ImageAdInfo.image_asset:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 2: google.ads.googleads.v22.common.VideoBumperInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 3: google.ads.googleads.v22.common.VideoNonSkippableInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 4: google.ads.googleads.v22.common.VideoTrueViewInStreamAdInfo.companion_banner:type_name -> google.ads.googleads.v22.common.AdImageAsset + 35, // 5: google.ads.googleads.v22.common.InFeedVideoAdInfo.thumbnail:type_name -> google.ads.googleads.v22.enums.VideoThumbnailEnum.VideoThumbnail + 36, // 6: google.ads.googleads.v22.common.VideoAdInfo.video:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 11, // 7: google.ads.googleads.v22.common.VideoAdInfo.in_stream:type_name -> google.ads.googleads.v22.common.VideoTrueViewInStreamAdInfo + 9, // 8: google.ads.googleads.v22.common.VideoAdInfo.bumper:type_name -> google.ads.googleads.v22.common.VideoBumperInStreamAdInfo + 12, // 9: google.ads.googleads.v22.common.VideoAdInfo.out_stream:type_name -> google.ads.googleads.v22.common.VideoOutstreamAdInfo + 10, // 10: google.ads.googleads.v22.common.VideoAdInfo.non_skippable:type_name -> google.ads.googleads.v22.common.VideoNonSkippableInStreamAdInfo + 13, // 11: google.ads.googleads.v22.common.VideoAdInfo.in_feed:type_name -> google.ads.googleads.v22.common.InFeedVideoAdInfo + 14, // 12: google.ads.googleads.v22.common.VideoAdInfo.audio:type_name -> google.ads.googleads.v22.common.YouTubeAudioAdInfo + 37, // 13: google.ads.googleads.v22.common.VideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 14: google.ads.googleads.v22.common.VideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 15: google.ads.googleads.v22.common.VideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 16: google.ads.googleads.v22.common.VideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 36, // 17: google.ads.googleads.v22.common.VideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 34, // 18: google.ads.googleads.v22.common.VideoResponsiveAdInfo.companion_banners:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 19: google.ads.googleads.v22.common.ResponsiveSearchAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 20: google.ads.googleads.v22.common.ResponsiveSearchAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 38, // 21: google.ads.googleads.v22.common.LegacyResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v22.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting + 37, // 22: google.ads.googleads.v22.common.AppAdInfo.mandatory_ad_text:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 23: google.ads.googleads.v22.common.AppAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 24: google.ads.googleads.v22.common.AppAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 25: google.ads.googleads.v22.common.AppAdInfo.images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 36, // 26: google.ads.googleads.v22.common.AppAdInfo.youtube_videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 39, // 27: google.ads.googleads.v22.common.AppAdInfo.html5_media_bundles:type_name -> google.ads.googleads.v22.common.AdMediaBundleAsset + 40, // 28: google.ads.googleads.v22.common.AppAdInfo.app_deep_link:type_name -> google.ads.googleads.v22.common.AdAppDeepLinkAsset + 37, // 29: google.ads.googleads.v22.common.AppEngagementAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 30: google.ads.googleads.v22.common.AppEngagementAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 31: google.ads.googleads.v22.common.AppEngagementAdInfo.images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 36, // 32: google.ads.googleads.v22.common.AppEngagementAdInfo.videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 37, // 33: google.ads.googleads.v22.common.AppPreRegistrationAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 34: google.ads.googleads.v22.common.AppPreRegistrationAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 35: google.ads.googleads.v22.common.AppPreRegistrationAdInfo.images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 36, // 36: google.ads.googleads.v22.common.AppPreRegistrationAdInfo.youtube_videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 41, // 37: google.ads.googleads.v22.common.LegacyAppInstallAdInfo.app_store:type_name -> google.ads.googleads.v22.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore + 34, // 38: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 39: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.square_marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 40: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.logo_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 41: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.square_logo_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 42: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 43: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.long_headline:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 44: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 36, // 45: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.youtube_videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 38, // 46: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.format_setting:type_name -> google.ads.googleads.v22.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting + 26, // 47: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo.control_spec:type_name -> google.ads.googleads.v22.common.ResponsiveDisplayAdControlSpec + 37, // 48: google.ads.googleads.v22.common.LocalAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 49: google.ads.googleads.v22.common.LocalAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 50: google.ads.googleads.v22.common.LocalAdInfo.call_to_actions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 51: google.ads.googleads.v22.common.LocalAdInfo.marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 52: google.ads.googleads.v22.common.LocalAdInfo.logo_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 36, // 53: google.ads.googleads.v22.common.LocalAdInfo.videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 42, // 54: google.ads.googleads.v22.common.DisplayUploadAdInfo.display_upload_product_type:type_name -> google.ads.googleads.v22.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType + 39, // 55: google.ads.googleads.v22.common.DisplayUploadAdInfo.media_bundle:type_name -> google.ads.googleads.v22.common.AdMediaBundleAsset + 37, // 56: google.ads.googleads.v22.common.SmartCampaignAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 57: google.ads.googleads.v22.common.SmartCampaignAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 43, // 58: google.ads.googleads.v22.common.CallAdInfo.conversion_reporting_state:type_name -> google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + 34, // 59: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 60: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.square_marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 61: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.portrait_marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 62: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.tall_portrait_marketing_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 34, // 63: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.logo_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 64: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 65: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 66: google.ads.googleads.v22.common.DemandGenCarouselAdInfo.logo_image:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 67: google.ads.googleads.v22.common.DemandGenCarouselAdInfo.headline:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 68: google.ads.googleads.v22.common.DemandGenCarouselAdInfo.description:type_name -> google.ads.googleads.v22.common.AdTextAsset + 44, // 69: google.ads.googleads.v22.common.DemandGenCarouselAdInfo.carousel_cards:type_name -> google.ads.googleads.v22.common.AdDemandGenCarouselCardAsset + 37, // 70: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 71: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.long_headlines:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 72: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.descriptions:type_name -> google.ads.googleads.v22.common.AdTextAsset + 36, // 73: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset + 34, // 74: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.logo_images:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 75: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.business_name:type_name -> google.ads.googleads.v22.common.AdTextAsset + 45, // 76: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo.call_to_actions:type_name -> google.ads.googleads.v22.common.AdCallToActionAsset + 37, // 77: google.ads.googleads.v22.common.DemandGenProductAdInfo.headline:type_name -> google.ads.googleads.v22.common.AdTextAsset + 37, // 78: google.ads.googleads.v22.common.DemandGenProductAdInfo.description:type_name -> google.ads.googleads.v22.common.AdTextAsset + 34, // 79: google.ads.googleads.v22.common.DemandGenProductAdInfo.logo_image:type_name -> google.ads.googleads.v22.common.AdImageAsset + 37, // 80: google.ads.googleads.v22.common.DemandGenProductAdInfo.business_name:type_name -> google.ads.googleads.v22.common.AdTextAsset + 45, // 81: google.ads.googleads.v22.common.DemandGenProductAdInfo.call_to_action:type_name -> google.ads.googleads.v22.common.AdCallToActionAsset 82, // [82:82] is the sub-list for method output_type 82, // [82:82] is the sub-list for method input_type 82, // [82:82] is the sub-list for extension type_name @@ -4039,22 +4039,22 @@ var file_google_ads_googleads_v21_common_ad_type_infos_proto_depIdxs = []int32{ 0, // [0:82] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_ad_type_infos_proto_init() } -func file_google_ads_googleads_v21_common_ad_type_infos_proto_init() { - if File_google_ads_googleads_v21_common_ad_type_infos_proto != nil { +func init() { file_google_ads_googleads_v22_common_ad_type_infos_proto_init() } +func file_google_ads_googleads_v22_common_ad_type_infos_proto_init() { + if File_google_ads_googleads_v22_common_ad_type_infos_proto != nil { return } - file_google_ads_googleads_v21_common_ad_asset_proto_init() - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[8].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_ad_asset_proto_init() + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[8].OneofWrappers = []any{ (*ImageAdInfo_ImageAsset)(nil), (*ImageAdInfo_Data)(nil), (*ImageAdInfo_AdIdToCopyImageFrom)(nil), } - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[15].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[15].OneofWrappers = []any{ (*VideoAdInfo_InStream)(nil), (*VideoAdInfo_Bumper)(nil), (*VideoAdInfo_OutStream)(nil), @@ -4062,31 +4062,31 @@ func file_google_ads_googleads_v21_common_ad_type_infos_proto_init() { (*VideoAdInfo_InFeed)(nil), (*VideoAdInfo_Audio)(nil), } - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[17].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[18].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[22].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[23].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[24].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[25].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[18].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[22].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[23].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[24].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[25].OneofWrappers = []any{ (*DisplayUploadAdInfo_MediaBundle)(nil), } - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[29].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes[32].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[29].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes[32].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc), len(file_google_ads_googleads_v21_common_ad_type_infos_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDesc), len(file_google_ads_googleads_v22_common_ad_type_infos_proto_rawDesc)), NumEnums: 0, NumMessages: 33, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_ad_type_infos_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_ad_type_infos_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_ad_type_infos_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_ad_type_infos_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_ad_type_infos_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_ad_type_infos_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_ad_type_infos_proto = out.File - file_google_ads_googleads_v21_common_ad_type_infos_proto_goTypes = nil - file_google_ads_googleads_v21_common_ad_type_infos_proto_depIdxs = nil + File_google_ads_googleads_v22_common_ad_type_infos_proto = out.File + file_google_ads_googleads_v22_common_ad_type_infos_proto_goTypes = nil + file_google_ads_googleads_v22_common_ad_type_infos_proto_depIdxs = nil } diff --git a/common/additional_application_info.pb.go b/common/additional_application_info.pb.go index a4a5ea89..91d0ab63 100644 --- a/common/additional_application_info.pb.go +++ b/common/additional_application_info.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/additional_application_info.proto +// source: google/ads/googleads/v22/common/additional_application_info.proto package common @@ -46,14 +46,14 @@ type AdditionalApplicationInfo struct { // to request an application_id for each new application being integrated. ApplicationId string `protobuf:"bytes,1,opt,name=application_id,json=applicationId,proto3" json:"application_id,omitempty"` // The instance type of the application sending the request. - ApplicationInstance enums.ApplicationInstanceEnum_ApplicationInstance `protobuf:"varint,2,opt,name=application_instance,json=applicationInstance,proto3,enum=google.ads.googleads.v21.enums.ApplicationInstanceEnum_ApplicationInstance" json:"application_instance,omitempty"` + ApplicationInstance enums.ApplicationInstanceEnum_ApplicationInstance `protobuf:"varint,2,opt,name=application_instance,json=applicationInstance,proto3,enum=google.ads.googleads.v22.enums.ApplicationInstanceEnum_ApplicationInstance" json:"application_instance,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdditionalApplicationInfo) Reset() { *x = AdditionalApplicationInfo{} - mi := &file_google_ads_googleads_v21_common_additional_application_info_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_additional_application_info_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdditionalApplicationInfo) String() string { func (*AdditionalApplicationInfo) ProtoMessage() {} func (x *AdditionalApplicationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_additional_application_info_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_additional_application_info_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AdditionalApplicationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AdditionalApplicationInfo.ProtoReflect.Descriptor instead. func (*AdditionalApplicationInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescGZIP(), []int{0} } func (x *AdditionalApplicationInfo) GetApplicationId() string { @@ -95,17 +95,17 @@ func (x *AdditionalApplicationInfo) GetApplicationInstance() enums.ApplicationIn return enums.ApplicationInstanceEnum_ApplicationInstance(0) } -var File_google_ads_googleads_v21_common_additional_application_info_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_additional_application_info_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_additional_application_info_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_additional_application_info_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x39, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, - 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xc2, 0x01, 0x0a, 0x19, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, @@ -115,49 +115,49 @@ var file_google_ads_googleads_v21_common_additional_application_info_proto_rawDe 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x7e, 0x0a, 0x14, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x52, 0x13, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1e, 0x41, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescData []byte + file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_additional_application_info_proto_rawDesc), len(file_google_ads_googleads_v21_common_additional_application_info_proto_rawDesc))) +func file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_additional_application_info_proto_rawDesc), len(file_google_ads_googleads_v22_common_additional_application_info_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_additional_application_info_proto_rawDescData + return file_google_ads_googleads_v22_common_additional_application_info_proto_rawDescData } -var file_google_ads_googleads_v21_common_additional_application_info_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_additional_application_info_proto_goTypes = []any{ - (*AdditionalApplicationInfo)(nil), // 0: google.ads.googleads.v21.common.AdditionalApplicationInfo - (enums.ApplicationInstanceEnum_ApplicationInstance)(0), // 1: google.ads.googleads.v21.enums.ApplicationInstanceEnum.ApplicationInstance +var file_google_ads_googleads_v22_common_additional_application_info_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_additional_application_info_proto_goTypes = []any{ + (*AdditionalApplicationInfo)(nil), // 0: google.ads.googleads.v22.common.AdditionalApplicationInfo + (enums.ApplicationInstanceEnum_ApplicationInstance)(0), // 1: google.ads.googleads.v22.enums.ApplicationInstanceEnum.ApplicationInstance } -var file_google_ads_googleads_v21_common_additional_application_info_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.AdditionalApplicationInfo.application_instance:type_name -> google.ads.googleads.v21.enums.ApplicationInstanceEnum.ApplicationInstance +var file_google_ads_googleads_v22_common_additional_application_info_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.AdditionalApplicationInfo.application_instance:type_name -> google.ads.googleads.v22.enums.ApplicationInstanceEnum.ApplicationInstance 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 @@ -165,26 +165,26 @@ var file_google_ads_googleads_v21_common_additional_application_info_proto_depId 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_additional_application_info_proto_init() } -func file_google_ads_googleads_v21_common_additional_application_info_proto_init() { - if File_google_ads_googleads_v21_common_additional_application_info_proto != nil { +func init() { file_google_ads_googleads_v22_common_additional_application_info_proto_init() } +func file_google_ads_googleads_v22_common_additional_application_info_proto_init() { + if File_google_ads_googleads_v22_common_additional_application_info_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_additional_application_info_proto_rawDesc), len(file_google_ads_googleads_v21_common_additional_application_info_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_additional_application_info_proto_rawDesc), len(file_google_ads_googleads_v22_common_additional_application_info_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_additional_application_info_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_additional_application_info_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_additional_application_info_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_additional_application_info_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_additional_application_info_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_additional_application_info_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_additional_application_info_proto = out.File - file_google_ads_googleads_v21_common_additional_application_info_proto_goTypes = nil - file_google_ads_googleads_v21_common_additional_application_info_proto_depIdxs = nil + File_google_ads_googleads_v22_common_additional_application_info_proto = out.File + file_google_ads_googleads_v22_common_additional_application_info_proto_goTypes = nil + file_google_ads_googleads_v22_common_additional_application_info_proto_depIdxs = nil } diff --git a/common/asset_policy.pb.go b/common/asset_policy.pb.go index 112fd5c7..5f801661 100644 --- a/common/asset_policy.pb.go +++ b/common/asset_policy.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/asset_policy.proto +// source: google/ads/googleads/v22/common/asset_policy.proto package common @@ -42,17 +42,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdAssetPolicySummary) Reset() { *x = AdAssetPolicySummary{} - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *AdAssetPolicySummary) String() string { func (*AdAssetPolicySummary) ProtoMessage() {} func (x *AdAssetPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *AdAssetPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AdAssetPolicySummary.ProtoReflect.Descriptor instead. func (*AdAssetPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_policy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_asset_policy_proto_rawDescGZIP(), []int{0} } func (x *AdAssetPolicySummary) GetPolicyTopicEntries() []*PolicyTopicEntry { @@ -111,9 +111,9 @@ func (x *AdAssetPolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusEnu type AssetLinkPrimaryStatusDetails struct { state protoimpl.MessageState `protogen:"open.v1"` // Provides the reason of this PrimaryStatus. - Reason *enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,1,opt,name=reason,proto3,enum=google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason,oneof" json:"reason,omitempty"` + Reason *enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason `protobuf:"varint,1,opt,name=reason,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus,oneof" json:"status,omitempty"` + Status *enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus,oneof" json:"status,omitempty"` // Provides the details associated with the asset link primary status. // // Types that are valid to be assigned to Details: @@ -126,7 +126,7 @@ type AssetLinkPrimaryStatusDetails struct { func (x *AssetLinkPrimaryStatusDetails) Reset() { *x = AssetLinkPrimaryStatusDetails{} - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +138,7 @@ func (x *AssetLinkPrimaryStatusDetails) String() string { func (*AssetLinkPrimaryStatusDetails) ProtoMessage() {} func (x *AssetLinkPrimaryStatusDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,7 +151,7 @@ func (x *AssetLinkPrimaryStatusDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetLinkPrimaryStatusDetails.ProtoReflect.Descriptor instead. func (*AssetLinkPrimaryStatusDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_policy_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_asset_policy_proto_rawDescGZIP(), []int{1} } func (x *AssetLinkPrimaryStatusDetails) GetReason() enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason { @@ -199,14 +199,14 @@ func (*AssetLinkPrimaryStatusDetails_AssetDisapproved) isAssetLinkPrimaryStatusD type AssetDisapproved struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons" json:"offline_evaluation_error_reasons,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetDisapproved) Reset() { *x = AssetDisapproved{} - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -218,7 +218,7 @@ func (x *AssetDisapproved) String() string { func (*AssetDisapproved) ProtoMessage() {} func (x *AssetDisapproved) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -231,7 +231,7 @@ func (x *AssetDisapproved) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetDisapproved.ProtoReflect.Descriptor instead. func (*AssetDisapproved) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_policy_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_asset_policy_proto_rawDescGZIP(), []int{2} } func (x *AssetDisapproved) GetOfflineEvaluationErrorReasons() []enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons { @@ -241,36 +241,36 @@ func (x *AssetDisapproved) GetOfflineEvaluationErrorReasons() []enums.AssetOffli return nil } -var File_google_ads_googleads_v21_common_asset_policy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_asset_policy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_asset_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -278,12 +278,12 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, + 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -291,7 +291,7 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x41, 0x70, + 0x32, 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, @@ -300,14 +300,14 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -326,7 +326,7 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x66, 0x66, + 0x32, 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, @@ -335,54 +335,54 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc = string([]b 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_asset_policy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_asset_policy_proto_rawDescData []byte + file_google_ads_googleads_v22_common_asset_policy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_asset_policy_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_asset_policy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_asset_policy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_asset_policy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc))) +func file_google_ads_googleads_v22_common_asset_policy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_asset_policy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_asset_policy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_policy_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_policy_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_asset_policy_proto_rawDescData + return file_google_ads_googleads_v22_common_asset_policy_proto_rawDescData } -var file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_common_asset_policy_proto_goTypes = []any{ - (*AdAssetPolicySummary)(nil), // 0: google.ads.googleads.v21.common.AdAssetPolicySummary - (*AssetLinkPrimaryStatusDetails)(nil), // 1: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - (*AssetDisapproved)(nil), // 2: google.ads.googleads.v21.common.AssetDisapproved - (*PolicyTopicEntry)(nil), // 3: google.ads.googleads.v21.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 4: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 5: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 7: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 8: google.ads.googleads.v21.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons +var file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_common_asset_policy_proto_goTypes = []any{ + (*AdAssetPolicySummary)(nil), // 0: google.ads.googleads.v22.common.AdAssetPolicySummary + (*AssetLinkPrimaryStatusDetails)(nil), // 1: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + (*AssetDisapproved)(nil), // 2: google.ads.googleads.v22.common.AssetDisapproved + (*PolicyTopicEntry)(nil), // 3: google.ads.googleads.v22.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 4: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 5: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 7: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (enums.AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 8: google.ads.googleads.v22.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons } -var file_google_ads_googleads_v21_common_asset_policy_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.common.AdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 4, // 1: google.ads.googleads.v21.common.AdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 5, // 2: google.ads.googleads.v21.common.AdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - 6, // 3: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails.reason:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - 7, // 4: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails.status:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 2, // 5: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails.asset_disapproved:type_name -> google.ads.googleads.v21.common.AssetDisapproved - 8, // 6: google.ads.googleads.v21.common.AssetDisapproved.offline_evaluation_error_reasons:type_name -> google.ads.googleads.v21.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons +var file_google_ads_googleads_v22_common_asset_policy_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.common.AdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 4, // 1: google.ads.googleads.v22.common.AdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 5, // 2: google.ads.googleads.v22.common.AdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + 6, // 3: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails.reason:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + 7, // 4: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails.status:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 2, // 5: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails.asset_disapproved:type_name -> google.ads.googleads.v22.common.AssetDisapproved + 8, // 6: google.ads.googleads.v22.common.AssetDisapproved.offline_evaluation_error_reasons:type_name -> google.ads.googleads.v22.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 @@ -390,30 +390,30 @@ var file_google_ads_googleads_v21_common_asset_policy_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_asset_policy_proto_init() } -func file_google_ads_googleads_v21_common_asset_policy_proto_init() { - if File_google_ads_googleads_v21_common_asset_policy_proto != nil { +func init() { file_google_ads_googleads_v22_common_asset_policy_proto_init() } +func file_google_ads_googleads_v22_common_asset_policy_proto_init() { + if File_google_ads_googleads_v22_common_asset_policy_proto != nil { return } - file_google_ads_googleads_v21_common_policy_proto_init() - file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_policy_proto_init() + file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes[1].OneofWrappers = []any{ (*AssetLinkPrimaryStatusDetails_AssetDisapproved)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_policy_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_policy_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_policy_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_asset_policy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_asset_policy_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_asset_policy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_asset_policy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_asset_policy_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_asset_policy_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_asset_policy_proto = out.File - file_google_ads_googleads_v21_common_asset_policy_proto_goTypes = nil - file_google_ads_googleads_v21_common_asset_policy_proto_depIdxs = nil + File_google_ads_googleads_v22_common_asset_policy_proto = out.File + file_google_ads_googleads_v22_common_asset_policy_proto_goTypes = nil + file_google_ads_googleads_v22_common_asset_policy_proto_depIdxs = nil } diff --git a/common/asset_set_types.pb.go b/common/asset_set_types.pb.go index 73739182..bdb008c8 100644 --- a/common/asset_set_types.pb.go +++ b/common/asset_set_types.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/asset_set_types.proto +// source: google/ads/googleads/v22/common/asset_set_types.proto package common @@ -44,7 +44,7 @@ type LocationSet struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"` // Location data specific to each sync source. // // Types that are valid to be assigned to Source: @@ -59,7 +59,7 @@ type LocationSet struct { func (x *LocationSet) Reset() { *x = LocationSet{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *LocationSet) String() string { func (*LocationSet) ProtoMessage() {} func (x *LocationSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *LocationSet) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationSet.ProtoReflect.Descriptor instead. func (*LocationSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{0} } func (x *LocationSet) GetLocationOwnershipType() enums.LocationOwnershipTypeEnum_LocationOwnershipType { @@ -192,7 +192,7 @@ type BusinessProfileLocationSet struct { func (x *BusinessProfileLocationSet) Reset() { *x = BusinessProfileLocationSet{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -204,7 +204,7 @@ func (x *BusinessProfileLocationSet) String() string { func (*BusinessProfileLocationSet) ProtoMessage() {} func (x *BusinessProfileLocationSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -217,7 +217,7 @@ func (x *BusinessProfileLocationSet) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessProfileLocationSet.ProtoReflect.Descriptor instead. func (*BusinessProfileLocationSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{1} } func (x *BusinessProfileLocationSet) GetHttpAuthorizationToken() string { @@ -267,7 +267,7 @@ type ChainSet struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -276,7 +276,7 @@ type ChainSet struct { func (x *ChainSet) Reset() { *x = ChainSet{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -288,7 +288,7 @@ func (x *ChainSet) String() string { func (*ChainSet) ProtoMessage() {} func (x *ChainSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -301,7 +301,7 @@ func (x *ChainSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ChainSet.ProtoReflect.Descriptor instead. func (*ChainSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{2} } func (x *ChainSet) GetRelationshipType() enums.ChainRelationshipTypeEnum_ChainRelationshipType { @@ -336,7 +336,7 @@ type ChainFilter struct { func (x *ChainFilter) Reset() { *x = ChainFilter{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -348,7 +348,7 @@ func (x *ChainFilter) String() string { func (*ChainFilter) ProtoMessage() {} func (x *ChainFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -361,7 +361,7 @@ func (x *ChainFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use ChainFilter.ProtoReflect.Descriptor instead. func (*ChainFilter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{3} } func (x *ChainFilter) GetChainId() int64 { @@ -389,7 +389,7 @@ type MapsLocationSet struct { func (x *MapsLocationSet) Reset() { *x = MapsLocationSet{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -401,7 +401,7 @@ func (x *MapsLocationSet) String() string { func (*MapsLocationSet) ProtoMessage() {} func (x *MapsLocationSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -414,7 +414,7 @@ func (x *MapsLocationSet) ProtoReflect() protoreflect.Message { // Deprecated: Use MapsLocationSet.ProtoReflect.Descriptor instead. func (*MapsLocationSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{4} } func (x *MapsLocationSet) GetMapsLocations() []*MapsLocationInfo { @@ -435,7 +435,7 @@ type MapsLocationInfo struct { func (x *MapsLocationInfo) Reset() { *x = MapsLocationInfo{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -447,7 +447,7 @@ func (x *MapsLocationInfo) String() string { func (*MapsLocationInfo) ProtoMessage() {} func (x *MapsLocationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -460,7 +460,7 @@ func (x *MapsLocationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MapsLocationInfo.ProtoReflect.Descriptor instead. func (*MapsLocationInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{5} } func (x *MapsLocationInfo) GetPlaceId() string { @@ -483,7 +483,7 @@ type BusinessProfileLocationGroup struct { func (x *BusinessProfileLocationGroup) Reset() { *x = BusinessProfileLocationGroup{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -495,7 +495,7 @@ func (x *BusinessProfileLocationGroup) String() string { func (*BusinessProfileLocationGroup) ProtoMessage() {} func (x *BusinessProfileLocationGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -508,7 +508,7 @@ func (x *BusinessProfileLocationGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessProfileLocationGroup.ProtoReflect.Descriptor instead. func (*BusinessProfileLocationGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{6} } func (x *BusinessProfileLocationGroup) GetDynamicBusinessProfileLocationGroupFilter() *DynamicBusinessProfileLocationGroupFilter { @@ -536,7 +536,7 @@ type DynamicBusinessProfileLocationGroupFilter struct { func (x *DynamicBusinessProfileLocationGroupFilter) Reset() { *x = DynamicBusinessProfileLocationGroupFilter{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -548,7 +548,7 @@ func (x *DynamicBusinessProfileLocationGroupFilter) String() string { func (*DynamicBusinessProfileLocationGroupFilter) ProtoMessage() {} func (x *DynamicBusinessProfileLocationGroupFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -561,7 +561,7 @@ func (x *DynamicBusinessProfileLocationGroupFilter) ProtoReflect() protoreflect. // Deprecated: Use DynamicBusinessProfileLocationGroupFilter.ProtoReflect.Descriptor instead. func (*DynamicBusinessProfileLocationGroupFilter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{7} } func (x *DynamicBusinessProfileLocationGroupFilter) GetLabelFilters() []string { @@ -591,14 +591,14 @@ 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.v21.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.v22.enums.LocationStringFilterTypeEnum_LocationStringFilterType" json:"filter_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BusinessProfileBusinessNameFilter) Reset() { *x = BusinessProfileBusinessNameFilter{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -610,7 +610,7 @@ func (x *BusinessProfileBusinessNameFilter) String() string { func (*BusinessProfileBusinessNameFilter) ProtoMessage() {} func (x *BusinessProfileBusinessNameFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -623,7 +623,7 @@ func (x *BusinessProfileBusinessNameFilter) ProtoReflect() protoreflect.Message // Deprecated: Use BusinessProfileBusinessNameFilter.ProtoReflect.Descriptor instead. func (*BusinessProfileBusinessNameFilter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{8} } func (x *BusinessProfileBusinessNameFilter) GetBusinessName() string { @@ -655,7 +655,7 @@ type ChainLocationGroup struct { func (x *ChainLocationGroup) Reset() { *x = ChainLocationGroup{} - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -667,7 +667,7 @@ func (x *ChainLocationGroup) String() string { func (*ChainLocationGroup) ProtoMessage() {} func (x *ChainLocationGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -680,7 +680,7 @@ func (x *ChainLocationGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use ChainLocationGroup.ProtoReflect.Descriptor instead. func (*ChainLocationGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP(), []int{9} } func (x *ChainLocationGroup) GetDynamicChainLocationGroupFilters() []*ChainFilter { @@ -690,24 +690,24 @@ func (x *ChainLocationGroup) GetDynamicChainLocationGroupFilters() []*ChainFilte return nil } -var File_google_ads_googleads_v21_common_asset_set_types_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_asset_set_types_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_asset_set_types_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x69, 0x6e, 0x5f, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -717,7 +717,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -726,7 +726,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -734,12 +734,12 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -767,7 +767,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -775,7 +775,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -787,7 +787,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -800,7 +800,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -815,7 +815,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -831,7 +831,7 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -842,68 +842,68 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc = string( 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x69, 0x6e, 0x46, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescData []byte + file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc))) +func file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_set_types_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_set_types_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_asset_set_types_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_google_ads_googleads_v21_common_asset_set_types_proto_goTypes = []any{ - (*LocationSet)(nil), // 0: google.ads.googleads.v21.common.LocationSet - (*BusinessProfileLocationSet)(nil), // 1: google.ads.googleads.v21.common.BusinessProfileLocationSet - (*ChainSet)(nil), // 2: google.ads.googleads.v21.common.ChainSet - (*ChainFilter)(nil), // 3: google.ads.googleads.v21.common.ChainFilter - (*MapsLocationSet)(nil), // 4: google.ads.googleads.v21.common.MapsLocationSet - (*MapsLocationInfo)(nil), // 5: google.ads.googleads.v21.common.MapsLocationInfo - (*BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v21.common.BusinessProfileLocationGroup - (*DynamicBusinessProfileLocationGroupFilter)(nil), // 7: google.ads.googleads.v21.common.DynamicBusinessProfileLocationGroupFilter - (*BusinessProfileBusinessNameFilter)(nil), // 8: google.ads.googleads.v21.common.BusinessProfileBusinessNameFilter - (*ChainLocationGroup)(nil), // 9: google.ads.googleads.v21.common.ChainLocationGroup - (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 10: google.ads.googleads.v21.enums.LocationOwnershipTypeEnum.LocationOwnershipType - (enums.ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 11: google.ads.googleads.v21.enums.ChainRelationshipTypeEnum.ChainRelationshipType - (enums.LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 12: google.ads.googleads.v21.enums.LocationStringFilterTypeEnum.LocationStringFilterType -} -var file_google_ads_googleads_v21_common_asset_set_types_proto_depIdxs = []int32{ - 10, // 0: google.ads.googleads.v21.common.LocationSet.location_ownership_type:type_name -> google.ads.googleads.v21.enums.LocationOwnershipTypeEnum.LocationOwnershipType - 1, // 1: google.ads.googleads.v21.common.LocationSet.business_profile_location_set:type_name -> google.ads.googleads.v21.common.BusinessProfileLocationSet - 2, // 2: google.ads.googleads.v21.common.LocationSet.chain_location_set:type_name -> google.ads.googleads.v21.common.ChainSet - 4, // 3: google.ads.googleads.v21.common.LocationSet.maps_location_set:type_name -> google.ads.googleads.v21.common.MapsLocationSet - 11, // 4: google.ads.googleads.v21.common.ChainSet.relationship_type:type_name -> google.ads.googleads.v21.enums.ChainRelationshipTypeEnum.ChainRelationshipType - 3, // 5: google.ads.googleads.v21.common.ChainSet.chains:type_name -> google.ads.googleads.v21.common.ChainFilter - 5, // 6: google.ads.googleads.v21.common.MapsLocationSet.maps_locations:type_name -> google.ads.googleads.v21.common.MapsLocationInfo - 7, // 7: google.ads.googleads.v21.common.BusinessProfileLocationGroup.dynamic_business_profile_location_group_filter:type_name -> google.ads.googleads.v21.common.DynamicBusinessProfileLocationGroupFilter - 8, // 8: google.ads.googleads.v21.common.DynamicBusinessProfileLocationGroupFilter.business_name_filter:type_name -> google.ads.googleads.v21.common.BusinessProfileBusinessNameFilter - 12, // 9: google.ads.googleads.v21.common.BusinessProfileBusinessNameFilter.filter_type:type_name -> google.ads.googleads.v21.enums.LocationStringFilterTypeEnum.LocationStringFilterType - 3, // 10: google.ads.googleads.v21.common.ChainLocationGroup.dynamic_chain_location_group_filters:type_name -> google.ads.googleads.v21.common.ChainFilter + return file_google_ads_googleads_v22_common_asset_set_types_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes = make([]protoimpl.MessageInfo, 10) +var file_google_ads_googleads_v22_common_asset_set_types_proto_goTypes = []any{ + (*LocationSet)(nil), // 0: google.ads.googleads.v22.common.LocationSet + (*BusinessProfileLocationSet)(nil), // 1: google.ads.googleads.v22.common.BusinessProfileLocationSet + (*ChainSet)(nil), // 2: google.ads.googleads.v22.common.ChainSet + (*ChainFilter)(nil), // 3: google.ads.googleads.v22.common.ChainFilter + (*MapsLocationSet)(nil), // 4: google.ads.googleads.v22.common.MapsLocationSet + (*MapsLocationInfo)(nil), // 5: google.ads.googleads.v22.common.MapsLocationInfo + (*BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v22.common.BusinessProfileLocationGroup + (*DynamicBusinessProfileLocationGroupFilter)(nil), // 7: google.ads.googleads.v22.common.DynamicBusinessProfileLocationGroupFilter + (*BusinessProfileBusinessNameFilter)(nil), // 8: google.ads.googleads.v22.common.BusinessProfileBusinessNameFilter + (*ChainLocationGroup)(nil), // 9: google.ads.googleads.v22.common.ChainLocationGroup + (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 10: google.ads.googleads.v22.enums.LocationOwnershipTypeEnum.LocationOwnershipType + (enums.ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 11: google.ads.googleads.v22.enums.ChainRelationshipTypeEnum.ChainRelationshipType + (enums.LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 12: google.ads.googleads.v22.enums.LocationStringFilterTypeEnum.LocationStringFilterType +} +var file_google_ads_googleads_v22_common_asset_set_types_proto_depIdxs = []int32{ + 10, // 0: google.ads.googleads.v22.common.LocationSet.location_ownership_type:type_name -> google.ads.googleads.v22.enums.LocationOwnershipTypeEnum.LocationOwnershipType + 1, // 1: google.ads.googleads.v22.common.LocationSet.business_profile_location_set:type_name -> google.ads.googleads.v22.common.BusinessProfileLocationSet + 2, // 2: google.ads.googleads.v22.common.LocationSet.chain_location_set:type_name -> google.ads.googleads.v22.common.ChainSet + 4, // 3: google.ads.googleads.v22.common.LocationSet.maps_location_set:type_name -> google.ads.googleads.v22.common.MapsLocationSet + 11, // 4: google.ads.googleads.v22.common.ChainSet.relationship_type:type_name -> google.ads.googleads.v22.enums.ChainRelationshipTypeEnum.ChainRelationshipType + 3, // 5: google.ads.googleads.v22.common.ChainSet.chains:type_name -> google.ads.googleads.v22.common.ChainFilter + 5, // 6: google.ads.googleads.v22.common.MapsLocationSet.maps_locations:type_name -> google.ads.googleads.v22.common.MapsLocationInfo + 7, // 7: google.ads.googleads.v22.common.BusinessProfileLocationGroup.dynamic_business_profile_location_group_filter:type_name -> google.ads.googleads.v22.common.DynamicBusinessProfileLocationGroupFilter + 8, // 8: google.ads.googleads.v22.common.DynamicBusinessProfileLocationGroupFilter.business_name_filter:type_name -> google.ads.googleads.v22.common.BusinessProfileBusinessNameFilter + 12, // 9: google.ads.googleads.v22.common.BusinessProfileBusinessNameFilter.filter_type:type_name -> google.ads.googleads.v22.enums.LocationStringFilterTypeEnum.LocationStringFilterType + 3, // 10: google.ads.googleads.v22.common.ChainLocationGroup.dynamic_chain_location_group_filters:type_name -> google.ads.googleads.v22.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 @@ -911,32 +911,32 @@ var file_google_ads_googleads_v21_common_asset_set_types_proto_depIdxs = []int32 0, // [0:11] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_asset_set_types_proto_init() } -func file_google_ads_googleads_v21_common_asset_set_types_proto_init() { - if File_google_ads_googleads_v21_common_asset_set_types_proto != nil { +func init() { file_google_ads_googleads_v22_common_asset_set_types_proto_init() } +func file_google_ads_googleads_v22_common_asset_set_types_proto_init() { + if File_google_ads_googleads_v22_common_asset_set_types_proto != nil { return } - file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[0].OneofWrappers = []any{ (*LocationSet_BusinessProfileLocationSet)(nil), (*LocationSet_ChainLocationSet)(nil), (*LocationSet_MapsLocationSet)(nil), } - file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes[7].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_set_types_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_set_types_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_set_types_proto_rawDesc)), NumEnums: 0, NumMessages: 10, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_asset_set_types_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_asset_set_types_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_asset_set_types_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_asset_set_types_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_asset_set_types_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_asset_set_types_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_asset_set_types_proto = out.File - file_google_ads_googleads_v21_common_asset_set_types_proto_goTypes = nil - file_google_ads_googleads_v21_common_asset_set_types_proto_depIdxs = nil + File_google_ads_googleads_v22_common_asset_set_types_proto = out.File + file_google_ads_googleads_v22_common_asset_set_types_proto_goTypes = nil + file_google_ads_googleads_v22_common_asset_set_types_proto_depIdxs = nil } diff --git a/common/asset_types.pb.go b/common/asset_types.pb.go index 239a49aa..5d80e48b 100644 --- a/common/asset_types.pb.go +++ b/common/asset_types.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/asset_types.proto +// source: google/ads/googleads/v22/common/asset_types.proto package common @@ -51,7 +51,7 @@ type YoutubeVideoAsset struct { func (x *YoutubeVideoAsset) Reset() { *x = YoutubeVideoAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *YoutubeVideoAsset) String() string { func (*YoutubeVideoAsset) ProtoMessage() {} func (x *YoutubeVideoAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *YoutubeVideoAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use YoutubeVideoAsset.ProtoReflect.Descriptor instead. func (*YoutubeVideoAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{0} } func (x *YoutubeVideoAsset) GetYoutubeVideoId() string { @@ -107,7 +107,7 @@ type MediaBundleAsset struct { func (x *MediaBundleAsset) Reset() { *x = MediaBundleAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *MediaBundleAsset) String() string { func (*MediaBundleAsset) ProtoMessage() {} func (x *MediaBundleAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,7 +132,7 @@ func (x *MediaBundleAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaBundleAsset.ProtoReflect.Descriptor instead. func (*MediaBundleAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{1} } func (x *MediaBundleAsset) GetData() []byte { @@ -150,7 +150,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -159,7 +159,7 @@ type ImageAsset struct { func (x *ImageAsset) Reset() { *x = ImageAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171,7 +171,7 @@ func (x *ImageAsset) String() string { func (*ImageAsset) ProtoMessage() {} func (x *ImageAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184,7 +184,7 @@ func (x *ImageAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageAsset.ProtoReflect.Descriptor instead. func (*ImageAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{2} } func (x *ImageAsset) GetData() []byte { @@ -230,7 +230,7 @@ type ImageDimension struct { func (x *ImageDimension) Reset() { *x = ImageDimension{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *ImageDimension) String() string { func (*ImageDimension) ProtoMessage() {} func (x *ImageDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *ImageDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageDimension.ProtoReflect.Descriptor instead. func (*ImageDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{3} } func (x *ImageDimension) GetHeightPixels() int64 { @@ -290,7 +290,7 @@ type TextAsset struct { func (x *TextAsset) Reset() { *x = TextAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -302,7 +302,7 @@ func (x *TextAsset) String() string { func (*TextAsset) ProtoMessage() {} func (x *TextAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -315,7 +315,7 @@ func (x *TextAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use TextAsset.ProtoReflect.Descriptor instead. func (*TextAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{4} } func (x *TextAsset) GetText() string { @@ -331,7 +331,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.v21.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.v22.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"` @@ -361,13 +361,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.v21.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.v22.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.v21.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.v22.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"` @@ -377,7 +377,7 @@ type LeadFormAsset struct { func (x *LeadFormAsset) Reset() { *x = LeadFormAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -389,7 +389,7 @@ func (x *LeadFormAsset) String() string { func (*LeadFormAsset) ProtoMessage() {} func (x *LeadFormAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -402,7 +402,7 @@ func (x *LeadFormAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormAsset.ProtoReflect.Descriptor instead. func (*LeadFormAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{5} } func (x *LeadFormAsset) GetBusinessName() string { @@ -515,7 +515,7 @@ type LeadFormField struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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. // @@ -530,7 +530,7 @@ type LeadFormField struct { func (x *LeadFormField) Reset() { *x = LeadFormField{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -542,7 +542,7 @@ func (x *LeadFormField) String() string { func (*LeadFormField) ProtoMessage() {} func (x *LeadFormField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -555,7 +555,7 @@ func (x *LeadFormField) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormField.ProtoReflect.Descriptor instead. func (*LeadFormField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{6} } func (x *LeadFormField) GetInputType() enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType { @@ -635,7 +635,7 @@ type LeadFormCustomQuestionField struct { func (x *LeadFormCustomQuestionField) Reset() { *x = LeadFormCustomQuestionField{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -647,7 +647,7 @@ func (x *LeadFormCustomQuestionField) String() string { func (*LeadFormCustomQuestionField) ProtoMessage() {} func (x *LeadFormCustomQuestionField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -660,7 +660,7 @@ func (x *LeadFormCustomQuestionField) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormCustomQuestionField.ProtoReflect.Descriptor instead. func (*LeadFormCustomQuestionField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{7} } func (x *LeadFormCustomQuestionField) GetCustomQuestionText() string { @@ -732,7 +732,7 @@ type LeadFormSingleChoiceAnswers struct { func (x *LeadFormSingleChoiceAnswers) Reset() { *x = LeadFormSingleChoiceAnswers{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -744,7 +744,7 @@ func (x *LeadFormSingleChoiceAnswers) String() string { func (*LeadFormSingleChoiceAnswers) ProtoMessage() {} func (x *LeadFormSingleChoiceAnswers) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -757,7 +757,7 @@ func (x *LeadFormSingleChoiceAnswers) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormSingleChoiceAnswers.ProtoReflect.Descriptor instead. func (*LeadFormSingleChoiceAnswers) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{8} } func (x *LeadFormSingleChoiceAnswers) GetAnswers() []string { @@ -782,7 +782,7 @@ type LeadFormDeliveryMethod struct { func (x *LeadFormDeliveryMethod) Reset() { *x = LeadFormDeliveryMethod{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -794,7 +794,7 @@ func (x *LeadFormDeliveryMethod) String() string { func (*LeadFormDeliveryMethod) ProtoMessage() {} func (x *LeadFormDeliveryMethod) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -807,7 +807,7 @@ func (x *LeadFormDeliveryMethod) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormDeliveryMethod.ProtoReflect.Descriptor instead. func (*LeadFormDeliveryMethod) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{9} } func (x *LeadFormDeliveryMethod) GetDeliveryDetails() isLeadFormDeliveryMethod_DeliveryDetails { @@ -854,7 +854,7 @@ type WebhookDelivery struct { func (x *WebhookDelivery) Reset() { *x = WebhookDelivery{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -866,7 +866,7 @@ func (x *WebhookDelivery) String() string { func (*WebhookDelivery) ProtoMessage() {} func (x *WebhookDelivery) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -879,7 +879,7 @@ func (x *WebhookDelivery) ProtoReflect() protoreflect.Message { // Deprecated: Use WebhookDelivery.ProtoReflect.Descriptor instead. func (*WebhookDelivery) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{10} } func (x *WebhookDelivery) GetAdvertiserWebhookUrl() string { @@ -914,7 +914,7 @@ type BookOnGoogleAsset struct { func (x *BookOnGoogleAsset) Reset() { *x = BookOnGoogleAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -926,7 +926,7 @@ func (x *BookOnGoogleAsset) String() string { func (*BookOnGoogleAsset) ProtoMessage() {} func (x *BookOnGoogleAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -939,7 +939,7 @@ func (x *BookOnGoogleAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use BookOnGoogleAsset.ProtoReflect.Descriptor instead. func (*BookOnGoogleAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{11} } // A Promotion asset. @@ -948,7 +948,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.v21.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.v22.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"` @@ -958,7 +958,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.v21.enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion" json:"occasion,omitempty"` + Occasion enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion `protobuf:"varint,9,opt,name=occasion,proto3,enum=google.ads.googleads.v22.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"` @@ -999,7 +999,7 @@ type PromotionAsset struct { func (x *PromotionAsset) Reset() { *x = PromotionAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1011,7 +1011,7 @@ func (x *PromotionAsset) String() string { func (*PromotionAsset) ProtoMessage() {} func (x *PromotionAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1024,7 +1024,7 @@ func (x *PromotionAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use PromotionAsset.ProtoReflect.Descriptor instead. func (*PromotionAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{12} } func (x *PromotionAsset) GetPromotionTarget() string { @@ -1231,7 +1231,7 @@ func (*PromotionAsset_PromotionQrCodeInfo) isPromotionAsset_PromotionTrigger() { type PromotionBarcodeInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Barcode type used to generate barcode with the correct format. - Type enums.PromotionBarcodeTypeEnum_PromotionBarcodeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.PromotionBarcodeTypeEnum_PromotionBarcodeType" json:"type,omitempty"` + Type enums.PromotionBarcodeTypeEnum_PromotionBarcodeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.PromotionBarcodeTypeEnum_PromotionBarcodeType" json:"type,omitempty"` // Promotion message to be encoded in the barcode. BarcodeContent string `protobuf:"bytes,2,opt,name=barcode_content,json=barcodeContent,proto3" json:"barcode_content,omitempty"` unknownFields protoimpl.UnknownFields @@ -1240,7 +1240,7 @@ type PromotionBarcodeInfo struct { func (x *PromotionBarcodeInfo) Reset() { *x = PromotionBarcodeInfo{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1252,7 +1252,7 @@ func (x *PromotionBarcodeInfo) String() string { func (*PromotionBarcodeInfo) ProtoMessage() {} func (x *PromotionBarcodeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1265,7 +1265,7 @@ func (x *PromotionBarcodeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PromotionBarcodeInfo.ProtoReflect.Descriptor instead. func (*PromotionBarcodeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{13} } func (x *PromotionBarcodeInfo) GetType() enums.PromotionBarcodeTypeEnum_PromotionBarcodeType { @@ -1293,7 +1293,7 @@ type PromotionQrCodeInfo struct { func (x *PromotionQrCodeInfo) Reset() { *x = PromotionQrCodeInfo{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1305,7 +1305,7 @@ func (x *PromotionQrCodeInfo) String() string { func (*PromotionQrCodeInfo) ProtoMessage() {} func (x *PromotionQrCodeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1318,7 +1318,7 @@ func (x *PromotionQrCodeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PromotionQrCodeInfo.ProtoReflect.Descriptor instead. func (*PromotionQrCodeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{14} } func (x *PromotionQrCodeInfo) GetQrCodeContent() string { @@ -1350,7 +1350,7 @@ type CalloutAsset struct { func (x *CalloutAsset) Reset() { *x = CalloutAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1362,7 +1362,7 @@ func (x *CalloutAsset) String() string { func (*CalloutAsset) ProtoMessage() {} func (x *CalloutAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1375,7 +1375,7 @@ func (x *CalloutAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CalloutAsset.ProtoReflect.Descriptor instead. func (*CalloutAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{15} } func (x *CalloutAsset) GetCalloutText() string { @@ -1423,7 +1423,7 @@ type StructuredSnippetAsset struct { func (x *StructuredSnippetAsset) Reset() { *x = StructuredSnippetAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1435,7 +1435,7 @@ func (x *StructuredSnippetAsset) String() string { func (*StructuredSnippetAsset) ProtoMessage() {} func (x *StructuredSnippetAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1448,7 +1448,7 @@ func (x *StructuredSnippetAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use StructuredSnippetAsset.ProtoReflect.Descriptor instead. func (*StructuredSnippetAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{16} } func (x *StructuredSnippetAsset) GetHeader() string { @@ -1495,7 +1495,7 @@ type SitelinkAsset struct { func (x *SitelinkAsset) Reset() { *x = SitelinkAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1507,7 +1507,7 @@ func (x *SitelinkAsset) String() string { func (*SitelinkAsset) ProtoMessage() {} func (x *SitelinkAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1520,7 +1520,7 @@ func (x *SitelinkAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use SitelinkAsset.ProtoReflect.Descriptor instead. func (*SitelinkAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{17} } func (x *SitelinkAsset) GetLinkText() string { @@ -1578,7 +1578,7 @@ type PageFeedAsset struct { func (x *PageFeedAsset) Reset() { *x = PageFeedAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1590,7 +1590,7 @@ func (x *PageFeedAsset) String() string { func (*PageFeedAsset) ProtoMessage() {} func (x *PageFeedAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1603,7 +1603,7 @@ func (x *PageFeedAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use PageFeedAsset.ProtoReflect.Descriptor instead. func (*PageFeedAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{18} } func (x *PageFeedAsset) GetPageUrl() string { @@ -1668,7 +1668,7 @@ type DynamicEducationAsset struct { func (x *DynamicEducationAsset) Reset() { *x = DynamicEducationAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1680,7 +1680,7 @@ func (x *DynamicEducationAsset) String() string { func (*DynamicEducationAsset) ProtoMessage() {} func (x *DynamicEducationAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1693,7 +1693,7 @@ func (x *DynamicEducationAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicEducationAsset.ProtoReflect.Descriptor instead. func (*DynamicEducationAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{19} } func (x *DynamicEducationAsset) GetProgramId() string { @@ -1802,7 +1802,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.v21.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.v22.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"` @@ -1818,7 +1818,7 @@ type MobileAppAsset struct { func (x *MobileAppAsset) Reset() { *x = MobileAppAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1830,7 +1830,7 @@ func (x *MobileAppAsset) String() string { func (*MobileAppAsset) ProtoMessage() {} func (x *MobileAppAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1843,7 +1843,7 @@ func (x *MobileAppAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileAppAsset.ProtoReflect.Descriptor instead. func (*MobileAppAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{20} } func (x *MobileAppAsset) GetAppId() string { @@ -1896,7 +1896,7 @@ type HotelCalloutAsset struct { func (x *HotelCalloutAsset) Reset() { *x = HotelCalloutAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1908,7 +1908,7 @@ func (x *HotelCalloutAsset) String() string { func (*HotelCalloutAsset) ProtoMessage() {} func (x *HotelCalloutAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1921,7 +1921,7 @@ func (x *HotelCalloutAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelCalloutAsset.ProtoReflect.Descriptor instead. func (*HotelCalloutAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{21} } func (x *HotelCalloutAsset) GetText() string { @@ -1949,7 +1949,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.v21.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.v22.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 @@ -1965,7 +1965,7 @@ type CallAsset struct { func (x *CallAsset) Reset() { *x = CallAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1977,7 +1977,7 @@ func (x *CallAsset) String() string { func (*CallAsset) ProtoMessage() {} func (x *CallAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1990,7 +1990,7 @@ func (x *CallAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CallAsset.ProtoReflect.Descriptor instead. func (*CallAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{22} } func (x *CallAsset) GetCountryCode() string { @@ -2032,9 +2032,9 @@ func (x *CallAsset) GetAdScheduleTargets() []*AdScheduleInfo { type PriceAsset struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The type of the price asset. - Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.PriceExtensionTypeEnum_PriceExtensionType" json:"type,omitempty"` + Type enums.PriceExtensionTypeEnum_PriceExtensionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -2047,7 +2047,7 @@ type PriceAsset struct { func (x *PriceAsset) Reset() { *x = PriceAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2059,7 +2059,7 @@ func (x *PriceAsset) String() string { func (*PriceAsset) ProtoMessage() {} func (x *PriceAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2072,7 +2072,7 @@ func (x *PriceAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceAsset.ProtoReflect.Descriptor instead. func (*PriceAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{23} } func (x *PriceAsset) GetType() enums.PriceExtensionTypeEnum_PriceExtensionType { @@ -2115,7 +2115,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.v21.enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit" json:"unit,omitempty"` + Unit enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit `protobuf:"varint,4,opt,name=unit,proto3,enum=google.ads.googleads.v22.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. @@ -2126,7 +2126,7 @@ type PriceOffering struct { func (x *PriceOffering) Reset() { *x = PriceOffering{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2138,7 +2138,7 @@ func (x *PriceOffering) String() string { func (*PriceOffering) ProtoMessage() {} func (x *PriceOffering) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2151,7 +2151,7 @@ func (x *PriceOffering) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceOffering.ProtoReflect.Descriptor instead. func (*PriceOffering) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{24} } func (x *PriceOffering) GetHeader() string { @@ -2200,14 +2200,14 @@ func (x *PriceOffering) GetFinalMobileUrl() string { type CallToActionAsset struct { state protoimpl.MessageState `protogen:"open.v1"` // Call to action. - CallToAction enums.CallToActionTypeEnum_CallToActionType `protobuf:"varint,1,opt,name=call_to_action,json=callToAction,proto3,enum=google.ads.googleads.v21.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.v22.enums.CallToActionTypeEnum_CallToActionType" json:"call_to_action,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CallToActionAsset) Reset() { *x = CallToActionAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2219,7 +2219,7 @@ func (x *CallToActionAsset) String() string { func (*CallToActionAsset) ProtoMessage() {} func (x *CallToActionAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2232,7 +2232,7 @@ func (x *CallToActionAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CallToActionAsset.ProtoReflect.Descriptor instead. func (*CallToActionAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{25} } func (x *CallToActionAsset) GetCallToAction() enums.CallToActionTypeEnum_CallToActionType { @@ -2292,7 +2292,7 @@ type DynamicRealEstateAsset struct { func (x *DynamicRealEstateAsset) Reset() { *x = DynamicRealEstateAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2304,7 +2304,7 @@ func (x *DynamicRealEstateAsset) String() string { func (*DynamicRealEstateAsset) ProtoMessage() {} func (x *DynamicRealEstateAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2317,7 +2317,7 @@ func (x *DynamicRealEstateAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicRealEstateAsset.ProtoReflect.Descriptor instead. func (*DynamicRealEstateAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{26} } func (x *DynamicRealEstateAsset) GetListingId() string { @@ -2483,7 +2483,7 @@ type DynamicCustomAsset struct { func (x *DynamicCustomAsset) Reset() { *x = DynamicCustomAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2495,7 +2495,7 @@ func (x *DynamicCustomAsset) String() string { func (*DynamicCustomAsset) ProtoMessage() {} func (x *DynamicCustomAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2508,7 +2508,7 @@ func (x *DynamicCustomAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicCustomAsset.ProtoReflect.Descriptor instead. func (*DynamicCustomAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{27} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{27} } func (x *DynamicCustomAsset) GetId() string { @@ -2685,7 +2685,7 @@ type DynamicHotelsAndRentalsAsset struct { func (x *DynamicHotelsAndRentalsAsset) Reset() { *x = DynamicHotelsAndRentalsAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2697,7 +2697,7 @@ func (x *DynamicHotelsAndRentalsAsset) String() string { func (*DynamicHotelsAndRentalsAsset) ProtoMessage() {} func (x *DynamicHotelsAndRentalsAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2710,7 +2710,7 @@ func (x *DynamicHotelsAndRentalsAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicHotelsAndRentalsAsset.ProtoReflect.Descriptor instead. func (*DynamicHotelsAndRentalsAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{28} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{28} } func (x *DynamicHotelsAndRentalsAsset) GetPropertyId() string { @@ -2886,7 +2886,7 @@ type DynamicFlightsAsset struct { func (x *DynamicFlightsAsset) Reset() { *x = DynamicFlightsAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2898,7 +2898,7 @@ func (x *DynamicFlightsAsset) String() string { func (*DynamicFlightsAsset) ProtoMessage() {} func (x *DynamicFlightsAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2911,7 +2911,7 @@ func (x *DynamicFlightsAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicFlightsAsset.ProtoReflect.Descriptor instead. func (*DynamicFlightsAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{29} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{29} } func (x *DynamicFlightsAsset) GetDestinationId() string { @@ -3040,7 +3040,7 @@ type DemandGenCarouselCardAsset struct { func (x *DemandGenCarouselCardAsset) Reset() { *x = DemandGenCarouselCardAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3052,7 +3052,7 @@ func (x *DemandGenCarouselCardAsset) String() string { func (*DemandGenCarouselCardAsset) ProtoMessage() {} func (x *DemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3065,7 +3065,7 @@ func (x *DemandGenCarouselCardAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenCarouselCardAsset.ProtoReflect.Descriptor instead. func (*DemandGenCarouselCardAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{30} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{30} } func (x *DemandGenCarouselCardAsset) GetMarketingImageAsset() string { @@ -3160,7 +3160,7 @@ type DynamicTravelAsset struct { func (x *DynamicTravelAsset) Reset() { *x = DynamicTravelAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3172,7 +3172,7 @@ func (x *DynamicTravelAsset) String() string { func (*DynamicTravelAsset) ProtoMessage() {} func (x *DynamicTravelAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3185,7 +3185,7 @@ func (x *DynamicTravelAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicTravelAsset.ProtoReflect.Descriptor instead. func (*DynamicTravelAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{31} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{31} } func (x *DynamicTravelAsset) GetDestinationId() string { @@ -3362,7 +3362,7 @@ type DynamicLocalAsset struct { func (x *DynamicLocalAsset) Reset() { *x = DynamicLocalAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3374,7 +3374,7 @@ func (x *DynamicLocalAsset) String() string { func (*DynamicLocalAsset) ProtoMessage() {} func (x *DynamicLocalAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3387,7 +3387,7 @@ func (x *DynamicLocalAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicLocalAsset.ProtoReflect.Descriptor instead. func (*DynamicLocalAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{32} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{32} } func (x *DynamicLocalAsset) GetDealId() string { @@ -3548,7 +3548,7 @@ type DynamicJobsAsset struct { func (x *DynamicJobsAsset) Reset() { *x = DynamicJobsAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3560,7 +3560,7 @@ func (x *DynamicJobsAsset) String() string { func (*DynamicJobsAsset) ProtoMessage() {} func (x *DynamicJobsAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3573,7 +3573,7 @@ func (x *DynamicJobsAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicJobsAsset.ProtoReflect.Descriptor instead. func (*DynamicJobsAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{33} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{33} } func (x *DynamicJobsAsset) GetJobId() string { @@ -3691,14 +3691,14 @@ 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.v21.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.v22.enums.LocationOwnershipTypeEnum_LocationOwnershipType" json:"location_ownership_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *LocationAsset) Reset() { *x = LocationAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3710,7 +3710,7 @@ func (x *LocationAsset) String() string { func (*LocationAsset) ProtoMessage() {} func (x *LocationAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3723,7 +3723,7 @@ func (x *LocationAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationAsset.ProtoReflect.Descriptor instead. func (*LocationAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{34} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{34} } func (x *LocationAsset) GetPlaceId() string { @@ -3766,7 +3766,7 @@ type BusinessProfileLocation struct { func (x *BusinessProfileLocation) Reset() { *x = BusinessProfileLocation{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3778,7 +3778,7 @@ func (x *BusinessProfileLocation) String() string { func (*BusinessProfileLocation) ProtoMessage() {} func (x *BusinessProfileLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3791,7 +3791,7 @@ func (x *BusinessProfileLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessProfileLocation.ProtoReflect.Descriptor instead. func (*BusinessProfileLocation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{35} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{35} } func (x *BusinessProfileLocation) GetLabels() []string { @@ -3832,7 +3832,7 @@ type HotelPropertyAsset struct { func (x *HotelPropertyAsset) Reset() { *x = HotelPropertyAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3844,7 +3844,7 @@ func (x *HotelPropertyAsset) String() string { func (*HotelPropertyAsset) ProtoMessage() {} func (x *HotelPropertyAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3857,7 +3857,7 @@ func (x *HotelPropertyAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelPropertyAsset.ProtoReflect.Descriptor instead. func (*HotelPropertyAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{36} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{36} } func (x *HotelPropertyAsset) GetPlaceId() string { @@ -3885,7 +3885,7 @@ func (x *HotelPropertyAsset) GetHotelName() string { type BusinessMessageAsset struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. Message provider of the business message asset. - MessageProvider enums.BusinessMessageProviderEnum_BusinessMessageProvider `protobuf:"varint,1,opt,name=message_provider,json=messageProvider,proto3,enum=google.ads.googleads.v21.enums.BusinessMessageProviderEnum_BusinessMessageProvider" json:"message_provider,omitempty"` + MessageProvider enums.BusinessMessageProviderEnum_BusinessMessageProvider `protobuf:"varint,1,opt,name=message_provider,json=messageProvider,proto3,enum=google.ads.googleads.v22.enums.BusinessMessageProviderEnum_BusinessMessageProvider" json:"message_provider,omitempty"` // Required. A welcome message to prompt the user to initiate a conversation. StarterMessage string `protobuf:"bytes,2,opt,name=starter_message,json=starterMessage,proto3" json:"starter_message,omitempty"` // A call to action for the business message asset. @@ -3902,7 +3902,7 @@ type BusinessMessageAsset struct { func (x *BusinessMessageAsset) Reset() { *x = BusinessMessageAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3914,7 +3914,7 @@ func (x *BusinessMessageAsset) String() string { func (*BusinessMessageAsset) ProtoMessage() {} func (x *BusinessMessageAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3927,7 +3927,7 @@ func (x *BusinessMessageAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessMessageAsset.ProtoReflect.Descriptor instead. func (*BusinessMessageAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{37} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{37} } func (x *BusinessMessageAsset) GetMessageProvider() enums.BusinessMessageProviderEnum_BusinessMessageProvider { @@ -3993,7 +3993,7 @@ type WhatsappBusinessMessageInfo struct { func (x *WhatsappBusinessMessageInfo) Reset() { *x = WhatsappBusinessMessageInfo{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4005,7 +4005,7 @@ func (x *WhatsappBusinessMessageInfo) String() string { func (*WhatsappBusinessMessageInfo) ProtoMessage() {} func (x *WhatsappBusinessMessageInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4018,7 +4018,7 @@ func (x *WhatsappBusinessMessageInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WhatsappBusinessMessageInfo.ProtoReflect.Descriptor instead. func (*WhatsappBusinessMessageInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{38} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{38} } func (x *WhatsappBusinessMessageInfo) GetCountryCode() string { @@ -4039,7 +4039,7 @@ func (x *WhatsappBusinessMessageInfo) GetPhoneNumber() string { type BusinessMessageCallToActionInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. Pre-defined call to action text. - CallToActionSelection enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType `protobuf:"varint,1,opt,name=call_to_action_selection,json=callToActionSelection,proto3,enum=google.ads.googleads.v21.enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType" json:"call_to_action_selection,omitempty"` + CallToActionSelection enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType `protobuf:"varint,1,opt,name=call_to_action_selection,json=callToActionSelection,proto3,enum=google.ads.googleads.v22.enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType" json:"call_to_action_selection,omitempty"` // Required. Text providing a clear value proposition of what users expect // once they take the action. Examples: 'Message us for a quote', 'Ask our // expert team'. @@ -4050,7 +4050,7 @@ type BusinessMessageCallToActionInfo struct { func (x *BusinessMessageCallToActionInfo) Reset() { *x = BusinessMessageCallToActionInfo{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4062,7 +4062,7 @@ func (x *BusinessMessageCallToActionInfo) String() string { func (*BusinessMessageCallToActionInfo) ProtoMessage() {} func (x *BusinessMessageCallToActionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4075,7 +4075,7 @@ func (x *BusinessMessageCallToActionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessMessageCallToActionInfo.ProtoReflect.Descriptor instead. func (*BusinessMessageCallToActionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{39} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{39} } func (x *BusinessMessageCallToActionInfo) GetCallToActionSelection() enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType { @@ -4105,7 +4105,7 @@ type AppDeepLinkAsset struct { func (x *AppDeepLinkAsset) Reset() { *x = AppDeepLinkAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4117,7 +4117,7 @@ func (x *AppDeepLinkAsset) String() string { func (*AppDeepLinkAsset) ProtoMessage() {} func (x *AppDeepLinkAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4130,7 +4130,7 @@ func (x *AppDeepLinkAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AppDeepLinkAsset.ProtoReflect.Descriptor instead. func (*AppDeepLinkAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{40} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{40} } func (x *AppDeepLinkAsset) GetAppDeepLinkUri() string { @@ -4152,7 +4152,7 @@ type YouTubeVideoListAsset struct { func (x *YouTubeVideoListAsset) Reset() { *x = YouTubeVideoListAsset{} - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4164,7 +4164,7 @@ func (x *YouTubeVideoListAsset) String() string { func (*YouTubeVideoListAsset) ProtoMessage() {} func (x *YouTubeVideoListAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4177,7 +4177,7 @@ func (x *YouTubeVideoListAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeVideoListAsset.ProtoReflect.Descriptor instead. func (*YouTubeVideoListAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP(), []int{41} + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP(), []int{41} } func (x *YouTubeVideoListAsset) GetYoutubeVideos() []*AdVideoAsset { @@ -4187,91 +4187,91 @@ func (x *YouTubeVideoListAsset) GetYoutubeVideos() []*AdVideoAsset { return nil } -var File_google_ads_googleads_v21_common_asset_types_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_asset_types_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_asset_types_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x49, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 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, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6d, 0x65, 0x5f, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x62, 0x69, 0x6c, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, 0x78, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x69, 0x63, 0x65, 0x5f, 0x65, + 0x32, 0x32, 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, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, @@ -4297,12 +4297,12 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x69, 0x6d, 0x65, 0x54, 0x79, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x22, 0xa4, @@ -4326,7 +4326,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x12, 0x89, 0x01, 0x0a, 0x13, 0x63, 0x61, 0x6c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4353,19 +4353,19 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4373,7 +4373,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, 0x72, + 0x32, 0x32, 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, 0x50, 0x6f, 0x73, 0x74, 0x53, 0x75, 0x62, 0x6d, @@ -4386,7 +4386,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x88, 0x01, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4404,7 +4404,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x46, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4412,7 +4412,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x74, 0x54, 0x79, 0x70, 0x65, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4429,7 +4429,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, + 0x32, 0x32, 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, 0x73, 0x12, 0x30, 0x0a, 0x13, @@ -4444,7 +4444,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x22, 0xf9, @@ -4472,7 +4472,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x65, 0x74, 0x12, 0x96, 0x01, 0x0a, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4487,7 +4487,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x64, 0x65, 0x6d, 0x70, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4501,7 +4501,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x5f, 0x0a, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x39, 0x0a, 0x19, 0x74, 0x65, 0x72, 0x6d, 0x73, 0x5f, @@ -4517,7 +4517,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x48, + 0x32, 0x32, 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, 0x0d, 0x70, 0x72, 0x6f, @@ -4525,19 +4525,19 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x65, 0x79, 0x48, 0x01, + 0x32, 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, 0x12, 0x6d, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x10, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x14, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x6b, 0x0a, 0x16, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x71, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x51, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x13, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x51, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x0f, @@ -4547,7 +4547,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x61, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, @@ -4568,7 +4568,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x53, 0x63, 0x68, + 0x76, 0x32, 0x32, 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, 0x69, 0x70, 0x70, 0x65, @@ -4590,7 +4590,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x6e, 0x64, 0x44, 0x61, 0x74, 0x65, 0x12, 0x5f, 0x0a, 0x13, 0x61, 0x64, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4638,7 +4638,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x05, 0x61, 0x70, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4663,7 +4663,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4679,20 +4679,20 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x5f, 0x0a, 0x13, 0x61, 0x64, 0x5f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4703,7 +4703,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x43, 0x6f, 0x64, 0x65, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4714,11 +4714,11 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x55, 0x6e, 0x69, @@ -4731,7 +4731,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5026,14 +5026,14 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x87, 0x01, 0x0a, 0x17, 0x6c, 0x6f, 0x63, 0x61, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5057,7 +5057,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x73, 0x73, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x83, 0x01, 0x0a, 0x10, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, @@ -5069,13 +5069,13 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x0a, 0x0e, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, + 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x01, 0x52, 0x0c, 0x63, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x63, 0x0a, 0x0d, 0x77, 0x68, 0x61, 0x74, 0x73, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x05, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x68, 0x61, 0x74, 0x73, 0x61, 0x70, 0x70, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x77, 0x68, 0x61, 0x74, 0x73, 0x61, 0x70, 0x70, 0x49, 0x6e, 0x66, 0x6f, @@ -5094,7 +5094,7 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0xa1, 0x01, 0x0a, 0x18, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x6f, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, @@ -5113,143 +5113,143 @@ var file_google_ads_googleads_v21_common_asset_types_proto_rawDesc = string([]by 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x54, 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x41, 0x73, 0x73, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_asset_types_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_asset_types_proto_rawDescData []byte + file_google_ads_googleads_v22_common_asset_types_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_asset_types_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_asset_types_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_asset_types_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_asset_types_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_types_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_types_proto_rawDesc))) +func file_google_ads_googleads_v22_common_asset_types_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_asset_types_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_asset_types_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_types_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_types_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_asset_types_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_asset_types_proto_msgTypes = make([]protoimpl.MessageInfo, 42) -var file_google_ads_googleads_v21_common_asset_types_proto_goTypes = []any{ - (*YoutubeVideoAsset)(nil), // 0: google.ads.googleads.v21.common.YoutubeVideoAsset - (*MediaBundleAsset)(nil), // 1: google.ads.googleads.v21.common.MediaBundleAsset - (*ImageAsset)(nil), // 2: google.ads.googleads.v21.common.ImageAsset - (*ImageDimension)(nil), // 3: google.ads.googleads.v21.common.ImageDimension - (*TextAsset)(nil), // 4: google.ads.googleads.v21.common.TextAsset - (*LeadFormAsset)(nil), // 5: google.ads.googleads.v21.common.LeadFormAsset - (*LeadFormField)(nil), // 6: google.ads.googleads.v21.common.LeadFormField - (*LeadFormCustomQuestionField)(nil), // 7: google.ads.googleads.v21.common.LeadFormCustomQuestionField - (*LeadFormSingleChoiceAnswers)(nil), // 8: google.ads.googleads.v21.common.LeadFormSingleChoiceAnswers - (*LeadFormDeliveryMethod)(nil), // 9: google.ads.googleads.v21.common.LeadFormDeliveryMethod - (*WebhookDelivery)(nil), // 10: google.ads.googleads.v21.common.WebhookDelivery - (*BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v21.common.BookOnGoogleAsset - (*PromotionAsset)(nil), // 12: google.ads.googleads.v21.common.PromotionAsset - (*PromotionBarcodeInfo)(nil), // 13: google.ads.googleads.v21.common.PromotionBarcodeInfo - (*PromotionQrCodeInfo)(nil), // 14: google.ads.googleads.v21.common.PromotionQrCodeInfo - (*CalloutAsset)(nil), // 15: google.ads.googleads.v21.common.CalloutAsset - (*StructuredSnippetAsset)(nil), // 16: google.ads.googleads.v21.common.StructuredSnippetAsset - (*SitelinkAsset)(nil), // 17: google.ads.googleads.v21.common.SitelinkAsset - (*PageFeedAsset)(nil), // 18: google.ads.googleads.v21.common.PageFeedAsset - (*DynamicEducationAsset)(nil), // 19: google.ads.googleads.v21.common.DynamicEducationAsset - (*MobileAppAsset)(nil), // 20: google.ads.googleads.v21.common.MobileAppAsset - (*HotelCalloutAsset)(nil), // 21: google.ads.googleads.v21.common.HotelCalloutAsset - (*CallAsset)(nil), // 22: google.ads.googleads.v21.common.CallAsset - (*PriceAsset)(nil), // 23: google.ads.googleads.v21.common.PriceAsset - (*PriceOffering)(nil), // 24: google.ads.googleads.v21.common.PriceOffering - (*CallToActionAsset)(nil), // 25: google.ads.googleads.v21.common.CallToActionAsset - (*DynamicRealEstateAsset)(nil), // 26: google.ads.googleads.v21.common.DynamicRealEstateAsset - (*DynamicCustomAsset)(nil), // 27: google.ads.googleads.v21.common.DynamicCustomAsset - (*DynamicHotelsAndRentalsAsset)(nil), // 28: google.ads.googleads.v21.common.DynamicHotelsAndRentalsAsset - (*DynamicFlightsAsset)(nil), // 29: google.ads.googleads.v21.common.DynamicFlightsAsset - (*DemandGenCarouselCardAsset)(nil), // 30: google.ads.googleads.v21.common.DemandGenCarouselCardAsset - (*DynamicTravelAsset)(nil), // 31: google.ads.googleads.v21.common.DynamicTravelAsset - (*DynamicLocalAsset)(nil), // 32: google.ads.googleads.v21.common.DynamicLocalAsset - (*DynamicJobsAsset)(nil), // 33: google.ads.googleads.v21.common.DynamicJobsAsset - (*LocationAsset)(nil), // 34: google.ads.googleads.v21.common.LocationAsset - (*BusinessProfileLocation)(nil), // 35: google.ads.googleads.v21.common.BusinessProfileLocation - (*HotelPropertyAsset)(nil), // 36: google.ads.googleads.v21.common.HotelPropertyAsset - (*BusinessMessageAsset)(nil), // 37: google.ads.googleads.v21.common.BusinessMessageAsset - (*WhatsappBusinessMessageInfo)(nil), // 38: google.ads.googleads.v21.common.WhatsappBusinessMessageInfo - (*BusinessMessageCallToActionInfo)(nil), // 39: google.ads.googleads.v21.common.BusinessMessageCallToActionInfo - (*AppDeepLinkAsset)(nil), // 40: google.ads.googleads.v21.common.AppDeepLinkAsset - (*YouTubeVideoListAsset)(nil), // 41: google.ads.googleads.v21.common.YouTubeVideoListAsset - (enums.MimeTypeEnum_MimeType)(0), // 42: google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - (enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 43: google.ads.googleads.v21.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType - (enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 44: google.ads.googleads.v21.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType - (enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 45: google.ads.googleads.v21.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent - (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 46: google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType - (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 47: google.ads.googleads.v21.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier - (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 48: google.ads.googleads.v21.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion - (*AdScheduleInfo)(nil), // 49: google.ads.googleads.v21.common.AdScheduleInfo - (*Money)(nil), // 50: google.ads.googleads.v21.common.Money - (enums.PromotionBarcodeTypeEnum_PromotionBarcodeType)(0), // 51: google.ads.googleads.v21.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType - (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 52: google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor - (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 53: google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 54: google.ads.googleads.v21.enums.PriceExtensionTypeEnum.PriceExtensionType - (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 55: google.ads.googleads.v21.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier - (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 56: google.ads.googleads.v21.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit - (enums.CallToActionTypeEnum_CallToActionType)(0), // 57: google.ads.googleads.v21.enums.CallToActionTypeEnum.CallToActionType - (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 58: google.ads.googleads.v21.enums.LocationOwnershipTypeEnum.LocationOwnershipType - (enums.BusinessMessageProviderEnum_BusinessMessageProvider)(0), // 59: google.ads.googleads.v21.enums.BusinessMessageProviderEnum.BusinessMessageProvider - (enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType)(0), // 60: google.ads.googleads.v21.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType - (*AdVideoAsset)(nil), // 61: google.ads.googleads.v21.common.AdVideoAsset -} -var file_google_ads_googleads_v21_common_asset_types_proto_depIdxs = []int32{ - 42, // 0: google.ads.googleads.v21.common.ImageAsset.mime_type:type_name -> google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - 3, // 1: google.ads.googleads.v21.common.ImageAsset.full_size:type_name -> google.ads.googleads.v21.common.ImageDimension - 43, // 2: google.ads.googleads.v21.common.LeadFormAsset.call_to_action_type:type_name -> google.ads.googleads.v21.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType - 6, // 3: google.ads.googleads.v21.common.LeadFormAsset.fields:type_name -> google.ads.googleads.v21.common.LeadFormField - 7, // 4: google.ads.googleads.v21.common.LeadFormAsset.custom_question_fields:type_name -> google.ads.googleads.v21.common.LeadFormCustomQuestionField - 9, // 5: google.ads.googleads.v21.common.LeadFormAsset.delivery_methods:type_name -> google.ads.googleads.v21.common.LeadFormDeliveryMethod - 44, // 6: google.ads.googleads.v21.common.LeadFormAsset.post_submit_call_to_action_type:type_name -> google.ads.googleads.v21.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType - 45, // 7: google.ads.googleads.v21.common.LeadFormAsset.desired_intent:type_name -> google.ads.googleads.v21.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent - 46, // 8: google.ads.googleads.v21.common.LeadFormField.input_type:type_name -> google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType - 8, // 9: google.ads.googleads.v21.common.LeadFormField.single_choice_answers:type_name -> google.ads.googleads.v21.common.LeadFormSingleChoiceAnswers - 8, // 10: google.ads.googleads.v21.common.LeadFormCustomQuestionField.single_choice_answers:type_name -> google.ads.googleads.v21.common.LeadFormSingleChoiceAnswers - 10, // 11: google.ads.googleads.v21.common.LeadFormDeliveryMethod.webhook:type_name -> google.ads.googleads.v21.common.WebhookDelivery - 47, // 12: google.ads.googleads.v21.common.PromotionAsset.discount_modifier:type_name -> google.ads.googleads.v21.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier - 48, // 13: google.ads.googleads.v21.common.PromotionAsset.occasion:type_name -> google.ads.googleads.v21.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion - 49, // 14: google.ads.googleads.v21.common.PromotionAsset.ad_schedule_targets:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 50, // 15: google.ads.googleads.v21.common.PromotionAsset.money_amount_off:type_name -> google.ads.googleads.v21.common.Money - 50, // 16: google.ads.googleads.v21.common.PromotionAsset.orders_over_amount:type_name -> google.ads.googleads.v21.common.Money - 13, // 17: google.ads.googleads.v21.common.PromotionAsset.promotion_barcode_info:type_name -> google.ads.googleads.v21.common.PromotionBarcodeInfo - 14, // 18: google.ads.googleads.v21.common.PromotionAsset.promotion_qr_code_info:type_name -> google.ads.googleads.v21.common.PromotionQrCodeInfo - 51, // 19: google.ads.googleads.v21.common.PromotionBarcodeInfo.type:type_name -> google.ads.googleads.v21.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType - 49, // 20: google.ads.googleads.v21.common.CalloutAsset.ad_schedule_targets:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 49, // 21: google.ads.googleads.v21.common.SitelinkAsset.ad_schedule_targets:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 52, // 22: google.ads.googleads.v21.common.MobileAppAsset.app_store:type_name -> google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor - 53, // 23: google.ads.googleads.v21.common.CallAsset.call_conversion_reporting_state:type_name -> google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - 49, // 24: google.ads.googleads.v21.common.CallAsset.ad_schedule_targets:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 54, // 25: google.ads.googleads.v21.common.PriceAsset.type:type_name -> google.ads.googleads.v21.enums.PriceExtensionTypeEnum.PriceExtensionType - 55, // 26: google.ads.googleads.v21.common.PriceAsset.price_qualifier:type_name -> google.ads.googleads.v21.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier - 24, // 27: google.ads.googleads.v21.common.PriceAsset.price_offerings:type_name -> google.ads.googleads.v21.common.PriceOffering - 50, // 28: google.ads.googleads.v21.common.PriceOffering.price:type_name -> google.ads.googleads.v21.common.Money - 56, // 29: google.ads.googleads.v21.common.PriceOffering.unit:type_name -> google.ads.googleads.v21.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit - 57, // 30: google.ads.googleads.v21.common.CallToActionAsset.call_to_action:type_name -> google.ads.googleads.v21.enums.CallToActionTypeEnum.CallToActionType - 35, // 31: google.ads.googleads.v21.common.LocationAsset.business_profile_locations:type_name -> google.ads.googleads.v21.common.BusinessProfileLocation - 58, // 32: google.ads.googleads.v21.common.LocationAsset.location_ownership_type:type_name -> google.ads.googleads.v21.enums.LocationOwnershipTypeEnum.LocationOwnershipType - 59, // 33: google.ads.googleads.v21.common.BusinessMessageAsset.message_provider:type_name -> google.ads.googleads.v21.enums.BusinessMessageProviderEnum.BusinessMessageProvider - 39, // 34: google.ads.googleads.v21.common.BusinessMessageAsset.call_to_action:type_name -> google.ads.googleads.v21.common.BusinessMessageCallToActionInfo - 38, // 35: google.ads.googleads.v21.common.BusinessMessageAsset.whatsapp_info:type_name -> google.ads.googleads.v21.common.WhatsappBusinessMessageInfo - 60, // 36: google.ads.googleads.v21.common.BusinessMessageCallToActionInfo.call_to_action_selection:type_name -> google.ads.googleads.v21.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType - 61, // 37: google.ads.googleads.v21.common.YouTubeVideoListAsset.youtube_videos:type_name -> google.ads.googleads.v21.common.AdVideoAsset + return file_google_ads_googleads_v22_common_asset_types_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_asset_types_proto_msgTypes = make([]protoimpl.MessageInfo, 42) +var file_google_ads_googleads_v22_common_asset_types_proto_goTypes = []any{ + (*YoutubeVideoAsset)(nil), // 0: google.ads.googleads.v22.common.YoutubeVideoAsset + (*MediaBundleAsset)(nil), // 1: google.ads.googleads.v22.common.MediaBundleAsset + (*ImageAsset)(nil), // 2: google.ads.googleads.v22.common.ImageAsset + (*ImageDimension)(nil), // 3: google.ads.googleads.v22.common.ImageDimension + (*TextAsset)(nil), // 4: google.ads.googleads.v22.common.TextAsset + (*LeadFormAsset)(nil), // 5: google.ads.googleads.v22.common.LeadFormAsset + (*LeadFormField)(nil), // 6: google.ads.googleads.v22.common.LeadFormField + (*LeadFormCustomQuestionField)(nil), // 7: google.ads.googleads.v22.common.LeadFormCustomQuestionField + (*LeadFormSingleChoiceAnswers)(nil), // 8: google.ads.googleads.v22.common.LeadFormSingleChoiceAnswers + (*LeadFormDeliveryMethod)(nil), // 9: google.ads.googleads.v22.common.LeadFormDeliveryMethod + (*WebhookDelivery)(nil), // 10: google.ads.googleads.v22.common.WebhookDelivery + (*BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v22.common.BookOnGoogleAsset + (*PromotionAsset)(nil), // 12: google.ads.googleads.v22.common.PromotionAsset + (*PromotionBarcodeInfo)(nil), // 13: google.ads.googleads.v22.common.PromotionBarcodeInfo + (*PromotionQrCodeInfo)(nil), // 14: google.ads.googleads.v22.common.PromotionQrCodeInfo + (*CalloutAsset)(nil), // 15: google.ads.googleads.v22.common.CalloutAsset + (*StructuredSnippetAsset)(nil), // 16: google.ads.googleads.v22.common.StructuredSnippetAsset + (*SitelinkAsset)(nil), // 17: google.ads.googleads.v22.common.SitelinkAsset + (*PageFeedAsset)(nil), // 18: google.ads.googleads.v22.common.PageFeedAsset + (*DynamicEducationAsset)(nil), // 19: google.ads.googleads.v22.common.DynamicEducationAsset + (*MobileAppAsset)(nil), // 20: google.ads.googleads.v22.common.MobileAppAsset + (*HotelCalloutAsset)(nil), // 21: google.ads.googleads.v22.common.HotelCalloutAsset + (*CallAsset)(nil), // 22: google.ads.googleads.v22.common.CallAsset + (*PriceAsset)(nil), // 23: google.ads.googleads.v22.common.PriceAsset + (*PriceOffering)(nil), // 24: google.ads.googleads.v22.common.PriceOffering + (*CallToActionAsset)(nil), // 25: google.ads.googleads.v22.common.CallToActionAsset + (*DynamicRealEstateAsset)(nil), // 26: google.ads.googleads.v22.common.DynamicRealEstateAsset + (*DynamicCustomAsset)(nil), // 27: google.ads.googleads.v22.common.DynamicCustomAsset + (*DynamicHotelsAndRentalsAsset)(nil), // 28: google.ads.googleads.v22.common.DynamicHotelsAndRentalsAsset + (*DynamicFlightsAsset)(nil), // 29: google.ads.googleads.v22.common.DynamicFlightsAsset + (*DemandGenCarouselCardAsset)(nil), // 30: google.ads.googleads.v22.common.DemandGenCarouselCardAsset + (*DynamicTravelAsset)(nil), // 31: google.ads.googleads.v22.common.DynamicTravelAsset + (*DynamicLocalAsset)(nil), // 32: google.ads.googleads.v22.common.DynamicLocalAsset + (*DynamicJobsAsset)(nil), // 33: google.ads.googleads.v22.common.DynamicJobsAsset + (*LocationAsset)(nil), // 34: google.ads.googleads.v22.common.LocationAsset + (*BusinessProfileLocation)(nil), // 35: google.ads.googleads.v22.common.BusinessProfileLocation + (*HotelPropertyAsset)(nil), // 36: google.ads.googleads.v22.common.HotelPropertyAsset + (*BusinessMessageAsset)(nil), // 37: google.ads.googleads.v22.common.BusinessMessageAsset + (*WhatsappBusinessMessageInfo)(nil), // 38: google.ads.googleads.v22.common.WhatsappBusinessMessageInfo + (*BusinessMessageCallToActionInfo)(nil), // 39: google.ads.googleads.v22.common.BusinessMessageCallToActionInfo + (*AppDeepLinkAsset)(nil), // 40: google.ads.googleads.v22.common.AppDeepLinkAsset + (*YouTubeVideoListAsset)(nil), // 41: google.ads.googleads.v22.common.YouTubeVideoListAsset + (enums.MimeTypeEnum_MimeType)(0), // 42: google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + (enums.LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 43: google.ads.googleads.v22.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType + (enums.LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 44: google.ads.googleads.v22.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType + (enums.LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 45: google.ads.googleads.v22.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent + (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 46: google.ads.googleads.v22.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType + (enums.PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 47: google.ads.googleads.v22.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier + (enums.PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 48: google.ads.googleads.v22.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion + (*AdScheduleInfo)(nil), // 49: google.ads.googleads.v22.common.AdScheduleInfo + (*Money)(nil), // 50: google.ads.googleads.v22.common.Money + (enums.PromotionBarcodeTypeEnum_PromotionBarcodeType)(0), // 51: google.ads.googleads.v22.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType + (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 52: google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor + (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 53: google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + (enums.PriceExtensionTypeEnum_PriceExtensionType)(0), // 54: google.ads.googleads.v22.enums.PriceExtensionTypeEnum.PriceExtensionType + (enums.PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 55: google.ads.googleads.v22.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier + (enums.PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 56: google.ads.googleads.v22.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit + (enums.CallToActionTypeEnum_CallToActionType)(0), // 57: google.ads.googleads.v22.enums.CallToActionTypeEnum.CallToActionType + (enums.LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 58: google.ads.googleads.v22.enums.LocationOwnershipTypeEnum.LocationOwnershipType + (enums.BusinessMessageProviderEnum_BusinessMessageProvider)(0), // 59: google.ads.googleads.v22.enums.BusinessMessageProviderEnum.BusinessMessageProvider + (enums.BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType)(0), // 60: google.ads.googleads.v22.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType + (*AdVideoAsset)(nil), // 61: google.ads.googleads.v22.common.AdVideoAsset +} +var file_google_ads_googleads_v22_common_asset_types_proto_depIdxs = []int32{ + 42, // 0: google.ads.googleads.v22.common.ImageAsset.mime_type:type_name -> google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + 3, // 1: google.ads.googleads.v22.common.ImageAsset.full_size:type_name -> google.ads.googleads.v22.common.ImageDimension + 43, // 2: google.ads.googleads.v22.common.LeadFormAsset.call_to_action_type:type_name -> google.ads.googleads.v22.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType + 6, // 3: google.ads.googleads.v22.common.LeadFormAsset.fields:type_name -> google.ads.googleads.v22.common.LeadFormField + 7, // 4: google.ads.googleads.v22.common.LeadFormAsset.custom_question_fields:type_name -> google.ads.googleads.v22.common.LeadFormCustomQuestionField + 9, // 5: google.ads.googleads.v22.common.LeadFormAsset.delivery_methods:type_name -> google.ads.googleads.v22.common.LeadFormDeliveryMethod + 44, // 6: google.ads.googleads.v22.common.LeadFormAsset.post_submit_call_to_action_type:type_name -> google.ads.googleads.v22.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType + 45, // 7: google.ads.googleads.v22.common.LeadFormAsset.desired_intent:type_name -> google.ads.googleads.v22.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent + 46, // 8: google.ads.googleads.v22.common.LeadFormField.input_type:type_name -> google.ads.googleads.v22.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType + 8, // 9: google.ads.googleads.v22.common.LeadFormField.single_choice_answers:type_name -> google.ads.googleads.v22.common.LeadFormSingleChoiceAnswers + 8, // 10: google.ads.googleads.v22.common.LeadFormCustomQuestionField.single_choice_answers:type_name -> google.ads.googleads.v22.common.LeadFormSingleChoiceAnswers + 10, // 11: google.ads.googleads.v22.common.LeadFormDeliveryMethod.webhook:type_name -> google.ads.googleads.v22.common.WebhookDelivery + 47, // 12: google.ads.googleads.v22.common.PromotionAsset.discount_modifier:type_name -> google.ads.googleads.v22.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier + 48, // 13: google.ads.googleads.v22.common.PromotionAsset.occasion:type_name -> google.ads.googleads.v22.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion + 49, // 14: google.ads.googleads.v22.common.PromotionAsset.ad_schedule_targets:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 50, // 15: google.ads.googleads.v22.common.PromotionAsset.money_amount_off:type_name -> google.ads.googleads.v22.common.Money + 50, // 16: google.ads.googleads.v22.common.PromotionAsset.orders_over_amount:type_name -> google.ads.googleads.v22.common.Money + 13, // 17: google.ads.googleads.v22.common.PromotionAsset.promotion_barcode_info:type_name -> google.ads.googleads.v22.common.PromotionBarcodeInfo + 14, // 18: google.ads.googleads.v22.common.PromotionAsset.promotion_qr_code_info:type_name -> google.ads.googleads.v22.common.PromotionQrCodeInfo + 51, // 19: google.ads.googleads.v22.common.PromotionBarcodeInfo.type:type_name -> google.ads.googleads.v22.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType + 49, // 20: google.ads.googleads.v22.common.CalloutAsset.ad_schedule_targets:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 49, // 21: google.ads.googleads.v22.common.SitelinkAsset.ad_schedule_targets:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 52, // 22: google.ads.googleads.v22.common.MobileAppAsset.app_store:type_name -> google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor + 53, // 23: google.ads.googleads.v22.common.CallAsset.call_conversion_reporting_state:type_name -> google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + 49, // 24: google.ads.googleads.v22.common.CallAsset.ad_schedule_targets:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 54, // 25: google.ads.googleads.v22.common.PriceAsset.type:type_name -> google.ads.googleads.v22.enums.PriceExtensionTypeEnum.PriceExtensionType + 55, // 26: google.ads.googleads.v22.common.PriceAsset.price_qualifier:type_name -> google.ads.googleads.v22.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier + 24, // 27: google.ads.googleads.v22.common.PriceAsset.price_offerings:type_name -> google.ads.googleads.v22.common.PriceOffering + 50, // 28: google.ads.googleads.v22.common.PriceOffering.price:type_name -> google.ads.googleads.v22.common.Money + 56, // 29: google.ads.googleads.v22.common.PriceOffering.unit:type_name -> google.ads.googleads.v22.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit + 57, // 30: google.ads.googleads.v22.common.CallToActionAsset.call_to_action:type_name -> google.ads.googleads.v22.enums.CallToActionTypeEnum.CallToActionType + 35, // 31: google.ads.googleads.v22.common.LocationAsset.business_profile_locations:type_name -> google.ads.googleads.v22.common.BusinessProfileLocation + 58, // 32: google.ads.googleads.v22.common.LocationAsset.location_ownership_type:type_name -> google.ads.googleads.v22.enums.LocationOwnershipTypeEnum.LocationOwnershipType + 59, // 33: google.ads.googleads.v22.common.BusinessMessageAsset.message_provider:type_name -> google.ads.googleads.v22.enums.BusinessMessageProviderEnum.BusinessMessageProvider + 39, // 34: google.ads.googleads.v22.common.BusinessMessageAsset.call_to_action:type_name -> google.ads.googleads.v22.common.BusinessMessageCallToActionInfo + 38, // 35: google.ads.googleads.v22.common.BusinessMessageAsset.whatsapp_info:type_name -> google.ads.googleads.v22.common.WhatsappBusinessMessageInfo + 60, // 36: google.ads.googleads.v22.common.BusinessMessageCallToActionInfo.call_to_action_selection:type_name -> google.ads.googleads.v22.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType + 61, // 37: google.ads.googleads.v22.common.YouTubeVideoListAsset.youtube_videos:type_name -> google.ads.googleads.v22.common.AdVideoAsset 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 @@ -5257,33 +5257,33 @@ var file_google_ads_googleads_v21_common_asset_types_proto_depIdxs = []int32{ 0, // [0:38] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_asset_types_proto_init() } -func file_google_ads_googleads_v21_common_asset_types_proto_init() { - if File_google_ads_googleads_v21_common_asset_types_proto != nil { +func init() { file_google_ads_googleads_v22_common_asset_types_proto_init() } +func file_google_ads_googleads_v22_common_asset_types_proto_init() { + if File_google_ads_googleads_v22_common_asset_types_proto != nil { return } - file_google_ads_googleads_v21_common_ad_asset_proto_init() - file_google_ads_googleads_v21_common_criteria_proto_init() - file_google_ads_googleads_v21_common_feed_common_proto_init() - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[6].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_ad_asset_proto_init() + file_google_ads_googleads_v22_common_criteria_proto_init() + file_google_ads_googleads_v22_common_feed_common_proto_init() + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[6].OneofWrappers = []any{ (*LeadFormField_SingleChoiceAnswers)(nil), (*LeadFormField_HasLocationAnswer)(nil), } - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[7].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[7].OneofWrappers = []any{ (*LeadFormCustomQuestionField_SingleChoiceAnswers)(nil), (*LeadFormCustomQuestionField_HasLocationAnswer)(nil), } - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[9].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[9].OneofWrappers = []any{ (*LeadFormDeliveryMethod_Webhook)(nil), } - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[10].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[12].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[12].OneofWrappers = []any{ (*PromotionAsset_PercentOff)(nil), (*PromotionAsset_MoneyAmountOff)(nil), (*PromotionAsset_PromotionCode)(nil), @@ -5291,24 +5291,24 @@ func file_google_ads_googleads_v21_common_asset_types_proto_init() { (*PromotionAsset_PromotionBarcodeInfo)(nil), (*PromotionAsset_PromotionQrCodeInfo)(nil), } - file_google_ads_googleads_v21_common_asset_types_proto_msgTypes[37].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_asset_types_proto_msgTypes[37].OneofWrappers = []any{ (*BusinessMessageAsset_WhatsappInfo)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_types_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_types_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_types_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_types_proto_rawDesc)), NumEnums: 0, NumMessages: 42, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_asset_types_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_asset_types_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_asset_types_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_asset_types_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_asset_types_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_asset_types_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_asset_types_proto = out.File - file_google_ads_googleads_v21_common_asset_types_proto_goTypes = nil - file_google_ads_googleads_v21_common_asset_types_proto_depIdxs = nil + File_google_ads_googleads_v22_common_asset_types_proto = out.File + file_google_ads_googleads_v22_common_asset_types_proto_goTypes = nil + file_google_ads_googleads_v22_common_asset_types_proto_depIdxs = nil } diff --git a/common/asset_usage.pb.go b/common/asset_usage.pb.go index 542efdb3..5dc95ce8 100644 --- a/common/asset_usage.pb.go +++ b/common/asset_usage.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/asset_usage.proto +// source: google/ads/googleads/v22/common/asset_usage.proto package common @@ -42,14 +42,14 @@ 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.v21.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.v22.enums.ServedAssetFieldTypeEnum_ServedAssetFieldType" json:"served_asset_field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetUsage) Reset() { *x = AssetUsage{} - mi := &file_google_ads_googleads_v21_common_asset_usage_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_usage_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *AssetUsage) String() string { func (*AssetUsage) ProtoMessage() {} func (x *AssetUsage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_asset_usage_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_asset_usage_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *AssetUsage) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetUsage.ProtoReflect.Descriptor instead. func (*AssetUsage) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_asset_usage_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_asset_usage_proto_rawDescGZIP(), []int{0} } func (x *AssetUsage) GetAsset() string { @@ -91,16 +91,16 @@ func (x *AssetUsage) GetServedAssetFieldType() enums.ServedAssetFieldTypeEnum_Se return enums.ServedAssetFieldTypeEnum_ServedAssetFieldType(0) } -var File_google_ads_googleads_v21_common_asset_usage_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_asset_usage_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_asset_usage_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -109,48 +109,48 @@ var file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_asset_usage_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_asset_usage_proto_rawDescData []byte + file_google_ads_googleads_v22_common_asset_usage_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_asset_usage_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_asset_usage_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_asset_usage_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_asset_usage_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc))) +func file_google_ads_googleads_v22_common_asset_usage_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_asset_usage_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_asset_usage_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_usage_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_usage_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_asset_usage_proto_rawDescData + return file_google_ads_googleads_v22_common_asset_usage_proto_rawDescData } -var file_google_ads_googleads_v21_common_asset_usage_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_asset_usage_proto_goTypes = []any{ - (*AssetUsage)(nil), // 0: google.ads.googleads.v21.common.AssetUsage - (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 1: google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType +var file_google_ads_googleads_v22_common_asset_usage_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_asset_usage_proto_goTypes = []any{ + (*AssetUsage)(nil), // 0: google.ads.googleads.v22.common.AssetUsage + (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 1: google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType } -var file_google_ads_googleads_v21_common_asset_usage_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.AssetUsage.served_asset_field_type:type_name -> google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType +var file_google_ads_googleads_v22_common_asset_usage_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.AssetUsage.served_asset_field_type:type_name -> google.ads.googleads.v22.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 @@ -158,26 +158,26 @@ var file_google_ads_googleads_v21_common_asset_usage_proto_depIdxs = []int32{ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_asset_usage_proto_init() } -func file_google_ads_googleads_v21_common_asset_usage_proto_init() { - if File_google_ads_googleads_v21_common_asset_usage_proto != nil { +func init() { file_google_ads_googleads_v22_common_asset_usage_proto_init() } +func file_google_ads_googleads_v22_common_asset_usage_proto_init() { + if File_google_ads_googleads_v22_common_asset_usage_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc), len(file_google_ads_googleads_v21_common_asset_usage_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_asset_usage_proto_rawDesc), len(file_google_ads_googleads_v22_common_asset_usage_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_asset_usage_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_asset_usage_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_asset_usage_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_asset_usage_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_asset_usage_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_asset_usage_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_asset_usage_proto = out.File - file_google_ads_googleads_v21_common_asset_usage_proto_goTypes = nil - file_google_ads_googleads_v21_common_asset_usage_proto_depIdxs = nil + File_google_ads_googleads_v22_common_asset_usage_proto = out.File + file_google_ads_googleads_v22_common_asset_usage_proto_goTypes = nil + file_google_ads_googleads_v22_common_asset_usage_proto_depIdxs = nil } diff --git a/common/audience_insights_attribute.pb.go b/common/audience_insights_attribute.pb.go index d40a01fd..04fab613 100644 --- a/common/audience_insights_attribute.pb.go +++ b/common/audience_insights_attribute.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/audience_insights_attribute.proto +// source: google/ads/googleads/v22/common/audience_insights_attribute.proto package common @@ -42,7 +42,7 @@ const ( type AudienceInsightsAttributeMetadata struct { state protoimpl.MessageState `protogen:"open.v1"` // The type of the attribute. - Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` + Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v22.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. @@ -83,7 +83,7 @@ type AudienceInsightsAttributeMetadata struct { func (x *AudienceInsightsAttributeMetadata) Reset() { *x = AudienceInsightsAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *AudienceInsightsAttributeMetadata) String() string { func (*AudienceInsightsAttributeMetadata) ProtoMessage() {} func (x *AudienceInsightsAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *AudienceInsightsAttributeMetadata) ProtoReflect() protoreflect.Message // Deprecated: Use AudienceInsightsAttributeMetadata.ProtoReflect.Descriptor instead. func (*AudienceInsightsAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{0} } func (x *AudienceInsightsAttributeMetadata) GetDimension() enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension { @@ -319,7 +319,7 @@ type AudienceInsightsAttribute struct { func (x *AudienceInsightsAttribute) Reset() { *x = AudienceInsightsAttribute{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *AudienceInsightsAttribute) String() string { func (*AudienceInsightsAttribute) ProtoMessage() {} func (x *AudienceInsightsAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *AudienceInsightsAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsAttribute.ProtoReflect.Descriptor instead. func (*AudienceInsightsAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{1} } func (x *AudienceInsightsAttribute) GetAttribute() isAudienceInsightsAttribute_Attribute { @@ -568,93 +568,6 @@ func (*AudienceInsightsAttribute_Device) isAudienceInsightsAttribute_Attribute() func (*AudienceInsightsAttribute_UserList) isAudienceInsightsAttribute_Attribute() {} -// An entity or category representing a topic that defines an audience. -type AudienceInsightsTopic struct { - state protoimpl.MessageState `protogen:"open.v1"` - // An entity or category attribute. - // - // Types that are valid to be assigned to Topic: - // - // *AudienceInsightsTopic_Entity - // *AudienceInsightsTopic_Category - Topic isAudienceInsightsTopic_Topic `protobuf_oneof:"topic"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *AudienceInsightsTopic) Reset() { - *x = AudienceInsightsTopic{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[2] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *AudienceInsightsTopic) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*AudienceInsightsTopic) ProtoMessage() {} - -func (x *AudienceInsightsTopic) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[2] - if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use AudienceInsightsTopic.ProtoReflect.Descriptor instead. -func (*AudienceInsightsTopic) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{2} -} - -func (x *AudienceInsightsTopic) GetTopic() isAudienceInsightsTopic_Topic { - if x != nil { - return x.Topic - } - return nil -} - -func (x *AudienceInsightsTopic) GetEntity() *AudienceInsightsEntity { - if x != nil { - if x, ok := x.Topic.(*AudienceInsightsTopic_Entity); ok { - return x.Entity - } - } - return nil -} - -func (x *AudienceInsightsTopic) GetCategory() *AudienceInsightsCategory { - if x != nil { - if x, ok := x.Topic.(*AudienceInsightsTopic_Category); ok { - return x.Category - } - } - return nil -} - -type isAudienceInsightsTopic_Topic interface { - isAudienceInsightsTopic_Topic() -} - -type AudienceInsightsTopic_Entity struct { - // A Knowledge Graph entity - Entity *AudienceInsightsEntity `protobuf:"bytes,1,opt,name=entity,proto3,oneof"` -} - -type AudienceInsightsTopic_Category struct { - // A Product & Service category - Category *AudienceInsightsCategory `protobuf:"bytes,2,opt,name=category,proto3,oneof"` -} - -func (*AudienceInsightsTopic_Entity) isAudienceInsightsTopic_Topic() {} - -func (*AudienceInsightsTopic_Category) isAudienceInsightsTopic_Topic() {} - // A Knowledge Graph entity, represented by its machine id. type AudienceInsightsEntity struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -666,7 +579,7 @@ type AudienceInsightsEntity struct { func (x *AudienceInsightsEntity) Reset() { *x = AudienceInsightsEntity{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -678,7 +591,7 @@ func (x *AudienceInsightsEntity) String() string { func (*AudienceInsightsEntity) ProtoMessage() {} func (x *AudienceInsightsEntity) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -691,7 +604,7 @@ func (x *AudienceInsightsEntity) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsEntity.ProtoReflect.Descriptor instead. func (*AudienceInsightsEntity) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{2} } func (x *AudienceInsightsEntity) GetKnowledgeGraphMachineId() string { @@ -712,7 +625,7 @@ type AudienceInsightsCategory struct { func (x *AudienceInsightsCategory) Reset() { *x = AudienceInsightsCategory{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -724,7 +637,7 @@ func (x *AudienceInsightsCategory) String() string { func (*AudienceInsightsCategory) ProtoMessage() {} func (x *AudienceInsightsCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -737,7 +650,7 @@ func (x *AudienceInsightsCategory) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsCategory.ProtoReflect.Descriptor instead. func (*AudienceInsightsCategory) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{3} } func (x *AudienceInsightsCategory) GetCategoryId() string { @@ -758,7 +671,7 @@ type AudienceInsightsLineup struct { func (x *AudienceInsightsLineup) Reset() { *x = AudienceInsightsLineup{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -770,7 +683,7 @@ func (x *AudienceInsightsLineup) String() string { func (*AudienceInsightsLineup) ProtoMessage() {} func (x *AudienceInsightsLineup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -783,7 +696,7 @@ func (x *AudienceInsightsLineup) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsLineup.ProtoReflect.Descriptor instead. func (*AudienceInsightsLineup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{4} } func (x *AudienceInsightsLineup) GetLineupId() string { @@ -804,7 +717,7 @@ type YouTubeChannelAttributeMetadata struct { func (x *YouTubeChannelAttributeMetadata) Reset() { *x = YouTubeChannelAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -816,7 +729,7 @@ func (x *YouTubeChannelAttributeMetadata) String() string { func (*YouTubeChannelAttributeMetadata) ProtoMessage() {} func (x *YouTubeChannelAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -829,7 +742,7 @@ func (x *YouTubeChannelAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeChannelAttributeMetadata.ProtoReflect.Descriptor instead. func (*YouTubeChannelAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{5} } func (x *YouTubeChannelAttributeMetadata) GetSubscriberCount() int64 { @@ -852,13 +765,17 @@ type YouTubeVideoAttributeMetadata struct { LikesCount int64 `protobuf:"varint,4,opt,name=likes_count,json=likesCount,proto3" json:"likes_count,omitempty"` // The total number of comments. CommentsCount int64 `protobuf:"varint,5,opt,name=comments_count,json=commentsCount,proto3" json:"comments_count,omitempty"` + // The properties of this video (such as shorts, live stream). + VideoProperties []enums.YouTubeVideoPropertyEnum_YouTubeVideoProperty `protobuf:"varint,6,rep,packed,name=video_properties,json=videoProperties,proto3,enum=google.ads.googleads.v22.enums.YouTubeVideoPropertyEnum_YouTubeVideoProperty" json:"video_properties,omitempty"` + // The date that the video was created. Formatted as "yyyy-mm-dd". + PublishDate string `protobuf:"bytes,7,opt,name=publish_date,json=publishDate,proto3" json:"publish_date,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *YouTubeVideoAttributeMetadata) Reset() { *x = YouTubeVideoAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -870,7 +787,7 @@ func (x *YouTubeVideoAttributeMetadata) String() string { func (*YouTubeVideoAttributeMetadata) ProtoMessage() {} func (x *YouTubeVideoAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -883,7 +800,7 @@ func (x *YouTubeVideoAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeVideoAttributeMetadata.ProtoReflect.Descriptor instead. func (*YouTubeVideoAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{6} } func (x *YouTubeVideoAttributeMetadata) GetThumbnailUrl() string { @@ -921,6 +838,20 @@ func (x *YouTubeVideoAttributeMetadata) GetCommentsCount() int64 { return 0 } +func (x *YouTubeVideoAttributeMetadata) GetVideoProperties() []enums.YouTubeVideoPropertyEnum_YouTubeVideoProperty { + if x != nil { + return x.VideoProperties + } + return nil +} + +func (x *YouTubeVideoAttributeMetadata) GetPublishDate() string { + if x != nil { + return x.PublishDate + } + return "" +} + // Metadata associated with a Lineup attribute. type LineupAttributeMetadata struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -940,7 +871,7 @@ type LineupAttributeMetadata struct { func (x *LineupAttributeMetadata) Reset() { *x = LineupAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -952,7 +883,7 @@ func (x *LineupAttributeMetadata) String() string { func (*LineupAttributeMetadata) ProtoMessage() {} func (x *LineupAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -965,7 +896,7 @@ func (x *LineupAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use LineupAttributeMetadata.ProtoReflect.Descriptor instead. func (*LineupAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{7} } func (x *LineupAttributeMetadata) GetInventoryCountry() *LocationInfo { @@ -1015,7 +946,7 @@ type LocationAttributeMetadata struct { func (x *LocationAttributeMetadata) Reset() { *x = LocationAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1027,7 +958,7 @@ func (x *LocationAttributeMetadata) String() string { func (*LocationAttributeMetadata) ProtoMessage() {} func (x *LocationAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1040,7 +971,7 @@ func (x *LocationAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationAttributeMetadata.ProtoReflect.Descriptor instead. func (*LocationAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{8} } func (x *LocationAttributeMetadata) GetCountryLocation() *LocationInfo { @@ -1062,7 +993,7 @@ type UserInterestAttributeMetadata struct { func (x *UserInterestAttributeMetadata) Reset() { *x = UserInterestAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1074,7 +1005,7 @@ func (x *UserInterestAttributeMetadata) String() string { func (*UserInterestAttributeMetadata) ProtoMessage() {} func (x *UserInterestAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1087,7 +1018,7 @@ func (x *UserInterestAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterestAttributeMetadata.ProtoReflect.Descriptor instead. func (*UserInterestAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{9} } func (x *UserInterestAttributeMetadata) GetUserInterestDescription() string { @@ -1101,7 +1032,7 @@ func (x *UserInterestAttributeMetadata) GetUserInterestDescription() string { type KnowledgeGraphAttributeMetadata struct { state protoimpl.MessageState `protogen:"open.v1"` // The capabilities of the entity used in [ContentCreatorInsightsService][]. - EntityCapabilities []enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities `protobuf:"varint,1,rep,packed,name=entity_capabilities,json=entityCapabilities,proto3,enum=google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities" json:"entity_capabilities,omitempty"` + EntityCapabilities []enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities `protobuf:"varint,1,rep,packed,name=entity_capabilities,json=entityCapabilities,proto3,enum=google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities" json:"entity_capabilities,omitempty"` // A list of CATEGORY attributes related to this entity. RelatedCategories []*AudienceInsightsAttributeMetadata `protobuf:"bytes,2,rep,name=related_categories,json=relatedCategories,proto3" json:"related_categories,omitempty"` unknownFields protoimpl.UnknownFields @@ -1110,7 +1041,7 @@ type KnowledgeGraphAttributeMetadata struct { func (x *KnowledgeGraphAttributeMetadata) Reset() { *x = KnowledgeGraphAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1122,7 +1053,7 @@ func (x *KnowledgeGraphAttributeMetadata) String() string { func (*KnowledgeGraphAttributeMetadata) ProtoMessage() {} func (x *KnowledgeGraphAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1135,7 +1066,7 @@ func (x *KnowledgeGraphAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use KnowledgeGraphAttributeMetadata.ProtoReflect.Descriptor instead. func (*KnowledgeGraphAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{10} } func (x *KnowledgeGraphAttributeMetadata) GetEntityCapabilities() []enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities { @@ -1156,14 +1087,14 @@ func (x *KnowledgeGraphAttributeMetadata) GetRelatedCategories() []*AudienceInsi type UserListAttributeMetadata struct { state protoimpl.MessageState `protogen:"open.v1"` // The user list type. - UserListType enums.UserListTypeEnum_UserListType `protobuf:"varint,1,opt,name=user_list_type,json=userListType,proto3,enum=google.ads.googleads.v21.enums.UserListTypeEnum_UserListType" json:"user_list_type,omitempty"` + UserListType enums.UserListTypeEnum_UserListType `protobuf:"varint,1,opt,name=user_list_type,json=userListType,proto3,enum=google.ads.googleads.v22.enums.UserListTypeEnum_UserListType" json:"user_list_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserListAttributeMetadata) Reset() { *x = UserListAttributeMetadata{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1175,7 +1106,7 @@ func (x *UserListAttributeMetadata) String() string { func (*UserListAttributeMetadata) ProtoMessage() {} func (x *UserListAttributeMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1188,7 +1119,7 @@ func (x *UserListAttributeMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListAttributeMetadata.ProtoReflect.Descriptor instead. func (*UserListAttributeMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{11} } func (x *UserListAttributeMetadata) GetUserListType() enums.UserListTypeEnum_UserListType { @@ -1210,7 +1141,7 @@ type AudienceInsightsAttributeMetadataGroup struct { func (x *AudienceInsightsAttributeMetadataGroup) Reset() { *x = AudienceInsightsAttributeMetadataGroup{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1222,7 +1153,7 @@ func (x *AudienceInsightsAttributeMetadataGroup) String() string { func (*AudienceInsightsAttributeMetadataGroup) ProtoMessage() {} func (x *AudienceInsightsAttributeMetadataGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1235,7 +1166,7 @@ func (x *AudienceInsightsAttributeMetadataGroup) ProtoReflect() protoreflect.Mes // Deprecated: Use AudienceInsightsAttributeMetadataGroup.ProtoReflect.Descriptor instead. func (*AudienceInsightsAttributeMetadataGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{12} } func (x *AudienceInsightsAttributeMetadataGroup) GetAttributes() []*AudienceInsightsAttributeMetadata { @@ -1260,7 +1191,7 @@ type LineupAttributeMetadata_SampleChannel struct { func (x *LineupAttributeMetadata_SampleChannel) Reset() { *x = LineupAttributeMetadata_SampleChannel{} - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1272,7 +1203,7 @@ func (x *LineupAttributeMetadata_SampleChannel) String() string { func (*LineupAttributeMetadata_SampleChannel) ProtoMessage() {} func (x *LineupAttributeMetadata_SampleChannel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1285,7 +1216,7 @@ func (x *LineupAttributeMetadata_SampleChannel) ProtoReflect() protoreflect.Mess // Deprecated: Use LineupAttributeMetadata_SampleChannel.ProtoReflect.Descriptor instead. func (*LineupAttributeMetadata_SampleChannel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP(), []int{8, 0} + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP(), []int{7, 0} } func (x *LineupAttributeMetadata_SampleChannel) GetYoutubeChannel() *YouTubeChannelInfo { @@ -1309,443 +1240,443 @@ func (x *LineupAttributeMetadata_SampleChannel) GetYoutubeChannelMetadata() *You return nil } -var File_google_ads_googleads_v21_common_audience_insights_attribute_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_audience_insights_attribute_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 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, 0x32, 0x31, 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, 0x22, - 0xdf, 0x0a, 0x0a, 0x21, 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, 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, + 0x76, 0x32, 0x32, 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, 0x3b, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x79, + 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x70, 0x72, 0x6f, + 0x70, 0x65, 0x72, 0x74, 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, 0x22, 0xdf, 0x0a, 0x0a, + 0x21, 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, 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, 0x32, 0x32, + 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, 0x58, 0x0a, 0x09, 0x61, 0x74, 0x74, + 0x72, 0x69, 0x62, 0x75, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, + 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x36, 0x0a, 0x17, 0x70, 0x6f, 0x74, + 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, + 0x65, 0x61, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x70, 0x6f, 0x74, 0x65, + 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, 0x65, 0x61, 0x63, + 0x68, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x5f, + 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, 0x73, 0x75, 0x62, + 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x21, 0x0a, 0x0c, + 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x0d, 0x20, 0x01, + 0x28, 0x01, 0x52, 0x0b, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, + 0x7c, 0x0a, 0x18, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, + 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, + 0x6d, 0x6f, 0x6e, 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, 0x64, 0x61, 0x74, 0x61, 0x12, 0x76, 0x0a, + 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x6d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0a, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, + 0x14, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4d, 0x65, 0x74, + 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x76, 0x0a, 0x19, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, + 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x18, 0x0e, 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, 0x32, 0x31, 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, 0x58, 0x0a, 0x09, - 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 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, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, - 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, - 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, - 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x36, 0x0a, 0x17, - 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, - 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x70, - 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, - 0x65, 0x61, 0x63, 0x68, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, - 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0f, - 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, - 0x21, 0x0a, 0x0c, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, - 0x0d, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0b, 0x76, 0x69, 0x65, 0x77, 0x65, 0x72, 0x53, 0x68, 0x61, - 0x72, 0x65, 0x12, 0x7c, 0x0a, 0x18, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, - 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, - 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x64, 0x61, 0x74, 0x61, - 0x12, 0x76, 0x0a, 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, - 0x6f, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0a, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, - 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x48, 0x00, 0x52, 0x14, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, - 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x76, 0x0a, 0x19, 0x6c, 0x69, 0x6e, 0x65, - 0x75, 0x70, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, - 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0e, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x17, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, - 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, - 0x12, 0x7c, 0x0a, 0x1b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, - 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x89, - 0x01, 0x0a, 0x20, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, - 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x1d, 0x75, 0x73, 0x65, - 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, - 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x8f, 0x01, 0x0a, 0x22, 0x6b, - 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x61, - 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x18, 0x0c, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, - 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x1f, 0x6b, 0x6e, 0x6f, - 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, - 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x7d, 0x0a, 0x1c, - 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0f, 0x20, 0x01, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x17, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x7c, 0x0a, + 0x1b, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x74, 0x74, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x14, 0x0a, 0x12, 0x64, - 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, - 0x61, 0x22, 0xe9, 0x08, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x52, 0x19, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x89, 0x01, 0x0a, 0x20, + 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x61, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x51, 0x0a, 0x06, 0x65, - 0x6e, 0x74, 0x69, 0x74, 0x79, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x57, - 0x0a, 0x08, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x06, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 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, 0x51, 0x0a, 0x06, 0x6c, 0x69, 0x6e, 0x65, 0x75, - 0x70, 0x18, 0x0d, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, - 0x48, 0x00, 0x52, 0x06, 0x6c, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x1d, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, + 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x8f, 0x01, 0x0a, 0x22, 0x6b, 0x6e, 0x6f, 0x77, + 0x6c, 0x65, 0x64, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x61, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, 0x0c, + 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, + 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x1f, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, + 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x7d, 0x0a, 0x1c, 0x75, 0x73, 0x65, + 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x48, 0x00, 0x52, 0x19, 0x75, + 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x14, 0x0a, 0x12, 0x64, 0x69, 0x6d, 0x65, + 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0xe9, + 0x08, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x12, 0x58, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, - 0x65, 0x6f, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x31, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x51, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, + 0x74, 0x79, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, - 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x79, - 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x45, 0x0a, 0x06, 0x64, - 0x65, 0x76, 0x69, 0x63, 0x65, 0x18, 0x0c, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, - 0x76, 0x69, 0x63, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, - 0x63, 0x65, 0x12, 0x4c, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, - 0x0e, 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, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, - 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, - 0x42, 0x0b, 0x0a, 0x09, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x22, 0xcc, 0x01, - 0x0a, 0x15, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, - 0x74, 0x73, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x12, 0x51, 0x0a, 0x06, 0x65, 0x6e, 0x74, 0x69, 0x74, - 0x79, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x57, 0x0a, 0x08, 0x63, 0x61, - 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x57, 0x0a, 0x08, 0x63, + 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x18, 0x06, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, - 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x12, 0x40, 0x0a, 0x1a, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, - 0x64, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, - 0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, - 0x17, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x4d, - 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x18, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x43, 0x61, 0x74, 0x65, - 0x67, 0x6f, 0x72, 0x79, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, - 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, - 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x16, 0x41, 0x75, - 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, 0x69, - 0x6e, 0x65, 0x75, 0x70, 0x12, 0x20, 0x0a, 0x09, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x6c, 0x69, - 0x6e, 0x65, 0x75, 0x70, 0x49, 0x64, 0x22, 0x4c, 0x0a, 0x1f, 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, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, - 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x43, - 0x6f, 0x75, 0x6e, 0x74, 0x22, 0xca, 0x01, 0x0a, 0x1d, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, - 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, - 0x61, 0x69, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74, - 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x76, - 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, - 0x76, 0x69, 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x69, 0x65, 0x77, - 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x76, - 0x69, 0x65, 0x77, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, - 0x65, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, - 0x6c, 0x69, 0x6b, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x6f, - 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, - 0x28, 0x03, 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, - 0x74, 0x22, 0x8d, 0x06, 0x0a, 0x17, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, 0x74, 0x74, 0x72, - 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 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, + 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x48, 0x00, 0x52, 0x08, 0x63, 0x61, 0x74, 0x65, + 0x67, 0x6f, 0x72, 0x79, 0x12, 0x51, 0x0a, 0x06, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x18, 0x0d, + 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x48, 0x00, 0x52, + 0x06, 0x6c, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x12, 0x58, + 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x18, + 0x0b, 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, 0x32, 0x32, + 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, + 0x69, 0x64, 0x65, 0x6f, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, + 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x12, 0x45, 0x0a, 0x06, 0x64, 0x65, 0x76, 0x69, + 0x63, 0x65, 0x18, 0x0c, 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, 0x32, 0x31, 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, 0x76, 0x65, - 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x16, 0x6d, - 0x65, 0x64, 0x69, 0x61, 0x6e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x49, 0x6e, 0x76, 0x65, - 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x19, 0x63, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, - 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x16, 0x63, - 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x6f, 0x77, 0x65, 0x72, - 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x19, 0x63, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, - 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x16, 0x63, - 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x70, 0x70, 0x65, 0x72, - 0x42, 0x6f, 0x75, 0x6e, 0x64, 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x0f, 0x73, 0x61, 0x6d, 0x70, - 0x6c, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x05, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x2e, 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, 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x0e, 0x73, 0x61, 0x6d, 0x70, 0x6c, - 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x1a, 0x8c, 0x02, 0x0a, 0x0d, 0x53, 0x61, - 0x6d, 0x70, 0x6c, 0x65, 0x43, 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, 0x32, 0x31, 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, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x7a, 0x0a, 0x18, - 0x79, 0x6f, 0x75, 0x74, 0x75, 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, 0x40, - 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 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, 0x61, 0x64, 0x61, 0x74, 0x61, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6d, 0x65, 0x64, - 0x69, 0x61, 0x6e, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x5f, 0x69, 0x6e, 0x76, 0x65, - 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, - 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, 0x6f, - 0x75, 0x6e, 0x64, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, - 0x64, 0x22, 0x75, 0x0a, 0x19, 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, 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, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, + 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x06, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x12, + 0x4c, 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0e, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, + 0x6f, 0x48, 0x00, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x42, 0x0b, 0x0a, + 0x09, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x22, 0x5a, 0x0a, 0x16, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6e, + 0x74, 0x69, 0x74, 0x79, 0x12, 0x40, 0x0a, 0x1a, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, + 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x6d, 0x61, 0x63, 0x68, 0x69, 0x6e, 0x65, 0x5f, + 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x17, 0x6b, + 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x4d, 0x61, 0x63, + 0x68, 0x69, 0x6e, 0x65, 0x49, 0x64, 0x22, 0x40, 0x0a, 0x18, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, + 0x72, 0x79, 0x12, 0x24, 0x0a, 0x0b, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x5f, 0x69, + 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x61, + 0x74, 0x65, 0x67, 0x6f, 0x72, 0x79, 0x49, 0x64, 0x22, 0x3a, 0x0a, 0x16, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x12, 0x20, 0x0a, 0x09, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x6c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x49, 0x64, 0x22, 0x4c, 0x0a, 0x1f, 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, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, + 0x72, 0x69, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x43, 0x6f, 0x75, + 0x6e, 0x74, 0x22, 0xe7, 0x02, 0x0a, 0x1d, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, + 0x64, 0x65, 0x6f, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, + 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74, 0x68, 0x75, + 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x1b, 0x0a, 0x09, 0x76, 0x69, 0x64, + 0x65, 0x6f, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x76, 0x69, + 0x64, 0x65, 0x6f, 0x55, 0x72, 0x6c, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x69, 0x65, 0x77, 0x73, 0x5f, + 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x76, 0x69, 0x65, + 0x77, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x69, 0x6b, 0x65, 0x73, + 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x6c, 0x69, + 0x6b, 0x65, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x63, 0x6f, 0x6d, 0x6d, + 0x65, 0x6e, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, + 0x52, 0x0d, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, + 0x78, 0x0a, 0x10, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x70, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, + 0x69, 0x65, 0x73, 0x18, 0x06, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x45, + 0x6e, 0x75, 0x6d, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, + 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x79, 0x52, 0x0f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x50, + 0x72, 0x6f, 0x70, 0x65, 0x72, 0x74, 0x69, 0x65, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x75, 0x62, + 0x6c, 0x69, 0x73, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x44, 0x61, 0x74, 0x65, 0x22, 0x8d, 0x06, 0x0a, + 0x17, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 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, 0x32, 0x32, 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, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x16, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x6e, + 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, + 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x19, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, + 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x16, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, + 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x4c, 0x6f, 0x77, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, + 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x19, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, + 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, + 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x16, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, + 0x6c, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x55, 0x70, 0x70, 0x65, 0x72, 0x42, 0x6f, 0x75, 0x6e, 0x64, + 0x88, 0x01, 0x01, 0x12, 0x6f, 0x0a, 0x0f, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x5f, 0x63, 0x68, + 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x05, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 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, + 0x6e, 0x6e, 0x65, 0x6c, 0x52, 0x0e, 0x73, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x43, 0x68, 0x61, 0x6e, + 0x6e, 0x65, 0x6c, 0x73, 0x1a, 0x8c, 0x02, 0x0a, 0x0d, 0x53, 0x61, 0x6d, 0x70, 0x6c, 0x65, 0x43, + 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, 0x32, 0x32, 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, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x7a, 0x0a, 0x18, 0x79, 0x6f, 0x75, 0x74, 0x75, + 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, 0x40, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x6e, 0x5f, 0x6d, + 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, + 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, + 0x6e, 0x74, 0x5f, 0x6c, 0x6f, 0x77, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x42, 0x1c, + 0x0a, 0x1a, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x5f, 0x75, 0x70, 0x70, 0x65, 0x72, 0x5f, 0x62, 0x6f, 0x75, 0x6e, 0x64, 0x22, 0x75, 0x0a, 0x19, + 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, 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, 0x32, 0x32, 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, 0x5b, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x12, 0x3a, 0x0a, 0x19, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, + 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, + 0x65, 0x72, 0x65, 0x73, 0x74, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x22, 0xbd, 0x02, 0x0a, 0x1f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, + 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, + 0x64, 0x61, 0x74, 0x61, 0x12, 0xa6, 0x01, 0x0a, 0x13, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, + 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x18, 0x01, 0x20, 0x03, + 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4b, 0x6e, 0x6f, 0x77, + 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, + 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x45, 0x6e, 0x75, 0x6d, + 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, + 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x61, 0x70, + 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x52, 0x12, 0x65, 0x6e, 0x74, 0x69, 0x74, + 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x71, 0x0a, + 0x12, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, + 0x69, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x72, + 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x43, 0x61, 0x74, 0x65, 0x67, 0x6f, 0x72, 0x69, 0x65, 0x73, + 0x22, 0x80, 0x01, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x74, 0x74, + 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x63, + 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 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, 0x32, + 0x32, 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, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, + 0x79, 0x70, 0x65, 0x22, 0x8c, 0x01, 0x0a, 0x26, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x62, + 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 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, 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, 0x32, 0x31, 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, 0x5b, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x3a, 0x0a, 0x19, 0x75, 0x73, 0x65, - 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, - 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x75, 0x73, - 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xbd, 0x02, 0x0a, 0x1f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, - 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, - 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0xa6, 0x01, 0x0a, 0x13, 0x65, 0x6e, - 0x74, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, - 0x73, 0x18, 0x01, 0x20, 0x03, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, - 0x73, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, - 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, - 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4b, 0x6e, - 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, 0x6e, 0x74, 0x69, - 0x74, 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, 0x52, 0x12, - 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, - 0x65, 0x73, 0x12, 0x71, 0x0a, 0x12, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x61, - 0x74, 0x65, 0x67, 0x6f, 0x72, 0x69, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 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, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x43, 0x61, 0x74, 0x65, 0x67, - 0x6f, 0x72, 0x69, 0x65, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x19, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, - 0x73, 0x74, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, - 0x61, 0x74, 0x61, 0x12, 0x63, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, - 0x5f, 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, 0x32, 0x31, 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, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, - 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x8c, 0x01, 0x0a, 0x26, 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, 0x47, 0x72, - 0x6f, 0x75, 0x70, 0x12, 0x62, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, - 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, - 0x1e, 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, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, - 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, - 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1e, 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, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, + 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, + 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, + 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescData []byte + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDesc), len(file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDesc))) +func file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDesc), len(file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 15) -var file_google_ads_googleads_v21_common_audience_insights_attribute_proto_goTypes = []any{ - (*AudienceInsightsAttributeMetadata)(nil), // 0: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - (*AudienceInsightsAttribute)(nil), // 1: google.ads.googleads.v21.common.AudienceInsightsAttribute - (*AudienceInsightsTopic)(nil), // 2: google.ads.googleads.v21.common.AudienceInsightsTopic - (*AudienceInsightsEntity)(nil), // 3: google.ads.googleads.v21.common.AudienceInsightsEntity - (*AudienceInsightsCategory)(nil), // 4: google.ads.googleads.v21.common.AudienceInsightsCategory - (*AudienceInsightsLineup)(nil), // 5: google.ads.googleads.v21.common.AudienceInsightsLineup - (*YouTubeChannelAttributeMetadata)(nil), // 6: google.ads.googleads.v21.common.YouTubeChannelAttributeMetadata - (*YouTubeVideoAttributeMetadata)(nil), // 7: google.ads.googleads.v21.common.YouTubeVideoAttributeMetadata - (*LineupAttributeMetadata)(nil), // 8: google.ads.googleads.v21.common.LineupAttributeMetadata - (*LocationAttributeMetadata)(nil), // 9: google.ads.googleads.v21.common.LocationAttributeMetadata - (*UserInterestAttributeMetadata)(nil), // 10: google.ads.googleads.v21.common.UserInterestAttributeMetadata - (*KnowledgeGraphAttributeMetadata)(nil), // 11: google.ads.googleads.v21.common.KnowledgeGraphAttributeMetadata - (*UserListAttributeMetadata)(nil), // 12: google.ads.googleads.v21.common.UserListAttributeMetadata - (*AudienceInsightsAttributeMetadataGroup)(nil), // 13: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataGroup - (*LineupAttributeMetadata_SampleChannel)(nil), // 14: google.ads.googleads.v21.common.LineupAttributeMetadata.SampleChannel - (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 15: google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - (*AgeRangeInfo)(nil), // 16: google.ads.googleads.v21.common.AgeRangeInfo - (*GenderInfo)(nil), // 17: google.ads.googleads.v21.common.GenderInfo - (*LocationInfo)(nil), // 18: google.ads.googleads.v21.common.LocationInfo - (*UserInterestInfo)(nil), // 19: google.ads.googleads.v21.common.UserInterestInfo - (*ParentalStatusInfo)(nil), // 20: google.ads.googleads.v21.common.ParentalStatusInfo - (*IncomeRangeInfo)(nil), // 21: google.ads.googleads.v21.common.IncomeRangeInfo - (*YouTubeChannelInfo)(nil), // 22: google.ads.googleads.v21.common.YouTubeChannelInfo - (*YouTubeVideoInfo)(nil), // 23: google.ads.googleads.v21.common.YouTubeVideoInfo - (*DeviceInfo)(nil), // 24: google.ads.googleads.v21.common.DeviceInfo - (*UserListInfo)(nil), // 25: google.ads.googleads.v21.common.UserListInfo - (enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities)(0), // 26: google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities - (enums.UserListTypeEnum_UserListType)(0), // 27: google.ads.googleads.v21.enums.UserListTypeEnum.UserListType -} -var file_google_ads_googleads_v21_common_audience_insights_attribute_proto_depIdxs = []int32{ - 15, // 0: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.dimension:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 1, // 1: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.attribute:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 6, // 2: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.youtube_channel_metadata:type_name -> google.ads.googleads.v21.common.YouTubeChannelAttributeMetadata - 7, // 3: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.youtube_video_metadata:type_name -> google.ads.googleads.v21.common.YouTubeVideoAttributeMetadata - 8, // 4: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.lineup_attribute_metadata:type_name -> google.ads.googleads.v21.common.LineupAttributeMetadata - 9, // 5: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.location_attribute_metadata:type_name -> google.ads.googleads.v21.common.LocationAttributeMetadata - 10, // 6: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.user_interest_attribute_metadata:type_name -> google.ads.googleads.v21.common.UserInterestAttributeMetadata - 11, // 7: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.knowledge_graph_attribute_metadata:type_name -> google.ads.googleads.v21.common.KnowledgeGraphAttributeMetadata - 12, // 8: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata.user_list_attribute_metadata:type_name -> google.ads.googleads.v21.common.UserListAttributeMetadata - 16, // 9: google.ads.googleads.v21.common.AudienceInsightsAttribute.age_range:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 17, // 10: google.ads.googleads.v21.common.AudienceInsightsAttribute.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 18, // 11: google.ads.googleads.v21.common.AudienceInsightsAttribute.location:type_name -> google.ads.googleads.v21.common.LocationInfo - 19, // 12: google.ads.googleads.v21.common.AudienceInsightsAttribute.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 3, // 13: google.ads.googleads.v21.common.AudienceInsightsAttribute.entity:type_name -> google.ads.googleads.v21.common.AudienceInsightsEntity - 4, // 14: google.ads.googleads.v21.common.AudienceInsightsAttribute.category:type_name -> google.ads.googleads.v21.common.AudienceInsightsCategory - 5, // 15: google.ads.googleads.v21.common.AudienceInsightsAttribute.lineup:type_name -> google.ads.googleads.v21.common.AudienceInsightsLineup - 20, // 16: google.ads.googleads.v21.common.AudienceInsightsAttribute.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusInfo - 21, // 17: google.ads.googleads.v21.common.AudienceInsightsAttribute.income_range:type_name -> google.ads.googleads.v21.common.IncomeRangeInfo - 22, // 18: google.ads.googleads.v21.common.AudienceInsightsAttribute.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 23, // 19: google.ads.googleads.v21.common.AudienceInsightsAttribute.youtube_video:type_name -> google.ads.googleads.v21.common.YouTubeVideoInfo - 24, // 20: google.ads.googleads.v21.common.AudienceInsightsAttribute.device:type_name -> google.ads.googleads.v21.common.DeviceInfo - 25, // 21: google.ads.googleads.v21.common.AudienceInsightsAttribute.user_list:type_name -> google.ads.googleads.v21.common.UserListInfo - 3, // 22: google.ads.googleads.v21.common.AudienceInsightsTopic.entity:type_name -> google.ads.googleads.v21.common.AudienceInsightsEntity - 4, // 23: google.ads.googleads.v21.common.AudienceInsightsTopic.category:type_name -> google.ads.googleads.v21.common.AudienceInsightsCategory - 18, // 24: google.ads.googleads.v21.common.LineupAttributeMetadata.inventory_country:type_name -> google.ads.googleads.v21.common.LocationInfo - 14, // 25: google.ads.googleads.v21.common.LineupAttributeMetadata.sample_channels:type_name -> google.ads.googleads.v21.common.LineupAttributeMetadata.SampleChannel - 18, // 26: google.ads.googleads.v21.common.LocationAttributeMetadata.country_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 26, // 27: google.ads.googleads.v21.common.KnowledgeGraphAttributeMetadata.entity_capabilities:type_name -> google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities - 0, // 28: google.ads.googleads.v21.common.KnowledgeGraphAttributeMetadata.related_categories:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 27, // 29: google.ads.googleads.v21.common.UserListAttributeMetadata.user_list_type:type_name -> google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - 0, // 30: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataGroup.attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 22, // 31: google.ads.googleads.v21.common.LineupAttributeMetadata.SampleChannel.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 6, // 32: google.ads.googleads.v21.common.LineupAttributeMetadata.SampleChannel.youtube_channel_metadata:type_name -> google.ads.googleads.v21.common.YouTubeChannelAttributeMetadata - 33, // [33:33] is the sub-list for method output_type - 33, // [33:33] is the sub-list for method input_type - 33, // [33:33] is the sub-list for extension type_name - 33, // [33:33] is the sub-list for extension extendee - 0, // [0:33] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_common_audience_insights_attribute_proto_init() } -func file_google_ads_googleads_v21_common_audience_insights_attribute_proto_init() { - if File_google_ads_googleads_v21_common_audience_insights_attribute_proto != nil { + return file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 14) +var file_google_ads_googleads_v22_common_audience_insights_attribute_proto_goTypes = []any{ + (*AudienceInsightsAttributeMetadata)(nil), // 0: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + (*AudienceInsightsAttribute)(nil), // 1: google.ads.googleads.v22.common.AudienceInsightsAttribute + (*AudienceInsightsEntity)(nil), // 2: google.ads.googleads.v22.common.AudienceInsightsEntity + (*AudienceInsightsCategory)(nil), // 3: google.ads.googleads.v22.common.AudienceInsightsCategory + (*AudienceInsightsLineup)(nil), // 4: google.ads.googleads.v22.common.AudienceInsightsLineup + (*YouTubeChannelAttributeMetadata)(nil), // 5: google.ads.googleads.v22.common.YouTubeChannelAttributeMetadata + (*YouTubeVideoAttributeMetadata)(nil), // 6: google.ads.googleads.v22.common.YouTubeVideoAttributeMetadata + (*LineupAttributeMetadata)(nil), // 7: google.ads.googleads.v22.common.LineupAttributeMetadata + (*LocationAttributeMetadata)(nil), // 8: google.ads.googleads.v22.common.LocationAttributeMetadata + (*UserInterestAttributeMetadata)(nil), // 9: google.ads.googleads.v22.common.UserInterestAttributeMetadata + (*KnowledgeGraphAttributeMetadata)(nil), // 10: google.ads.googleads.v22.common.KnowledgeGraphAttributeMetadata + (*UserListAttributeMetadata)(nil), // 11: google.ads.googleads.v22.common.UserListAttributeMetadata + (*AudienceInsightsAttributeMetadataGroup)(nil), // 12: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataGroup + (*LineupAttributeMetadata_SampleChannel)(nil), // 13: google.ads.googleads.v22.common.LineupAttributeMetadata.SampleChannel + (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 14: google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + (*AgeRangeInfo)(nil), // 15: google.ads.googleads.v22.common.AgeRangeInfo + (*GenderInfo)(nil), // 16: google.ads.googleads.v22.common.GenderInfo + (*LocationInfo)(nil), // 17: google.ads.googleads.v22.common.LocationInfo + (*UserInterestInfo)(nil), // 18: google.ads.googleads.v22.common.UserInterestInfo + (*ParentalStatusInfo)(nil), // 19: google.ads.googleads.v22.common.ParentalStatusInfo + (*IncomeRangeInfo)(nil), // 20: google.ads.googleads.v22.common.IncomeRangeInfo + (*YouTubeChannelInfo)(nil), // 21: google.ads.googleads.v22.common.YouTubeChannelInfo + (*YouTubeVideoInfo)(nil), // 22: google.ads.googleads.v22.common.YouTubeVideoInfo + (*DeviceInfo)(nil), // 23: google.ads.googleads.v22.common.DeviceInfo + (*UserListInfo)(nil), // 24: google.ads.googleads.v22.common.UserListInfo + (enums.YouTubeVideoPropertyEnum_YouTubeVideoProperty)(0), // 25: google.ads.googleads.v22.enums.YouTubeVideoPropertyEnum.YouTubeVideoProperty + (enums.InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities)(0), // 26: google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities + (enums.UserListTypeEnum_UserListType)(0), // 27: google.ads.googleads.v22.enums.UserListTypeEnum.UserListType +} +var file_google_ads_googleads_v22_common_audience_insights_attribute_proto_depIdxs = []int32{ + 14, // 0: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.dimension:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 1, // 1: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.attribute:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 5, // 2: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.youtube_channel_metadata:type_name -> google.ads.googleads.v22.common.YouTubeChannelAttributeMetadata + 6, // 3: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.youtube_video_metadata:type_name -> google.ads.googleads.v22.common.YouTubeVideoAttributeMetadata + 7, // 4: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.lineup_attribute_metadata:type_name -> google.ads.googleads.v22.common.LineupAttributeMetadata + 8, // 5: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.location_attribute_metadata:type_name -> google.ads.googleads.v22.common.LocationAttributeMetadata + 9, // 6: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.user_interest_attribute_metadata:type_name -> google.ads.googleads.v22.common.UserInterestAttributeMetadata + 10, // 7: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.knowledge_graph_attribute_metadata:type_name -> google.ads.googleads.v22.common.KnowledgeGraphAttributeMetadata + 11, // 8: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata.user_list_attribute_metadata:type_name -> google.ads.googleads.v22.common.UserListAttributeMetadata + 15, // 9: google.ads.googleads.v22.common.AudienceInsightsAttribute.age_range:type_name -> google.ads.googleads.v22.common.AgeRangeInfo + 16, // 10: google.ads.googleads.v22.common.AudienceInsightsAttribute.gender:type_name -> google.ads.googleads.v22.common.GenderInfo + 17, // 11: google.ads.googleads.v22.common.AudienceInsightsAttribute.location:type_name -> google.ads.googleads.v22.common.LocationInfo + 18, // 12: google.ads.googleads.v22.common.AudienceInsightsAttribute.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestInfo + 2, // 13: google.ads.googleads.v22.common.AudienceInsightsAttribute.entity:type_name -> google.ads.googleads.v22.common.AudienceInsightsEntity + 3, // 14: google.ads.googleads.v22.common.AudienceInsightsAttribute.category:type_name -> google.ads.googleads.v22.common.AudienceInsightsCategory + 4, // 15: google.ads.googleads.v22.common.AudienceInsightsAttribute.lineup:type_name -> google.ads.googleads.v22.common.AudienceInsightsLineup + 19, // 16: google.ads.googleads.v22.common.AudienceInsightsAttribute.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusInfo + 20, // 17: google.ads.googleads.v22.common.AudienceInsightsAttribute.income_range:type_name -> google.ads.googleads.v22.common.IncomeRangeInfo + 21, // 18: google.ads.googleads.v22.common.AudienceInsightsAttribute.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 22, // 19: google.ads.googleads.v22.common.AudienceInsightsAttribute.youtube_video:type_name -> google.ads.googleads.v22.common.YouTubeVideoInfo + 23, // 20: google.ads.googleads.v22.common.AudienceInsightsAttribute.device:type_name -> google.ads.googleads.v22.common.DeviceInfo + 24, // 21: google.ads.googleads.v22.common.AudienceInsightsAttribute.user_list:type_name -> google.ads.googleads.v22.common.UserListInfo + 25, // 22: google.ads.googleads.v22.common.YouTubeVideoAttributeMetadata.video_properties:type_name -> google.ads.googleads.v22.enums.YouTubeVideoPropertyEnum.YouTubeVideoProperty + 17, // 23: google.ads.googleads.v22.common.LineupAttributeMetadata.inventory_country:type_name -> google.ads.googleads.v22.common.LocationInfo + 13, // 24: google.ads.googleads.v22.common.LineupAttributeMetadata.sample_channels:type_name -> google.ads.googleads.v22.common.LineupAttributeMetadata.SampleChannel + 17, // 25: google.ads.googleads.v22.common.LocationAttributeMetadata.country_location:type_name -> google.ads.googleads.v22.common.LocationInfo + 26, // 26: google.ads.googleads.v22.common.KnowledgeGraphAttributeMetadata.entity_capabilities:type_name -> google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities + 0, // 27: google.ads.googleads.v22.common.KnowledgeGraphAttributeMetadata.related_categories:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 27, // 28: google.ads.googleads.v22.common.UserListAttributeMetadata.user_list_type:type_name -> google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + 0, // 29: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataGroup.attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 21, // 30: google.ads.googleads.v22.common.LineupAttributeMetadata.SampleChannel.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 5, // 31: google.ads.googleads.v22.common.LineupAttributeMetadata.SampleChannel.youtube_channel_metadata:type_name -> google.ads.googleads.v22.common.YouTubeChannelAttributeMetadata + 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 + 32, // [32:32] is the sub-list for extension extendee + 0, // [0:32] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_common_audience_insights_attribute_proto_init() } +func file_google_ads_googleads_v22_common_audience_insights_attribute_proto_init() { + if File_google_ads_googleads_v22_common_audience_insights_attribute_proto != nil { return } - file_google_ads_googleads_v21_common_criteria_proto_init() - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_criteria_proto_init() + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[0].OneofWrappers = []any{ (*AudienceInsightsAttributeMetadata_YoutubeChannelMetadata)(nil), (*AudienceInsightsAttributeMetadata_YoutubeVideoMetadata)(nil), (*AudienceInsightsAttributeMetadata_LineupAttributeMetadata)(nil), @@ -1754,7 +1685,7 @@ func file_google_ads_googleads_v21_common_audience_insights_attribute_proto_init (*AudienceInsightsAttributeMetadata_KnowledgeGraphAttributeMetadata)(nil), (*AudienceInsightsAttributeMetadata_UserListAttributeMetadata)(nil), } - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[1].OneofWrappers = []any{ (*AudienceInsightsAttribute_AgeRange)(nil), (*AudienceInsightsAttribute_Gender)(nil), (*AudienceInsightsAttribute_Location)(nil), @@ -1769,26 +1700,22 @@ func file_google_ads_googleads_v21_common_audience_insights_attribute_proto_init (*AudienceInsightsAttribute_Device)(nil), (*AudienceInsightsAttribute_UserList)(nil), } - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[2].OneofWrappers = []any{ - (*AudienceInsightsTopic_Entity)(nil), - (*AudienceInsightsTopic_Category)(nil), - } - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes[7].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDesc), len(file_google_ads_googleads_v21_common_audience_insights_attribute_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDesc), len(file_google_ads_googleads_v22_common_audience_insights_attribute_proto_rawDesc)), NumEnums: 0, - NumMessages: 15, + NumMessages: 14, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_audience_insights_attribute_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_audience_insights_attribute_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_audience_insights_attribute_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_audience_insights_attribute_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_audience_insights_attribute_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_audience_insights_attribute_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_audience_insights_attribute_proto = out.File - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_goTypes = nil - file_google_ads_googleads_v21_common_audience_insights_attribute_proto_depIdxs = nil + File_google_ads_googleads_v22_common_audience_insights_attribute_proto = out.File + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_goTypes = nil + file_google_ads_googleads_v22_common_audience_insights_attribute_proto_depIdxs = nil } diff --git a/common/audiences.pb.go b/common/audiences.pb.go index 42693f7b..d96caa64 100644 --- a/common/audiences.pb.go +++ b/common/audiences.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/audiences.proto +// source: google/ads/googleads/v22/common/audiences.proto package common @@ -56,7 +56,7 @@ type AudienceDimension struct { func (x *AudienceDimension) Reset() { *x = AudienceDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *AudienceDimension) String() string { func (*AudienceDimension) ProtoMessage() {} func (x *AudienceDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *AudienceDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceDimension.ProtoReflect.Descriptor instead. func (*AudienceDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{0} } func (x *AudienceDimension) GetDimension() isAudienceDimension_Dimension { @@ -187,7 +187,7 @@ type AudienceExclusionDimension struct { func (x *AudienceExclusionDimension) Reset() { *x = AudienceExclusionDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199,7 +199,7 @@ func (x *AudienceExclusionDimension) String() string { func (*AudienceExclusionDimension) ProtoMessage() {} func (x *AudienceExclusionDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -212,7 +212,7 @@ func (x *AudienceExclusionDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceExclusionDimension.ProtoReflect.Descriptor instead. func (*AudienceExclusionDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{1} } func (x *AudienceExclusionDimension) GetExclusions() []*ExclusionSegment { @@ -237,7 +237,7 @@ type ExclusionSegment struct { func (x *ExclusionSegment) Reset() { *x = ExclusionSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *ExclusionSegment) String() string { func (*ExclusionSegment) ProtoMessage() {} func (x *ExclusionSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *ExclusionSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use ExclusionSegment.ProtoReflect.Descriptor instead. func (*ExclusionSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{2} } func (x *ExclusionSegment) GetSegment() isExclusionSegment_Segment { @@ -305,7 +305,7 @@ type AgeDimension struct { func (x *AgeDimension) Reset() { *x = AgeDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -317,7 +317,7 @@ func (x *AgeDimension) String() string { func (*AgeDimension) ProtoMessage() {} func (x *AgeDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -330,7 +330,7 @@ func (x *AgeDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeDimension.ProtoReflect.Descriptor instead. func (*AgeDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{3} } func (x *AgeDimension) GetAgeRanges() []*AgeSegment { @@ -363,7 +363,7 @@ type AgeSegment struct { func (x *AgeSegment) Reset() { *x = AgeSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -375,7 +375,7 @@ func (x *AgeSegment) String() string { func (*AgeSegment) ProtoMessage() {} func (x *AgeSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -388,7 +388,7 @@ func (x *AgeSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeSegment.ProtoReflect.Descriptor instead. func (*AgeSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{4} } func (x *AgeSegment) GetMinAge() int32 { @@ -409,7 +409,7 @@ func (x *AgeSegment) GetMaxAge() int32 { type GenderDimension struct { state protoimpl.MessageState `protogen:"open.v1"` // Included gender demographic segments. - Genders []enums.GenderTypeEnum_GenderType `protobuf:"varint,1,rep,packed,name=genders,proto3,enum=google.ads.googleads.v21.enums.GenderTypeEnum_GenderType" json:"genders,omitempty"` + Genders []enums.GenderTypeEnum_GenderType `protobuf:"varint,1,rep,packed,name=genders,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -418,7 +418,7 @@ type GenderDimension struct { func (x *GenderDimension) Reset() { *x = GenderDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -430,7 +430,7 @@ func (x *GenderDimension) String() string { func (*GenderDimension) ProtoMessage() {} func (x *GenderDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -443,7 +443,7 @@ func (x *GenderDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use GenderDimension.ProtoReflect.Descriptor instead. func (*GenderDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{5} } func (x *GenderDimension) GetGenders() []enums.GenderTypeEnum_GenderType { @@ -464,7 +464,7 @@ func (x *GenderDimension) GetIncludeUndetermined() bool { type HouseholdIncomeDimension struct { state protoimpl.MessageState `protogen:"open.v1"` // Included household income demographic segments. - IncomeRanges []enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,rep,packed,name=income_ranges,json=incomeRanges,proto3,enum=google.ads.googleads.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -473,7 +473,7 @@ type HouseholdIncomeDimension struct { func (x *HouseholdIncomeDimension) Reset() { *x = HouseholdIncomeDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -485,7 +485,7 @@ func (x *HouseholdIncomeDimension) String() string { func (*HouseholdIncomeDimension) ProtoMessage() {} func (x *HouseholdIncomeDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -498,7 +498,7 @@ func (x *HouseholdIncomeDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use HouseholdIncomeDimension.ProtoReflect.Descriptor instead. func (*HouseholdIncomeDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{6} } func (x *HouseholdIncomeDimension) GetIncomeRanges() []enums.IncomeRangeTypeEnum_IncomeRangeType { @@ -519,7 +519,7 @@ func (x *HouseholdIncomeDimension) GetIncludeUndetermined() bool { type ParentalStatusDimension struct { state protoimpl.MessageState `protogen:"open.v1"` // Included parental status demographic segments. - ParentalStatuses []enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,rep,packed,name=parental_statuses,json=parentalStatuses,proto3,enum=google.ads.googleads.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -528,7 +528,7 @@ type ParentalStatusDimension struct { func (x *ParentalStatusDimension) Reset() { *x = ParentalStatusDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -540,7 +540,7 @@ func (x *ParentalStatusDimension) String() string { func (*ParentalStatusDimension) ProtoMessage() {} func (x *ParentalStatusDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -553,7 +553,7 @@ func (x *ParentalStatusDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use ParentalStatusDimension.ProtoReflect.Descriptor instead. func (*ParentalStatusDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{7} } func (x *ParentalStatusDimension) GetParentalStatuses() []enums.ParentalStatusTypeEnum_ParentalStatusType { @@ -582,7 +582,7 @@ type AudienceSegmentDimension struct { func (x *AudienceSegmentDimension) Reset() { *x = AudienceSegmentDimension{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -594,7 +594,7 @@ func (x *AudienceSegmentDimension) String() string { func (*AudienceSegmentDimension) ProtoMessage() {} func (x *AudienceSegmentDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -607,7 +607,7 @@ func (x *AudienceSegmentDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceSegmentDimension.ProtoReflect.Descriptor instead. func (*AudienceSegmentDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{8} } func (x *AudienceSegmentDimension) GetSegments() []*AudienceSegment { @@ -636,7 +636,7 @@ type AudienceSegment struct { func (x *AudienceSegment) Reset() { *x = AudienceSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -648,7 +648,7 @@ func (x *AudienceSegment) String() string { func (*AudienceSegment) ProtoMessage() {} func (x *AudienceSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -661,7 +661,7 @@ func (x *AudienceSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceSegment.ProtoReflect.Descriptor instead. func (*AudienceSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{9} } func (x *AudienceSegment) GetSegment() isAudienceSegment_Segment { @@ -766,7 +766,7 @@ type UserListSegment struct { func (x *UserListSegment) Reset() { *x = UserListSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -778,7 +778,7 @@ func (x *UserListSegment) String() string { func (*UserListSegment) ProtoMessage() {} func (x *UserListSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -791,7 +791,7 @@ func (x *UserListSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListSegment.ProtoReflect.Descriptor instead. func (*UserListSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{10} } func (x *UserListSegment) GetUserList() string { @@ -812,7 +812,7 @@ type UserInterestSegment struct { func (x *UserInterestSegment) Reset() { *x = UserInterestSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -824,7 +824,7 @@ func (x *UserInterestSegment) String() string { func (*UserInterestSegment) ProtoMessage() {} func (x *UserInterestSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -837,7 +837,7 @@ func (x *UserInterestSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterestSegment.ProtoReflect.Descriptor instead. func (*UserInterestSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{11} } func (x *UserInterestSegment) GetUserInterestCategory() string { @@ -858,7 +858,7 @@ type LifeEventSegment struct { func (x *LifeEventSegment) Reset() { *x = LifeEventSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -870,7 +870,7 @@ func (x *LifeEventSegment) String() string { func (*LifeEventSegment) ProtoMessage() {} func (x *LifeEventSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -883,7 +883,7 @@ func (x *LifeEventSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use LifeEventSegment.ProtoReflect.Descriptor instead. func (*LifeEventSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{12} } func (x *LifeEventSegment) GetLifeEvent() string { @@ -904,7 +904,7 @@ type DetailedDemographicSegment struct { func (x *DetailedDemographicSegment) Reset() { *x = DetailedDemographicSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -916,7 +916,7 @@ func (x *DetailedDemographicSegment) String() string { func (*DetailedDemographicSegment) ProtoMessage() {} func (x *DetailedDemographicSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -929,7 +929,7 @@ func (x *DetailedDemographicSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use DetailedDemographicSegment.ProtoReflect.Descriptor instead. func (*DetailedDemographicSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{13} } func (x *DetailedDemographicSegment) GetDetailedDemographic() string { @@ -950,7 +950,7 @@ type CustomAudienceSegment struct { func (x *CustomAudienceSegment) Reset() { *x = CustomAudienceSegment{} - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -962,7 +962,7 @@ func (x *CustomAudienceSegment) String() string { func (*CustomAudienceSegment) ProtoMessage() {} func (x *CustomAudienceSegment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_audiences_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_audiences_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -975,7 +975,7 @@ func (x *CustomAudienceSegment) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceSegment.ProtoReflect.Descriptor instead. func (*CustomAudienceSegment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP(), []int{14} } func (x *CustomAudienceSegment) GetCustomAudience() string { @@ -985,53 +985,53 @@ func (x *CustomAudienceSegment) GetCustomAudience() string { return "" } -var File_google_ads_googleads_v21_common_audiences_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_audiences_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1040,20 +1040,20 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1070,7 +1070,7 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1083,7 +1083,7 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1096,7 +1096,7 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1110,37 +1110,37 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1180,73 +1180,73 @@ var file_google_ads_googleads_v21_common_audiences_proto_rawDesc = string([]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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0e, 0x41, 0x75, 0x64, 0x69, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_audiences_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_audiences_proto_rawDescData []byte + file_google_ads_googleads_v22_common_audiences_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_audiences_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_audiences_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_audiences_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_audiences_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_audiences_proto_rawDesc), len(file_google_ads_googleads_v21_common_audiences_proto_rawDesc))) +func file_google_ads_googleads_v22_common_audiences_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_audiences_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_audiences_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_audiences_proto_rawDesc), len(file_google_ads_googleads_v22_common_audiences_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_audiences_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_audiences_proto_msgTypes = make([]protoimpl.MessageInfo, 15) -var file_google_ads_googleads_v21_common_audiences_proto_goTypes = []any{ - (*AudienceDimension)(nil), // 0: google.ads.googleads.v21.common.AudienceDimension - (*AudienceExclusionDimension)(nil), // 1: google.ads.googleads.v21.common.AudienceExclusionDimension - (*ExclusionSegment)(nil), // 2: google.ads.googleads.v21.common.ExclusionSegment - (*AgeDimension)(nil), // 3: google.ads.googleads.v21.common.AgeDimension - (*AgeSegment)(nil), // 4: google.ads.googleads.v21.common.AgeSegment - (*GenderDimension)(nil), // 5: google.ads.googleads.v21.common.GenderDimension - (*HouseholdIncomeDimension)(nil), // 6: google.ads.googleads.v21.common.HouseholdIncomeDimension - (*ParentalStatusDimension)(nil), // 7: google.ads.googleads.v21.common.ParentalStatusDimension - (*AudienceSegmentDimension)(nil), // 8: google.ads.googleads.v21.common.AudienceSegmentDimension - (*AudienceSegment)(nil), // 9: google.ads.googleads.v21.common.AudienceSegment - (*UserListSegment)(nil), // 10: google.ads.googleads.v21.common.UserListSegment - (*UserInterestSegment)(nil), // 11: google.ads.googleads.v21.common.UserInterestSegment - (*LifeEventSegment)(nil), // 12: google.ads.googleads.v21.common.LifeEventSegment - (*DetailedDemographicSegment)(nil), // 13: google.ads.googleads.v21.common.DetailedDemographicSegment - (*CustomAudienceSegment)(nil), // 14: google.ads.googleads.v21.common.CustomAudienceSegment - (enums.GenderTypeEnum_GenderType)(0), // 15: google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 16: google.ads.googleads.v21.enums.IncomeRangeTypeEnum.IncomeRangeType - (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 17: google.ads.googleads.v21.enums.ParentalStatusTypeEnum.ParentalStatusType -} -var file_google_ads_googleads_v21_common_audiences_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.common.AudienceDimension.age:type_name -> google.ads.googleads.v21.common.AgeDimension - 5, // 1: google.ads.googleads.v21.common.AudienceDimension.gender:type_name -> google.ads.googleads.v21.common.GenderDimension - 6, // 2: google.ads.googleads.v21.common.AudienceDimension.household_income:type_name -> google.ads.googleads.v21.common.HouseholdIncomeDimension - 7, // 3: google.ads.googleads.v21.common.AudienceDimension.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusDimension - 8, // 4: google.ads.googleads.v21.common.AudienceDimension.audience_segments:type_name -> google.ads.googleads.v21.common.AudienceSegmentDimension - 2, // 5: google.ads.googleads.v21.common.AudienceExclusionDimension.exclusions:type_name -> google.ads.googleads.v21.common.ExclusionSegment - 10, // 6: google.ads.googleads.v21.common.ExclusionSegment.user_list:type_name -> google.ads.googleads.v21.common.UserListSegment - 4, // 7: google.ads.googleads.v21.common.AgeDimension.age_ranges:type_name -> google.ads.googleads.v21.common.AgeSegment - 15, // 8: google.ads.googleads.v21.common.GenderDimension.genders:type_name -> google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - 16, // 9: google.ads.googleads.v21.common.HouseholdIncomeDimension.income_ranges:type_name -> google.ads.googleads.v21.enums.IncomeRangeTypeEnum.IncomeRangeType - 17, // 10: google.ads.googleads.v21.common.ParentalStatusDimension.parental_statuses:type_name -> google.ads.googleads.v21.enums.ParentalStatusTypeEnum.ParentalStatusType - 9, // 11: google.ads.googleads.v21.common.AudienceSegmentDimension.segments:type_name -> google.ads.googleads.v21.common.AudienceSegment - 10, // 12: google.ads.googleads.v21.common.AudienceSegment.user_list:type_name -> google.ads.googleads.v21.common.UserListSegment - 11, // 13: google.ads.googleads.v21.common.AudienceSegment.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestSegment - 12, // 14: google.ads.googleads.v21.common.AudienceSegment.life_event:type_name -> google.ads.googleads.v21.common.LifeEventSegment - 13, // 15: google.ads.googleads.v21.common.AudienceSegment.detailed_demographic:type_name -> google.ads.googleads.v21.common.DetailedDemographicSegment - 14, // 16: google.ads.googleads.v21.common.AudienceSegment.custom_audience:type_name -> google.ads.googleads.v21.common.CustomAudienceSegment + return file_google_ads_googleads_v22_common_audiences_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_audiences_proto_msgTypes = make([]protoimpl.MessageInfo, 15) +var file_google_ads_googleads_v22_common_audiences_proto_goTypes = []any{ + (*AudienceDimension)(nil), // 0: google.ads.googleads.v22.common.AudienceDimension + (*AudienceExclusionDimension)(nil), // 1: google.ads.googleads.v22.common.AudienceExclusionDimension + (*ExclusionSegment)(nil), // 2: google.ads.googleads.v22.common.ExclusionSegment + (*AgeDimension)(nil), // 3: google.ads.googleads.v22.common.AgeDimension + (*AgeSegment)(nil), // 4: google.ads.googleads.v22.common.AgeSegment + (*GenderDimension)(nil), // 5: google.ads.googleads.v22.common.GenderDimension + (*HouseholdIncomeDimension)(nil), // 6: google.ads.googleads.v22.common.HouseholdIncomeDimension + (*ParentalStatusDimension)(nil), // 7: google.ads.googleads.v22.common.ParentalStatusDimension + (*AudienceSegmentDimension)(nil), // 8: google.ads.googleads.v22.common.AudienceSegmentDimension + (*AudienceSegment)(nil), // 9: google.ads.googleads.v22.common.AudienceSegment + (*UserListSegment)(nil), // 10: google.ads.googleads.v22.common.UserListSegment + (*UserInterestSegment)(nil), // 11: google.ads.googleads.v22.common.UserInterestSegment + (*LifeEventSegment)(nil), // 12: google.ads.googleads.v22.common.LifeEventSegment + (*DetailedDemographicSegment)(nil), // 13: google.ads.googleads.v22.common.DetailedDemographicSegment + (*CustomAudienceSegment)(nil), // 14: google.ads.googleads.v22.common.CustomAudienceSegment + (enums.GenderTypeEnum_GenderType)(0), // 15: google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 16: google.ads.googleads.v22.enums.IncomeRangeTypeEnum.IncomeRangeType + (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 17: google.ads.googleads.v22.enums.ParentalStatusTypeEnum.ParentalStatusType +} +var file_google_ads_googleads_v22_common_audiences_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.common.AudienceDimension.age:type_name -> google.ads.googleads.v22.common.AgeDimension + 5, // 1: google.ads.googleads.v22.common.AudienceDimension.gender:type_name -> google.ads.googleads.v22.common.GenderDimension + 6, // 2: google.ads.googleads.v22.common.AudienceDimension.household_income:type_name -> google.ads.googleads.v22.common.HouseholdIncomeDimension + 7, // 3: google.ads.googleads.v22.common.AudienceDimension.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusDimension + 8, // 4: google.ads.googleads.v22.common.AudienceDimension.audience_segments:type_name -> google.ads.googleads.v22.common.AudienceSegmentDimension + 2, // 5: google.ads.googleads.v22.common.AudienceExclusionDimension.exclusions:type_name -> google.ads.googleads.v22.common.ExclusionSegment + 10, // 6: google.ads.googleads.v22.common.ExclusionSegment.user_list:type_name -> google.ads.googleads.v22.common.UserListSegment + 4, // 7: google.ads.googleads.v22.common.AgeDimension.age_ranges:type_name -> google.ads.googleads.v22.common.AgeSegment + 15, // 8: google.ads.googleads.v22.common.GenderDimension.genders:type_name -> google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + 16, // 9: google.ads.googleads.v22.common.HouseholdIncomeDimension.income_ranges:type_name -> google.ads.googleads.v22.enums.IncomeRangeTypeEnum.IncomeRangeType + 17, // 10: google.ads.googleads.v22.common.ParentalStatusDimension.parental_statuses:type_name -> google.ads.googleads.v22.enums.ParentalStatusTypeEnum.ParentalStatusType + 9, // 11: google.ads.googleads.v22.common.AudienceSegmentDimension.segments:type_name -> google.ads.googleads.v22.common.AudienceSegment + 10, // 12: google.ads.googleads.v22.common.AudienceSegment.user_list:type_name -> google.ads.googleads.v22.common.UserListSegment + 11, // 13: google.ads.googleads.v22.common.AudienceSegment.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestSegment + 12, // 14: google.ads.googleads.v22.common.AudienceSegment.life_event:type_name -> google.ads.googleads.v22.common.LifeEventSegment + 13, // 15: google.ads.googleads.v22.common.AudienceSegment.detailed_demographic:type_name -> google.ads.googleads.v22.common.DetailedDemographicSegment + 14, // 16: google.ads.googleads.v22.common.AudienceSegment.custom_audience:type_name -> google.ads.googleads.v22.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 @@ -1254,53 +1254,53 @@ var file_google_ads_googleads_v21_common_audiences_proto_depIdxs = []int32{ 0, // [0:17] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_audiences_proto_init() } -func file_google_ads_googleads_v21_common_audiences_proto_init() { - if File_google_ads_googleads_v21_common_audiences_proto != nil { +func init() { file_google_ads_googleads_v22_common_audiences_proto_init() } +func file_google_ads_googleads_v22_common_audiences_proto_init() { + if File_google_ads_googleads_v22_common_audiences_proto != nil { return } - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[0].OneofWrappers = []any{ (*AudienceDimension_Age)(nil), (*AudienceDimension_Gender)(nil), (*AudienceDimension_HouseholdIncome)(nil), (*AudienceDimension_ParentalStatus)(nil), (*AudienceDimension_AudienceSegments)(nil), } - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[2].OneofWrappers = []any{ (*ExclusionSegment_UserList)(nil), } - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[9].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[9].OneofWrappers = []any{ (*AudienceSegment_UserList)(nil), (*AudienceSegment_UserInterest)(nil), (*AudienceSegment_LifeEvent)(nil), (*AudienceSegment_DetailedDemographic)(nil), (*AudienceSegment_CustomAudience)(nil), } - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[10].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[12].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_audiences_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[13].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_audiences_proto_msgTypes[14].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_audiences_proto_rawDesc), len(file_google_ads_googleads_v21_common_audiences_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_audiences_proto_rawDesc), len(file_google_ads_googleads_v22_common_audiences_proto_rawDesc)), NumEnums: 0, NumMessages: 15, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_audiences_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_audiences_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_audiences_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_audiences_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_audiences_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_audiences_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_audiences_proto = out.File - file_google_ads_googleads_v21_common_audiences_proto_goTypes = nil - file_google_ads_googleads_v21_common_audiences_proto_depIdxs = nil + File_google_ads_googleads_v22_common_audiences_proto = out.File + file_google_ads_googleads_v22_common_audiences_proto_goTypes = nil + file_google_ads_googleads_v22_common_audiences_proto_depIdxs = nil } diff --git a/common/bidding.pb.go b/common/bidding.pb.go index 4f805a85..2ef3fb4e 100644 --- a/common/bidding.pb.go +++ b/common/bidding.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/bidding.proto +// source: google/ads/googleads/v22/common/bidding.proto package common @@ -51,7 +51,7 @@ type Commission struct { func (x *Commission) Reset() { *x = Commission{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *Commission) String() string { func (*Commission) ProtoMessage() {} func (x *Commission) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *Commission) ProtoReflect() protoreflect.Message { // Deprecated: Use Commission.ProtoReflect.Descriptor instead. func (*Commission) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{0} } func (x *Commission) GetCommissionRateMicros() int64 { @@ -100,7 +100,7 @@ type EnhancedCpc struct { func (x *EnhancedCpc) Reset() { *x = EnhancedCpc{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112,7 +112,7 @@ func (x *EnhancedCpc) String() string { func (*EnhancedCpc) ProtoMessage() {} func (x *EnhancedCpc) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125,7 +125,7 @@ func (x *EnhancedCpc) ProtoReflect() protoreflect.Message { // Deprecated: Use EnhancedCpc.ProtoReflect.Descriptor instead. func (*EnhancedCpc) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{1} } // Manual bidding strategy that allows advertiser to set the bid per @@ -138,7 +138,7 @@ type ManualCpa struct { func (x *ManualCpa) Reset() { *x = ManualCpa{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *ManualCpa) String() string { func (*ManualCpa) ProtoMessage() {} func (x *ManualCpa) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *ManualCpa) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpa.ProtoReflect.Descriptor instead. func (*ManualCpa) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{2} } // Manual click-based bidding where user pays per click. @@ -177,7 +177,7 @@ type ManualCpc struct { func (x *ManualCpc) Reset() { *x = ManualCpc{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189,7 +189,7 @@ func (x *ManualCpc) String() string { func (*ManualCpc) ProtoMessage() {} func (x *ManualCpc) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202,7 +202,7 @@ func (x *ManualCpc) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpc.ProtoReflect.Descriptor instead. func (*ManualCpc) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{3} } func (x *ManualCpc) GetEnhancedCpcEnabled() bool { @@ -221,7 +221,7 @@ type ManualCpm struct { func (x *ManualCpm) Reset() { *x = ManualCpm{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -233,7 +233,7 @@ func (x *ManualCpm) String() string { func (*ManualCpm) ProtoMessage() {} func (x *ManualCpm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -246,7 +246,7 @@ func (x *ManualCpm) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpm.ProtoReflect.Descriptor instead. func (*ManualCpm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{4} } // View based bidding where user pays per video view. @@ -258,7 +258,7 @@ type ManualCpv struct { func (x *ManualCpv) Reset() { *x = ManualCpv{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -270,7 +270,7 @@ func (x *ManualCpv) String() string { func (*ManualCpv) ProtoMessage() {} func (x *ManualCpv) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -283,7 +283,7 @@ func (x *ManualCpv) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpv.ProtoReflect.Descriptor instead. func (*ManualCpv) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{5} } // An automated bidding strategy to help get the most conversions for your @@ -311,7 +311,7 @@ type MaximizeConversions struct { func (x *MaximizeConversions) Reset() { *x = MaximizeConversions{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -323,7 +323,7 @@ func (x *MaximizeConversions) String() string { func (*MaximizeConversions) ProtoMessage() {} func (x *MaximizeConversions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -336,7 +336,7 @@ func (x *MaximizeConversions) ProtoReflect() protoreflect.Message { // Deprecated: Use MaximizeConversions.ProtoReflect.Descriptor instead. func (*MaximizeConversions) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{6} } func (x *MaximizeConversions) GetCpcBidCeilingMicros() int64 { @@ -390,7 +390,7 @@ type MaximizeConversionValue struct { func (x *MaximizeConversionValue) Reset() { *x = MaximizeConversionValue{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -402,7 +402,7 @@ func (x *MaximizeConversionValue) String() string { func (*MaximizeConversionValue) ProtoMessage() {} func (x *MaximizeConversionValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -415,7 +415,7 @@ func (x *MaximizeConversionValue) ProtoReflect() protoreflect.Message { // Deprecated: Use MaximizeConversionValue.ProtoReflect.Descriptor instead. func (*MaximizeConversionValue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{7} } func (x *MaximizeConversionValue) GetTargetRoas() float64 { @@ -468,7 +468,7 @@ type TargetCpa struct { func (x *TargetCpa) Reset() { *x = TargetCpa{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -480,7 +480,7 @@ func (x *TargetCpa) String() string { func (*TargetCpa) ProtoMessage() {} func (x *TargetCpa) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -493,7 +493,7 @@ func (x *TargetCpa) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpa.ProtoReflect.Descriptor instead. func (*TargetCpa) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{8} } func (x *TargetCpa) GetTargetCpaMicros() int64 { @@ -533,7 +533,7 @@ type TargetCpm struct { func (x *TargetCpm) Reset() { *x = TargetCpm{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -545,7 +545,7 @@ func (x *TargetCpm) String() string { func (*TargetCpm) ProtoMessage() {} func (x *TargetCpm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -558,7 +558,7 @@ func (x *TargetCpm) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpm.ProtoReflect.Descriptor instead. func (*TargetCpm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{9} } func (x *TargetCpm) GetGoal() isTargetCpm_Goal { @@ -596,14 +596,14 @@ 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.v21.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.v22.enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit" json:"time_unit,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *TargetCpmTargetFrequencyGoal) Reset() { *x = TargetCpmTargetFrequencyGoal{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -615,7 +615,7 @@ func (x *TargetCpmTargetFrequencyGoal) String() string { func (*TargetCpmTargetFrequencyGoal) ProtoMessage() {} func (x *TargetCpmTargetFrequencyGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -628,7 +628,7 @@ func (x *TargetCpmTargetFrequencyGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpmTargetFrequencyGoal.ProtoReflect.Descriptor instead. func (*TargetCpmTargetFrequencyGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{10} } func (x *TargetCpmTargetFrequencyGoal) GetTargetCount() int64 { @@ -651,7 +651,7 @@ func (x *TargetCpmTargetFrequencyGoal) GetTimeUnit() enums.TargetFrequencyTimeUn type TargetImpressionShare struct { state protoimpl.MessageState `protogen:"open.v1"` // The targeted location on the search results page. - Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"` + Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v22.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"` @@ -665,7 +665,7 @@ type TargetImpressionShare struct { func (x *TargetImpressionShare) Reset() { *x = TargetImpressionShare{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -677,7 +677,7 @@ func (x *TargetImpressionShare) String() string { func (*TargetImpressionShare) ProtoMessage() {} func (x *TargetImpressionShare) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -690,7 +690,7 @@ func (x *TargetImpressionShare) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetImpressionShare.ProtoReflect.Descriptor instead. func (*TargetImpressionShare) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{11} } func (x *TargetImpressionShare) GetLocation() enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation { @@ -741,7 +741,7 @@ type TargetRoas struct { func (x *TargetRoas) Reset() { *x = TargetRoas{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -753,7 +753,7 @@ func (x *TargetRoas) String() string { func (*TargetRoas) ProtoMessage() {} func (x *TargetRoas) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -766,7 +766,7 @@ func (x *TargetRoas) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetRoas.ProtoReflect.Descriptor instead. func (*TargetRoas) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{12} } func (x *TargetRoas) GetTargetRoas() float64 { @@ -809,7 +809,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/v21/common/bidding.proto. + // Deprecated: Marked as deprecated in google/ads/googleads/v22/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. @@ -820,7 +820,7 @@ type TargetSpend struct { func (x *TargetSpend) Reset() { *x = TargetSpend{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -832,7 +832,7 @@ func (x *TargetSpend) String() string { func (*TargetSpend) ProtoMessage() {} func (x *TargetSpend) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -845,10 +845,10 @@ func (x *TargetSpend) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetSpend.ProtoReflect.Descriptor instead. func (*TargetSpend) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{13} } -// Deprecated: Marked as deprecated in google/ads/googleads/v21/common/bidding.proto. +// Deprecated: Marked as deprecated in google/ads/googleads/v22/common/bidding.proto. func (x *TargetSpend) GetTargetSpendMicros() int64 { if x != nil && x.TargetSpendMicros != nil { return *x.TargetSpendMicros @@ -883,7 +883,7 @@ type PercentCpc struct { func (x *PercentCpc) Reset() { *x = PercentCpc{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -895,7 +895,7 @@ func (x *PercentCpc) String() string { func (*PercentCpc) ProtoMessage() {} func (x *PercentCpc) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -908,7 +908,7 @@ func (x *PercentCpc) ProtoReflect() protoreflect.Message { // Deprecated: Use PercentCpc.ProtoReflect.Descriptor instead. func (*PercentCpc) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{14} } func (x *PercentCpc) GetCpcBidCeilingMicros() int64 { @@ -931,7 +931,7 @@ type FixedCpm struct { state protoimpl.MessageState `protogen:"open.v1"` // Fixed CPM bidding goal. Determines the exact bidding optimization // parameters. - Goal enums.FixedCpmGoalEnum_FixedCpmGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v21.enums.FixedCpmGoalEnum_FixedCpmGoal" json:"goal,omitempty"` + Goal enums.FixedCpmGoalEnum_FixedCpmGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v22.enums.FixedCpmGoalEnum_FixedCpmGoal" json:"goal,omitempty"` // Additional information related to bidding goal. // // Types that are valid to be assigned to GoalInfo: @@ -944,7 +944,7 @@ type FixedCpm struct { func (x *FixedCpm) Reset() { *x = FixedCpm{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -956,7 +956,7 @@ func (x *FixedCpm) String() string { func (*FixedCpm) ProtoMessage() {} func (x *FixedCpm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -969,7 +969,7 @@ func (x *FixedCpm) ProtoReflect() protoreflect.Message { // Deprecated: Use FixedCpm.ProtoReflect.Descriptor instead. func (*FixedCpm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{15} } func (x *FixedCpm) GetGoal() enums.FixedCpmGoalEnum_FixedCpmGoal { @@ -1015,14 +1015,14 @@ type FixedCpmTargetFrequencyGoalInfo 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.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v21.enums.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit" json:"time_unit,omitempty"` + TimeUnit enums.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit `protobuf:"varint,2,opt,name=time_unit,json=timeUnit,proto3,enum=google.ads.googleads.v22.enums.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit" json:"time_unit,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *FixedCpmTargetFrequencyGoalInfo) Reset() { *x = FixedCpmTargetFrequencyGoalInfo{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1034,7 +1034,7 @@ func (x *FixedCpmTargetFrequencyGoalInfo) String() string { func (*FixedCpmTargetFrequencyGoalInfo) ProtoMessage() {} func (x *FixedCpmTargetFrequencyGoalInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1047,7 +1047,7 @@ func (x *FixedCpmTargetFrequencyGoalInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FixedCpmTargetFrequencyGoalInfo.ProtoReflect.Descriptor instead. func (*FixedCpmTargetFrequencyGoalInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{16} } func (x *FixedCpmTargetFrequencyGoalInfo) GetTargetCount() int64 { @@ -1074,7 +1074,7 @@ type TargetCpv struct { func (x *TargetCpv) Reset() { *x = TargetCpv{} - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1086,7 +1086,7 @@ func (x *TargetCpv) String() string { func (*TargetCpv) ProtoMessage() {} func (x *TargetCpv) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_bidding_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1099,31 +1099,80 @@ func (x *TargetCpv) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpv.ProtoReflect.Descriptor instead. func (*TargetCpv) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{17} } -var File_google_ads_googleads_v21_common_bidding_proto protoreflect.FileDescriptor +// An automated bidding strategy that sets bids to help get as many clicks +// as possible at the target cost-per-click (CPC) you set. +type TargetCpc struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Average CPC target. + // This target should be greater than or equal to minimum billable unit based + // on the currency for the account. + TargetCpcMicros int64 `protobuf:"varint,1,opt,name=target_cpc_micros,json=targetCpcMicros,proto3" json:"target_cpc_micros,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} -var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ +func (x *TargetCpc) Reset() { + *x = TargetCpc{} + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[18] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TargetCpc) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TargetCpc) ProtoMessage() {} + +func (x *TargetCpc) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_bidding_proto_msgTypes[18] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use TargetCpc.ProtoReflect.Descriptor instead. +func (*TargetCpc) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP(), []int{18} +} + +func (x *TargetCpc) GetTargetCpcMicros() int64 { + if x != nil { + return x.TargetCpcMicros + } + return 0 +} + +var File_google_ads_googleads_v22_common_bidding_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_common_bidding_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x67, 0x6f, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -1190,7 +1239,7 @@ var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x6e, @@ -1201,7 +1250,7 @@ var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1210,7 +1259,7 @@ var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1275,13 +1324,13 @@ var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ 0x0a, 0x08, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x12, 0x51, 0x0a, 0x04, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x04, 0x67, 0x6f, 0x61, 0x6c, 0x12, 0x76, 0x0a, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x47, 0x6f, 0x61, 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x48, 0x00, 0x52, 0x13, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, @@ -1293,74 +1342,79 @@ var file_google_ads_googleads_v21_common_bidding_proto_rawDesc = string([]byte{ 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x80, 0x01, 0x0a, 0x09, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x75, 0x6e, 0x69, 0x74, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 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, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 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, 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x22, 0x0b, 0x0a, 0x09, - 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x76, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x76, 0x22, 0x37, 0x0a, 0x09, 0x54, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x43, 0x70, 0x63, 0x12, 0x2a, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x63, 0x4d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_bidding_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_bidding_proto_rawDescData []byte + file_google_ads_googleads_v22_common_bidding_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_bidding_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_bidding_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_bidding_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_bidding_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_bidding_proto_rawDesc), len(file_google_ads_googleads_v21_common_bidding_proto_rawDesc))) +func file_google_ads_googleads_v22_common_bidding_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_bidding_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_bidding_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_bidding_proto_rawDesc), len(file_google_ads_googleads_v22_common_bidding_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_bidding_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_bidding_proto_msgTypes = make([]protoimpl.MessageInfo, 18) -var file_google_ads_googleads_v21_common_bidding_proto_goTypes = []any{ - (*Commission)(nil), // 0: google.ads.googleads.v21.common.Commission - (*EnhancedCpc)(nil), // 1: google.ads.googleads.v21.common.EnhancedCpc - (*ManualCpa)(nil), // 2: google.ads.googleads.v21.common.ManualCpa - (*ManualCpc)(nil), // 3: google.ads.googleads.v21.common.ManualCpc - (*ManualCpm)(nil), // 4: google.ads.googleads.v21.common.ManualCpm - (*ManualCpv)(nil), // 5: google.ads.googleads.v21.common.ManualCpv - (*MaximizeConversions)(nil), // 6: google.ads.googleads.v21.common.MaximizeConversions - (*MaximizeConversionValue)(nil), // 7: google.ads.googleads.v21.common.MaximizeConversionValue - (*TargetCpa)(nil), // 8: google.ads.googleads.v21.common.TargetCpa - (*TargetCpm)(nil), // 9: google.ads.googleads.v21.common.TargetCpm - (*TargetCpmTargetFrequencyGoal)(nil), // 10: google.ads.googleads.v21.common.TargetCpmTargetFrequencyGoal - (*TargetImpressionShare)(nil), // 11: google.ads.googleads.v21.common.TargetImpressionShare - (*TargetRoas)(nil), // 12: google.ads.googleads.v21.common.TargetRoas - (*TargetSpend)(nil), // 13: google.ads.googleads.v21.common.TargetSpend - (*PercentCpc)(nil), // 14: google.ads.googleads.v21.common.PercentCpc - (*FixedCpm)(nil), // 15: google.ads.googleads.v21.common.FixedCpm - (*FixedCpmTargetFrequencyGoalInfo)(nil), // 16: google.ads.googleads.v21.common.FixedCpmTargetFrequencyGoalInfo - (*TargetCpv)(nil), // 17: google.ads.googleads.v21.common.TargetCpv - (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 18: google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit - (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 19: google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation - (enums.FixedCpmGoalEnum_FixedCpmGoal)(0), // 20: google.ads.googleads.v21.enums.FixedCpmGoalEnum.FixedCpmGoal - (enums.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit)(0), // 21: google.ads.googleads.v21.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit -} -var file_google_ads_googleads_v21_common_bidding_proto_depIdxs = []int32{ - 10, // 0: google.ads.googleads.v21.common.TargetCpm.target_frequency_goal:type_name -> google.ads.googleads.v21.common.TargetCpmTargetFrequencyGoal - 18, // 1: google.ads.googleads.v21.common.TargetCpmTargetFrequencyGoal.time_unit:type_name -> google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit - 19, // 2: google.ads.googleads.v21.common.TargetImpressionShare.location:type_name -> google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation - 20, // 3: google.ads.googleads.v21.common.FixedCpm.goal:type_name -> google.ads.googleads.v21.enums.FixedCpmGoalEnum.FixedCpmGoal - 16, // 4: google.ads.googleads.v21.common.FixedCpm.target_frequency_info:type_name -> google.ads.googleads.v21.common.FixedCpmTargetFrequencyGoalInfo - 21, // 5: google.ads.googleads.v21.common.FixedCpmTargetFrequencyGoalInfo.time_unit:type_name -> google.ads.googleads.v21.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit + return file_google_ads_googleads_v22_common_bidding_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_bidding_proto_msgTypes = make([]protoimpl.MessageInfo, 19) +var file_google_ads_googleads_v22_common_bidding_proto_goTypes = []any{ + (*Commission)(nil), // 0: google.ads.googleads.v22.common.Commission + (*EnhancedCpc)(nil), // 1: google.ads.googleads.v22.common.EnhancedCpc + (*ManualCpa)(nil), // 2: google.ads.googleads.v22.common.ManualCpa + (*ManualCpc)(nil), // 3: google.ads.googleads.v22.common.ManualCpc + (*ManualCpm)(nil), // 4: google.ads.googleads.v22.common.ManualCpm + (*ManualCpv)(nil), // 5: google.ads.googleads.v22.common.ManualCpv + (*MaximizeConversions)(nil), // 6: google.ads.googleads.v22.common.MaximizeConversions + (*MaximizeConversionValue)(nil), // 7: google.ads.googleads.v22.common.MaximizeConversionValue + (*TargetCpa)(nil), // 8: google.ads.googleads.v22.common.TargetCpa + (*TargetCpm)(nil), // 9: google.ads.googleads.v22.common.TargetCpm + (*TargetCpmTargetFrequencyGoal)(nil), // 10: google.ads.googleads.v22.common.TargetCpmTargetFrequencyGoal + (*TargetImpressionShare)(nil), // 11: google.ads.googleads.v22.common.TargetImpressionShare + (*TargetRoas)(nil), // 12: google.ads.googleads.v22.common.TargetRoas + (*TargetSpend)(nil), // 13: google.ads.googleads.v22.common.TargetSpend + (*PercentCpc)(nil), // 14: google.ads.googleads.v22.common.PercentCpc + (*FixedCpm)(nil), // 15: google.ads.googleads.v22.common.FixedCpm + (*FixedCpmTargetFrequencyGoalInfo)(nil), // 16: google.ads.googleads.v22.common.FixedCpmTargetFrequencyGoalInfo + (*TargetCpv)(nil), // 17: google.ads.googleads.v22.common.TargetCpv + (*TargetCpc)(nil), // 18: google.ads.googleads.v22.common.TargetCpc + (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 19: google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit + (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 20: google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation + (enums.FixedCpmGoalEnum_FixedCpmGoal)(0), // 21: google.ads.googleads.v22.enums.FixedCpmGoalEnum.FixedCpmGoal + (enums.FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit)(0), // 22: google.ads.googleads.v22.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit +} +var file_google_ads_googleads_v22_common_bidding_proto_depIdxs = []int32{ + 10, // 0: google.ads.googleads.v22.common.TargetCpm.target_frequency_goal:type_name -> google.ads.googleads.v22.common.TargetCpmTargetFrequencyGoal + 19, // 1: google.ads.googleads.v22.common.TargetCpmTargetFrequencyGoal.time_unit:type_name -> google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit + 20, // 2: google.ads.googleads.v22.common.TargetImpressionShare.location:type_name -> google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation + 21, // 3: google.ads.googleads.v22.common.FixedCpm.goal:type_name -> google.ads.googleads.v22.enums.FixedCpmGoalEnum.FixedCpmGoal + 16, // 4: google.ads.googleads.v22.common.FixedCpm.target_frequency_info:type_name -> google.ads.googleads.v22.common.FixedCpmTargetFrequencyGoalInfo + 22, // 5: google.ads.googleads.v22.common.FixedCpmTargetFrequencyGoalInfo.time_unit:type_name -> google.ads.googleads.v22.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit 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 @@ -1368,40 +1422,40 @@ var file_google_ads_googleads_v21_common_bidding_proto_depIdxs = []int32{ 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_bidding_proto_init() } -func file_google_ads_googleads_v21_common_bidding_proto_init() { - if File_google_ads_googleads_v21_common_bidding_proto != nil { +func init() { file_google_ads_googleads_v22_common_bidding_proto_init() } +func file_google_ads_googleads_v22_common_bidding_proto_init() { + if File_google_ads_googleads_v22_common_bidding_proto != nil { return } - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[9].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[9].OneofWrappers = []any{ (*TargetCpm_TargetFrequencyGoal)(nil), } - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[12].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[14].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_bidding_proto_msgTypes[15].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[13].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_bidding_proto_msgTypes[15].OneofWrappers = []any{ (*FixedCpm_TargetFrequencyInfo)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_bidding_proto_rawDesc), len(file_google_ads_googleads_v21_common_bidding_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_bidding_proto_rawDesc), len(file_google_ads_googleads_v22_common_bidding_proto_rawDesc)), NumEnums: 0, - NumMessages: 18, + NumMessages: 19, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_bidding_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_bidding_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_bidding_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_bidding_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_bidding_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_bidding_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_bidding_proto = out.File - file_google_ads_googleads_v21_common_bidding_proto_goTypes = nil - file_google_ads_googleads_v21_common_bidding_proto_depIdxs = nil + File_google_ads_googleads_v22_common_bidding_proto = out.File + file_google_ads_googleads_v22_common_bidding_proto_goTypes = nil + file_google_ads_googleads_v22_common_bidding_proto_depIdxs = nil } diff --git a/common/campaign_goal_settings.pb.go b/common/campaign_goal_settings.pb.go new file mode 100644 index 00000000..24884bd2 --- /dev/null +++ b/common/campaign_goal_settings.pb.go @@ -0,0 +1,243 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/common/campaign_goal_settings.proto + +package common + +import ( + enums "github.com/shenzhencenter/google-ads-pb/enums" + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// Campaign Goal settings. +type CampaignGoalSettings struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CampaignGoalSettings) Reset() { + *x = CampaignGoalSettings{} + mi := &file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CampaignGoalSettings) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignGoalSettings) ProtoMessage() {} + +func (x *CampaignGoalSettings) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CampaignGoalSettings.ProtoReflect.Descriptor instead. +func (*CampaignGoalSettings) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescGZIP(), []int{0} +} + +// Retention campaign goal settings. +type CampaignGoalSettings_CampaignRetentionGoalSettings struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Retention goal campaign specific value settings. + ValueSettingsOverride *CustomerLifecycleOptimizationValueSettings `protobuf:"bytes,1,opt,name=value_settings_override,json=valueSettingsOverride,proto3" json:"value_settings_override,omitempty"` + // Retention goal optimization mode for this campaign. + // + // Defaults to TARGET_ALL. Only customers on the allowlist can set + // target_option. + TargetOption enums.CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode `protobuf:"varint,2,opt,name=target_option,json=targetOption,proto3,enum=google.ads.googleads.v22.enums.CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode" json:"target_option,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CampaignGoalSettings_CampaignRetentionGoalSettings) Reset() { + *x = CampaignGoalSettings_CampaignRetentionGoalSettings{} + mi := &file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CampaignGoalSettings_CampaignRetentionGoalSettings) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignGoalSettings_CampaignRetentionGoalSettings) ProtoMessage() {} + +func (x *CampaignGoalSettings_CampaignRetentionGoalSettings) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CampaignGoalSettings_CampaignRetentionGoalSettings.ProtoReflect.Descriptor instead. +func (*CampaignGoalSettings_CampaignRetentionGoalSettings) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescGZIP(), []int{0, 0} +} + +func (x *CampaignGoalSettings_CampaignRetentionGoalSettings) GetValueSettingsOverride() *CustomerLifecycleOptimizationValueSettings { + if x != nil { + return x.ValueSettingsOverride + } + return nil +} + +func (x *CampaignGoalSettings_CampaignRetentionGoalSettings) GetTargetOption() enums.CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode { + if x != nil { + return x.TargetOption + } + return enums.CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode(0) +} + +var File_google_ads_googleads_v22_common_campaign_goal_settings_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, + 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, + 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, + 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, + 0x63, 0x79, 0x63, 0x6c, 0x65, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xcd, 0x02, + 0x0a, 0x14, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x1a, 0xb4, 0x02, 0x0a, 0x1d, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x83, 0x01, 0x0a, 0x17, 0x76, 0x61, 0x6c, + 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x5f, 0x6f, 0x76, 0x65, 0x72, + 0x72, 0x69, 0x64, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x4f, 0x70, + 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x15, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x12, 0x8c, + 0x01, 0x0a, 0x0d, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x18, 0x02, 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, 0x32, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 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, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x4f, + 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 0x65, 0x52, + 0x0c, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, + 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x33, +}) + +var ( + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDesc), len(file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_common_campaign_goal_settings_proto_goTypes = []any{ + (*CampaignGoalSettings)(nil), // 0: google.ads.googleads.v22.common.CampaignGoalSettings + (*CampaignGoalSettings_CampaignRetentionGoalSettings)(nil), // 1: google.ads.googleads.v22.common.CampaignGoalSettings.CampaignRetentionGoalSettings + (*CustomerLifecycleOptimizationValueSettings)(nil), // 2: google.ads.googleads.v22.common.CustomerLifecycleOptimizationValueSettings + (enums.CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode)(0), // 3: google.ads.googleads.v22.enums.CustomerLifecycleOptimizationModeEnum.CustomerLifecycleOptimizationMode +} +var file_google_ads_googleads_v22_common_campaign_goal_settings_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.CampaignGoalSettings.CampaignRetentionGoalSettings.value_settings_override:type_name -> google.ads.googleads.v22.common.CustomerLifecycleOptimizationValueSettings + 3, // 1: google.ads.googleads.v22.common.CampaignGoalSettings.CampaignRetentionGoalSettings.target_option:type_name -> google.ads.googleads.v22.enums.CustomerLifecycleOptimizationModeEnum.CustomerLifecycleOptimizationMode + 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_v22_common_campaign_goal_settings_proto_init() } +func file_google_ads_googleads_v22_common_campaign_goal_settings_proto_init() { + if File_google_ads_googleads_v22_common_campaign_goal_settings_proto != nil { + return + } + file_google_ads_googleads_v22_common_goal_common_proto_init() + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDesc), len(file_google_ads_googleads_v22_common_campaign_goal_settings_proto_rawDesc)), + NumEnums: 0, + NumMessages: 2, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_common_campaign_goal_settings_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_campaign_goal_settings_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_campaign_goal_settings_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_common_campaign_goal_settings_proto = out.File + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_goTypes = nil + file_google_ads_googleads_v22_common_campaign_goal_settings_proto_depIdxs = nil +} diff --git a/common/click_location.pb.go b/common/click_location.pb.go index 766ab7b0..f6a2532d 100644 --- a/common/click_location.pb.go +++ b/common/click_location.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/click_location.proto +// source: google/ads/googleads/v22/common/click_location.proto package common @@ -54,7 +54,7 @@ type ClickLocation struct { func (x *ClickLocation) Reset() { *x = ClickLocation{} - mi := &file_google_ads_googleads_v21_common_click_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_click_location_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *ClickLocation) String() string { func (*ClickLocation) ProtoMessage() {} func (x *ClickLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_click_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_click_location_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *ClickLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickLocation.ProtoReflect.Descriptor instead. func (*ClickLocation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_click_location_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_click_location_proto_rawDescGZIP(), []int{0} } func (x *ClickLocation) GetCity() string { @@ -117,14 +117,14 @@ func (x *ClickLocation) GetRegion() string { return "" } -var File_google_ads_googleads_v21_common_click_location_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_click_location_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_click_location_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_click_location_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,40 +141,40 @@ var file_google_ads_googleads_v21_common_click_location_proto_rawDesc = string([ 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_click_location_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_click_location_proto_rawDescData []byte + file_google_ads_googleads_v22_common_click_location_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_click_location_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_click_location_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_click_location_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_click_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_click_location_proto_rawDesc), len(file_google_ads_googleads_v21_common_click_location_proto_rawDesc))) +func file_google_ads_googleads_v22_common_click_location_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_click_location_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_click_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_click_location_proto_rawDesc), len(file_google_ads_googleads_v22_common_click_location_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_click_location_proto_rawDescData + return file_google_ads_googleads_v22_common_click_location_proto_rawDescData } -var file_google_ads_googleads_v21_common_click_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_click_location_proto_goTypes = []any{ - (*ClickLocation)(nil), // 0: google.ads.googleads.v21.common.ClickLocation +var file_google_ads_googleads_v22_common_click_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_click_location_proto_goTypes = []any{ + (*ClickLocation)(nil), // 0: google.ads.googleads.v22.common.ClickLocation } -var file_google_ads_googleads_v21_common_click_location_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_common_click_location_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_click_location_proto_init() } -func file_google_ads_googleads_v21_common_click_location_proto_init() { - if File_google_ads_googleads_v21_common_click_location_proto != nil { +func init() { file_google_ads_googleads_v22_common_click_location_proto_init() } +func file_google_ads_googleads_v22_common_click_location_proto_init() { + if File_google_ads_googleads_v22_common_click_location_proto != nil { return } - file_google_ads_googleads_v21_common_click_location_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_click_location_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_click_location_proto_rawDesc), len(file_google_ads_googleads_v21_common_click_location_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_click_location_proto_rawDesc), len(file_google_ads_googleads_v22_common_click_location_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_click_location_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_click_location_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_click_location_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_click_location_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_click_location_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_click_location_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_click_location_proto = out.File - file_google_ads_googleads_v21_common_click_location_proto_goTypes = nil - file_google_ads_googleads_v21_common_click_location_proto_depIdxs = nil + File_google_ads_googleads_v22_common_click_location_proto = out.File + file_google_ads_googleads_v22_common_click_location_proto_goTypes = nil + file_google_ads_googleads_v22_common_click_location_proto_depIdxs = nil } diff --git a/common/consent.pb.go b/common/consent.pb.go index c5d359c6..a97fe1f3 100644 --- a/common/consent.pb.go +++ b/common/consent.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/consent.proto +// source: google/ads/googleads/v22/common/consent.proto package common @@ -40,17 +40,17 @@ const ( type Consent struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.ConsentStatusEnum_ConsentStatus" json:"ad_personalization,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Consent) Reset() { *x = Consent{} - mi := &file_google_ads_googleads_v21_common_consent_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_consent_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *Consent) String() string { func (*Consent) ProtoMessage() {} func (x *Consent) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_consent_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_consent_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *Consent) ProtoReflect() protoreflect.Message { // Deprecated: Use Consent.ProtoReflect.Descriptor instead. func (*Consent) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_consent_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_consent_proto_rawDescGZIP(), []int{0} } func (x *Consent) GetAdUserData() enums.ConsentStatusEnum_ConsentStatus { @@ -92,69 +92,69 @@ func (x *Consent) GetAdPersonalization() enums.ConsentStatusEnum_ConsentStatus { return enums.ConsentStatusEnum_ConsentStatus(0) } -var File_google_ads_googleads_v21_common_consent_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_consent_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_consent_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_consent_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0c, 0x43, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_consent_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_consent_proto_rawDescData []byte + file_google_ads_googleads_v22_common_consent_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_consent_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_consent_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_consent_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_consent_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_consent_proto_rawDesc), len(file_google_ads_googleads_v21_common_consent_proto_rawDesc))) +func file_google_ads_googleads_v22_common_consent_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_consent_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_consent_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_consent_proto_rawDesc), len(file_google_ads_googleads_v22_common_consent_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_consent_proto_rawDescData + return file_google_ads_googleads_v22_common_consent_proto_rawDescData } -var file_google_ads_googleads_v21_common_consent_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_consent_proto_goTypes = []any{ - (*Consent)(nil), // 0: google.ads.googleads.v21.common.Consent - (enums.ConsentStatusEnum_ConsentStatus)(0), // 1: google.ads.googleads.v21.enums.ConsentStatusEnum.ConsentStatus +var file_google_ads_googleads_v22_common_consent_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_consent_proto_goTypes = []any{ + (*Consent)(nil), // 0: google.ads.googleads.v22.common.Consent + (enums.ConsentStatusEnum_ConsentStatus)(0), // 1: google.ads.googleads.v22.enums.ConsentStatusEnum.ConsentStatus } -var file_google_ads_googleads_v21_common_consent_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.Consent.ad_user_data:type_name -> google.ads.googleads.v21.enums.ConsentStatusEnum.ConsentStatus - 1, // 1: google.ads.googleads.v21.common.Consent.ad_personalization:type_name -> google.ads.googleads.v21.enums.ConsentStatusEnum.ConsentStatus +var file_google_ads_googleads_v22_common_consent_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.Consent.ad_user_data:type_name -> google.ads.googleads.v22.enums.ConsentStatusEnum.ConsentStatus + 1, // 1: google.ads.googleads.v22.common.Consent.ad_personalization:type_name -> google.ads.googleads.v22.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 @@ -162,26 +162,26 @@ var file_google_ads_googleads_v21_common_consent_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_consent_proto_init() } -func file_google_ads_googleads_v21_common_consent_proto_init() { - if File_google_ads_googleads_v21_common_consent_proto != nil { +func init() { file_google_ads_googleads_v22_common_consent_proto_init() } +func file_google_ads_googleads_v22_common_consent_proto_init() { + if File_google_ads_googleads_v22_common_consent_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_consent_proto_rawDesc), len(file_google_ads_googleads_v21_common_consent_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_consent_proto_rawDesc), len(file_google_ads_googleads_v22_common_consent_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_consent_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_consent_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_consent_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_consent_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_consent_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_consent_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_consent_proto = out.File - file_google_ads_googleads_v21_common_consent_proto_goTypes = nil - file_google_ads_googleads_v21_common_consent_proto_depIdxs = nil + File_google_ads_googleads_v22_common_consent_proto = out.File + file_google_ads_googleads_v22_common_consent_proto_goTypes = nil + file_google_ads_googleads_v22_common_consent_proto_depIdxs = nil } diff --git a/common/criteria.pb.go b/common/criteria.pb.go index baf4af41..3a5fa4a8 100644 --- a/common/criteria.pb.go +++ b/common/criteria.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/criteria.proto +// source: google/ads/googleads/v22/common/criteria.proto package common @@ -43,14 +43,14 @@ 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.v21.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.v22.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"match_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *KeywordInfo) Reset() { *x = KeywordInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *KeywordInfo) String() string { func (*KeywordInfo) ProtoMessage() {} func (x *KeywordInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *KeywordInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordInfo.ProtoReflect.Descriptor instead. func (*KeywordInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{0} } func (x *KeywordInfo) GetText() string { @@ -106,7 +106,7 @@ type PlacementInfo struct { func (x *PlacementInfo) Reset() { *x = PlacementInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *PlacementInfo) String() string { func (*PlacementInfo) ProtoMessage() {} func (x *PlacementInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,7 +131,7 @@ func (x *PlacementInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PlacementInfo.ProtoReflect.Descriptor instead. func (*PlacementInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{1} } func (x *PlacementInfo) GetUrl() string { @@ -154,7 +154,7 @@ type NegativeKeywordListInfo struct { func (x *NegativeKeywordListInfo) Reset() { *x = NegativeKeywordListInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *NegativeKeywordListInfo) String() string { func (*NegativeKeywordListInfo) ProtoMessage() {} func (x *NegativeKeywordListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,7 +179,7 @@ func (x *NegativeKeywordListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use NegativeKeywordListInfo.ProtoReflect.Descriptor instead. func (*NegativeKeywordListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{2} } func (x *NegativeKeywordListInfo) GetSharedSet() string { @@ -200,7 +200,7 @@ type MobileAppCategoryInfo struct { func (x *MobileAppCategoryInfo) Reset() { *x = MobileAppCategoryInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -212,7 +212,7 @@ func (x *MobileAppCategoryInfo) String() string { func (*MobileAppCategoryInfo) ProtoMessage() {} func (x *MobileAppCategoryInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -225,7 +225,7 @@ func (x *MobileAppCategoryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileAppCategoryInfo.ProtoReflect.Descriptor instead. func (*MobileAppCategoryInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{3} } func (x *MobileAppCategoryInfo) GetMobileAppCategoryConstant() string { @@ -262,7 +262,7 @@ type MobileApplicationInfo struct { func (x *MobileApplicationInfo) Reset() { *x = MobileApplicationInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MobileApplicationInfo) String() string { func (*MobileApplicationInfo) ProtoMessage() {} func (x *MobileApplicationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MobileApplicationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileApplicationInfo.ProtoReflect.Descriptor instead. func (*MobileApplicationInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{4} } func (x *MobileApplicationInfo) GetAppId() string { @@ -315,7 +315,7 @@ type LocationInfo struct { func (x *LocationInfo) Reset() { *x = LocationInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -327,7 +327,7 @@ func (x *LocationInfo) String() string { func (*LocationInfo) ProtoMessage() {} func (x *LocationInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -340,7 +340,7 @@ func (x *LocationInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationInfo.ProtoReflect.Descriptor instead. func (*LocationInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{5} } func (x *LocationInfo) GetGeoTargetConstant() string { @@ -354,14 +354,14 @@ func (x *LocationInfo) GetGeoTargetConstant() string { type DeviceInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the device. - Type enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.DeviceEnum_Device" json:"type,omitempty"` + Type enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.DeviceEnum_Device" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DeviceInfo) Reset() { *x = DeviceInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -373,7 +373,7 @@ func (x *DeviceInfo) String() string { func (*DeviceInfo) ProtoMessage() {} func (x *DeviceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -386,7 +386,7 @@ func (x *DeviceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use DeviceInfo.ProtoReflect.Descriptor instead. func (*DeviceInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{6} } func (x *DeviceInfo) GetType() enums.DeviceEnum_Device { @@ -400,7 +400,7 @@ func (x *DeviceInfo) GetType() enums.DeviceEnum_Device { type ListingGroupInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the listing group. - Type enums.ListingGroupTypeEnum_ListingGroupType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.ListingGroupTypeEnum_ListingGroupType" json:"type,omitempty"` + Type enums.ListingGroupTypeEnum_ListingGroupType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.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"` @@ -415,7 +415,7 @@ type ListingGroupInfo struct { func (x *ListingGroupInfo) Reset() { *x = ListingGroupInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -427,7 +427,7 @@ func (x *ListingGroupInfo) String() string { func (*ListingGroupInfo) ProtoMessage() {} func (x *ListingGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -440,7 +440,7 @@ func (x *ListingGroupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupInfo.ProtoReflect.Descriptor instead. func (*ListingGroupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{7} } func (x *ListingGroupInfo) GetType() enums.ListingGroupTypeEnum_ListingGroupType { @@ -483,7 +483,7 @@ type ListingDimensionPath struct { func (x *ListingDimensionPath) Reset() { *x = ListingDimensionPath{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -495,7 +495,7 @@ func (x *ListingDimensionPath) String() string { func (*ListingDimensionPath) ProtoMessage() {} func (x *ListingDimensionPath) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -508,7 +508,7 @@ func (x *ListingDimensionPath) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingDimensionPath.ProtoReflect.Descriptor instead. func (*ListingDimensionPath) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{8} } func (x *ListingDimensionPath) GetDimensions() []*ListingDimensionInfo { @@ -529,7 +529,7 @@ type ListingScopeInfo struct { func (x *ListingScopeInfo) Reset() { *x = ListingScopeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -541,7 +541,7 @@ func (x *ListingScopeInfo) String() string { func (*ListingScopeInfo) ProtoMessage() {} func (x *ListingScopeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -554,7 +554,7 @@ func (x *ListingScopeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingScopeInfo.ProtoReflect.Descriptor instead. func (*ListingScopeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{9} } func (x *ListingScopeInfo) GetDimensions() []*ListingDimensionInfo { @@ -601,7 +601,7 @@ type ListingDimensionInfo struct { func (x *ListingDimensionInfo) Reset() { *x = ListingDimensionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -613,7 +613,7 @@ func (x *ListingDimensionInfo) String() string { func (*ListingDimensionInfo) ProtoMessage() {} func (x *ListingDimensionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -626,7 +626,7 @@ func (x *ListingDimensionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingDimensionInfo.ProtoReflect.Descriptor instead. func (*ListingDimensionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{10} } func (x *ListingDimensionInfo) GetDimension() isListingDimensionInfo_Dimension { @@ -1023,7 +1023,7 @@ type HotelIdInfo struct { func (x *HotelIdInfo) Reset() { *x = HotelIdInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1035,7 +1035,7 @@ func (x *HotelIdInfo) String() string { func (*HotelIdInfo) ProtoMessage() {} func (x *HotelIdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1048,7 +1048,7 @@ func (x *HotelIdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelIdInfo.ProtoReflect.Descriptor instead. func (*HotelIdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{11} } func (x *HotelIdInfo) GetValue() string { @@ -1069,7 +1069,7 @@ type HotelClassInfo struct { func (x *HotelClassInfo) Reset() { *x = HotelClassInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1081,7 +1081,7 @@ func (x *HotelClassInfo) String() string { func (*HotelClassInfo) ProtoMessage() {} func (x *HotelClassInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1094,7 +1094,7 @@ func (x *HotelClassInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelClassInfo.ProtoReflect.Descriptor instead. func (*HotelClassInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{12} } func (x *HotelClassInfo) GetValue() int64 { @@ -1115,7 +1115,7 @@ type HotelCountryRegionInfo struct { func (x *HotelCountryRegionInfo) Reset() { *x = HotelCountryRegionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1127,7 +1127,7 @@ func (x *HotelCountryRegionInfo) String() string { func (*HotelCountryRegionInfo) ProtoMessage() {} func (x *HotelCountryRegionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1140,7 +1140,7 @@ func (x *HotelCountryRegionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelCountryRegionInfo.ProtoReflect.Descriptor instead. func (*HotelCountryRegionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{13} } func (x *HotelCountryRegionInfo) GetCountryRegionCriterion() string { @@ -1161,7 +1161,7 @@ type HotelStateInfo struct { func (x *HotelStateInfo) Reset() { *x = HotelStateInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1173,7 +1173,7 @@ func (x *HotelStateInfo) String() string { func (*HotelStateInfo) ProtoMessage() {} func (x *HotelStateInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1186,7 +1186,7 @@ func (x *HotelStateInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelStateInfo.ProtoReflect.Descriptor instead. func (*HotelStateInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{14} } func (x *HotelStateInfo) GetStateCriterion() string { @@ -1207,7 +1207,7 @@ type HotelCityInfo struct { func (x *HotelCityInfo) Reset() { *x = HotelCityInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1219,7 +1219,7 @@ func (x *HotelCityInfo) String() string { func (*HotelCityInfo) ProtoMessage() {} func (x *HotelCityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1232,7 +1232,7 @@ func (x *HotelCityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelCityInfo.ProtoReflect.Descriptor instead. func (*HotelCityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{15} } func (x *HotelCityInfo) GetCityCriterion() string { @@ -1251,14 +1251,14 @@ 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.v21.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"` + Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v22.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductCategoryInfo) Reset() { *x = ProductCategoryInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1270,7 +1270,7 @@ func (x *ProductCategoryInfo) String() string { func (*ProductCategoryInfo) ProtoMessage() {} func (x *ProductCategoryInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1283,7 +1283,7 @@ func (x *ProductCategoryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCategoryInfo.ProtoReflect.Descriptor instead. func (*ProductCategoryInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{16} } func (x *ProductCategoryInfo) GetCategoryId() int64 { @@ -1311,7 +1311,7 @@ type ProductBrandInfo struct { func (x *ProductBrandInfo) Reset() { *x = ProductBrandInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1323,7 +1323,7 @@ func (x *ProductBrandInfo) String() string { func (*ProductBrandInfo) ProtoMessage() {} func (x *ProductBrandInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1336,7 +1336,7 @@ func (x *ProductBrandInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductBrandInfo.ProtoReflect.Descriptor instead. func (*ProductBrandInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{17} } func (x *ProductBrandInfo) GetValue() string { @@ -1350,14 +1350,14 @@ func (x *ProductBrandInfo) GetValue() string { type ProductChannelInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Value of the locality. - Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v21.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"` + Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v22.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductChannelInfo) Reset() { *x = ProductChannelInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1369,7 +1369,7 @@ func (x *ProductChannelInfo) String() string { func (*ProductChannelInfo) ProtoMessage() {} func (x *ProductChannelInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1382,7 +1382,7 @@ func (x *ProductChannelInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductChannelInfo.ProtoReflect.Descriptor instead. func (*ProductChannelInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{18} } func (x *ProductChannelInfo) GetChannel() enums.ProductChannelEnum_ProductChannel { @@ -1396,14 +1396,14 @@ func (x *ProductChannelInfo) GetChannel() enums.ProductChannelEnum_ProductChanne type ProductChannelExclusivityInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Value of the availability. - ChannelExclusivity enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,1,opt,name=channel_exclusivity,json=channelExclusivity,proto3,enum=google.ads.googleads.v21.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.v22.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity" json:"channel_exclusivity,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductChannelExclusivityInfo) Reset() { *x = ProductChannelExclusivityInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1415,7 +1415,7 @@ func (x *ProductChannelExclusivityInfo) String() string { func (*ProductChannelExclusivityInfo) ProtoMessage() {} func (x *ProductChannelExclusivityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1428,7 +1428,7 @@ func (x *ProductChannelExclusivityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductChannelExclusivityInfo.ProtoReflect.Descriptor instead. func (*ProductChannelExclusivityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{19} } func (x *ProductChannelExclusivityInfo) GetChannelExclusivity() enums.ProductChannelExclusivityEnum_ProductChannelExclusivity { @@ -1442,14 +1442,14 @@ func (x *ProductChannelExclusivityInfo) GetChannelExclusivity() enums.ProductCha type ProductConditionInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Value of the condition. - Condition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v21.enums.ProductConditionEnum_ProductCondition" json:"condition,omitempty"` + Condition enums.ProductConditionEnum_ProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v22.enums.ProductConditionEnum_ProductCondition" json:"condition,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductConditionInfo) Reset() { *x = ProductConditionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1461,7 +1461,7 @@ func (x *ProductConditionInfo) String() string { func (*ProductConditionInfo) ProtoMessage() {} func (x *ProductConditionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1474,7 +1474,7 @@ func (x *ProductConditionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductConditionInfo.ProtoReflect.Descriptor instead. func (*ProductConditionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{20} } func (x *ProductConditionInfo) GetCondition() enums.ProductConditionEnum_ProductCondition { @@ -1490,14 +1490,14 @@ 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.v21.enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex" json:"index,omitempty"` + Index enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v22.enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex" json:"index,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductCustomAttributeInfo) Reset() { *x = ProductCustomAttributeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1509,7 +1509,7 @@ func (x *ProductCustomAttributeInfo) String() string { func (*ProductCustomAttributeInfo) ProtoMessage() {} func (x *ProductCustomAttributeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1522,7 +1522,7 @@ func (x *ProductCustomAttributeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCustomAttributeInfo.ProtoReflect.Descriptor instead. func (*ProductCustomAttributeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{21} } func (x *ProductCustomAttributeInfo) GetValue() string { @@ -1550,7 +1550,7 @@ type ProductItemIdInfo struct { func (x *ProductItemIdInfo) Reset() { *x = ProductItemIdInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1562,7 +1562,7 @@ func (x *ProductItemIdInfo) String() string { func (*ProductItemIdInfo) ProtoMessage() {} func (x *ProductItemIdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1575,7 +1575,7 @@ func (x *ProductItemIdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductItemIdInfo.ProtoReflect.Descriptor instead. func (*ProductItemIdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{22} } func (x *ProductItemIdInfo) GetValue() string { @@ -1591,14 +1591,14 @@ 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.v21.enums.ProductTypeLevelEnum_ProductTypeLevel" json:"level,omitempty"` + Level enums.ProductTypeLevelEnum_ProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v22.enums.ProductTypeLevelEnum_ProductTypeLevel" json:"level,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProductTypeInfo) Reset() { *x = ProductTypeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1610,7 +1610,7 @@ func (x *ProductTypeInfo) String() string { func (*ProductTypeInfo) ProtoMessage() {} func (x *ProductTypeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1623,7 +1623,7 @@ func (x *ProductTypeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductTypeInfo.ProtoReflect.Descriptor instead. func (*ProductTypeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{23} } func (x *ProductTypeInfo) GetValue() string { @@ -1652,7 +1652,7 @@ type ProductGroupingInfo struct { func (x *ProductGroupingInfo) Reset() { *x = ProductGroupingInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1664,7 +1664,7 @@ func (x *ProductGroupingInfo) String() string { func (*ProductGroupingInfo) ProtoMessage() {} func (x *ProductGroupingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1677,7 +1677,7 @@ func (x *ProductGroupingInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductGroupingInfo.ProtoReflect.Descriptor instead. func (*ProductGroupingInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{24} } func (x *ProductGroupingInfo) GetValue() string { @@ -1699,7 +1699,7 @@ type ProductLabelsInfo struct { func (x *ProductLabelsInfo) Reset() { *x = ProductLabelsInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1711,7 +1711,7 @@ func (x *ProductLabelsInfo) String() string { func (*ProductLabelsInfo) ProtoMessage() {} func (x *ProductLabelsInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1724,7 +1724,7 @@ func (x *ProductLabelsInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLabelsInfo.ProtoReflect.Descriptor instead. func (*ProductLabelsInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{25} } func (x *ProductLabelsInfo) GetValue() string { @@ -1746,7 +1746,7 @@ type ProductLegacyConditionInfo struct { func (x *ProductLegacyConditionInfo) Reset() { *x = ProductLegacyConditionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1758,7 +1758,7 @@ func (x *ProductLegacyConditionInfo) String() string { func (*ProductLegacyConditionInfo) ProtoMessage() {} func (x *ProductLegacyConditionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1771,7 +1771,7 @@ func (x *ProductLegacyConditionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLegacyConditionInfo.ProtoReflect.Descriptor instead. func (*ProductLegacyConditionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{26} } func (x *ProductLegacyConditionInfo) GetValue() string { @@ -1793,7 +1793,7 @@ type ProductTypeFullInfo struct { func (x *ProductTypeFullInfo) Reset() { *x = ProductTypeFullInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1805,7 +1805,7 @@ func (x *ProductTypeFullInfo) String() string { func (*ProductTypeFullInfo) ProtoMessage() {} func (x *ProductTypeFullInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1818,7 +1818,7 @@ func (x *ProductTypeFullInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductTypeFullInfo.ProtoReflect.Descriptor instead. func (*ProductTypeFullInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{27} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{27} } func (x *ProductTypeFullInfo) GetValue() string { @@ -1837,7 +1837,7 @@ type UnknownListingDimensionInfo struct { func (x *UnknownListingDimensionInfo) Reset() { *x = UnknownListingDimensionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1849,7 +1849,7 @@ func (x *UnknownListingDimensionInfo) String() string { func (*UnknownListingDimensionInfo) ProtoMessage() {} func (x *UnknownListingDimensionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1862,21 +1862,21 @@ func (x *UnknownListingDimensionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UnknownListingDimensionInfo.ProtoReflect.Descriptor instead. func (*UnknownListingDimensionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{28} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{28} } // Criterion for hotel date selection (default dates versus user selected). type HotelDateSelectionTypeInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the hotel date selection - Type enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"type,omitempty"` + Type enums.HotelDateSelectionTypeEnum_HotelDateSelectionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum_HotelDateSelectionType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelDateSelectionTypeInfo) Reset() { *x = HotelDateSelectionTypeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1888,7 +1888,7 @@ func (x *HotelDateSelectionTypeInfo) String() string { func (*HotelDateSelectionTypeInfo) ProtoMessage() {} func (x *HotelDateSelectionTypeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1901,7 +1901,7 @@ func (x *HotelDateSelectionTypeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelDateSelectionTypeInfo.ProtoReflect.Descriptor instead. func (*HotelDateSelectionTypeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{29} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{29} } func (x *HotelDateSelectionTypeInfo) GetType() enums.HotelDateSelectionTypeEnum_HotelDateSelectionType { @@ -1924,7 +1924,7 @@ type HotelAdvanceBookingWindowInfo struct { func (x *HotelAdvanceBookingWindowInfo) Reset() { *x = HotelAdvanceBookingWindowInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1936,7 +1936,7 @@ func (x *HotelAdvanceBookingWindowInfo) String() string { func (*HotelAdvanceBookingWindowInfo) ProtoMessage() {} func (x *HotelAdvanceBookingWindowInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1949,7 +1949,7 @@ func (x *HotelAdvanceBookingWindowInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelAdvanceBookingWindowInfo.ProtoReflect.Descriptor instead. func (*HotelAdvanceBookingWindowInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{30} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{30} } func (x *HotelAdvanceBookingWindowInfo) GetMinDays() int64 { @@ -1979,7 +1979,7 @@ type HotelLengthOfStayInfo struct { func (x *HotelLengthOfStayInfo) Reset() { *x = HotelLengthOfStayInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1991,7 +1991,7 @@ func (x *HotelLengthOfStayInfo) String() string { func (*HotelLengthOfStayInfo) ProtoMessage() {} func (x *HotelLengthOfStayInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2004,7 +2004,7 @@ func (x *HotelLengthOfStayInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelLengthOfStayInfo.ProtoReflect.Descriptor instead. func (*HotelLengthOfStayInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{31} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{31} } func (x *HotelLengthOfStayInfo) GetMinNights() int64 { @@ -2034,7 +2034,7 @@ type HotelCheckInDateRangeInfo struct { func (x *HotelCheckInDateRangeInfo) Reset() { *x = HotelCheckInDateRangeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2046,7 +2046,7 @@ func (x *HotelCheckInDateRangeInfo) String() string { func (*HotelCheckInDateRangeInfo) ProtoMessage() {} func (x *HotelCheckInDateRangeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2059,7 +2059,7 @@ func (x *HotelCheckInDateRangeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelCheckInDateRangeInfo.ProtoReflect.Descriptor instead. func (*HotelCheckInDateRangeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{32} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{32} } func (x *HotelCheckInDateRangeInfo) GetStartDate() string { @@ -2080,14 +2080,14 @@ func (x *HotelCheckInDateRangeInfo) GetEndDate() string { type HotelCheckInDayInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // The day of the week. - DayOfWeek enums.DayOfWeekEnum_DayOfWeek `protobuf:"varint,1,opt,name=day_of_week,json=dayOfWeek,proto3,enum=google.ads.googleads.v21.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.v22.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelCheckInDayInfo) Reset() { *x = HotelCheckInDayInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2099,7 +2099,7 @@ func (x *HotelCheckInDayInfo) String() string { func (*HotelCheckInDayInfo) ProtoMessage() {} func (x *HotelCheckInDayInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2112,7 +2112,7 @@ func (x *HotelCheckInDayInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelCheckInDayInfo.ProtoReflect.Descriptor instead. func (*HotelCheckInDayInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{33} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{33} } func (x *HotelCheckInDayInfo) GetDayOfWeek() enums.DayOfWeekEnum_DayOfWeek { @@ -2133,7 +2133,7 @@ type ActivityIdInfo struct { func (x *ActivityIdInfo) Reset() { *x = ActivityIdInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2145,7 +2145,7 @@ func (x *ActivityIdInfo) String() string { func (*ActivityIdInfo) ProtoMessage() {} func (x *ActivityIdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2158,7 +2158,7 @@ func (x *ActivityIdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityIdInfo.ProtoReflect.Descriptor instead. func (*ActivityIdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{34} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{34} } func (x *ActivityIdInfo) GetValue() string { @@ -2179,7 +2179,7 @@ type ActivityRatingInfo struct { func (x *ActivityRatingInfo) Reset() { *x = ActivityRatingInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2191,7 +2191,7 @@ func (x *ActivityRatingInfo) String() string { func (*ActivityRatingInfo) ProtoMessage() {} func (x *ActivityRatingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2204,7 +2204,7 @@ func (x *ActivityRatingInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityRatingInfo.ProtoReflect.Descriptor instead. func (*ActivityRatingInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{35} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{35} } func (x *ActivityRatingInfo) GetValue() int64 { @@ -2226,7 +2226,7 @@ type ActivityCountryInfo struct { func (x *ActivityCountryInfo) Reset() { *x = ActivityCountryInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2238,7 +2238,7 @@ func (x *ActivityCountryInfo) String() string { func (*ActivityCountryInfo) ProtoMessage() {} func (x *ActivityCountryInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2251,7 +2251,7 @@ func (x *ActivityCountryInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityCountryInfo.ProtoReflect.Descriptor instead. func (*ActivityCountryInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{36} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{36} } func (x *ActivityCountryInfo) GetValue() string { @@ -2273,7 +2273,7 @@ type ActivityStateInfo struct { func (x *ActivityStateInfo) Reset() { *x = ActivityStateInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2285,7 +2285,7 @@ func (x *ActivityStateInfo) String() string { func (*ActivityStateInfo) ProtoMessage() {} func (x *ActivityStateInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2298,7 +2298,7 @@ func (x *ActivityStateInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityStateInfo.ProtoReflect.Descriptor instead. func (*ActivityStateInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{37} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{37} } func (x *ActivityStateInfo) GetValue() string { @@ -2320,7 +2320,7 @@ type ActivityCityInfo struct { func (x *ActivityCityInfo) Reset() { *x = ActivityCityInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2332,7 +2332,7 @@ func (x *ActivityCityInfo) String() string { func (*ActivityCityInfo) ProtoMessage() {} func (x *ActivityCityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2345,7 +2345,7 @@ func (x *ActivityCityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ActivityCityInfo.ProtoReflect.Descriptor instead. func (*ActivityCityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{38} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{38} } func (x *ActivityCityInfo) GetValue() string { @@ -2359,14 +2359,14 @@ func (x *ActivityCityInfo) GetValue() string { type InteractionTypeInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // The interaction type. - Type enums.InteractionTypeEnum_InteractionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.InteractionTypeEnum_InteractionType" json:"type,omitempty"` + Type enums.InteractionTypeEnum_InteractionType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.InteractionTypeEnum_InteractionType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *InteractionTypeInfo) Reset() { *x = InteractionTypeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2378,7 +2378,7 @@ func (x *InteractionTypeInfo) String() string { func (*InteractionTypeInfo) ProtoMessage() {} func (x *InteractionTypeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2391,7 +2391,7 @@ func (x *InteractionTypeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use InteractionTypeInfo.ProtoReflect.Descriptor instead. func (*InteractionTypeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{39} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{39} } func (x *InteractionTypeInfo) GetType() enums.InteractionTypeEnum_InteractionType { @@ -2413,13 +2413,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.v21.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.v22.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.v21.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.v22.enums.MinuteOfHourEnum_MinuteOfHour" json:"end_minute,omitempty"` // Starting hour in 24 hour time. // This field must be between 0 and 23, inclusive. // @@ -2436,14 +2436,14 @@ 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.v21.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.v22.enums.DayOfWeekEnum_DayOfWeek" json:"day_of_week,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdScheduleInfo) Reset() { *x = AdScheduleInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2455,7 +2455,7 @@ func (x *AdScheduleInfo) String() string { func (*AdScheduleInfo) ProtoMessage() {} func (x *AdScheduleInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2468,7 +2468,7 @@ func (x *AdScheduleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AdScheduleInfo.ProtoReflect.Descriptor instead. func (*AdScheduleInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{40} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{40} } func (x *AdScheduleInfo) GetStartMinute() enums.MinuteOfHourEnum_MinuteOfHour { @@ -2510,14 +2510,14 @@ func (x *AdScheduleInfo) GetDayOfWeek() enums.DayOfWeekEnum_DayOfWeek { type AgeRangeInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the age range. - Type enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.AgeRangeTypeEnum_AgeRangeType" json:"type,omitempty"` + Type enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.AgeRangeTypeEnum_AgeRangeType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AgeRangeInfo) Reset() { *x = AgeRangeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[41] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2529,7 +2529,7 @@ func (x *AgeRangeInfo) String() string { func (*AgeRangeInfo) ProtoMessage() {} func (x *AgeRangeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[41] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2542,7 +2542,7 @@ func (x *AgeRangeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeRangeInfo.ProtoReflect.Descriptor instead. func (*AgeRangeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{41} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{41} } func (x *AgeRangeInfo) GetType() enums.AgeRangeTypeEnum_AgeRangeType { @@ -2556,14 +2556,14 @@ func (x *AgeRangeInfo) GetType() enums.AgeRangeTypeEnum_AgeRangeType { type GenderInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the gender. - Type enums.GenderTypeEnum_GenderType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.GenderTypeEnum_GenderType" json:"type,omitempty"` + Type enums.GenderTypeEnum_GenderType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.GenderTypeEnum_GenderType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GenderInfo) Reset() { *x = GenderInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[42] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2575,7 +2575,7 @@ func (x *GenderInfo) String() string { func (*GenderInfo) ProtoMessage() {} func (x *GenderInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[42] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2588,7 +2588,7 @@ func (x *GenderInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use GenderInfo.ProtoReflect.Descriptor instead. func (*GenderInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{42} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{42} } func (x *GenderInfo) GetType() enums.GenderTypeEnum_GenderType { @@ -2602,14 +2602,14 @@ func (x *GenderInfo) GetType() enums.GenderTypeEnum_GenderType { type IncomeRangeInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the income range. - Type enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"type,omitempty"` + Type enums.IncomeRangeTypeEnum_IncomeRangeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.IncomeRangeTypeEnum_IncomeRangeType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *IncomeRangeInfo) Reset() { *x = IncomeRangeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[43] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2621,7 +2621,7 @@ func (x *IncomeRangeInfo) String() string { func (*IncomeRangeInfo) ProtoMessage() {} func (x *IncomeRangeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[43] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2634,7 +2634,7 @@ func (x *IncomeRangeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use IncomeRangeInfo.ProtoReflect.Descriptor instead. func (*IncomeRangeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{43} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{43} } func (x *IncomeRangeInfo) GetType() enums.IncomeRangeTypeEnum_IncomeRangeType { @@ -2648,14 +2648,14 @@ func (x *IncomeRangeInfo) GetType() enums.IncomeRangeTypeEnum_IncomeRangeType { type ParentalStatusInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the parental status. - Type enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"type,omitempty"` + Type enums.ParentalStatusTypeEnum_ParentalStatusType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.ParentalStatusTypeEnum_ParentalStatusType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ParentalStatusInfo) Reset() { *x = ParentalStatusInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[44] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2667,7 +2667,7 @@ func (x *ParentalStatusInfo) String() string { func (*ParentalStatusInfo) ProtoMessage() {} func (x *ParentalStatusInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[44] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2680,7 +2680,7 @@ func (x *ParentalStatusInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ParentalStatusInfo.ProtoReflect.Descriptor instead. func (*ParentalStatusInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{44} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{44} } func (x *ParentalStatusInfo) GetType() enums.ParentalStatusTypeEnum_ParentalStatusType { @@ -2701,7 +2701,7 @@ type YouTubeVideoInfo struct { func (x *YouTubeVideoInfo) Reset() { *x = YouTubeVideoInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[45] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2713,7 +2713,7 @@ func (x *YouTubeVideoInfo) String() string { func (*YouTubeVideoInfo) ProtoMessage() {} func (x *YouTubeVideoInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[45] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2726,7 +2726,7 @@ func (x *YouTubeVideoInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeVideoInfo.ProtoReflect.Descriptor instead. func (*YouTubeVideoInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{45} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{45} } func (x *YouTubeVideoInfo) GetVideoId() string { @@ -2747,7 +2747,7 @@ type YouTubeChannelInfo struct { func (x *YouTubeChannelInfo) Reset() { *x = YouTubeChannelInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[46] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2759,7 +2759,7 @@ func (x *YouTubeChannelInfo) String() string { func (*YouTubeChannelInfo) ProtoMessage() {} func (x *YouTubeChannelInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[46] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2772,7 +2772,7 @@ func (x *YouTubeChannelInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeChannelInfo.ProtoReflect.Descriptor instead. func (*YouTubeChannelInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{46} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{46} } func (x *YouTubeChannelInfo) GetChannelId() string { @@ -2794,7 +2794,7 @@ type UserListInfo struct { func (x *UserListInfo) Reset() { *x = UserListInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[47] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2806,7 +2806,7 @@ func (x *UserListInfo) String() string { func (*UserListInfo) ProtoMessage() {} func (x *UserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[47] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2819,7 +2819,7 @@ func (x *UserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListInfo.ProtoReflect.Descriptor instead. func (*UserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{47} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{47} } func (x *UserListInfo) GetUserList() string { @@ -2844,7 +2844,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.v21.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.v22.enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits" json:"radius_units,omitempty"` // Full address. Address *AddressInfo `protobuf:"bytes,4,opt,name=address,proto3" json:"address,omitempty"` unknownFields protoimpl.UnknownFields @@ -2853,7 +2853,7 @@ type ProximityInfo struct { func (x *ProximityInfo) Reset() { *x = ProximityInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[48] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2865,7 +2865,7 @@ func (x *ProximityInfo) String() string { func (*ProximityInfo) ProtoMessage() {} func (x *ProximityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[48] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2878,7 +2878,7 @@ func (x *ProximityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ProximityInfo.ProtoReflect.Descriptor instead. func (*ProximityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{48} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{48} } func (x *ProximityInfo) GetGeoPoint() *GeoPointInfo { @@ -2922,7 +2922,7 @@ type GeoPointInfo struct { func (x *GeoPointInfo) Reset() { *x = GeoPointInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[49] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2934,7 +2934,7 @@ func (x *GeoPointInfo) String() string { func (*GeoPointInfo) ProtoMessage() {} func (x *GeoPointInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[49] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2947,7 +2947,7 @@ func (x *GeoPointInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoPointInfo.ProtoReflect.Descriptor instead. func (*GeoPointInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{49} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{49} } func (x *GeoPointInfo) GetLongitudeInMicroDegrees() int32 { @@ -2989,7 +2989,7 @@ type AddressInfo struct { func (x *AddressInfo) Reset() { *x = AddressInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[50] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3001,7 +3001,7 @@ func (x *AddressInfo) String() string { func (*AddressInfo) ProtoMessage() {} func (x *AddressInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[50] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3014,7 +3014,7 @@ func (x *AddressInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AddressInfo.ProtoReflect.Descriptor instead. func (*AddressInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{50} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{50} } func (x *AddressInfo) GetPostalCode() string { @@ -3084,7 +3084,7 @@ type TopicInfo struct { func (x *TopicInfo) Reset() { *x = TopicInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[51] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3096,7 +3096,7 @@ func (x *TopicInfo) String() string { func (*TopicInfo) ProtoMessage() {} func (x *TopicInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[51] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3109,7 +3109,7 @@ func (x *TopicInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use TopicInfo.ProtoReflect.Descriptor instead. func (*TopicInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{51} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{51} } func (x *TopicInfo) GetTopicConstant() string { @@ -3137,7 +3137,7 @@ type LanguageInfo struct { func (x *LanguageInfo) Reset() { *x = LanguageInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[52] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3149,7 +3149,7 @@ func (x *LanguageInfo) String() string { func (*LanguageInfo) ProtoMessage() {} func (x *LanguageInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[52] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3162,7 +3162,7 @@ func (x *LanguageInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LanguageInfo.ProtoReflect.Descriptor instead. func (*LanguageInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{52} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{52} } func (x *LanguageInfo) GetLanguageConstant() string { @@ -3187,7 +3187,7 @@ type IpBlockInfo struct { func (x *IpBlockInfo) Reset() { *x = IpBlockInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[53] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3199,7 +3199,7 @@ func (x *IpBlockInfo) String() string { func (*IpBlockInfo) ProtoMessage() {} func (x *IpBlockInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[53] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3212,7 +3212,7 @@ func (x *IpBlockInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use IpBlockInfo.ProtoReflect.Descriptor instead. func (*IpBlockInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{53} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{53} } func (x *IpBlockInfo) GetIpAddress() string { @@ -3226,14 +3226,14 @@ func (x *IpBlockInfo) GetIpAddress() string { type ContentLabelInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Content label type, required for CREATE operations. - Type enums.ContentLabelTypeEnum_ContentLabelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.ContentLabelTypeEnum_ContentLabelType" json:"type,omitempty"` + Type enums.ContentLabelTypeEnum_ContentLabelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.ContentLabelTypeEnum_ContentLabelType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ContentLabelInfo) Reset() { *x = ContentLabelInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[54] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[54] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3245,7 +3245,7 @@ func (x *ContentLabelInfo) String() string { func (*ContentLabelInfo) ProtoMessage() {} func (x *ContentLabelInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[54] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[54] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3258,7 +3258,7 @@ func (x *ContentLabelInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentLabelInfo.ProtoReflect.Descriptor instead. func (*ContentLabelInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{54} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{54} } func (x *ContentLabelInfo) GetType() enums.ContentLabelTypeEnum_ContentLabelType { @@ -3279,7 +3279,7 @@ type CarrierInfo struct { func (x *CarrierInfo) Reset() { *x = CarrierInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[55] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[55] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3291,7 +3291,7 @@ func (x *CarrierInfo) String() string { func (*CarrierInfo) ProtoMessage() {} func (x *CarrierInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[55] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[55] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3304,7 +3304,7 @@ func (x *CarrierInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CarrierInfo.ProtoReflect.Descriptor instead. func (*CarrierInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{55} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{55} } func (x *CarrierInfo) GetCarrierConstant() string { @@ -3325,7 +3325,7 @@ type UserInterestInfo struct { func (x *UserInterestInfo) Reset() { *x = UserInterestInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[56] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[56] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3337,7 +3337,7 @@ func (x *UserInterestInfo) String() string { func (*UserInterestInfo) ProtoMessage() {} func (x *UserInterestInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[56] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[56] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3350,7 +3350,7 @@ func (x *UserInterestInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterestInfo.ProtoReflect.Descriptor instead. func (*UserInterestInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{56} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{56} } func (x *UserInterestInfo) GetUserInterestCategory() string { @@ -3392,7 +3392,7 @@ type WebpageInfo struct { func (x *WebpageInfo) Reset() { *x = WebpageInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[57] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[57] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3404,7 +3404,7 @@ func (x *WebpageInfo) String() string { func (*WebpageInfo) ProtoMessage() {} func (x *WebpageInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[57] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[57] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3417,7 +3417,7 @@ func (x *WebpageInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageInfo.ProtoReflect.Descriptor instead. func (*WebpageInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{57} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{57} } func (x *WebpageInfo) GetCriterionName() string { @@ -3452,9 +3452,9 @@ func (x *WebpageInfo) GetSample() *WebpageSampleInfo { type WebpageConditionInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Operand of webpage targeting condition. - Operand enums.WebpageConditionOperandEnum_WebpageConditionOperand `protobuf:"varint,1,opt,name=operand,proto3,enum=google.ads.googleads.v21.enums.WebpageConditionOperandEnum_WebpageConditionOperand" json:"operand,omitempty"` + Operand enums.WebpageConditionOperandEnum_WebpageConditionOperand `protobuf:"varint,1,opt,name=operand,proto3,enum=google.ads.googleads.v22.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.v21.enums.WebpageConditionOperatorEnum_WebpageConditionOperator" json:"operator,omitempty"` + Operator enums.WebpageConditionOperatorEnum_WebpageConditionOperator `protobuf:"varint,2,opt,name=operator,proto3,enum=google.ads.googleads.v22.enums.WebpageConditionOperatorEnum_WebpageConditionOperator" json:"operator,omitempty"` // Argument of webpage targeting condition. Argument *string `protobuf:"bytes,4,opt,name=argument,proto3,oneof" json:"argument,omitempty"` unknownFields protoimpl.UnknownFields @@ -3463,7 +3463,7 @@ type WebpageConditionInfo struct { func (x *WebpageConditionInfo) Reset() { *x = WebpageConditionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[58] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[58] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3475,7 +3475,7 @@ func (x *WebpageConditionInfo) String() string { func (*WebpageConditionInfo) ProtoMessage() {} func (x *WebpageConditionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[58] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[58] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3488,7 +3488,7 @@ func (x *WebpageConditionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageConditionInfo.ProtoReflect.Descriptor instead. func (*WebpageConditionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{58} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{58} } func (x *WebpageConditionInfo) GetOperand() enums.WebpageConditionOperandEnum_WebpageConditionOperand { @@ -3523,7 +3523,7 @@ type WebpageListInfo struct { func (x *WebpageListInfo) Reset() { *x = WebpageListInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[59] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[59] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3535,7 +3535,7 @@ func (x *WebpageListInfo) String() string { func (*WebpageListInfo) ProtoMessage() {} func (x *WebpageListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[59] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[59] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3548,7 +3548,7 @@ func (x *WebpageListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageListInfo.ProtoReflect.Descriptor instead. func (*WebpageListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{59} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{59} } func (x *WebpageListInfo) GetSharedSet() string { @@ -3569,7 +3569,7 @@ type WebpageSampleInfo struct { func (x *WebpageSampleInfo) Reset() { *x = WebpageSampleInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[60] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[60] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3581,7 +3581,7 @@ func (x *WebpageSampleInfo) String() string { func (*WebpageSampleInfo) ProtoMessage() {} func (x *WebpageSampleInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[60] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[60] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3594,7 +3594,7 @@ func (x *WebpageSampleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageSampleInfo.ProtoReflect.Descriptor instead. func (*WebpageSampleInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{60} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{60} } func (x *WebpageSampleInfo) GetSampleUrls() []string { @@ -3615,7 +3615,7 @@ type OperatingSystemVersionInfo struct { func (x *OperatingSystemVersionInfo) Reset() { *x = OperatingSystemVersionInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[61] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[61] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3627,7 +3627,7 @@ func (x *OperatingSystemVersionInfo) String() string { func (*OperatingSystemVersionInfo) ProtoMessage() {} func (x *OperatingSystemVersionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[61] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[61] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3640,7 +3640,7 @@ func (x *OperatingSystemVersionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemVersionInfo.ProtoReflect.Descriptor instead. func (*OperatingSystemVersionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{61} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{61} } func (x *OperatingSystemVersionInfo) GetOperatingSystemVersionConstant() string { @@ -3654,14 +3654,14 @@ func (x *OperatingSystemVersionInfo) GetOperatingSystemVersionConstant() string type AppPaymentModelInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of the app payment model. - Type enums.AppPaymentModelTypeEnum_AppPaymentModelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.AppPaymentModelTypeEnum_AppPaymentModelType" json:"type,omitempty"` + Type enums.AppPaymentModelTypeEnum_AppPaymentModelType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.AppPaymentModelTypeEnum_AppPaymentModelType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AppPaymentModelInfo) Reset() { *x = AppPaymentModelInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[62] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[62] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3673,7 +3673,7 @@ func (x *AppPaymentModelInfo) String() string { func (*AppPaymentModelInfo) ProtoMessage() {} func (x *AppPaymentModelInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[62] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[62] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3686,7 +3686,7 @@ func (x *AppPaymentModelInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AppPaymentModelInfo.ProtoReflect.Descriptor instead. func (*AppPaymentModelInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{62} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{62} } func (x *AppPaymentModelInfo) GetType() enums.AppPaymentModelTypeEnum_AppPaymentModelType { @@ -3707,7 +3707,7 @@ type MobileDeviceInfo struct { func (x *MobileDeviceInfo) Reset() { *x = MobileDeviceInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[63] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[63] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3719,7 +3719,7 @@ func (x *MobileDeviceInfo) String() string { func (*MobileDeviceInfo) ProtoMessage() {} func (x *MobileDeviceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[63] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[63] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3732,7 +3732,7 @@ func (x *MobileDeviceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileDeviceInfo.ProtoReflect.Descriptor instead. func (*MobileDeviceInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{63} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{63} } func (x *MobileDeviceInfo) GetMobileDeviceConstant() string { @@ -3754,7 +3754,7 @@ type CustomAffinityInfo struct { func (x *CustomAffinityInfo) Reset() { *x = CustomAffinityInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[64] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[64] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3766,7 +3766,7 @@ func (x *CustomAffinityInfo) String() string { func (*CustomAffinityInfo) ProtoMessage() {} func (x *CustomAffinityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[64] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[64] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3779,7 +3779,7 @@ func (x *CustomAffinityInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAffinityInfo.ProtoReflect.Descriptor instead. func (*CustomAffinityInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{64} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{64} } func (x *CustomAffinityInfo) GetCustomAffinity() string { @@ -3801,7 +3801,7 @@ type CustomIntentInfo struct { func (x *CustomIntentInfo) Reset() { *x = CustomIntentInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[65] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[65] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3813,7 +3813,7 @@ func (x *CustomIntentInfo) String() string { func (*CustomIntentInfo) ProtoMessage() {} func (x *CustomIntentInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[65] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[65] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3826,7 +3826,7 @@ func (x *CustomIntentInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomIntentInfo.ProtoReflect.Descriptor instead. func (*CustomIntentInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{65} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{65} } func (x *CustomIntentInfo) GetCustomIntent() string { @@ -3849,7 +3849,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.v21.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.v22.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 @@ -3874,7 +3874,7 @@ type LocationGroupInfo struct { func (x *LocationGroupInfo) Reset() { *x = LocationGroupInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[66] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[66] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3886,7 +3886,7 @@ func (x *LocationGroupInfo) String() string { func (*LocationGroupInfo) ProtoMessage() {} func (x *LocationGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[66] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[66] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3899,7 +3899,7 @@ func (x *LocationGroupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationGroupInfo.ProtoReflect.Descriptor instead. func (*LocationGroupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{66} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{66} } func (x *LocationGroupInfo) GetGeoTargetConstants() []string { @@ -3955,7 +3955,7 @@ type CustomAudienceInfo struct { func (x *CustomAudienceInfo) Reset() { *x = CustomAudienceInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[67] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[67] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3967,7 +3967,7 @@ func (x *CustomAudienceInfo) String() string { func (*CustomAudienceInfo) ProtoMessage() {} func (x *CustomAudienceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[67] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[67] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3980,7 +3980,7 @@ func (x *CustomAudienceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceInfo.ProtoReflect.Descriptor instead. func (*CustomAudienceInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{67} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{67} } func (x *CustomAudienceInfo) GetCustomAudience() string { @@ -4001,7 +4001,7 @@ type CombinedAudienceInfo struct { func (x *CombinedAudienceInfo) Reset() { *x = CombinedAudienceInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[68] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[68] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4013,7 +4013,7 @@ func (x *CombinedAudienceInfo) String() string { func (*CombinedAudienceInfo) ProtoMessage() {} func (x *CombinedAudienceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[68] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[68] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4026,7 +4026,7 @@ func (x *CombinedAudienceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CombinedAudienceInfo.ProtoReflect.Descriptor instead. func (*CombinedAudienceInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{68} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{68} } func (x *CombinedAudienceInfo) GetCombinedAudience() string { @@ -4047,7 +4047,7 @@ type AudienceInfo struct { func (x *AudienceInfo) Reset() { *x = AudienceInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[69] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[69] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4059,7 +4059,7 @@ func (x *AudienceInfo) String() string { func (*AudienceInfo) ProtoMessage() {} func (x *AudienceInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[69] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[69] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4072,7 +4072,7 @@ func (x *AudienceInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInfo.ProtoReflect.Descriptor instead. func (*AudienceInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{69} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{69} } func (x *AudienceInfo) GetAudience() string { @@ -4099,7 +4099,7 @@ type KeywordThemeInfo struct { func (x *KeywordThemeInfo) Reset() { *x = KeywordThemeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[70] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[70] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4111,7 +4111,7 @@ func (x *KeywordThemeInfo) String() string { func (*KeywordThemeInfo) ProtoMessage() {} func (x *KeywordThemeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[70] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[70] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4124,7 +4124,7 @@ func (x *KeywordThemeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordThemeInfo.ProtoReflect.Descriptor instead. func (*KeywordThemeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{70} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{70} } func (x *KeywordThemeInfo) GetKeywordTheme() isKeywordThemeInfo_KeywordTheme { @@ -4184,7 +4184,7 @@ type LocalServiceIdInfo struct { func (x *LocalServiceIdInfo) Reset() { *x = LocalServiceIdInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[71] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[71] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4196,7 +4196,7 @@ func (x *LocalServiceIdInfo) String() string { func (*LocalServiceIdInfo) ProtoMessage() {} func (x *LocalServiceIdInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[71] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[71] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4209,7 +4209,7 @@ func (x *LocalServiceIdInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServiceIdInfo.ProtoReflect.Descriptor instead. func (*LocalServiceIdInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{71} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{71} } func (x *LocalServiceIdInfo) GetServiceId() string { @@ -4233,7 +4233,7 @@ type SearchThemeInfo struct { func (x *SearchThemeInfo) Reset() { *x = SearchThemeInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[72] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[72] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4245,7 +4245,7 @@ func (x *SearchThemeInfo) String() string { func (*SearchThemeInfo) ProtoMessage() {} func (x *SearchThemeInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[72] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[72] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4258,7 +4258,7 @@ func (x *SearchThemeInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchThemeInfo.ProtoReflect.Descriptor instead. func (*SearchThemeInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{72} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{72} } func (x *SearchThemeInfo) GetText() string { @@ -4279,16 +4279,16 @@ 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.v21.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.v22.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.v21.enums.BrandStateEnum_BrandState,oneof" json:"status,omitempty"` + Status *enums.BrandStateEnum_BrandState `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.BrandStateEnum_BrandState,oneof" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BrandInfo) Reset() { *x = BrandInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[73] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[73] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4300,7 +4300,7 @@ func (x *BrandInfo) String() string { func (*BrandInfo) ProtoMessage() {} func (x *BrandInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[73] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[73] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4313,7 +4313,7 @@ func (x *BrandInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandInfo.ProtoReflect.Descriptor instead. func (*BrandInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{73} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{73} } func (x *BrandInfo) GetDisplayName() string { @@ -4364,7 +4364,7 @@ type BrandListInfo struct { func (x *BrandListInfo) Reset() { *x = BrandListInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[74] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[74] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4376,7 +4376,7 @@ func (x *BrandListInfo) String() string { func (*BrandListInfo) ProtoMessage() {} func (x *BrandListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[74] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[74] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4389,7 +4389,7 @@ func (x *BrandListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandListInfo.ProtoReflect.Descriptor instead. func (*BrandListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{74} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{74} } func (x *BrandListInfo) GetSharedSet() string { @@ -4410,7 +4410,7 @@ type LifeEventInfo struct { func (x *LifeEventInfo) Reset() { *x = LifeEventInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[75] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[75] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4422,7 +4422,7 @@ func (x *LifeEventInfo) String() string { func (*LifeEventInfo) ProtoMessage() {} func (x *LifeEventInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[75] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[75] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4435,7 +4435,7 @@ func (x *LifeEventInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LifeEventInfo.ProtoReflect.Descriptor instead. func (*LifeEventInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{75} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{75} } func (x *LifeEventInfo) GetLifeEventId() int64 { @@ -4456,7 +4456,7 @@ type ExtendedDemographicInfo struct { func (x *ExtendedDemographicInfo) Reset() { *x = ExtendedDemographicInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[76] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[76] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4468,7 +4468,7 @@ func (x *ExtendedDemographicInfo) String() string { func (*ExtendedDemographicInfo) ProtoMessage() {} func (x *ExtendedDemographicInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[76] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[76] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4481,7 +4481,7 @@ func (x *ExtendedDemographicInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use ExtendedDemographicInfo.ProtoReflect.Descriptor instead. func (*ExtendedDemographicInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{76} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{76} } func (x *ExtendedDemographicInfo) GetExtendedDemographicId() int64 { @@ -4503,7 +4503,7 @@ type VideoLineupInfo struct { func (x *VideoLineupInfo) Reset() { *x = VideoLineupInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[77] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[77] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4515,7 +4515,7 @@ func (x *VideoLineupInfo) String() string { func (*VideoLineupInfo) ProtoMessage() {} func (x *VideoLineupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[77] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[77] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4528,7 +4528,7 @@ func (x *VideoLineupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoLineupInfo.ProtoReflect.Descriptor instead. func (*VideoLineupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{77} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{77} } func (x *VideoLineupInfo) GetVideoLineupId() int64 { @@ -4550,7 +4550,7 @@ type PlacementListInfo struct { func (x *PlacementListInfo) Reset() { *x = PlacementListInfo{} - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[78] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[78] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4562,7 +4562,7 @@ func (x *PlacementListInfo) String() string { func (*PlacementListInfo) ProtoMessage() {} func (x *PlacementListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criteria_proto_msgTypes[78] + mi := &file_google_ads_googleads_v22_common_criteria_proto_msgTypes[78] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4575,7 +4575,7 @@ func (x *PlacementListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use PlacementListInfo.ProtoReflect.Descriptor instead. func (*PlacementListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP(), []int{78} + return file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP(), []int{78} } func (x *PlacementListInfo) GetSharedSet() string { @@ -4585,103 +4585,103 @@ func (x *PlacementListInfo) GetSharedSet() string { return "" } -var File_google_ads_googleads_v21_common_criteria_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_criteria_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x74, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6e, 0x75, 0x74, 0x65, 0x5f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -4693,7 +4693,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -4732,18 +4732,18 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x76, 0x69, 0x63, 0x65, 0x45, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4752,7 +4752,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4762,66 +4762,66 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4829,87 +4829,87 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x63, 0x74, 0x69, 0x76, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4945,7 +4945,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4957,7 +4957,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4966,7 +4966,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4975,7 +4975,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4985,7 +4985,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5000,7 +5000,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, + 0x32, 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, @@ -5025,7 +5025,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5054,7 +5054,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5079,20 +5079,20 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5103,34 +5103,34 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x79, 0x4f, 0x66, 0x57, 0x65, 0x65, + 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x52, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x61, 0x6c, + 0x32, 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, @@ -5150,20 +5150,20 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x47, 0x65, 0x6f, 0x50, 0x6f, 0x69, 0x6e, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5227,7 +5227,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5252,7 +5252,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5260,7 +5260,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5268,14 +5268,14 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x57, 0x65, 0x62, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5307,7 +5307,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]byte{ 0x70, 0x50, 0x61, 0x79, 0x6d, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5340,7 +5340,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]byte{ 0x03, 0x48, 0x00, 0x52, 0x06, 0x72, 0x61, 0x64, 0x69, 0x75, 0x73, 0x88, 0x01, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5405,7 +5405,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]byte{ 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x52, 0x65, + 0x32, 0x32, 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, 0x74, 0x52, 0x65, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, @@ -5413,7 +5413,7 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]byte{ 0x65, 0x63, 0x74, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5449,201 +5449,201 @@ var file_google_ads_googleads_v21_common_criteria_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_criteria_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_criteria_proto_rawDescData []byte + file_google_ads_googleads_v22_common_criteria_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_criteria_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_criteria_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_criteria_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_criteria_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_criteria_proto_rawDesc), len(file_google_ads_googleads_v21_common_criteria_proto_rawDesc))) +func file_google_ads_googleads_v22_common_criteria_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_criteria_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_criteria_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_criteria_proto_rawDesc), len(file_google_ads_googleads_v22_common_criteria_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_criteria_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_criteria_proto_msgTypes = make([]protoimpl.MessageInfo, 79) -var file_google_ads_googleads_v21_common_criteria_proto_goTypes = []any{ - (*KeywordInfo)(nil), // 0: google.ads.googleads.v21.common.KeywordInfo - (*PlacementInfo)(nil), // 1: google.ads.googleads.v21.common.PlacementInfo - (*NegativeKeywordListInfo)(nil), // 2: google.ads.googleads.v21.common.NegativeKeywordListInfo - (*MobileAppCategoryInfo)(nil), // 3: google.ads.googleads.v21.common.MobileAppCategoryInfo - (*MobileApplicationInfo)(nil), // 4: google.ads.googleads.v21.common.MobileApplicationInfo - (*LocationInfo)(nil), // 5: google.ads.googleads.v21.common.LocationInfo - (*DeviceInfo)(nil), // 6: google.ads.googleads.v21.common.DeviceInfo - (*ListingGroupInfo)(nil), // 7: google.ads.googleads.v21.common.ListingGroupInfo - (*ListingDimensionPath)(nil), // 8: google.ads.googleads.v21.common.ListingDimensionPath - (*ListingScopeInfo)(nil), // 9: google.ads.googleads.v21.common.ListingScopeInfo - (*ListingDimensionInfo)(nil), // 10: google.ads.googleads.v21.common.ListingDimensionInfo - (*HotelIdInfo)(nil), // 11: google.ads.googleads.v21.common.HotelIdInfo - (*HotelClassInfo)(nil), // 12: google.ads.googleads.v21.common.HotelClassInfo - (*HotelCountryRegionInfo)(nil), // 13: google.ads.googleads.v21.common.HotelCountryRegionInfo - (*HotelStateInfo)(nil), // 14: google.ads.googleads.v21.common.HotelStateInfo - (*HotelCityInfo)(nil), // 15: google.ads.googleads.v21.common.HotelCityInfo - (*ProductCategoryInfo)(nil), // 16: google.ads.googleads.v21.common.ProductCategoryInfo - (*ProductBrandInfo)(nil), // 17: google.ads.googleads.v21.common.ProductBrandInfo - (*ProductChannelInfo)(nil), // 18: google.ads.googleads.v21.common.ProductChannelInfo - (*ProductChannelExclusivityInfo)(nil), // 19: google.ads.googleads.v21.common.ProductChannelExclusivityInfo - (*ProductConditionInfo)(nil), // 20: google.ads.googleads.v21.common.ProductConditionInfo - (*ProductCustomAttributeInfo)(nil), // 21: google.ads.googleads.v21.common.ProductCustomAttributeInfo - (*ProductItemIdInfo)(nil), // 22: google.ads.googleads.v21.common.ProductItemIdInfo - (*ProductTypeInfo)(nil), // 23: google.ads.googleads.v21.common.ProductTypeInfo - (*ProductGroupingInfo)(nil), // 24: google.ads.googleads.v21.common.ProductGroupingInfo - (*ProductLabelsInfo)(nil), // 25: google.ads.googleads.v21.common.ProductLabelsInfo - (*ProductLegacyConditionInfo)(nil), // 26: google.ads.googleads.v21.common.ProductLegacyConditionInfo - (*ProductTypeFullInfo)(nil), // 27: google.ads.googleads.v21.common.ProductTypeFullInfo - (*UnknownListingDimensionInfo)(nil), // 28: google.ads.googleads.v21.common.UnknownListingDimensionInfo - (*HotelDateSelectionTypeInfo)(nil), // 29: google.ads.googleads.v21.common.HotelDateSelectionTypeInfo - (*HotelAdvanceBookingWindowInfo)(nil), // 30: google.ads.googleads.v21.common.HotelAdvanceBookingWindowInfo - (*HotelLengthOfStayInfo)(nil), // 31: google.ads.googleads.v21.common.HotelLengthOfStayInfo - (*HotelCheckInDateRangeInfo)(nil), // 32: google.ads.googleads.v21.common.HotelCheckInDateRangeInfo - (*HotelCheckInDayInfo)(nil), // 33: google.ads.googleads.v21.common.HotelCheckInDayInfo - (*ActivityIdInfo)(nil), // 34: google.ads.googleads.v21.common.ActivityIdInfo - (*ActivityRatingInfo)(nil), // 35: google.ads.googleads.v21.common.ActivityRatingInfo - (*ActivityCountryInfo)(nil), // 36: google.ads.googleads.v21.common.ActivityCountryInfo - (*ActivityStateInfo)(nil), // 37: google.ads.googleads.v21.common.ActivityStateInfo - (*ActivityCityInfo)(nil), // 38: google.ads.googleads.v21.common.ActivityCityInfo - (*InteractionTypeInfo)(nil), // 39: google.ads.googleads.v21.common.InteractionTypeInfo - (*AdScheduleInfo)(nil), // 40: google.ads.googleads.v21.common.AdScheduleInfo - (*AgeRangeInfo)(nil), // 41: google.ads.googleads.v21.common.AgeRangeInfo - (*GenderInfo)(nil), // 42: google.ads.googleads.v21.common.GenderInfo - (*IncomeRangeInfo)(nil), // 43: google.ads.googleads.v21.common.IncomeRangeInfo - (*ParentalStatusInfo)(nil), // 44: google.ads.googleads.v21.common.ParentalStatusInfo - (*YouTubeVideoInfo)(nil), // 45: google.ads.googleads.v21.common.YouTubeVideoInfo - (*YouTubeChannelInfo)(nil), // 46: google.ads.googleads.v21.common.YouTubeChannelInfo - (*UserListInfo)(nil), // 47: google.ads.googleads.v21.common.UserListInfo - (*ProximityInfo)(nil), // 48: google.ads.googleads.v21.common.ProximityInfo - (*GeoPointInfo)(nil), // 49: google.ads.googleads.v21.common.GeoPointInfo - (*AddressInfo)(nil), // 50: google.ads.googleads.v21.common.AddressInfo - (*TopicInfo)(nil), // 51: google.ads.googleads.v21.common.TopicInfo - (*LanguageInfo)(nil), // 52: google.ads.googleads.v21.common.LanguageInfo - (*IpBlockInfo)(nil), // 53: google.ads.googleads.v21.common.IpBlockInfo - (*ContentLabelInfo)(nil), // 54: google.ads.googleads.v21.common.ContentLabelInfo - (*CarrierInfo)(nil), // 55: google.ads.googleads.v21.common.CarrierInfo - (*UserInterestInfo)(nil), // 56: google.ads.googleads.v21.common.UserInterestInfo - (*WebpageInfo)(nil), // 57: google.ads.googleads.v21.common.WebpageInfo - (*WebpageConditionInfo)(nil), // 58: google.ads.googleads.v21.common.WebpageConditionInfo - (*WebpageListInfo)(nil), // 59: google.ads.googleads.v21.common.WebpageListInfo - (*WebpageSampleInfo)(nil), // 60: google.ads.googleads.v21.common.WebpageSampleInfo - (*OperatingSystemVersionInfo)(nil), // 61: google.ads.googleads.v21.common.OperatingSystemVersionInfo - (*AppPaymentModelInfo)(nil), // 62: google.ads.googleads.v21.common.AppPaymentModelInfo - (*MobileDeviceInfo)(nil), // 63: google.ads.googleads.v21.common.MobileDeviceInfo - (*CustomAffinityInfo)(nil), // 64: google.ads.googleads.v21.common.CustomAffinityInfo - (*CustomIntentInfo)(nil), // 65: google.ads.googleads.v21.common.CustomIntentInfo - (*LocationGroupInfo)(nil), // 66: google.ads.googleads.v21.common.LocationGroupInfo - (*CustomAudienceInfo)(nil), // 67: google.ads.googleads.v21.common.CustomAudienceInfo - (*CombinedAudienceInfo)(nil), // 68: google.ads.googleads.v21.common.CombinedAudienceInfo - (*AudienceInfo)(nil), // 69: google.ads.googleads.v21.common.AudienceInfo - (*KeywordThemeInfo)(nil), // 70: google.ads.googleads.v21.common.KeywordThemeInfo - (*LocalServiceIdInfo)(nil), // 71: google.ads.googleads.v21.common.LocalServiceIdInfo - (*SearchThemeInfo)(nil), // 72: google.ads.googleads.v21.common.SearchThemeInfo - (*BrandInfo)(nil), // 73: google.ads.googleads.v21.common.BrandInfo - (*BrandListInfo)(nil), // 74: google.ads.googleads.v21.common.BrandListInfo - (*LifeEventInfo)(nil), // 75: google.ads.googleads.v21.common.LifeEventInfo - (*ExtendedDemographicInfo)(nil), // 76: google.ads.googleads.v21.common.ExtendedDemographicInfo - (*VideoLineupInfo)(nil), // 77: google.ads.googleads.v21.common.VideoLineupInfo - (*PlacementListInfo)(nil), // 78: google.ads.googleads.v21.common.PlacementListInfo - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 79: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - (enums.DeviceEnum_Device)(0), // 80: google.ads.googleads.v21.enums.DeviceEnum.Device - (enums.ListingGroupTypeEnum_ListingGroupType)(0), // 81: google.ads.googleads.v21.enums.ListingGroupTypeEnum.ListingGroupType - (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 82: google.ads.googleads.v21.enums.ProductCategoryLevelEnum.ProductCategoryLevel - (enums.ProductChannelEnum_ProductChannel)(0), // 83: google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 84: google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - (enums.ProductConditionEnum_ProductCondition)(0), // 85: google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - (enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 86: google.ads.googleads.v21.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex - (enums.ProductTypeLevelEnum_ProductTypeLevel)(0), // 87: google.ads.googleads.v21.enums.ProductTypeLevelEnum.ProductTypeLevel - (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 88: google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType - (enums.DayOfWeekEnum_DayOfWeek)(0), // 89: google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - (enums.InteractionTypeEnum_InteractionType)(0), // 90: google.ads.googleads.v21.enums.InteractionTypeEnum.InteractionType - (enums.MinuteOfHourEnum_MinuteOfHour)(0), // 91: google.ads.googleads.v21.enums.MinuteOfHourEnum.MinuteOfHour - (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 92: google.ads.googleads.v21.enums.AgeRangeTypeEnum.AgeRangeType - (enums.GenderTypeEnum_GenderType)(0), // 93: google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 94: google.ads.googleads.v21.enums.IncomeRangeTypeEnum.IncomeRangeType - (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 95: google.ads.googleads.v21.enums.ParentalStatusTypeEnum.ParentalStatusType - (enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 96: google.ads.googleads.v21.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits - (enums.ContentLabelTypeEnum_ContentLabelType)(0), // 97: google.ads.googleads.v21.enums.ContentLabelTypeEnum.ContentLabelType - (enums.WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 98: google.ads.googleads.v21.enums.WebpageConditionOperandEnum.WebpageConditionOperand - (enums.WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 99: google.ads.googleads.v21.enums.WebpageConditionOperatorEnum.WebpageConditionOperator - (enums.AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 100: google.ads.googleads.v21.enums.AppPaymentModelTypeEnum.AppPaymentModelType - (enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 101: google.ads.googleads.v21.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits - (enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 102: google.ads.googleads.v21.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason - (enums.BrandStateEnum_BrandState)(0), // 103: google.ads.googleads.v21.enums.BrandStateEnum.BrandState -} -var file_google_ads_googleads_v21_common_criteria_proto_depIdxs = []int32{ - 79, // 0: google.ads.googleads.v21.common.KeywordInfo.match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - 80, // 1: google.ads.googleads.v21.common.DeviceInfo.type:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 81, // 2: google.ads.googleads.v21.common.ListingGroupInfo.type:type_name -> google.ads.googleads.v21.enums.ListingGroupTypeEnum.ListingGroupType - 10, // 3: google.ads.googleads.v21.common.ListingGroupInfo.case_value:type_name -> google.ads.googleads.v21.common.ListingDimensionInfo - 8, // 4: google.ads.googleads.v21.common.ListingGroupInfo.path:type_name -> google.ads.googleads.v21.common.ListingDimensionPath - 10, // 5: google.ads.googleads.v21.common.ListingDimensionPath.dimensions:type_name -> google.ads.googleads.v21.common.ListingDimensionInfo - 10, // 6: google.ads.googleads.v21.common.ListingScopeInfo.dimensions:type_name -> google.ads.googleads.v21.common.ListingDimensionInfo - 11, // 7: google.ads.googleads.v21.common.ListingDimensionInfo.hotel_id:type_name -> google.ads.googleads.v21.common.HotelIdInfo - 12, // 8: google.ads.googleads.v21.common.ListingDimensionInfo.hotel_class:type_name -> google.ads.googleads.v21.common.HotelClassInfo - 13, // 9: google.ads.googleads.v21.common.ListingDimensionInfo.hotel_country_region:type_name -> google.ads.googleads.v21.common.HotelCountryRegionInfo - 14, // 10: google.ads.googleads.v21.common.ListingDimensionInfo.hotel_state:type_name -> google.ads.googleads.v21.common.HotelStateInfo - 15, // 11: google.ads.googleads.v21.common.ListingDimensionInfo.hotel_city:type_name -> google.ads.googleads.v21.common.HotelCityInfo - 16, // 12: google.ads.googleads.v21.common.ListingDimensionInfo.product_category:type_name -> google.ads.googleads.v21.common.ProductCategoryInfo - 17, // 13: google.ads.googleads.v21.common.ListingDimensionInfo.product_brand:type_name -> google.ads.googleads.v21.common.ProductBrandInfo - 18, // 14: google.ads.googleads.v21.common.ListingDimensionInfo.product_channel:type_name -> google.ads.googleads.v21.common.ProductChannelInfo - 19, // 15: google.ads.googleads.v21.common.ListingDimensionInfo.product_channel_exclusivity:type_name -> google.ads.googleads.v21.common.ProductChannelExclusivityInfo - 20, // 16: google.ads.googleads.v21.common.ListingDimensionInfo.product_condition:type_name -> google.ads.googleads.v21.common.ProductConditionInfo - 21, // 17: google.ads.googleads.v21.common.ListingDimensionInfo.product_custom_attribute:type_name -> google.ads.googleads.v21.common.ProductCustomAttributeInfo - 22, // 18: google.ads.googleads.v21.common.ListingDimensionInfo.product_item_id:type_name -> google.ads.googleads.v21.common.ProductItemIdInfo - 23, // 19: google.ads.googleads.v21.common.ListingDimensionInfo.product_type:type_name -> google.ads.googleads.v21.common.ProductTypeInfo - 24, // 20: google.ads.googleads.v21.common.ListingDimensionInfo.product_grouping:type_name -> google.ads.googleads.v21.common.ProductGroupingInfo - 25, // 21: google.ads.googleads.v21.common.ListingDimensionInfo.product_labels:type_name -> google.ads.googleads.v21.common.ProductLabelsInfo - 26, // 22: google.ads.googleads.v21.common.ListingDimensionInfo.product_legacy_condition:type_name -> google.ads.googleads.v21.common.ProductLegacyConditionInfo - 27, // 23: google.ads.googleads.v21.common.ListingDimensionInfo.product_type_full:type_name -> google.ads.googleads.v21.common.ProductTypeFullInfo - 34, // 24: google.ads.googleads.v21.common.ListingDimensionInfo.activity_id:type_name -> google.ads.googleads.v21.common.ActivityIdInfo - 35, // 25: google.ads.googleads.v21.common.ListingDimensionInfo.activity_rating:type_name -> google.ads.googleads.v21.common.ActivityRatingInfo - 36, // 26: google.ads.googleads.v21.common.ListingDimensionInfo.activity_country:type_name -> google.ads.googleads.v21.common.ActivityCountryInfo - 37, // 27: google.ads.googleads.v21.common.ListingDimensionInfo.activity_state:type_name -> google.ads.googleads.v21.common.ActivityStateInfo - 38, // 28: google.ads.googleads.v21.common.ListingDimensionInfo.activity_city:type_name -> google.ads.googleads.v21.common.ActivityCityInfo - 28, // 29: google.ads.googleads.v21.common.ListingDimensionInfo.unknown_listing_dimension:type_name -> google.ads.googleads.v21.common.UnknownListingDimensionInfo - 82, // 30: google.ads.googleads.v21.common.ProductCategoryInfo.level:type_name -> google.ads.googleads.v21.enums.ProductCategoryLevelEnum.ProductCategoryLevel - 83, // 31: google.ads.googleads.v21.common.ProductChannelInfo.channel:type_name -> google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - 84, // 32: google.ads.googleads.v21.common.ProductChannelExclusivityInfo.channel_exclusivity:type_name -> google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - 85, // 33: google.ads.googleads.v21.common.ProductConditionInfo.condition:type_name -> google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - 86, // 34: google.ads.googleads.v21.common.ProductCustomAttributeInfo.index:type_name -> google.ads.googleads.v21.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex - 87, // 35: google.ads.googleads.v21.common.ProductTypeInfo.level:type_name -> google.ads.googleads.v21.enums.ProductTypeLevelEnum.ProductTypeLevel - 88, // 36: google.ads.googleads.v21.common.HotelDateSelectionTypeInfo.type:type_name -> google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType - 89, // 37: google.ads.googleads.v21.common.HotelCheckInDayInfo.day_of_week:type_name -> google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - 90, // 38: google.ads.googleads.v21.common.InteractionTypeInfo.type:type_name -> google.ads.googleads.v21.enums.InteractionTypeEnum.InteractionType - 91, // 39: google.ads.googleads.v21.common.AdScheduleInfo.start_minute:type_name -> google.ads.googleads.v21.enums.MinuteOfHourEnum.MinuteOfHour - 91, // 40: google.ads.googleads.v21.common.AdScheduleInfo.end_minute:type_name -> google.ads.googleads.v21.enums.MinuteOfHourEnum.MinuteOfHour - 89, // 41: google.ads.googleads.v21.common.AdScheduleInfo.day_of_week:type_name -> google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - 92, // 42: google.ads.googleads.v21.common.AgeRangeInfo.type:type_name -> google.ads.googleads.v21.enums.AgeRangeTypeEnum.AgeRangeType - 93, // 43: google.ads.googleads.v21.common.GenderInfo.type:type_name -> google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - 94, // 44: google.ads.googleads.v21.common.IncomeRangeInfo.type:type_name -> google.ads.googleads.v21.enums.IncomeRangeTypeEnum.IncomeRangeType - 95, // 45: google.ads.googleads.v21.common.ParentalStatusInfo.type:type_name -> google.ads.googleads.v21.enums.ParentalStatusTypeEnum.ParentalStatusType - 49, // 46: google.ads.googleads.v21.common.ProximityInfo.geo_point:type_name -> google.ads.googleads.v21.common.GeoPointInfo - 96, // 47: google.ads.googleads.v21.common.ProximityInfo.radius_units:type_name -> google.ads.googleads.v21.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits - 50, // 48: google.ads.googleads.v21.common.ProximityInfo.address:type_name -> google.ads.googleads.v21.common.AddressInfo - 97, // 49: google.ads.googleads.v21.common.ContentLabelInfo.type:type_name -> google.ads.googleads.v21.enums.ContentLabelTypeEnum.ContentLabelType - 58, // 50: google.ads.googleads.v21.common.WebpageInfo.conditions:type_name -> google.ads.googleads.v21.common.WebpageConditionInfo - 60, // 51: google.ads.googleads.v21.common.WebpageInfo.sample:type_name -> google.ads.googleads.v21.common.WebpageSampleInfo - 98, // 52: google.ads.googleads.v21.common.WebpageConditionInfo.operand:type_name -> google.ads.googleads.v21.enums.WebpageConditionOperandEnum.WebpageConditionOperand - 99, // 53: google.ads.googleads.v21.common.WebpageConditionInfo.operator:type_name -> google.ads.googleads.v21.enums.WebpageConditionOperatorEnum.WebpageConditionOperator - 100, // 54: google.ads.googleads.v21.common.AppPaymentModelInfo.type:type_name -> google.ads.googleads.v21.enums.AppPaymentModelTypeEnum.AppPaymentModelType - 101, // 55: google.ads.googleads.v21.common.LocationGroupInfo.radius_units:type_name -> google.ads.googleads.v21.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits - 102, // 56: google.ads.googleads.v21.common.BrandInfo.rejection_reason:type_name -> google.ads.googleads.v21.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason - 103, // 57: google.ads.googleads.v21.common.BrandInfo.status:type_name -> google.ads.googleads.v21.enums.BrandStateEnum.BrandState + return file_google_ads_googleads_v22_common_criteria_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_criteria_proto_msgTypes = make([]protoimpl.MessageInfo, 79) +var file_google_ads_googleads_v22_common_criteria_proto_goTypes = []any{ + (*KeywordInfo)(nil), // 0: google.ads.googleads.v22.common.KeywordInfo + (*PlacementInfo)(nil), // 1: google.ads.googleads.v22.common.PlacementInfo + (*NegativeKeywordListInfo)(nil), // 2: google.ads.googleads.v22.common.NegativeKeywordListInfo + (*MobileAppCategoryInfo)(nil), // 3: google.ads.googleads.v22.common.MobileAppCategoryInfo + (*MobileApplicationInfo)(nil), // 4: google.ads.googleads.v22.common.MobileApplicationInfo + (*LocationInfo)(nil), // 5: google.ads.googleads.v22.common.LocationInfo + (*DeviceInfo)(nil), // 6: google.ads.googleads.v22.common.DeviceInfo + (*ListingGroupInfo)(nil), // 7: google.ads.googleads.v22.common.ListingGroupInfo + (*ListingDimensionPath)(nil), // 8: google.ads.googleads.v22.common.ListingDimensionPath + (*ListingScopeInfo)(nil), // 9: google.ads.googleads.v22.common.ListingScopeInfo + (*ListingDimensionInfo)(nil), // 10: google.ads.googleads.v22.common.ListingDimensionInfo + (*HotelIdInfo)(nil), // 11: google.ads.googleads.v22.common.HotelIdInfo + (*HotelClassInfo)(nil), // 12: google.ads.googleads.v22.common.HotelClassInfo + (*HotelCountryRegionInfo)(nil), // 13: google.ads.googleads.v22.common.HotelCountryRegionInfo + (*HotelStateInfo)(nil), // 14: google.ads.googleads.v22.common.HotelStateInfo + (*HotelCityInfo)(nil), // 15: google.ads.googleads.v22.common.HotelCityInfo + (*ProductCategoryInfo)(nil), // 16: google.ads.googleads.v22.common.ProductCategoryInfo + (*ProductBrandInfo)(nil), // 17: google.ads.googleads.v22.common.ProductBrandInfo + (*ProductChannelInfo)(nil), // 18: google.ads.googleads.v22.common.ProductChannelInfo + (*ProductChannelExclusivityInfo)(nil), // 19: google.ads.googleads.v22.common.ProductChannelExclusivityInfo + (*ProductConditionInfo)(nil), // 20: google.ads.googleads.v22.common.ProductConditionInfo + (*ProductCustomAttributeInfo)(nil), // 21: google.ads.googleads.v22.common.ProductCustomAttributeInfo + (*ProductItemIdInfo)(nil), // 22: google.ads.googleads.v22.common.ProductItemIdInfo + (*ProductTypeInfo)(nil), // 23: google.ads.googleads.v22.common.ProductTypeInfo + (*ProductGroupingInfo)(nil), // 24: google.ads.googleads.v22.common.ProductGroupingInfo + (*ProductLabelsInfo)(nil), // 25: google.ads.googleads.v22.common.ProductLabelsInfo + (*ProductLegacyConditionInfo)(nil), // 26: google.ads.googleads.v22.common.ProductLegacyConditionInfo + (*ProductTypeFullInfo)(nil), // 27: google.ads.googleads.v22.common.ProductTypeFullInfo + (*UnknownListingDimensionInfo)(nil), // 28: google.ads.googleads.v22.common.UnknownListingDimensionInfo + (*HotelDateSelectionTypeInfo)(nil), // 29: google.ads.googleads.v22.common.HotelDateSelectionTypeInfo + (*HotelAdvanceBookingWindowInfo)(nil), // 30: google.ads.googleads.v22.common.HotelAdvanceBookingWindowInfo + (*HotelLengthOfStayInfo)(nil), // 31: google.ads.googleads.v22.common.HotelLengthOfStayInfo + (*HotelCheckInDateRangeInfo)(nil), // 32: google.ads.googleads.v22.common.HotelCheckInDateRangeInfo + (*HotelCheckInDayInfo)(nil), // 33: google.ads.googleads.v22.common.HotelCheckInDayInfo + (*ActivityIdInfo)(nil), // 34: google.ads.googleads.v22.common.ActivityIdInfo + (*ActivityRatingInfo)(nil), // 35: google.ads.googleads.v22.common.ActivityRatingInfo + (*ActivityCountryInfo)(nil), // 36: google.ads.googleads.v22.common.ActivityCountryInfo + (*ActivityStateInfo)(nil), // 37: google.ads.googleads.v22.common.ActivityStateInfo + (*ActivityCityInfo)(nil), // 38: google.ads.googleads.v22.common.ActivityCityInfo + (*InteractionTypeInfo)(nil), // 39: google.ads.googleads.v22.common.InteractionTypeInfo + (*AdScheduleInfo)(nil), // 40: google.ads.googleads.v22.common.AdScheduleInfo + (*AgeRangeInfo)(nil), // 41: google.ads.googleads.v22.common.AgeRangeInfo + (*GenderInfo)(nil), // 42: google.ads.googleads.v22.common.GenderInfo + (*IncomeRangeInfo)(nil), // 43: google.ads.googleads.v22.common.IncomeRangeInfo + (*ParentalStatusInfo)(nil), // 44: google.ads.googleads.v22.common.ParentalStatusInfo + (*YouTubeVideoInfo)(nil), // 45: google.ads.googleads.v22.common.YouTubeVideoInfo + (*YouTubeChannelInfo)(nil), // 46: google.ads.googleads.v22.common.YouTubeChannelInfo + (*UserListInfo)(nil), // 47: google.ads.googleads.v22.common.UserListInfo + (*ProximityInfo)(nil), // 48: google.ads.googleads.v22.common.ProximityInfo + (*GeoPointInfo)(nil), // 49: google.ads.googleads.v22.common.GeoPointInfo + (*AddressInfo)(nil), // 50: google.ads.googleads.v22.common.AddressInfo + (*TopicInfo)(nil), // 51: google.ads.googleads.v22.common.TopicInfo + (*LanguageInfo)(nil), // 52: google.ads.googleads.v22.common.LanguageInfo + (*IpBlockInfo)(nil), // 53: google.ads.googleads.v22.common.IpBlockInfo + (*ContentLabelInfo)(nil), // 54: google.ads.googleads.v22.common.ContentLabelInfo + (*CarrierInfo)(nil), // 55: google.ads.googleads.v22.common.CarrierInfo + (*UserInterestInfo)(nil), // 56: google.ads.googleads.v22.common.UserInterestInfo + (*WebpageInfo)(nil), // 57: google.ads.googleads.v22.common.WebpageInfo + (*WebpageConditionInfo)(nil), // 58: google.ads.googleads.v22.common.WebpageConditionInfo + (*WebpageListInfo)(nil), // 59: google.ads.googleads.v22.common.WebpageListInfo + (*WebpageSampleInfo)(nil), // 60: google.ads.googleads.v22.common.WebpageSampleInfo + (*OperatingSystemVersionInfo)(nil), // 61: google.ads.googleads.v22.common.OperatingSystemVersionInfo + (*AppPaymentModelInfo)(nil), // 62: google.ads.googleads.v22.common.AppPaymentModelInfo + (*MobileDeviceInfo)(nil), // 63: google.ads.googleads.v22.common.MobileDeviceInfo + (*CustomAffinityInfo)(nil), // 64: google.ads.googleads.v22.common.CustomAffinityInfo + (*CustomIntentInfo)(nil), // 65: google.ads.googleads.v22.common.CustomIntentInfo + (*LocationGroupInfo)(nil), // 66: google.ads.googleads.v22.common.LocationGroupInfo + (*CustomAudienceInfo)(nil), // 67: google.ads.googleads.v22.common.CustomAudienceInfo + (*CombinedAudienceInfo)(nil), // 68: google.ads.googleads.v22.common.CombinedAudienceInfo + (*AudienceInfo)(nil), // 69: google.ads.googleads.v22.common.AudienceInfo + (*KeywordThemeInfo)(nil), // 70: google.ads.googleads.v22.common.KeywordThemeInfo + (*LocalServiceIdInfo)(nil), // 71: google.ads.googleads.v22.common.LocalServiceIdInfo + (*SearchThemeInfo)(nil), // 72: google.ads.googleads.v22.common.SearchThemeInfo + (*BrandInfo)(nil), // 73: google.ads.googleads.v22.common.BrandInfo + (*BrandListInfo)(nil), // 74: google.ads.googleads.v22.common.BrandListInfo + (*LifeEventInfo)(nil), // 75: google.ads.googleads.v22.common.LifeEventInfo + (*ExtendedDemographicInfo)(nil), // 76: google.ads.googleads.v22.common.ExtendedDemographicInfo + (*VideoLineupInfo)(nil), // 77: google.ads.googleads.v22.common.VideoLineupInfo + (*PlacementListInfo)(nil), // 78: google.ads.googleads.v22.common.PlacementListInfo + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 79: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + (enums.DeviceEnum_Device)(0), // 80: google.ads.googleads.v22.enums.DeviceEnum.Device + (enums.ListingGroupTypeEnum_ListingGroupType)(0), // 81: google.ads.googleads.v22.enums.ListingGroupTypeEnum.ListingGroupType + (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 82: google.ads.googleads.v22.enums.ProductCategoryLevelEnum.ProductCategoryLevel + (enums.ProductChannelEnum_ProductChannel)(0), // 83: google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 84: google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + (enums.ProductConditionEnum_ProductCondition)(0), // 85: google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + (enums.ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 86: google.ads.googleads.v22.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex + (enums.ProductTypeLevelEnum_ProductTypeLevel)(0), // 87: google.ads.googleads.v22.enums.ProductTypeLevelEnum.ProductTypeLevel + (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 88: google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType + (enums.DayOfWeekEnum_DayOfWeek)(0), // 89: google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + (enums.InteractionTypeEnum_InteractionType)(0), // 90: google.ads.googleads.v22.enums.InteractionTypeEnum.InteractionType + (enums.MinuteOfHourEnum_MinuteOfHour)(0), // 91: google.ads.googleads.v22.enums.MinuteOfHourEnum.MinuteOfHour + (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 92: google.ads.googleads.v22.enums.AgeRangeTypeEnum.AgeRangeType + (enums.GenderTypeEnum_GenderType)(0), // 93: google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + (enums.IncomeRangeTypeEnum_IncomeRangeType)(0), // 94: google.ads.googleads.v22.enums.IncomeRangeTypeEnum.IncomeRangeType + (enums.ParentalStatusTypeEnum_ParentalStatusType)(0), // 95: google.ads.googleads.v22.enums.ParentalStatusTypeEnum.ParentalStatusType + (enums.ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 96: google.ads.googleads.v22.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits + (enums.ContentLabelTypeEnum_ContentLabelType)(0), // 97: google.ads.googleads.v22.enums.ContentLabelTypeEnum.ContentLabelType + (enums.WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 98: google.ads.googleads.v22.enums.WebpageConditionOperandEnum.WebpageConditionOperand + (enums.WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 99: google.ads.googleads.v22.enums.WebpageConditionOperatorEnum.WebpageConditionOperator + (enums.AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 100: google.ads.googleads.v22.enums.AppPaymentModelTypeEnum.AppPaymentModelType + (enums.LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 101: google.ads.googleads.v22.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits + (enums.BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 102: google.ads.googleads.v22.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason + (enums.BrandStateEnum_BrandState)(0), // 103: google.ads.googleads.v22.enums.BrandStateEnum.BrandState +} +var file_google_ads_googleads_v22_common_criteria_proto_depIdxs = []int32{ + 79, // 0: google.ads.googleads.v22.common.KeywordInfo.match_type:type_name -> google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + 80, // 1: google.ads.googleads.v22.common.DeviceInfo.type:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 81, // 2: google.ads.googleads.v22.common.ListingGroupInfo.type:type_name -> google.ads.googleads.v22.enums.ListingGroupTypeEnum.ListingGroupType + 10, // 3: google.ads.googleads.v22.common.ListingGroupInfo.case_value:type_name -> google.ads.googleads.v22.common.ListingDimensionInfo + 8, // 4: google.ads.googleads.v22.common.ListingGroupInfo.path:type_name -> google.ads.googleads.v22.common.ListingDimensionPath + 10, // 5: google.ads.googleads.v22.common.ListingDimensionPath.dimensions:type_name -> google.ads.googleads.v22.common.ListingDimensionInfo + 10, // 6: google.ads.googleads.v22.common.ListingScopeInfo.dimensions:type_name -> google.ads.googleads.v22.common.ListingDimensionInfo + 11, // 7: google.ads.googleads.v22.common.ListingDimensionInfo.hotel_id:type_name -> google.ads.googleads.v22.common.HotelIdInfo + 12, // 8: google.ads.googleads.v22.common.ListingDimensionInfo.hotel_class:type_name -> google.ads.googleads.v22.common.HotelClassInfo + 13, // 9: google.ads.googleads.v22.common.ListingDimensionInfo.hotel_country_region:type_name -> google.ads.googleads.v22.common.HotelCountryRegionInfo + 14, // 10: google.ads.googleads.v22.common.ListingDimensionInfo.hotel_state:type_name -> google.ads.googleads.v22.common.HotelStateInfo + 15, // 11: google.ads.googleads.v22.common.ListingDimensionInfo.hotel_city:type_name -> google.ads.googleads.v22.common.HotelCityInfo + 16, // 12: google.ads.googleads.v22.common.ListingDimensionInfo.product_category:type_name -> google.ads.googleads.v22.common.ProductCategoryInfo + 17, // 13: google.ads.googleads.v22.common.ListingDimensionInfo.product_brand:type_name -> google.ads.googleads.v22.common.ProductBrandInfo + 18, // 14: google.ads.googleads.v22.common.ListingDimensionInfo.product_channel:type_name -> google.ads.googleads.v22.common.ProductChannelInfo + 19, // 15: google.ads.googleads.v22.common.ListingDimensionInfo.product_channel_exclusivity:type_name -> google.ads.googleads.v22.common.ProductChannelExclusivityInfo + 20, // 16: google.ads.googleads.v22.common.ListingDimensionInfo.product_condition:type_name -> google.ads.googleads.v22.common.ProductConditionInfo + 21, // 17: google.ads.googleads.v22.common.ListingDimensionInfo.product_custom_attribute:type_name -> google.ads.googleads.v22.common.ProductCustomAttributeInfo + 22, // 18: google.ads.googleads.v22.common.ListingDimensionInfo.product_item_id:type_name -> google.ads.googleads.v22.common.ProductItemIdInfo + 23, // 19: google.ads.googleads.v22.common.ListingDimensionInfo.product_type:type_name -> google.ads.googleads.v22.common.ProductTypeInfo + 24, // 20: google.ads.googleads.v22.common.ListingDimensionInfo.product_grouping:type_name -> google.ads.googleads.v22.common.ProductGroupingInfo + 25, // 21: google.ads.googleads.v22.common.ListingDimensionInfo.product_labels:type_name -> google.ads.googleads.v22.common.ProductLabelsInfo + 26, // 22: google.ads.googleads.v22.common.ListingDimensionInfo.product_legacy_condition:type_name -> google.ads.googleads.v22.common.ProductLegacyConditionInfo + 27, // 23: google.ads.googleads.v22.common.ListingDimensionInfo.product_type_full:type_name -> google.ads.googleads.v22.common.ProductTypeFullInfo + 34, // 24: google.ads.googleads.v22.common.ListingDimensionInfo.activity_id:type_name -> google.ads.googleads.v22.common.ActivityIdInfo + 35, // 25: google.ads.googleads.v22.common.ListingDimensionInfo.activity_rating:type_name -> google.ads.googleads.v22.common.ActivityRatingInfo + 36, // 26: google.ads.googleads.v22.common.ListingDimensionInfo.activity_country:type_name -> google.ads.googleads.v22.common.ActivityCountryInfo + 37, // 27: google.ads.googleads.v22.common.ListingDimensionInfo.activity_state:type_name -> google.ads.googleads.v22.common.ActivityStateInfo + 38, // 28: google.ads.googleads.v22.common.ListingDimensionInfo.activity_city:type_name -> google.ads.googleads.v22.common.ActivityCityInfo + 28, // 29: google.ads.googleads.v22.common.ListingDimensionInfo.unknown_listing_dimension:type_name -> google.ads.googleads.v22.common.UnknownListingDimensionInfo + 82, // 30: google.ads.googleads.v22.common.ProductCategoryInfo.level:type_name -> google.ads.googleads.v22.enums.ProductCategoryLevelEnum.ProductCategoryLevel + 83, // 31: google.ads.googleads.v22.common.ProductChannelInfo.channel:type_name -> google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + 84, // 32: google.ads.googleads.v22.common.ProductChannelExclusivityInfo.channel_exclusivity:type_name -> google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + 85, // 33: google.ads.googleads.v22.common.ProductConditionInfo.condition:type_name -> google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + 86, // 34: google.ads.googleads.v22.common.ProductCustomAttributeInfo.index:type_name -> google.ads.googleads.v22.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex + 87, // 35: google.ads.googleads.v22.common.ProductTypeInfo.level:type_name -> google.ads.googleads.v22.enums.ProductTypeLevelEnum.ProductTypeLevel + 88, // 36: google.ads.googleads.v22.common.HotelDateSelectionTypeInfo.type:type_name -> google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType + 89, // 37: google.ads.googleads.v22.common.HotelCheckInDayInfo.day_of_week:type_name -> google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + 90, // 38: google.ads.googleads.v22.common.InteractionTypeInfo.type:type_name -> google.ads.googleads.v22.enums.InteractionTypeEnum.InteractionType + 91, // 39: google.ads.googleads.v22.common.AdScheduleInfo.start_minute:type_name -> google.ads.googleads.v22.enums.MinuteOfHourEnum.MinuteOfHour + 91, // 40: google.ads.googleads.v22.common.AdScheduleInfo.end_minute:type_name -> google.ads.googleads.v22.enums.MinuteOfHourEnum.MinuteOfHour + 89, // 41: google.ads.googleads.v22.common.AdScheduleInfo.day_of_week:type_name -> google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + 92, // 42: google.ads.googleads.v22.common.AgeRangeInfo.type:type_name -> google.ads.googleads.v22.enums.AgeRangeTypeEnum.AgeRangeType + 93, // 43: google.ads.googleads.v22.common.GenderInfo.type:type_name -> google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + 94, // 44: google.ads.googleads.v22.common.IncomeRangeInfo.type:type_name -> google.ads.googleads.v22.enums.IncomeRangeTypeEnum.IncomeRangeType + 95, // 45: google.ads.googleads.v22.common.ParentalStatusInfo.type:type_name -> google.ads.googleads.v22.enums.ParentalStatusTypeEnum.ParentalStatusType + 49, // 46: google.ads.googleads.v22.common.ProximityInfo.geo_point:type_name -> google.ads.googleads.v22.common.GeoPointInfo + 96, // 47: google.ads.googleads.v22.common.ProximityInfo.radius_units:type_name -> google.ads.googleads.v22.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits + 50, // 48: google.ads.googleads.v22.common.ProximityInfo.address:type_name -> google.ads.googleads.v22.common.AddressInfo + 97, // 49: google.ads.googleads.v22.common.ContentLabelInfo.type:type_name -> google.ads.googleads.v22.enums.ContentLabelTypeEnum.ContentLabelType + 58, // 50: google.ads.googleads.v22.common.WebpageInfo.conditions:type_name -> google.ads.googleads.v22.common.WebpageConditionInfo + 60, // 51: google.ads.googleads.v22.common.WebpageInfo.sample:type_name -> google.ads.googleads.v22.common.WebpageSampleInfo + 98, // 52: google.ads.googleads.v22.common.WebpageConditionInfo.operand:type_name -> google.ads.googleads.v22.enums.WebpageConditionOperandEnum.WebpageConditionOperand + 99, // 53: google.ads.googleads.v22.common.WebpageConditionInfo.operator:type_name -> google.ads.googleads.v22.enums.WebpageConditionOperatorEnum.WebpageConditionOperator + 100, // 54: google.ads.googleads.v22.common.AppPaymentModelInfo.type:type_name -> google.ads.googleads.v22.enums.AppPaymentModelTypeEnum.AppPaymentModelType + 101, // 55: google.ads.googleads.v22.common.LocationGroupInfo.radius_units:type_name -> google.ads.googleads.v22.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits + 102, // 56: google.ads.googleads.v22.common.BrandInfo.rejection_reason:type_name -> google.ads.googleads.v22.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason + 103, // 57: google.ads.googleads.v22.common.BrandInfo.status:type_name -> google.ads.googleads.v22.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 @@ -5651,19 +5651,19 @@ var file_google_ads_googleads_v21_common_criteria_proto_depIdxs = []int32{ 0, // [0:58] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_criteria_proto_init() } -func file_google_ads_googleads_v21_common_criteria_proto_init() { - if File_google_ads_googleads_v21_common_criteria_proto != nil { +func init() { file_google_ads_googleads_v22_common_criteria_proto_init() } +func file_google_ads_googleads_v22_common_criteria_proto_init() { + if File_google_ads_googleads_v22_common_criteria_proto != nil { return } - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[10].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[10].OneofWrappers = []any{ (*ListingDimensionInfo_HotelId)(nil), (*ListingDimensionInfo_HotelClass)(nil), (*ListingDimensionInfo_HotelCountryRegion)(nil), @@ -5688,72 +5688,72 @@ func file_google_ads_googleads_v21_common_criteria_proto_init() { (*ListingDimensionInfo_ActivityCity)(nil), (*ListingDimensionInfo_UnknownListingDimension)(nil), } - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[12].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[14].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[15].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[16].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[17].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[21].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[22].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[23].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[24].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[25].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[26].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[27].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[30].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[31].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[34].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[35].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[36].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[37].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[38].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[40].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[45].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[46].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[47].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[48].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[49].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[50].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[51].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[52].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[53].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[55].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[56].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[57].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[58].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[59].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[61].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[63].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[64].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[65].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[66].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[70].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[13].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[15].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[16].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[21].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[22].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[23].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[24].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[25].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[26].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[27].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[30].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[31].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[34].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[35].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[36].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[37].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[38].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[40].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[45].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[46].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[47].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[48].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[49].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[50].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[51].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[52].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[53].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[55].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[56].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[57].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[58].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[59].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[61].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[63].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[64].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[65].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[66].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[70].OneofWrappers = []any{ (*KeywordThemeInfo_KeywordThemeConstant)(nil), (*KeywordThemeInfo_FreeFormKeywordTheme)(nil), } - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[73].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[74].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[75].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[76].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[77].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criteria_proto_msgTypes[78].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[73].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[74].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[75].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[76].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[77].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_msgTypes[78].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_criteria_proto_rawDesc), len(file_google_ads_googleads_v21_common_criteria_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_criteria_proto_rawDesc), len(file_google_ads_googleads_v22_common_criteria_proto_rawDesc)), NumEnums: 0, NumMessages: 79, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_criteria_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_criteria_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_criteria_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_criteria_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_criteria_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_criteria_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_criteria_proto = out.File - file_google_ads_googleads_v21_common_criteria_proto_goTypes = nil - file_google_ads_googleads_v21_common_criteria_proto_depIdxs = nil + File_google_ads_googleads_v22_common_criteria_proto = out.File + file_google_ads_googleads_v22_common_criteria_proto_goTypes = nil + file_google_ads_googleads_v22_common_criteria_proto_depIdxs = nil } diff --git a/common/criterion_category_availability.pb.go b/common/criterion_category_availability.pb.go index 43dd6109..c050b8b7 100644 --- a/common/criterion_category_availability.pb.go +++ b/common/criterion_category_availability.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/criterion_category_availability.proto +// source: google/ads/googleads/v22/common/criterion_category_availability.proto package common @@ -49,7 +49,7 @@ type CriterionCategoryAvailability struct { func (x *CriterionCategoryAvailability) Reset() { *x = CriterionCategoryAvailability{} - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *CriterionCategoryAvailability) String() string { func (*CriterionCategoryAvailability) ProtoMessage() {} func (x *CriterionCategoryAvailability) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *CriterionCategoryAvailability) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionCategoryAvailability.ProtoReflect.Descriptor instead. func (*CriterionCategoryAvailability) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescGZIP(), []int{0} } func (x *CriterionCategoryAvailability) GetChannel() *CriterionCategoryChannelAvailability { @@ -101,11 +101,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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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 @@ -117,7 +117,7 @@ type CriterionCategoryChannelAvailability struct { func (x *CriterionCategoryChannelAvailability) Reset() { *x = CriterionCategoryChannelAvailability{} - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *CriterionCategoryChannelAvailability) String() string { func (*CriterionCategoryChannelAvailability) ProtoMessage() {} func (x *CriterionCategoryChannelAvailability) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,7 +142,7 @@ func (x *CriterionCategoryChannelAvailability) ProtoReflect() protoreflect.Messa // Deprecated: Use CriterionCategoryChannelAvailability.ProtoReflect.Descriptor instead. func (*CriterionCategoryChannelAvailability) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescGZIP(), []int{1} } func (x *CriterionCategoryChannelAvailability) GetAvailabilityMode() enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode { @@ -180,7 +180,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.v21.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.v22.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. @@ -191,7 +191,7 @@ type CriterionCategoryLocaleAvailability struct { func (x *CriterionCategoryLocaleAvailability) Reset() { *x = CriterionCategoryLocaleAvailability{} - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203,7 +203,7 @@ func (x *CriterionCategoryLocaleAvailability) String() string { func (*CriterionCategoryLocaleAvailability) ProtoMessage() {} func (x *CriterionCategoryLocaleAvailability) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -216,7 +216,7 @@ func (x *CriterionCategoryLocaleAvailability) ProtoReflect() protoreflect.Messag // Deprecated: Use CriterionCategoryLocaleAvailability.ProtoReflect.Descriptor instead. func (*CriterionCategoryLocaleAvailability) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescGZIP(), []int{2} } func (x *CriterionCategoryLocaleAvailability) GetAvailabilityMode() enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode { @@ -240,31 +240,31 @@ func (x *CriterionCategoryLocaleAvailability) GetLanguageCode() string { return "" } -var File_google_ads_googleads_v21_common_criterion_category_availability_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_criterion_category_availability_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -272,13 +272,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -287,7 +287,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -298,7 +298,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -307,7 +307,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -326,7 +326,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -342,53 +342,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescData []byte + file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDesc), len(file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDesc))) +func file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDesc), len(file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDescData + return file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDescData } -var file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_common_criterion_category_availability_proto_goTypes = []any{ - (*CriterionCategoryAvailability)(nil), // 0: google.ads.googleads.v21.common.CriterionCategoryAvailability - (*CriterionCategoryChannelAvailability)(nil), // 1: google.ads.googleads.v21.common.CriterionCategoryChannelAvailability - (*CriterionCategoryLocaleAvailability)(nil), // 2: google.ads.googleads.v21.common.CriterionCategoryLocaleAvailability - (enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 3: google.ads.googleads.v21.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 5: google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - (enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 6: google.ads.googleads.v21.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode +var file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_common_criterion_category_availability_proto_goTypes = []any{ + (*CriterionCategoryAvailability)(nil), // 0: google.ads.googleads.v22.common.CriterionCategoryAvailability + (*CriterionCategoryChannelAvailability)(nil), // 1: google.ads.googleads.v22.common.CriterionCategoryChannelAvailability + (*CriterionCategoryLocaleAvailability)(nil), // 2: google.ads.googleads.v22.common.CriterionCategoryLocaleAvailability + (enums.CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 3: google.ads.googleads.v22.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 5: google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + (enums.CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 6: google.ads.googleads.v22.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode } -var file_google_ads_googleads_v21_common_criterion_category_availability_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.CriterionCategoryAvailability.channel:type_name -> google.ads.googleads.v21.common.CriterionCategoryChannelAvailability - 2, // 1: google.ads.googleads.v21.common.CriterionCategoryAvailability.locale:type_name -> google.ads.googleads.v21.common.CriterionCategoryLocaleAvailability - 3, // 2: google.ads.googleads.v21.common.CriterionCategoryChannelAvailability.availability_mode:type_name -> google.ads.googleads.v21.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode - 4, // 3: google.ads.googleads.v21.common.CriterionCategoryChannelAvailability.advertising_channel_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 5, // 4: google.ads.googleads.v21.common.CriterionCategoryChannelAvailability.advertising_channel_sub_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - 6, // 5: google.ads.googleads.v21.common.CriterionCategoryLocaleAvailability.availability_mode:type_name -> google.ads.googleads.v21.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode +var file_google_ads_googleads_v22_common_criterion_category_availability_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.CriterionCategoryAvailability.channel:type_name -> google.ads.googleads.v22.common.CriterionCategoryChannelAvailability + 2, // 1: google.ads.googleads.v22.common.CriterionCategoryAvailability.locale:type_name -> google.ads.googleads.v22.common.CriterionCategoryLocaleAvailability + 3, // 2: google.ads.googleads.v22.common.CriterionCategoryChannelAvailability.availability_mode:type_name -> google.ads.googleads.v22.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode + 4, // 3: google.ads.googleads.v22.common.CriterionCategoryChannelAvailability.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 5, // 4: google.ads.googleads.v22.common.CriterionCategoryChannelAvailability.advertising_channel_sub_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + 6, // 5: google.ads.googleads.v22.common.CriterionCategoryLocaleAvailability.availability_mode:type_name -> google.ads.googleads.v22.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 @@ -396,28 +396,28 @@ var file_google_ads_googleads_v21_common_criterion_category_availability_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_criterion_category_availability_proto_init() } -func file_google_ads_googleads_v21_common_criterion_category_availability_proto_init() { - if File_google_ads_googleads_v21_common_criterion_category_availability_proto != nil { +func init() { file_google_ads_googleads_v22_common_criterion_category_availability_proto_init() } +func file_google_ads_googleads_v22_common_criterion_category_availability_proto_init() { + if File_google_ads_googleads_v22_common_criterion_category_availability_proto != nil { return } - file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDesc), len(file_google_ads_googleads_v21_common_criterion_category_availability_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDesc), len(file_google_ads_googleads_v22_common_criterion_category_availability_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_criterion_category_availability_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_criterion_category_availability_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_criterion_category_availability_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_criterion_category_availability_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_criterion_category_availability_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_criterion_category_availability_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_criterion_category_availability_proto = out.File - file_google_ads_googleads_v21_common_criterion_category_availability_proto_goTypes = nil - file_google_ads_googleads_v21_common_criterion_category_availability_proto_depIdxs = nil + File_google_ads_googleads_v22_common_criterion_category_availability_proto = out.File + file_google_ads_googleads_v22_common_criterion_category_availability_proto_goTypes = nil + file_google_ads_googleads_v22_common_criterion_category_availability_proto_depIdxs = nil } diff --git a/common/custom_parameter.pb.go b/common/custom_parameter.pb.go index e26e978d..d26ef537 100644 --- a/common/custom_parameter.pb.go +++ b/common/custom_parameter.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/custom_parameter.proto +// source: google/ads/googleads/v22/common/custom_parameter.proto package common @@ -49,7 +49,7 @@ type CustomParameter struct { func (x *CustomParameter) Reset() { *x = CustomParameter{} - mi := &file_google_ads_googleads_v21_common_custom_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_custom_parameter_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *CustomParameter) String() string { func (*CustomParameter) ProtoMessage() {} func (x *CustomParameter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_custom_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_custom_parameter_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *CustomParameter) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomParameter.ProtoReflect.Descriptor instead. func (*CustomParameter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescGZIP(), []int{0} } func (x *CustomParameter) GetKey() string { @@ -91,15 +91,15 @@ func (x *CustomParameter) GetValue() string { return "" } -var File_google_ads_googleads_v21_common_custom_parameter_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_custom_parameter_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_custom_parameter_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x55, 0x0a, 0x0f, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -107,39 +107,39 @@ var file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc = string 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescData []byte + file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc), len(file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc))) +func file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_custom_parameter_proto_rawDesc), len(file_google_ads_googleads_v22_common_custom_parameter_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_custom_parameter_proto_rawDescData + return file_google_ads_googleads_v22_common_custom_parameter_proto_rawDescData } -var file_google_ads_googleads_v21_common_custom_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_custom_parameter_proto_goTypes = []any{ - (*CustomParameter)(nil), // 0: google.ads.googleads.v21.common.CustomParameter +var file_google_ads_googleads_v22_common_custom_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_custom_parameter_proto_goTypes = []any{ + (*CustomParameter)(nil), // 0: google.ads.googleads.v22.common.CustomParameter } -var file_google_ads_googleads_v21_common_custom_parameter_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -147,27 +147,27 @@ var file_google_ads_googleads_v21_common_custom_parameter_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_custom_parameter_proto_init() } -func file_google_ads_googleads_v21_common_custom_parameter_proto_init() { - if File_google_ads_googleads_v21_common_custom_parameter_proto != nil { +func init() { file_google_ads_googleads_v22_common_custom_parameter_proto_init() } +func file_google_ads_googleads_v22_common_custom_parameter_proto_init() { + if File_google_ads_googleads_v22_common_custom_parameter_proto != nil { return } - file_google_ads_googleads_v21_common_custom_parameter_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_custom_parameter_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc), len(file_google_ads_googleads_v21_common_custom_parameter_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_custom_parameter_proto_rawDesc), len(file_google_ads_googleads_v22_common_custom_parameter_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_custom_parameter_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_custom_parameter_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_custom_parameter_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_custom_parameter_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_custom_parameter_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_custom_parameter_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_custom_parameter_proto = out.File - file_google_ads_googleads_v21_common_custom_parameter_proto_goTypes = nil - file_google_ads_googleads_v21_common_custom_parameter_proto_depIdxs = nil + File_google_ads_googleads_v22_common_custom_parameter_proto = out.File + file_google_ads_googleads_v22_common_custom_parameter_proto_goTypes = nil + file_google_ads_googleads_v22_common_custom_parameter_proto_depIdxs = nil } diff --git a/common/customizer_value.pb.go b/common/customizer_value.pb.go index 43dde8ca..075738a4 100644 --- a/common/customizer_value.pb.go +++ b/common/customizer_value.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/customizer_value.proto +// source: google/ads/googleads/v22/common/customizer_value.proto package common @@ -44,7 +44,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.v21.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"` + Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.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"` @@ -54,7 +54,7 @@ type CustomizerValue struct { func (x *CustomizerValue) Reset() { *x = CustomizerValue{} - mi := &file_google_ads_googleads_v21_common_customizer_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_customizer_value_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *CustomizerValue) String() string { func (*CustomizerValue) ProtoMessage() {} func (x *CustomizerValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_customizer_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_customizer_value_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *CustomizerValue) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerValue.ProtoReflect.Descriptor instead. func (*CustomizerValue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_customizer_value_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_customizer_value_proto_rawDescGZIP(), []int{0} } func (x *CustomizerValue) GetType() enums.CustomizerAttributeTypeEnum_CustomizerAttributeType { @@ -96,17 +96,17 @@ func (x *CustomizerValue) GetStringValue() string { return "" } -var File_google_ads_googleads_v21_common_customizer_value_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_customizer_value_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_customizer_value_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x76, 0x32, 0x32, 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, @@ -114,7 +114,7 @@ var file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -123,42 +123,42 @@ var file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x43, 0x75, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_customizer_value_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_customizer_value_proto_rawDescData []byte + file_google_ads_googleads_v22_common_customizer_value_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_customizer_value_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_customizer_value_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_customizer_value_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_customizer_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc), len(file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc))) +func file_google_ads_googleads_v22_common_customizer_value_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_customizer_value_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_customizer_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_customizer_value_proto_rawDesc), len(file_google_ads_googleads_v22_common_customizer_value_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_customizer_value_proto_rawDescData + return file_google_ads_googleads_v22_common_customizer_value_proto_rawDescData } -var file_google_ads_googleads_v21_common_customizer_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_customizer_value_proto_goTypes = []any{ - (*CustomizerValue)(nil), // 0: google.ads.googleads.v21.common.CustomizerValue - (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType +var file_google_ads_googleads_v22_common_customizer_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_customizer_value_proto_goTypes = []any{ + (*CustomizerValue)(nil), // 0: google.ads.googleads.v22.common.CustomizerValue + (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v22.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType } -var file_google_ads_googleads_v21_common_customizer_value_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.CustomizerValue.type:type_name -> google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType +var file_google_ads_googleads_v22_common_customizer_value_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.CustomizerValue.type:type_name -> google.ads.googleads.v22.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 @@ -166,26 +166,26 @@ var file_google_ads_googleads_v21_common_customizer_value_proto_depIdxs = []int3 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_customizer_value_proto_init() } -func file_google_ads_googleads_v21_common_customizer_value_proto_init() { - if File_google_ads_googleads_v21_common_customizer_value_proto != nil { +func init() { file_google_ads_googleads_v22_common_customizer_value_proto_init() } +func file_google_ads_googleads_v22_common_customizer_value_proto_init() { + if File_google_ads_googleads_v22_common_customizer_value_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc), len(file_google_ads_googleads_v21_common_customizer_value_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_customizer_value_proto_rawDesc), len(file_google_ads_googleads_v22_common_customizer_value_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_customizer_value_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_customizer_value_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_customizer_value_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_customizer_value_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_customizer_value_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_customizer_value_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_customizer_value_proto = out.File - file_google_ads_googleads_v21_common_customizer_value_proto_goTypes = nil - file_google_ads_googleads_v21_common_customizer_value_proto_depIdxs = nil + File_google_ads_googleads_v22_common_customizer_value_proto = out.File + file_google_ads_googleads_v22_common_customizer_value_proto_goTypes = nil + file_google_ads_googleads_v22_common_customizer_value_proto_depIdxs = nil } diff --git a/common/dates.pb.go b/common/dates.pb.go index c4eceff2..200d84c6 100644 --- a/common/dates.pb.go +++ b/common/dates.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/dates.proto +// source: google/ads/googleads/v22/common/dates.proto package common @@ -49,7 +49,7 @@ type DateRange struct { func (x *DateRange) Reset() { *x = DateRange{} - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *DateRange) String() string { func (*DateRange) ProtoMessage() {} func (x *DateRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *DateRange) ProtoReflect() protoreflect.Message { // Deprecated: Use DateRange.ProtoReflect.Descriptor instead. func (*DateRange) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_dates_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_dates_proto_rawDescGZIP(), []int{0} } func (x *DateRange) GetStartDate() string { @@ -105,7 +105,7 @@ type YearMonthRange struct { func (x *YearMonthRange) Reset() { *x = YearMonthRange{} - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *YearMonthRange) String() string { func (*YearMonthRange) ProtoMessage() {} func (x *YearMonthRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,7 +130,7 @@ func (x *YearMonthRange) ProtoReflect() protoreflect.Message { // Deprecated: Use YearMonthRange.ProtoReflect.Descriptor instead. func (*YearMonthRange) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_dates_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_dates_proto_rawDescGZIP(), []int{1} } func (x *YearMonthRange) GetStart() *YearMonth { @@ -153,14 +153,14 @@ 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.v21.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"` + Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v22.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *YearMonth) Reset() { *x = YearMonth{} - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *YearMonth) String() string { func (*YearMonth) ProtoMessage() {} func (x *YearMonth) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_dates_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_dates_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,7 +185,7 @@ func (x *YearMonth) ProtoReflect() protoreflect.Message { // Deprecated: Use YearMonth.ProtoReflect.Descriptor instead. func (*YearMonth) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_dates_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_dates_proto_rawDescGZIP(), []int{2} } func (x *YearMonth) GetYear() int64 { @@ -202,16 +202,16 @@ func (x *YearMonth) GetMonth() enums.MonthOfYearEnum_MonthOfYear { return enums.MonthOfYearEnum_MonthOfYear(0) } -var File_google_ads_googleads_v21_common_dates_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_dates_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_dates_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_dates_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x32, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -223,60 +223,60 @@ var file_google_ads_googleads_v21_common_dates_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_dates_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_dates_proto_rawDescData []byte + file_google_ads_googleads_v22_common_dates_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_dates_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_dates_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_dates_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_dates_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_dates_proto_rawDesc), len(file_google_ads_googleads_v21_common_dates_proto_rawDesc))) +func file_google_ads_googleads_v22_common_dates_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_dates_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_dates_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_dates_proto_rawDesc), len(file_google_ads_googleads_v22_common_dates_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_dates_proto_rawDescData + return file_google_ads_googleads_v22_common_dates_proto_rawDescData } -var file_google_ads_googleads_v21_common_dates_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_common_dates_proto_goTypes = []any{ - (*DateRange)(nil), // 0: google.ads.googleads.v21.common.DateRange - (*YearMonthRange)(nil), // 1: google.ads.googleads.v21.common.YearMonthRange - (*YearMonth)(nil), // 2: google.ads.googleads.v21.common.YearMonth - (enums.MonthOfYearEnum_MonthOfYear)(0), // 3: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear +var file_google_ads_googleads_v22_common_dates_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_common_dates_proto_goTypes = []any{ + (*DateRange)(nil), // 0: google.ads.googleads.v22.common.DateRange + (*YearMonthRange)(nil), // 1: google.ads.googleads.v22.common.YearMonthRange + (*YearMonth)(nil), // 2: google.ads.googleads.v22.common.YearMonth + (enums.MonthOfYearEnum_MonthOfYear)(0), // 3: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear } -var file_google_ads_googleads_v21_common_dates_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.common.YearMonthRange.start:type_name -> google.ads.googleads.v21.common.YearMonth - 2, // 1: google.ads.googleads.v21.common.YearMonthRange.end:type_name -> google.ads.googleads.v21.common.YearMonth - 3, // 2: google.ads.googleads.v21.common.YearMonth.month:type_name -> google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear +var file_google_ads_googleads_v22_common_dates_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.YearMonthRange.start:type_name -> google.ads.googleads.v22.common.YearMonth + 2, // 1: google.ads.googleads.v22.common.YearMonthRange.end:type_name -> google.ads.googleads.v22.common.YearMonth + 3, // 2: google.ads.googleads.v22.common.YearMonth.month:type_name -> google.ads.googleads.v22.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 @@ -284,27 +284,27 @@ var file_google_ads_googleads_v21_common_dates_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_dates_proto_init() } -func file_google_ads_googleads_v21_common_dates_proto_init() { - if File_google_ads_googleads_v21_common_dates_proto != nil { +func init() { file_google_ads_googleads_v22_common_dates_proto_init() } +func file_google_ads_googleads_v22_common_dates_proto_init() { + if File_google_ads_googleads_v22_common_dates_proto != nil { return } - file_google_ads_googleads_v21_common_dates_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_dates_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_dates_proto_rawDesc), len(file_google_ads_googleads_v21_common_dates_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_dates_proto_rawDesc), len(file_google_ads_googleads_v22_common_dates_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_dates_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_dates_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_dates_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_dates_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_dates_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_dates_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_dates_proto = out.File - file_google_ads_googleads_v21_common_dates_proto_goTypes = nil - file_google_ads_googleads_v21_common_dates_proto_depIdxs = nil + File_google_ads_googleads_v22_common_dates_proto = out.File + file_google_ads_googleads_v22_common_dates_proto_goTypes = nil + file_google_ads_googleads_v22_common_dates_proto_depIdxs = nil } diff --git a/common/extensions.pb.go b/common/extensions.pb.go index fdf2eb8a..df2c97d3 100644 --- a/common/extensions.pb.go +++ b/common/extensions.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/extensions.proto +// source: google/ads/googleads/v22/common/extensions.proto package common @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.CallConversionReportingStateEnum_CallConversionReportingState" json:"call_conversion_reporting_state,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CallFeedItem) Reset() { *x = CallFeedItem{} - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *CallFeedItem) String() string { func (*CallFeedItem) ProtoMessage() {} func (x *CallFeedItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *CallFeedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use CallFeedItem.ProtoReflect.Descriptor instead. func (*CallFeedItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_extensions_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_extensions_proto_rawDescGZIP(), []int{0} } func (x *CallFeedItem) GetPhoneNumber() string { @@ -148,7 +148,7 @@ type CalloutFeedItem struct { func (x *CalloutFeedItem) Reset() { *x = CalloutFeedItem{} - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *CalloutFeedItem) String() string { func (*CalloutFeedItem) ProtoMessage() {} func (x *CalloutFeedItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *CalloutFeedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use CalloutFeedItem.ProtoReflect.Descriptor instead. func (*CalloutFeedItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_extensions_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_extensions_proto_rawDescGZIP(), []int{1} } func (x *CalloutFeedItem) GetCalloutText() string { @@ -215,7 +215,7 @@ type SitelinkFeedItem struct { func (x *SitelinkFeedItem) Reset() { *x = SitelinkFeedItem{} - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *SitelinkFeedItem) String() string { func (*SitelinkFeedItem) ProtoMessage() {} func (x *SitelinkFeedItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_extensions_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_extensions_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,7 +240,7 @@ func (x *SitelinkFeedItem) ProtoReflect() protoreflect.Message { // Deprecated: Use SitelinkFeedItem.ProtoReflect.Descriptor instead. func (*SitelinkFeedItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_extensions_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_extensions_proto_rawDescGZIP(), []int{2} } func (x *SitelinkFeedItem) GetLinkText() string { @@ -299,20 +299,20 @@ func (x *SitelinkFeedItem) GetFinalUrlSuffix() string { return "" } -var File_google_ads_googleads_v21_common_extensions_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_extensions_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_extensions_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_extensions_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v21_common_extensions_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -378,7 +378,7 @@ var file_google_ads_googleads_v21_common_extensions_proto_rawDesc = string([]byt 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -391,46 +391,46 @@ var file_google_ads_googleads_v21_common_extensions_proto_rawDesc = string([]byt 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_extensions_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_extensions_proto_rawDescData []byte + file_google_ads_googleads_v22_common_extensions_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_extensions_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_extensions_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_extensions_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_extensions_proto_rawDesc), len(file_google_ads_googleads_v21_common_extensions_proto_rawDesc))) +func file_google_ads_googleads_v22_common_extensions_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_extensions_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_extensions_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_extensions_proto_rawDesc), len(file_google_ads_googleads_v22_common_extensions_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_extensions_proto_rawDescData + return file_google_ads_googleads_v22_common_extensions_proto_rawDescData } -var file_google_ads_googleads_v21_common_extensions_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_common_extensions_proto_goTypes = []any{ - (*CallFeedItem)(nil), // 0: google.ads.googleads.v21.common.CallFeedItem - (*CalloutFeedItem)(nil), // 1: google.ads.googleads.v21.common.CalloutFeedItem - (*SitelinkFeedItem)(nil), // 2: google.ads.googleads.v21.common.SitelinkFeedItem - (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 3: google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - (*CustomParameter)(nil), // 4: google.ads.googleads.v21.common.CustomParameter +var file_google_ads_googleads_v22_common_extensions_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_common_extensions_proto_goTypes = []any{ + (*CallFeedItem)(nil), // 0: google.ads.googleads.v22.common.CallFeedItem + (*CalloutFeedItem)(nil), // 1: google.ads.googleads.v22.common.CalloutFeedItem + (*SitelinkFeedItem)(nil), // 2: google.ads.googleads.v22.common.SitelinkFeedItem + (enums.CallConversionReportingStateEnum_CallConversionReportingState)(0), // 3: google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + (*CustomParameter)(nil), // 4: google.ads.googleads.v22.common.CustomParameter } -var file_google_ads_googleads_v21_common_extensions_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.common.CallFeedItem.call_conversion_reporting_state:type_name -> google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - 4, // 1: google.ads.googleads.v21.common.SitelinkFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter +var file_google_ads_googleads_v22_common_extensions_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.common.CallFeedItem.call_conversion_reporting_state:type_name -> google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + 4, // 1: google.ads.googleads.v22.common.SitelinkFeedItem.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter 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 @@ -438,30 +438,30 @@ var file_google_ads_googleads_v21_common_extensions_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_extensions_proto_init() } -func file_google_ads_googleads_v21_common_extensions_proto_init() { - if File_google_ads_googleads_v21_common_extensions_proto != nil { +func init() { file_google_ads_googleads_v22_common_extensions_proto_init() } +func file_google_ads_googleads_v22_common_extensions_proto_init() { + if File_google_ads_googleads_v22_common_extensions_proto != nil { return } - file_google_ads_googleads_v21_common_custom_parameter_proto_init() - file_google_ads_googleads_v21_common_extensions_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_extensions_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_extensions_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_custom_parameter_proto_init() + file_google_ads_googleads_v22_common_extensions_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_extensions_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_extensions_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_extensions_proto_rawDesc), len(file_google_ads_googleads_v21_common_extensions_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_extensions_proto_rawDesc), len(file_google_ads_googleads_v22_common_extensions_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_extensions_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_extensions_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_extensions_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_extensions_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_extensions_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_extensions_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_extensions_proto = out.File - file_google_ads_googleads_v21_common_extensions_proto_goTypes = nil - file_google_ads_googleads_v21_common_extensions_proto_depIdxs = nil + File_google_ads_googleads_v22_common_extensions_proto = out.File + file_google_ads_googleads_v22_common_extensions_proto_goTypes = nil + file_google_ads_googleads_v22_common_extensions_proto_depIdxs = nil } diff --git a/common/feed_common.pb.go b/common/feed_common.pb.go index 715241e3..059b8027 100644 --- a/common/feed_common.pb.go +++ b/common/feed_common.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/feed_common.proto +// source: google/ads/googleads/v22/common/feed_common.proto package common @@ -48,7 +48,7 @@ type Money struct { func (x *Money) Reset() { *x = Money{} - mi := &file_google_ads_googleads_v21_common_feed_common_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_feed_common_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60,7 +60,7 @@ func (x *Money) String() string { func (*Money) ProtoMessage() {} func (x *Money) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_feed_common_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_feed_common_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73,7 +73,7 @@ func (x *Money) ProtoReflect() protoreflect.Message { // Deprecated: Use Money.ProtoReflect.Descriptor instead. func (*Money) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_feed_common_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_feed_common_proto_rawDescGZIP(), []int{0} } func (x *Money) GetCurrencyCode() string { @@ -90,14 +90,14 @@ func (x *Money) GetAmountMicros() int64 { return 0 } -var File_google_ads_googleads_v21_common_feed_common_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_feed_common_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_feed_common_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_feed_common_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -108,39 +108,39 @@ var file_google_ads_googleads_v21_common_feed_common_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x46, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_feed_common_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_feed_common_proto_rawDescData []byte + file_google_ads_googleads_v22_common_feed_common_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_feed_common_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_feed_common_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_feed_common_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_feed_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_feed_common_proto_rawDesc), len(file_google_ads_googleads_v21_common_feed_common_proto_rawDesc))) +func file_google_ads_googleads_v22_common_feed_common_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_feed_common_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_feed_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_feed_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_feed_common_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_feed_common_proto_rawDescData + return file_google_ads_googleads_v22_common_feed_common_proto_rawDescData } -var file_google_ads_googleads_v21_common_feed_common_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_feed_common_proto_goTypes = []any{ - (*Money)(nil), // 0: google.ads.googleads.v21.common.Money +var file_google_ads_googleads_v22_common_feed_common_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_feed_common_proto_goTypes = []any{ + (*Money)(nil), // 0: google.ads.googleads.v22.common.Money } -var file_google_ads_googleads_v21_common_feed_common_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -148,27 +148,27 @@ var file_google_ads_googleads_v21_common_feed_common_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_feed_common_proto_init() } -func file_google_ads_googleads_v21_common_feed_common_proto_init() { - if File_google_ads_googleads_v21_common_feed_common_proto != nil { +func init() { file_google_ads_googleads_v22_common_feed_common_proto_init() } +func file_google_ads_googleads_v22_common_feed_common_proto_init() { + if File_google_ads_googleads_v22_common_feed_common_proto != nil { return } - file_google_ads_googleads_v21_common_feed_common_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_feed_common_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_feed_common_proto_rawDesc), len(file_google_ads_googleads_v21_common_feed_common_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_feed_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_feed_common_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_feed_common_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_feed_common_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_feed_common_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_feed_common_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_feed_common_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_feed_common_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_feed_common_proto = out.File - file_google_ads_googleads_v21_common_feed_common_proto_goTypes = nil - file_google_ads_googleads_v21_common_feed_common_proto_depIdxs = nil + File_google_ads_googleads_v22_common_feed_common_proto = out.File + file_google_ads_googleads_v22_common_feed_common_proto_goTypes = nil + file_google_ads_googleads_v22_common_feed_common_proto_depIdxs = nil } diff --git a/common/final_app_url.pb.go b/common/final_app_url.pb.go index d554eb39..fcc9bbc8 100644 --- a/common/final_app_url.pb.go +++ b/common/final_app_url.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/final_app_url.proto +// source: google/ads/googleads/v22/common/final_app_url.proto package common @@ -40,7 +40,7 @@ const ( type FinalAppUrl struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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} @@ -55,7 +55,7 @@ type FinalAppUrl struct { func (x *FinalAppUrl) Reset() { *x = FinalAppUrl{} - mi := &file_google_ads_googleads_v21_common_final_app_url_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_final_app_url_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *FinalAppUrl) String() string { func (*FinalAppUrl) ProtoMessage() {} func (x *FinalAppUrl) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_final_app_url_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_final_app_url_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *FinalAppUrl) ProtoReflect() protoreflect.Message { // Deprecated: Use FinalAppUrl.ProtoReflect.Descriptor instead. func (*FinalAppUrl) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_final_app_url_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_final_app_url_proto_rawDescGZIP(), []int{0} } func (x *FinalAppUrl) GetOsType() enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType { @@ -97,23 +97,23 @@ func (x *FinalAppUrl) GetUrl() string { return "" } -var File_google_ads_googleads_v21_common_final_app_url_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_final_app_url_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_final_app_url_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -121,42 +121,42 @@ var file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_final_app_url_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_final_app_url_proto_rawDescData []byte + file_google_ads_googleads_v22_common_final_app_url_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_final_app_url_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_final_app_url_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_final_app_url_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_final_app_url_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc), len(file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc))) +func file_google_ads_googleads_v22_common_final_app_url_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_final_app_url_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_final_app_url_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_final_app_url_proto_rawDesc), len(file_google_ads_googleads_v22_common_final_app_url_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_final_app_url_proto_rawDescData + return file_google_ads_googleads_v22_common_final_app_url_proto_rawDescData } -var file_google_ads_googleads_v21_common_final_app_url_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_final_app_url_proto_goTypes = []any{ - (*FinalAppUrl)(nil), // 0: google.ads.googleads.v21.common.FinalAppUrl - (enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 1: google.ads.googleads.v21.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType +var file_google_ads_googleads_v22_common_final_app_url_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_final_app_url_proto_goTypes = []any{ + (*FinalAppUrl)(nil), // 0: google.ads.googleads.v22.common.FinalAppUrl + (enums.AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 1: google.ads.googleads.v22.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType } -var file_google_ads_googleads_v21_common_final_app_url_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.FinalAppUrl.os_type:type_name -> google.ads.googleads.v21.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType +var file_google_ads_googleads_v22_common_final_app_url_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.FinalAppUrl.os_type:type_name -> google.ads.googleads.v22.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 @@ -164,27 +164,27 @@ var file_google_ads_googleads_v21_common_final_app_url_proto_depIdxs = []int32{ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_final_app_url_proto_init() } -func file_google_ads_googleads_v21_common_final_app_url_proto_init() { - if File_google_ads_googleads_v21_common_final_app_url_proto != nil { +func init() { file_google_ads_googleads_v22_common_final_app_url_proto_init() } +func file_google_ads_googleads_v22_common_final_app_url_proto_init() { + if File_google_ads_googleads_v22_common_final_app_url_proto != nil { return } - file_google_ads_googleads_v21_common_final_app_url_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_final_app_url_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc), len(file_google_ads_googleads_v21_common_final_app_url_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_final_app_url_proto_rawDesc), len(file_google_ads_googleads_v22_common_final_app_url_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_final_app_url_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_final_app_url_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_final_app_url_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_final_app_url_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_final_app_url_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_final_app_url_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_final_app_url_proto = out.File - file_google_ads_googleads_v21_common_final_app_url_proto_goTypes = nil - file_google_ads_googleads_v21_common_final_app_url_proto_depIdxs = nil + File_google_ads_googleads_v22_common_final_app_url_proto = out.File + file_google_ads_googleads_v22_common_final_app_url_proto_goTypes = nil + file_google_ads_googleads_v22_common_final_app_url_proto_depIdxs = nil } diff --git a/common/frequency_cap.pb.go b/common/frequency_cap.pb.go index 089ff91e..bf9ff520 100644 --- a/common/frequency_cap.pb.go +++ b/common/frequency_cap.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/frequency_cap.proto +// source: google/ads/googleads/v22/common/frequency_cap.proto package common @@ -51,7 +51,7 @@ type FrequencyCapEntry struct { func (x *FrequencyCapEntry) Reset() { *x = FrequencyCapEntry{} - mi := &file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *FrequencyCapEntry) String() string { func (*FrequencyCapEntry) ProtoMessage() {} func (x *FrequencyCapEntry) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *FrequencyCapEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCapEntry.ProtoReflect.Descriptor instead. func (*FrequencyCapEntry) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescGZIP(), []int{0} } func (x *FrequencyCapEntry) GetKey() *FrequencyCapKey { @@ -99,11 +99,11 @@ type FrequencyCapKey struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.enums.FrequencyCapLevelEnum_FrequencyCapLevel" json:"level,omitempty"` + Level enums.FrequencyCapLevelEnum_FrequencyCapLevel `protobuf:"varint,1,opt,name=level,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -112,7 +112,7 @@ type FrequencyCapKey struct { func (x *FrequencyCapKey) Reset() { *x = FrequencyCapKey{} - mi := &file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *FrequencyCapKey) String() string { func (*FrequencyCapKey) ProtoMessage() {} func (x *FrequencyCapKey) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,7 +137,7 @@ func (x *FrequencyCapKey) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCapKey.ProtoReflect.Descriptor instead. func (*FrequencyCapKey) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescGZIP(), []int{1} } func (x *FrequencyCapKey) GetLevel() enums.FrequencyCapLevelEnum_FrequencyCapLevel { @@ -168,30 +168,30 @@ func (x *FrequencyCapKey) GetTimeLength() int32 { return 0 } -var File_google_ads_googleads_v21_common_frequency_cap_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_frequency_cap_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_frequency_cap_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -199,20 +199,20 @@ var file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x46, 0x72, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -221,48 +221,48 @@ var file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescData []byte + file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc), len(file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc))) +func file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_frequency_cap_proto_rawDesc), len(file_google_ads_googleads_v22_common_frequency_cap_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_frequency_cap_proto_rawDescData + return file_google_ads_googleads_v22_common_frequency_cap_proto_rawDescData } -var file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_common_frequency_cap_proto_goTypes = []any{ - (*FrequencyCapEntry)(nil), // 0: google.ads.googleads.v21.common.FrequencyCapEntry - (*FrequencyCapKey)(nil), // 1: google.ads.googleads.v21.common.FrequencyCapKey - (enums.FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 2: google.ads.googleads.v21.enums.FrequencyCapLevelEnum.FrequencyCapLevel - (enums.FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 3: google.ads.googleads.v21.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType - (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 4: google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit +var file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_common_frequency_cap_proto_goTypes = []any{ + (*FrequencyCapEntry)(nil), // 0: google.ads.googleads.v22.common.FrequencyCapEntry + (*FrequencyCapKey)(nil), // 1: google.ads.googleads.v22.common.FrequencyCapKey + (enums.FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 2: google.ads.googleads.v22.enums.FrequencyCapLevelEnum.FrequencyCapLevel + (enums.FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 3: google.ads.googleads.v22.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType + (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 4: google.ads.googleads.v22.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit } -var file_google_ads_googleads_v21_common_frequency_cap_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.FrequencyCapEntry.key:type_name -> google.ads.googleads.v21.common.FrequencyCapKey - 2, // 1: google.ads.googleads.v21.common.FrequencyCapKey.level:type_name -> google.ads.googleads.v21.enums.FrequencyCapLevelEnum.FrequencyCapLevel - 3, // 2: google.ads.googleads.v21.common.FrequencyCapKey.event_type:type_name -> google.ads.googleads.v21.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType - 4, // 3: google.ads.googleads.v21.common.FrequencyCapKey.time_unit:type_name -> google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit +var file_google_ads_googleads_v22_common_frequency_cap_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.FrequencyCapEntry.key:type_name -> google.ads.googleads.v22.common.FrequencyCapKey + 2, // 1: google.ads.googleads.v22.common.FrequencyCapKey.level:type_name -> google.ads.googleads.v22.enums.FrequencyCapLevelEnum.FrequencyCapLevel + 3, // 2: google.ads.googleads.v22.common.FrequencyCapKey.event_type:type_name -> google.ads.googleads.v22.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType + 4, // 3: google.ads.googleads.v22.common.FrequencyCapKey.time_unit:type_name -> google.ads.googleads.v22.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 @@ -270,28 +270,28 @@ var file_google_ads_googleads_v21_common_frequency_cap_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_frequency_cap_proto_init() } -func file_google_ads_googleads_v21_common_frequency_cap_proto_init() { - if File_google_ads_googleads_v21_common_frequency_cap_proto != nil { +func init() { file_google_ads_googleads_v22_common_frequency_cap_proto_init() } +func file_google_ads_googleads_v22_common_frequency_cap_proto_init() { + if File_google_ads_googleads_v22_common_frequency_cap_proto != nil { return } - file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc), len(file_google_ads_googleads_v21_common_frequency_cap_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_frequency_cap_proto_rawDesc), len(file_google_ads_googleads_v22_common_frequency_cap_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_frequency_cap_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_frequency_cap_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_frequency_cap_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_frequency_cap_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_frequency_cap_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_frequency_cap_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_frequency_cap_proto = out.File - file_google_ads_googleads_v21_common_frequency_cap_proto_goTypes = nil - file_google_ads_googleads_v21_common_frequency_cap_proto_depIdxs = nil + File_google_ads_googleads_v22_common_frequency_cap_proto = out.File + file_google_ads_googleads_v22_common_frequency_cap_proto_goTypes = nil + file_google_ads_googleads_v22_common_frequency_cap_proto_depIdxs = nil } diff --git a/common/goal_common.pb.go b/common/goal_common.pb.go new file mode 100644 index 00000000..72e1a060 --- /dev/null +++ b/common/goal_common.pb.go @@ -0,0 +1,185 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/common/goal_common.proto + +package common + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// Lifecycle goal optimization value settings. +type CustomerLifecycleOptimizationValueSettings struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Value of the lifecycle goal. For example, for retention goals, value is the + // incremental conversion value for lapsed customers who are not of high + // value. + AdditionalValue *float64 `protobuf:"fixed64,1,opt,name=additional_value,json=additionalValue,proto3,oneof" json:"additional_value,omitempty"` + // High lifetime value of the lifecycle goal. For example, for customer + // acquisition goals, high lifetime value is the incremental conversion value + // for lapsed customers who are of high value. High lifetime value should be + // greater than value, if set. + AdditionalHighLifetimeValue *float64 `protobuf:"fixed64,2,opt,name=additional_high_lifetime_value,json=additionalHighLifetimeValue,proto3,oneof" json:"additional_high_lifetime_value,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CustomerLifecycleOptimizationValueSettings) Reset() { + *x = CustomerLifecycleOptimizationValueSettings{} + mi := &file_google_ads_googleads_v22_common_goal_common_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CustomerLifecycleOptimizationValueSettings) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CustomerLifecycleOptimizationValueSettings) ProtoMessage() {} + +func (x *CustomerLifecycleOptimizationValueSettings) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_goal_common_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CustomerLifecycleOptimizationValueSettings.ProtoReflect.Descriptor instead. +func (*CustomerLifecycleOptimizationValueSettings) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_goal_common_proto_rawDescGZIP(), []int{0} +} + +func (x *CustomerLifecycleOptimizationValueSettings) GetAdditionalValue() float64 { + if x != nil && x.AdditionalValue != nil { + return *x.AdditionalValue + } + return 0 +} + +func (x *CustomerLifecycleOptimizationValueSettings) GetAdditionalHighLifetimeValue() float64 { + if x != nil && x.AdditionalHighLifetimeValue != nil { + return *x.AdditionalHighLifetimeValue + } + return 0 +} + +var File_google_ads_googleads_v22_common_goal_common_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_common_goal_common_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xde, 0x01, 0x0a, 0x2a, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x73, 0x12, 0x2e, 0x0a, 0x10, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, + 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x00, 0x52, + 0x0f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, + 0x88, 0x01, 0x01, 0x12, 0x48, 0x0a, 0x1e, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, + 0x6c, 0x5f, 0x68, 0x69, 0x67, 0x68, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, + 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x01, 0x52, 0x1b, 0x61, + 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x48, 0x69, 0x67, 0x68, 0x4c, 0x69, 0x66, + 0x65, 0x74, 0x69, 0x6d, 0x65, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x42, 0x13, 0x0a, + 0x11, 0x5f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x76, 0x61, 0x6c, + 0x75, 0x65, 0x42, 0x21, 0x0a, 0x1f, 0x5f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, + 0x6c, 0x5f, 0x68, 0x69, 0x67, 0x68, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x74, 0x69, 0x6d, 0x65, 0x5f, + 0x76, 0x61, 0x6c, 0x75, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x47, + 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, + 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_common_goal_common_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_goal_common_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_common_goal_common_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_goal_common_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_goal_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_goal_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_goal_common_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_common_goal_common_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_goal_common_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_goal_common_proto_goTypes = []any{ + (*CustomerLifecycleOptimizationValueSettings)(nil), // 0: google.ads.googleads.v22.common.CustomerLifecycleOptimizationValueSettings +} +var file_google_ads_googleads_v22_common_goal_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 + 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_v22_common_goal_common_proto_init() } +func file_google_ads_googleads_v22_common_goal_common_proto_init() { + if File_google_ads_googleads_v22_common_goal_common_proto != nil { + return + } + file_google_ads_googleads_v22_common_goal_common_proto_msgTypes[0].OneofWrappers = []any{} + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_goal_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_goal_common_proto_rawDesc)), + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_common_goal_common_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_goal_common_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_goal_common_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_common_goal_common_proto = out.File + file_google_ads_googleads_v22_common_goal_common_proto_goTypes = nil + file_google_ads_googleads_v22_common_goal_common_proto_depIdxs = nil +} diff --git a/common/goal_setting.pb.go b/common/goal_setting.pb.go new file mode 100644 index 00000000..03262837 --- /dev/null +++ b/common/goal_setting.pb.go @@ -0,0 +1,210 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/common/goal_setting.proto + +package common + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// Goal setting. +type GoalSetting struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalSetting) Reset() { + *x = GoalSetting{} + mi := &file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalSetting) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalSetting) ProtoMessage() {} + +func (x *GoalSetting) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalSetting.ProtoReflect.Descriptor instead. +func (*GoalSetting) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_goal_setting_proto_rawDescGZIP(), []int{0} +} + +// Retention goal settings. +type GoalSetting_RetentionGoal struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Retention goal value settings. + ValueSettings *CustomerLifecycleOptimizationValueSettings `protobuf:"bytes,1,opt,name=value_settings,json=valueSettings,proto3" json:"value_settings,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalSetting_RetentionGoal) Reset() { + *x = GoalSetting_RetentionGoal{} + mi := &file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalSetting_RetentionGoal) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalSetting_RetentionGoal) ProtoMessage() {} + +func (x *GoalSetting_RetentionGoal) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalSetting_RetentionGoal.ProtoReflect.Descriptor instead. +func (*GoalSetting_RetentionGoal) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_common_goal_setting_proto_rawDescGZIP(), []int{0, 0} +} + +func (x *GoalSetting_RetentionGoal) GetValueSettings() *CustomerLifecycleOptimizationValueSettings { + if x != nil { + return x.ValueSettings + } + return nil +} + +var File_google_ads_googleads_v22_common_goal_setting_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_common_goal_setting_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x93, 0x01, 0x0a, 0x0b, 0x47, 0x6f, 0x61, + 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x1a, 0x83, 0x01, 0x0a, 0x0d, 0x52, 0x65, 0x74, + 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x72, 0x0a, 0x0e, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, + 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 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, 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x10, 0x47, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_common_goal_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_goal_setting_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_common_goal_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_goal_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_goal_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_goal_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_goal_setting_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_common_goal_setting_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_common_goal_setting_proto_goTypes = []any{ + (*GoalSetting)(nil), // 0: google.ads.googleads.v22.common.GoalSetting + (*GoalSetting_RetentionGoal)(nil), // 1: google.ads.googleads.v22.common.GoalSetting.RetentionGoal + (*CustomerLifecycleOptimizationValueSettings)(nil), // 2: google.ads.googleads.v22.common.CustomerLifecycleOptimizationValueSettings +} +var file_google_ads_googleads_v22_common_goal_setting_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.GoalSetting.RetentionGoal.value_settings:type_name -> google.ads.googleads.v22.common.CustomerLifecycleOptimizationValueSettings + 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_v22_common_goal_setting_proto_init() } +func file_google_ads_googleads_v22_common_goal_setting_proto_init() { + if File_google_ads_googleads_v22_common_goal_setting_proto != nil { + return + } + file_google_ads_googleads_v22_common_goal_common_proto_init() + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_goal_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_goal_setting_proto_rawDesc)), + NumEnums: 0, + NumMessages: 2, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_common_goal_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_goal_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_goal_setting_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_common_goal_setting_proto = out.File + file_google_ads_googleads_v22_common_goal_setting_proto_goTypes = nil + file_google_ads_googleads_v22_common_goal_setting_proto_depIdxs = nil +} diff --git a/common/keyword_plan_common.pb.go b/common/keyword_plan_common.pb.go index 54a156e0..23efda66 100644 --- a/common/keyword_plan_common.pb.go +++ b/common/keyword_plan_common.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/keyword_plan_common.proto +// source: google/ads/googleads/v22/common/keyword_plan_common.proto package common @@ -48,7 +48,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.v21.enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel" json:"competition,omitempty"` + Competition enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel `protobuf:"varint,2,opt,name=competition,proto3,enum=google.ads.googleads.v22.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 @@ -67,7 +67,7 @@ type KeywordPlanHistoricalMetrics struct { func (x *KeywordPlanHistoricalMetrics) Reset() { *x = KeywordPlanHistoricalMetrics{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *KeywordPlanHistoricalMetrics) String() string { func (*KeywordPlanHistoricalMetrics) ProtoMessage() {} func (x *KeywordPlanHistoricalMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *KeywordPlanHistoricalMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanHistoricalMetrics.ProtoReflect.Descriptor instead. func (*KeywordPlanHistoricalMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanHistoricalMetrics) GetAvgMonthlySearches() int64 { @@ -162,7 +162,7 @@ type HistoricalMetricsOptions struct { func (x *HistoricalMetricsOptions) Reset() { *x = HistoricalMetricsOptions{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174,7 +174,7 @@ func (x *HistoricalMetricsOptions) String() string { func (*HistoricalMetricsOptions) ProtoMessage() {} func (x *HistoricalMetricsOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187,7 +187,7 @@ func (x *HistoricalMetricsOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use HistoricalMetricsOptions.ProtoReflect.Descriptor instead. func (*HistoricalMetricsOptions) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{1} } func (x *HistoricalMetricsOptions) GetYearMonthRange() *YearMonthRange { @@ -210,7 +210,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.v21.enums.MonthOfYearEnum_MonthOfYear" json:"month,omitempty"` + Month enums.MonthOfYearEnum_MonthOfYear `protobuf:"varint,2,opt,name=month,proto3,enum=google.ads.googleads.v22.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. @@ -221,7 +221,7 @@ type MonthlySearchVolume struct { func (x *MonthlySearchVolume) Reset() { *x = MonthlySearchVolume{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -233,7 +233,7 @@ func (x *MonthlySearchVolume) String() string { func (*MonthlySearchVolume) ProtoMessage() {} func (x *MonthlySearchVolume) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -246,7 +246,7 @@ func (x *MonthlySearchVolume) ProtoReflect() protoreflect.Message { // Deprecated: Use MonthlySearchVolume.ProtoReflect.Descriptor instead. func (*MonthlySearchVolume) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{2} } func (x *MonthlySearchVolume) GetYear() int64 { @@ -274,14 +274,14 @@ func (x *MonthlySearchVolume) GetMonthlySearches() int64 { type KeywordPlanAggregateMetrics struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType" json:"aggregate_metric_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *KeywordPlanAggregateMetrics) Reset() { *x = KeywordPlanAggregateMetrics{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -293,7 +293,7 @@ func (x *KeywordPlanAggregateMetrics) String() string { func (*KeywordPlanAggregateMetrics) ProtoMessage() {} func (x *KeywordPlanAggregateMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -306,7 +306,7 @@ func (x *KeywordPlanAggregateMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAggregateMetrics.ProtoReflect.Descriptor instead. func (*KeywordPlanAggregateMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{3} } func (x *KeywordPlanAggregateMetrics) GetAggregateMetricTypes() []enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType { @@ -332,7 +332,7 @@ type KeywordPlanAggregateMetricResults struct { func (x *KeywordPlanAggregateMetricResults) Reset() { *x = KeywordPlanAggregateMetricResults{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -344,7 +344,7 @@ func (x *KeywordPlanAggregateMetricResults) String() string { func (*KeywordPlanAggregateMetricResults) ProtoMessage() {} func (x *KeywordPlanAggregateMetricResults) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -357,7 +357,7 @@ func (x *KeywordPlanAggregateMetricResults) ProtoReflect() protoreflect.Message // Deprecated: Use KeywordPlanAggregateMetricResults.ProtoReflect.Descriptor instead. func (*KeywordPlanAggregateMetricResults) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{4} } func (x *KeywordPlanAggregateMetricResults) GetDeviceSearches() []*KeywordPlanDeviceSearches { @@ -371,7 +371,7 @@ func (x *KeywordPlanAggregateMetricResults) GetDeviceSearches() []*KeywordPlanDe type KeywordPlanDeviceSearches struct { state protoimpl.MessageState `protogen:"open.v1"` // The device type. - Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v21.enums.DeviceEnum_Device" json:"device,omitempty"` + Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -380,7 +380,7 @@ type KeywordPlanDeviceSearches struct { func (x *KeywordPlanDeviceSearches) Reset() { *x = KeywordPlanDeviceSearches{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -392,7 +392,7 @@ func (x *KeywordPlanDeviceSearches) String() string { func (*KeywordPlanDeviceSearches) ProtoMessage() {} func (x *KeywordPlanDeviceSearches) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -405,7 +405,7 @@ func (x *KeywordPlanDeviceSearches) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanDeviceSearches.ProtoReflect.Descriptor instead. func (*KeywordPlanDeviceSearches) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{5} } func (x *KeywordPlanDeviceSearches) GetDevice() enums.DeviceEnum_Device { @@ -433,7 +433,7 @@ type KeywordAnnotations struct { func (x *KeywordAnnotations) Reset() { *x = KeywordAnnotations{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -445,7 +445,7 @@ func (x *KeywordAnnotations) String() string { func (*KeywordAnnotations) ProtoMessage() {} func (x *KeywordAnnotations) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -458,7 +458,7 @@ func (x *KeywordAnnotations) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordAnnotations.ProtoReflect.Descriptor instead. func (*KeywordAnnotations) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{6} } func (x *KeywordAnnotations) GetConcepts() []*KeywordConcept { @@ -481,7 +481,7 @@ type KeywordConcept struct { func (x *KeywordConcept) Reset() { *x = KeywordConcept{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -493,7 +493,7 @@ func (x *KeywordConcept) String() string { func (*KeywordConcept) ProtoMessage() {} func (x *KeywordConcept) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -506,7 +506,7 @@ func (x *KeywordConcept) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordConcept.ProtoReflect.Descriptor instead. func (*KeywordConcept) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{7} } func (x *KeywordConcept) GetName() string { @@ -529,14 +529,14 @@ 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.v21.enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType" json:"type,omitempty"` + Type enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConceptGroup) Reset() { *x = ConceptGroup{} - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -548,7 +548,7 @@ func (x *ConceptGroup) String() string { func (*ConceptGroup) ProtoMessage() {} func (x *ConceptGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -561,7 +561,7 @@ func (x *ConceptGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use ConceptGroup.ProtoReflect.Descriptor instead. func (*ConceptGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP(), []int{8} } func (x *ConceptGroup) GetName() string { @@ -578,36 +578,36 @@ func (x *ConceptGroup) GetType() enums.KeywordPlanConceptGroupTypeEnum_KeywordPl return enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType(0) } -var File_google_ads_googleads_v21_common_keyword_plan_common_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_keyword_plan_common_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2b, 0x67, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x61, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -618,13 +618,13 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x6c, 0x79, + 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x32, 0x32, 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, @@ -656,7 +656,7 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -669,7 +669,7 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -682,7 +682,7 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -694,14 +694,14 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -711,7 +711,7 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -719,77 +719,77 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x63, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescData []byte + file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc), len(file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc))) +func file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_common_keyword_plan_common_proto_goTypes = []any{ - (*KeywordPlanHistoricalMetrics)(nil), // 0: google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics - (*HistoricalMetricsOptions)(nil), // 1: google.ads.googleads.v21.common.HistoricalMetricsOptions - (*MonthlySearchVolume)(nil), // 2: google.ads.googleads.v21.common.MonthlySearchVolume - (*KeywordPlanAggregateMetrics)(nil), // 3: google.ads.googleads.v21.common.KeywordPlanAggregateMetrics - (*KeywordPlanAggregateMetricResults)(nil), // 4: google.ads.googleads.v21.common.KeywordPlanAggregateMetricResults - (*KeywordPlanDeviceSearches)(nil), // 5: google.ads.googleads.v21.common.KeywordPlanDeviceSearches - (*KeywordAnnotations)(nil), // 6: google.ads.googleads.v21.common.KeywordAnnotations - (*KeywordConcept)(nil), // 7: google.ads.googleads.v21.common.KeywordConcept - (*ConceptGroup)(nil), // 8: google.ads.googleads.v21.common.ConceptGroup - (enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 9: google.ads.googleads.v21.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel - (*YearMonthRange)(nil), // 10: google.ads.googleads.v21.common.YearMonthRange - (enums.MonthOfYearEnum_MonthOfYear)(0), // 11: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - (enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 12: google.ads.googleads.v21.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType - (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v21.enums.DeviceEnum.Device - (enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 14: google.ads.googleads.v21.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType -} -var file_google_ads_googleads_v21_common_keyword_plan_common_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics.monthly_search_volumes:type_name -> google.ads.googleads.v21.common.MonthlySearchVolume - 9, // 1: google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics.competition:type_name -> google.ads.googleads.v21.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel - 10, // 2: google.ads.googleads.v21.common.HistoricalMetricsOptions.year_month_range:type_name -> google.ads.googleads.v21.common.YearMonthRange - 11, // 3: google.ads.googleads.v21.common.MonthlySearchVolume.month:type_name -> google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - 12, // 4: google.ads.googleads.v21.common.KeywordPlanAggregateMetrics.aggregate_metric_types:type_name -> google.ads.googleads.v21.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType - 5, // 5: google.ads.googleads.v21.common.KeywordPlanAggregateMetricResults.device_searches:type_name -> google.ads.googleads.v21.common.KeywordPlanDeviceSearches - 13, // 6: google.ads.googleads.v21.common.KeywordPlanDeviceSearches.device:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 7, // 7: google.ads.googleads.v21.common.KeywordAnnotations.concepts:type_name -> google.ads.googleads.v21.common.KeywordConcept - 8, // 8: google.ads.googleads.v21.common.KeywordConcept.concept_group:type_name -> google.ads.googleads.v21.common.ConceptGroup - 14, // 9: google.ads.googleads.v21.common.ConceptGroup.type:type_name -> google.ads.googleads.v21.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType + return file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_common_keyword_plan_common_proto_goTypes = []any{ + (*KeywordPlanHistoricalMetrics)(nil), // 0: google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics + (*HistoricalMetricsOptions)(nil), // 1: google.ads.googleads.v22.common.HistoricalMetricsOptions + (*MonthlySearchVolume)(nil), // 2: google.ads.googleads.v22.common.MonthlySearchVolume + (*KeywordPlanAggregateMetrics)(nil), // 3: google.ads.googleads.v22.common.KeywordPlanAggregateMetrics + (*KeywordPlanAggregateMetricResults)(nil), // 4: google.ads.googleads.v22.common.KeywordPlanAggregateMetricResults + (*KeywordPlanDeviceSearches)(nil), // 5: google.ads.googleads.v22.common.KeywordPlanDeviceSearches + (*KeywordAnnotations)(nil), // 6: google.ads.googleads.v22.common.KeywordAnnotations + (*KeywordConcept)(nil), // 7: google.ads.googleads.v22.common.KeywordConcept + (*ConceptGroup)(nil), // 8: google.ads.googleads.v22.common.ConceptGroup + (enums.KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 9: google.ads.googleads.v22.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel + (*YearMonthRange)(nil), // 10: google.ads.googleads.v22.common.YearMonthRange + (enums.MonthOfYearEnum_MonthOfYear)(0), // 11: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + (enums.KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 12: google.ads.googleads.v22.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType + (enums.DeviceEnum_Device)(0), // 13: google.ads.googleads.v22.enums.DeviceEnum.Device + (enums.KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 14: google.ads.googleads.v22.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType +} +var file_google_ads_googleads_v22_common_keyword_plan_common_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics.monthly_search_volumes:type_name -> google.ads.googleads.v22.common.MonthlySearchVolume + 9, // 1: google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics.competition:type_name -> google.ads.googleads.v22.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel + 10, // 2: google.ads.googleads.v22.common.HistoricalMetricsOptions.year_month_range:type_name -> google.ads.googleads.v22.common.YearMonthRange + 11, // 3: google.ads.googleads.v22.common.MonthlySearchVolume.month:type_name -> google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + 12, // 4: google.ads.googleads.v22.common.KeywordPlanAggregateMetrics.aggregate_metric_types:type_name -> google.ads.googleads.v22.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType + 5, // 5: google.ads.googleads.v22.common.KeywordPlanAggregateMetricResults.device_searches:type_name -> google.ads.googleads.v22.common.KeywordPlanDeviceSearches + 13, // 6: google.ads.googleads.v22.common.KeywordPlanDeviceSearches.device:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 7, // 7: google.ads.googleads.v22.common.KeywordAnnotations.concepts:type_name -> google.ads.googleads.v22.common.KeywordConcept + 8, // 8: google.ads.googleads.v22.common.KeywordConcept.concept_group:type_name -> google.ads.googleads.v22.common.ConceptGroup + 14, // 9: google.ads.googleads.v22.common.ConceptGroup.type:type_name -> google.ads.googleads.v22.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 @@ -797,31 +797,31 @@ var file_google_ads_googleads_v21_common_keyword_plan_common_proto_depIdxs = []i 0, // [0:10] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_keyword_plan_common_proto_init() } -func file_google_ads_googleads_v21_common_keyword_plan_common_proto_init() { - if File_google_ads_googleads_v21_common_keyword_plan_common_proto != nil { +func init() { file_google_ads_googleads_v22_common_keyword_plan_common_proto_init() } +func file_google_ads_googleads_v22_common_keyword_plan_common_proto_init() { + if File_google_ads_googleads_v22_common_keyword_plan_common_proto != nil { return } - file_google_ads_googleads_v21_common_dates_proto_init() - file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_dates_proto_init() + file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes[5].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc), len(file_google_ads_googleads_v21_common_keyword_plan_common_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDesc), len(file_google_ads_googleads_v22_common_keyword_plan_common_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_keyword_plan_common_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_keyword_plan_common_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_keyword_plan_common_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_keyword_plan_common_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_keyword_plan_common_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_keyword_plan_common_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_keyword_plan_common_proto = out.File - file_google_ads_googleads_v21_common_keyword_plan_common_proto_goTypes = nil - file_google_ads_googleads_v21_common_keyword_plan_common_proto_depIdxs = nil + File_google_ads_googleads_v22_common_keyword_plan_common_proto = out.File + file_google_ads_googleads_v22_common_keyword_plan_common_proto_goTypes = nil + file_google_ads_googleads_v22_common_keyword_plan_common_proto_depIdxs = nil } diff --git a/common/lifecycle_goals.pb.go b/common/lifecycle_goals.pb.go index 57ab967e..04281826 100644 --- a/common/lifecycle_goals.pb.go +++ b/common/lifecycle_goals.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/lifecycle_goals.proto +// source: google/ads/googleads/v22/common/lifecycle_goals.proto package common @@ -53,7 +53,7 @@ type LifecycleGoalValueSettings struct { func (x *LifecycleGoalValueSettings) Reset() { *x = LifecycleGoalValueSettings{} - mi := &file_google_ads_googleads_v21_common_lifecycle_goals_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_lifecycle_goals_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *LifecycleGoalValueSettings) String() string { func (*LifecycleGoalValueSettings) ProtoMessage() {} func (x *LifecycleGoalValueSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_lifecycle_goals_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_lifecycle_goals_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *LifecycleGoalValueSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use LifecycleGoalValueSettings.ProtoReflect.Descriptor instead. func (*LifecycleGoalValueSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescGZIP(), []int{0} } func (x *LifecycleGoalValueSettings) GetValue() float64 { @@ -95,15 +95,15 @@ func (x *LifecycleGoalValueSettings) GetHighLifetimeValue() float64 { return 0 } -var File_google_ads_googleads_v21_common_lifecycle_goals_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_lifecycle_goals_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0x8e, 0x01, 0x0a, 0x1a, 0x4c, 0x69, 0x66, + 0x32, 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, @@ -114,40 +114,40 @@ var file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescData []byte + file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc), len(file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc))) +func file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDesc), len(file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDescData + return file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDescData } -var file_google_ads_googleads_v21_common_lifecycle_goals_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_lifecycle_goals_proto_goTypes = []any{ - (*LifecycleGoalValueSettings)(nil), // 0: google.ads.googleads.v21.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v22_common_lifecycle_goals_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_lifecycle_goals_proto_goTypes = []any{ + (*LifecycleGoalValueSettings)(nil), // 0: google.ads.googleads.v22.common.LifecycleGoalValueSettings } -var file_google_ads_googleads_v21_common_lifecycle_goals_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -155,27 +155,27 @@ var file_google_ads_googleads_v21_common_lifecycle_goals_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_lifecycle_goals_proto_init() } -func file_google_ads_googleads_v21_common_lifecycle_goals_proto_init() { - if File_google_ads_googleads_v21_common_lifecycle_goals_proto != nil { +func init() { file_google_ads_googleads_v22_common_lifecycle_goals_proto_init() } +func file_google_ads_googleads_v22_common_lifecycle_goals_proto_init() { + if File_google_ads_googleads_v22_common_lifecycle_goals_proto != nil { return } - file_google_ads_googleads_v21_common_lifecycle_goals_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_lifecycle_goals_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc), len(file_google_ads_googleads_v21_common_lifecycle_goals_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDesc), len(file_google_ads_googleads_v22_common_lifecycle_goals_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_lifecycle_goals_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_lifecycle_goals_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_lifecycle_goals_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_lifecycle_goals_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_lifecycle_goals_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_lifecycle_goals_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_lifecycle_goals_proto = out.File - file_google_ads_googleads_v21_common_lifecycle_goals_proto_goTypes = nil - file_google_ads_googleads_v21_common_lifecycle_goals_proto_depIdxs = nil + File_google_ads_googleads_v22_common_lifecycle_goals_proto = out.File + file_google_ads_googleads_v22_common_lifecycle_goals_proto_goTypes = nil + file_google_ads_googleads_v22_common_lifecycle_goals_proto_depIdxs = nil } diff --git a/common/local_services.pb.go b/common/local_services.pb.go index 001488cf..a0108e01 100644 --- a/common/local_services.pb.go +++ b/common/local_services.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/local_services.proto +// source: google/ads/googleads/v22/common/local_services.proto package common @@ -46,7 +46,7 @@ type LocalServicesDocumentReadOnly struct { func (x *LocalServicesDocumentReadOnly) Reset() { *x = LocalServicesDocumentReadOnly{} - mi := &file_google_ads_googleads_v21_common_local_services_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_local_services_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58,7 +58,7 @@ func (x *LocalServicesDocumentReadOnly) String() string { func (*LocalServicesDocumentReadOnly) ProtoMessage() {} func (x *LocalServicesDocumentReadOnly) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_local_services_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_local_services_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71,7 +71,7 @@ func (x *LocalServicesDocumentReadOnly) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesDocumentReadOnly.ProtoReflect.Descriptor instead. func (*LocalServicesDocumentReadOnly) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_local_services_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_local_services_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesDocumentReadOnly) GetDocumentUrl() string { @@ -81,14 +81,14 @@ func (x *LocalServicesDocumentReadOnly) GetDocumentUrl() string { return "" } -var File_google_ads_googleads_v21_common_local_services_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_local_services_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_local_services_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_local_services_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -97,39 +97,39 @@ var file_google_ads_googleads_v21_common_local_services_proto_rawDesc = string([ 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x12, 0x4c, 0x6f, 0x63, 0x61, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_local_services_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_local_services_proto_rawDescData []byte + file_google_ads_googleads_v22_common_local_services_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_local_services_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_local_services_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_local_services_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_local_services_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_local_services_proto_rawDesc), len(file_google_ads_googleads_v21_common_local_services_proto_rawDesc))) +func file_google_ads_googleads_v22_common_local_services_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_local_services_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_local_services_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_local_services_proto_rawDesc), len(file_google_ads_googleads_v22_common_local_services_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_local_services_proto_rawDescData + return file_google_ads_googleads_v22_common_local_services_proto_rawDescData } -var file_google_ads_googleads_v21_common_local_services_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_local_services_proto_goTypes = []any{ - (*LocalServicesDocumentReadOnly)(nil), // 0: google.ads.googleads.v21.common.LocalServicesDocumentReadOnly +var file_google_ads_googleads_v22_common_local_services_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_local_services_proto_goTypes = []any{ + (*LocalServicesDocumentReadOnly)(nil), // 0: google.ads.googleads.v22.common.LocalServicesDocumentReadOnly } -var file_google_ads_googleads_v21_common_local_services_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -137,27 +137,27 @@ var file_google_ads_googleads_v21_common_local_services_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_local_services_proto_init() } -func file_google_ads_googleads_v21_common_local_services_proto_init() { - if File_google_ads_googleads_v21_common_local_services_proto != nil { +func init() { file_google_ads_googleads_v22_common_local_services_proto_init() } +func file_google_ads_googleads_v22_common_local_services_proto_init() { + if File_google_ads_googleads_v22_common_local_services_proto != nil { return } - file_google_ads_googleads_v21_common_local_services_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_local_services_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_local_services_proto_rawDesc), len(file_google_ads_googleads_v21_common_local_services_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_local_services_proto_rawDesc), len(file_google_ads_googleads_v22_common_local_services_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_local_services_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_local_services_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_local_services_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_local_services_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_local_services_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_local_services_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_local_services_proto = out.File - file_google_ads_googleads_v21_common_local_services_proto_goTypes = nil - file_google_ads_googleads_v21_common_local_services_proto_depIdxs = nil + File_google_ads_googleads_v22_common_local_services_proto = out.File + file_google_ads_googleads_v22_common_local_services_proto_goTypes = nil + file_google_ads_googleads_v22_common_local_services_proto_depIdxs = nil } diff --git a/common/metric_goal.pb.go b/common/metric_goal.pb.go index ef4a7bd6..8eb2502e 100644 --- a/common/metric_goal.pb.go +++ b/common/metric_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/metric_goal.proto +// source: google/ads/googleads/v22/common/metric_goal.proto package common @@ -41,17 +41,17 @@ type MetricGoal struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.enums.ExperimentMetricEnum_ExperimentMetric" json:"metric,omitempty"` + Metric enums.ExperimentMetricEnum_ExperimentMetric `protobuf:"varint,1,opt,name=metric,proto3,enum=google.ads.googleads.v22.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.v21.enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection" json:"direction,omitempty"` + Direction enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection `protobuf:"varint,2,opt,name=direction,proto3,enum=google.ads.googleads.v22.enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection" json:"direction,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MetricGoal) Reset() { *x = MetricGoal{} - mi := &file_google_ads_googleads_v21_common_metric_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_metric_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *MetricGoal) String() string { func (*MetricGoal) ProtoMessage() {} func (x *MetricGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_metric_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_metric_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *MetricGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use MetricGoal.ProtoReflect.Descriptor instead. func (*MetricGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_metric_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_metric_goal_proto_rawDescGZIP(), []int{0} } func (x *MetricGoal) GetMetric() enums.ExperimentMetricEnum_ExperimentMetric { @@ -93,75 +93,75 @@ func (x *MetricGoal) GetDirection() enums.ExperimentMetricDirectionEnum_Experime return enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection(0) } -var File_google_ads_googleads_v21_common_metric_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_metric_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_metric_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_metric_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x78, 0x70, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x4d, 0x65, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_metric_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_metric_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_common_metric_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_metric_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_metric_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_metric_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_metric_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_metric_goal_proto_rawDesc), len(file_google_ads_googleads_v21_common_metric_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_common_metric_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_metric_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_metric_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_metric_goal_proto_rawDesc), len(file_google_ads_googleads_v22_common_metric_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_metric_goal_proto_rawDescData + return file_google_ads_googleads_v22_common_metric_goal_proto_rawDescData } -var file_google_ads_googleads_v21_common_metric_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_metric_goal_proto_goTypes = []any{ - (*MetricGoal)(nil), // 0: google.ads.googleads.v21.common.MetricGoal - (enums.ExperimentMetricEnum_ExperimentMetric)(0), // 1: google.ads.googleads.v21.enums.ExperimentMetricEnum.ExperimentMetric - (enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 2: google.ads.googleads.v21.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection +var file_google_ads_googleads_v22_common_metric_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_metric_goal_proto_goTypes = []any{ + (*MetricGoal)(nil), // 0: google.ads.googleads.v22.common.MetricGoal + (enums.ExperimentMetricEnum_ExperimentMetric)(0), // 1: google.ads.googleads.v22.enums.ExperimentMetricEnum.ExperimentMetric + (enums.ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 2: google.ads.googleads.v22.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection } -var file_google_ads_googleads_v21_common_metric_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.MetricGoal.metric:type_name -> google.ads.googleads.v21.enums.ExperimentMetricEnum.ExperimentMetric - 2, // 1: google.ads.googleads.v21.common.MetricGoal.direction:type_name -> google.ads.googleads.v21.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection +var file_google_ads_googleads_v22_common_metric_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.MetricGoal.metric:type_name -> google.ads.googleads.v22.enums.ExperimentMetricEnum.ExperimentMetric + 2, // 1: google.ads.googleads.v22.common.MetricGoal.direction:type_name -> google.ads.googleads.v22.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 @@ -169,26 +169,26 @@ var file_google_ads_googleads_v21_common_metric_goal_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_metric_goal_proto_init() } -func file_google_ads_googleads_v21_common_metric_goal_proto_init() { - if File_google_ads_googleads_v21_common_metric_goal_proto != nil { +func init() { file_google_ads_googleads_v22_common_metric_goal_proto_init() } +func file_google_ads_googleads_v22_common_metric_goal_proto_init() { + if File_google_ads_googleads_v22_common_metric_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_metric_goal_proto_rawDesc), len(file_google_ads_googleads_v21_common_metric_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_metric_goal_proto_rawDesc), len(file_google_ads_googleads_v22_common_metric_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_metric_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_metric_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_metric_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_metric_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_metric_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_metric_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_metric_goal_proto = out.File - file_google_ads_googleads_v21_common_metric_goal_proto_goTypes = nil - file_google_ads_googleads_v21_common_metric_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_common_metric_goal_proto = out.File + file_google_ads_googleads_v22_common_metric_goal_proto_goTypes = nil + file_google_ads_googleads_v22_common_metric_goal_proto_depIdxs = nil } diff --git a/common/metrics.pb.go b/common/metrics.pb.go index 5c852c9f..14f1b952 100644 --- a/common/metrics.pb.go +++ b/common/metrics.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/metrics.proto +// source: google/ads/googleads/v22/common/metrics.proto package common @@ -186,8 +186,8 @@ type Metrics struct { AverageCpm *float64 `protobuf:"fixed64,206,opt,name=average_cpm,json=averageCpm,proto3,oneof" json:"average_cpm,omitempty"` // The average amount you pay each time someone views your ad. // The average CPV is defined by the total cost of all ad views divided by - // the number of views. - AverageCpv *float64 `protobuf:"fixed64,207,opt,name=average_cpv,json=averageCpv,proto3,oneof" json:"average_cpv,omitempty"` + // the number of TrueView views. + TrueviewAverageCpv *float64 `protobuf:"fixed64,405,opt,name=trueview_average_cpv,json=trueviewAverageCpv,proto3,oneof" json:"trueview_average_cpv,omitempty"` // Average number of pages viewed per session. AveragePageViews *float64 `protobuf:"fixed64,208,opt,name=average_page_views,json=averagePageViews,proto3,oneof" json:"average_page_views,omitempty"` // Total duration of all sessions (in seconds) / number of sessions. Imported @@ -377,13 +377,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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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 @@ -408,7 +408,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.v21.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.v22.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"` @@ -601,12 +601,12 @@ type Metrics struct { VideoQuartileP50Rate *float64 `protobuf:"fixed64,134,opt,name=video_quartile_p50_rate,json=videoQuartileP50Rate,proto3,oneof" json:"video_quartile_p50_rate,omitempty"` // Percentage of impressions where the viewer watched 75% of your video. VideoQuartileP75Rate *float64 `protobuf:"fixed64,135,opt,name=video_quartile_p75_rate,json=videoQuartileP75Rate,proto3,oneof" json:"video_quartile_p75_rate,omitempty"` - // The number of views your TrueView video ad receives divided by its number + // The number of TrueView views your video ad receives divided by its number // of impressions, including thumbnail impressions for TrueView in-display // ads. - VideoViewRate *float64 `protobuf:"fixed64,153,opt,name=video_view_rate,json=videoViewRate,proto3,oneof" json:"video_view_rate,omitempty"` - // The number of times your video ads were viewed. - VideoViews *int64 `protobuf:"varint,154,opt,name=video_views,json=videoViews,proto3,oneof" json:"video_views,omitempty"` + VideoTrueviewViewRate *float64 `protobuf:"fixed64,406,opt,name=video_trueview_view_rate,json=videoTrueviewViewRate,proto3,oneof" json:"video_trueview_view_rate,omitempty"` + // The number of TrueView views your video ads received. + VideoTrueviewViews *int64 `protobuf:"varint,407,opt,name=video_trueview_views,json=videoTrueviewViews,proto3,oneof" json:"video_trueview_views,omitempty"` // The total number of view-through conversions. // These happen when a customer sees an image or rich media ad, then later // completes a conversion on your site without interacting with (for example, @@ -1013,15 +1013,15 @@ type Metrics struct { StoreVisitsLastClickModelAttributedConversions *float64 `protobuf:"fixed64,365,opt,name=store_visits_last_click_model_attributed_conversions,json=storeVisitsLastClickModelAttributedConversions,proto3,oneof" json:"store_visits_last_click_model_attributed_conversions,omitempty"` // The purchase conversion stats for the unified goals results. ResultsConversionsPurchase *float64 `protobuf:"fixed64,366,opt,name=results_conversions_purchase,json=resultsConversionsPurchase,proto3,oneof" json:"results_conversions_purchase,omitempty"` - // The number of video views divided by number of impressions that can - // potentially lead to video views for in-feed formats. - VideoViewRateInFeed *float64 `protobuf:"fixed64,367,opt,name=video_view_rate_in_feed,json=videoViewRateInFeed,proto3,oneof" json:"video_view_rate_in_feed,omitempty"` - // The number of video views divided by number of impressions that can - // potentially lead to video views for in-stream formats. - VideoViewRateInStream *float64 `protobuf:"fixed64,368,opt,name=video_view_rate_in_stream,json=videoViewRateInStream,proto3,oneof" json:"video_view_rate_in_stream,omitempty"` - // The number of video views divided by number of impressions that can - // potentially lead to video views for in shorts formats. - VideoViewRateShorts *float64 `protobuf:"fixed64,369,opt,name=video_view_rate_shorts,json=videoViewRateShorts,proto3,oneof" json:"video_view_rate_shorts,omitempty"` + // The number of TrueView views divided by number of impressions that can + // potentially lead to TrueView views for in-feed formats. + VideoTrueviewViewRateInFeed *float64 `protobuf:"fixed64,408,opt,name=video_trueview_view_rate_in_feed,json=videoTrueviewViewRateInFeed,proto3,oneof" json:"video_trueview_view_rate_in_feed,omitempty"` + // The number of TrueView views divided by number of impressions that can + // potentially lead to TrueView views for in-stream formats. + VideoTrueviewViewRateInStream *float64 `protobuf:"fixed64,409,opt,name=video_trueview_view_rate_in_stream,json=videoTrueviewViewRateInStream,proto3,oneof" json:"video_trueview_view_rate_in_stream,omitempty"` + // The number of TrueView views divided by number of impressions that can + // potentially lead to TrueView views for Shorts ads. + VideoTrueviewViewRateShorts *float64 `protobuf:"fixed64,410,opt,name=video_trueview_view_rate_shorts,json=videoTrueviewViewRateShorts,proto3,oneof" json:"video_trueview_view_rate_shorts,omitempty"` // All co-viewed impressions represent the total number of people who saw your // ad. This includes people who are signed into their Google Account, as well // as other people who are watching the same ad on a connected TV. This metric @@ -1108,13 +1108,22 @@ type Metrics struct { ConversionsUniqueQueryClusters *int64 `protobuf:"varint,401,opt,name=conversions_unique_query_clusters,json=conversionsUniqueQueryClusters,proto3,oneof" json:"conversions_unique_query_clusters,omitempty"` // Unique query intent cluster count for impressions. ImpressionsUniqueQueryClusters *int64 `protobuf:"varint,402,opt,name=impressions_unique_query_clusters,json=impressionsUniqueQueryClusters,proto3,oneof" json:"impressions_unique_query_clusters,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + // Total watch time duration in milliseconds for video impressions that + // started playing. For a small percentage of impressions, we may not be able + // to measure the watch time accurately. In such cases, we adjust the total + // time to account for any unmeasured time by applying the average watch time + // of impressions that were measured. + VideoWatchTimeDurationMillis *int64 `protobuf:"varint,403,opt,name=video_watch_time_duration_millis,json=videoWatchTimeDurationMillis,proto3,oneof" json:"video_watch_time_duration_millis,omitempty"` + // Average video watch time duration in milliseconds for video impressions + // that started playing. + AverageVideoWatchTimeDurationMillis *int64 `protobuf:"varint,404,opt,name=average_video_watch_time_duration_millis,json=averageVideoWatchTimeDurationMillis,proto3,oneof" json:"average_video_watch_time_duration_millis,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *Metrics) Reset() { *x = Metrics{} - mi := &file_google_ads_googleads_v21_common_metrics_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_metrics_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1126,7 +1135,7 @@ func (x *Metrics) String() string { func (*Metrics) ProtoMessage() {} func (x *Metrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_metrics_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_metrics_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1139,7 +1148,7 @@ func (x *Metrics) ProtoReflect() protoreflect.Message { // Deprecated: Use Metrics.ProtoReflect.Descriptor instead. func (*Metrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_metrics_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_metrics_proto_rawDescGZIP(), []int{0} } func (x *Metrics) GetAbsoluteTopImpressionPercentage() float64 { @@ -1373,9 +1382,9 @@ func (x *Metrics) GetAverageCpm() float64 { return 0 } -func (x *Metrics) GetAverageCpv() float64 { - if x != nil && x.AverageCpv != nil { - return *x.AverageCpv +func (x *Metrics) GetTrueviewAverageCpv() float64 { + if x != nil && x.TrueviewAverageCpv != nil { + return *x.TrueviewAverageCpv } return 0 } @@ -2101,16 +2110,16 @@ func (x *Metrics) GetVideoQuartileP75Rate() float64 { return 0 } -func (x *Metrics) GetVideoViewRate() float64 { - if x != nil && x.VideoViewRate != nil { - return *x.VideoViewRate +func (x *Metrics) GetVideoTrueviewViewRate() float64 { + if x != nil && x.VideoTrueviewViewRate != nil { + return *x.VideoTrueviewViewRate } return 0 } -func (x *Metrics) GetVideoViews() int64 { - if x != nil && x.VideoViews != nil { - return *x.VideoViews +func (x *Metrics) GetVideoTrueviewViews() int64 { + if x != nil && x.VideoTrueviewViews != nil { + return *x.VideoTrueviewViews } return 0 } @@ -2563,23 +2572,23 @@ func (x *Metrics) GetResultsConversionsPurchase() float64 { return 0 } -func (x *Metrics) GetVideoViewRateInFeed() float64 { - if x != nil && x.VideoViewRateInFeed != nil { - return *x.VideoViewRateInFeed +func (x *Metrics) GetVideoTrueviewViewRateInFeed() float64 { + if x != nil && x.VideoTrueviewViewRateInFeed != nil { + return *x.VideoTrueviewViewRateInFeed } return 0 } -func (x *Metrics) GetVideoViewRateInStream() float64 { - if x != nil && x.VideoViewRateInStream != nil { - return *x.VideoViewRateInStream +func (x *Metrics) GetVideoTrueviewViewRateInStream() float64 { + if x != nil && x.VideoTrueviewViewRateInStream != nil { + return *x.VideoTrueviewViewRateInStream } return 0 } -func (x *Metrics) GetVideoViewRateShorts() float64 { - if x != nil && x.VideoViewRateShorts != nil { - return *x.VideoViewRateShorts +func (x *Metrics) GetVideoTrueviewViewRateShorts() float64 { + if x != nil && x.VideoTrueviewViewRateShorts != nil { + return *x.VideoTrueviewViewRateShorts } return 0 } @@ -2710,6 +2719,20 @@ func (x *Metrics) GetImpressionsUniqueQueryClusters() int64 { return 0 } +func (x *Metrics) GetVideoWatchTimeDurationMillis() int64 { + if x != nil && x.VideoWatchTimeDurationMillis != nil { + return *x.VideoWatchTimeDurationMillis + } + return 0 +} + +func (x *Metrics) GetAverageVideoWatchTimeDurationMillis() int64 { + if x != nil && x.AverageVideoWatchTimeDurationMillis != nil { + return *x.AverageVideoWatchTimeDurationMillis + } + return 0 +} + // Search volume range. // Actual search volume falls within this range. type SearchVolumeRange struct { @@ -2724,7 +2747,7 @@ type SearchVolumeRange struct { func (x *SearchVolumeRange) Reset() { *x = SearchVolumeRange{} - mi := &file_google_ads_googleads_v21_common_metrics_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_metrics_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2736,7 +2759,7 @@ func (x *SearchVolumeRange) String() string { func (*SearchVolumeRange) ProtoMessage() {} func (x *SearchVolumeRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_metrics_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_metrics_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2749,7 +2772,7 @@ func (x *SearchVolumeRange) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchVolumeRange.ProtoReflect.Descriptor instead. func (*SearchVolumeRange) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_metrics_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_metrics_proto_rawDescGZIP(), []int{1} } func (x *SearchVolumeRange) GetMin() int64 { @@ -2766,22 +2789,22 @@ func (x *SearchVolumeRange) GetMax() int64 { return 0 } -var File_google_ads_googleads_v21_common_metrics_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_metrics_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_metrics_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_metrics_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x71, 0x75, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0xbc, 0xc0, 0x01, 0x0a, 0x07, 0x4d, 0x65, + 0x65, 0x74, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xd7, 0xc3, 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, @@ -2936,1440 +2959,1465 @@ var file_google_ads_googleads_v21_common_metrics_proto_rawDesc = string([]byte{ 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, + 0x61, 0x67, 0x65, 0x43, 0x70, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x63, 0x70, + 0x76, 0x18, 0x95, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0x21, 0x52, 0x12, 0x74, 0x72, 0x75, 0x65, + 0x76, 0x69, 0x65, 0x77, 0x41, 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, 0x63, 0x0a, 0x2c, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, + 0x5f, 0x63, 0x6f, 0x68, 0x6f, 0x72, 0x74, 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, 0x63, 0x0a, 0x2c, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, - 0x63, 0x6f, 0x68, 0x6f, 0x72, 0x74, 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, 0xfa, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x27, 0x52, 0x27, 0x62, 0x69, - 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x68, 0x6f, 0x72, 0x74, 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, 0x28, 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, 0x29, 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, 0x2a, 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, 0x2b, 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, 0x2c, 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, 0x2d, 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, 0x2e, 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, 0x2f, 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, 0x30, 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, 0x31, 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, 0x32, 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, 0x33, 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, 0x34, - 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, 0x35, 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, 0x36, 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, 0x37, 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, 0x38, 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, 0x39, 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, 0x3a, 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, - 0x3b, 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, 0x3c, 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, 0x3d, 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, + 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xfa, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x27, 0x52, 0x27, 0x62, + 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x68, 0x6f, 0x72, 0x74, 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, 0x28, 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, 0x29, 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, 0x2a, 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, 0x2b, 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, 0x2c, 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, 0x2d, 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, 0x2e, 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, 0x2f, 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, 0x30, 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, 0x31, 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, 0x32, 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, 0x33, 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, + 0x34, 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, 0x35, 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, 0x36, 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, 0x37, 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, 0x38, 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, 0x39, 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, 0x3a, 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, 0x3b, 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, 0x3c, 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, 0x3d, + 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, 0x3e, 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, 0x3f, + 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, 0x49, 0x0a, 0x1e, 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, 0x18, 0xfd, 0x01, + 0x20, 0x01, 0x28, 0x01, 0x48, 0x40, 0x52, 0x1b, 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, 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, 0x41, 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, 0x42, 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, 0x43, 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, 0x18, 0xac, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x3e, 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, 0x3f, 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, 0x49, 0x0a, 0x1e, 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, 0x18, 0xfd, 0x01, 0x20, - 0x01, 0x28, 0x01, 0x48, 0x40, 0x52, 0x1b, 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, 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, 0x41, 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, 0x42, 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, 0x43, 0x52, 0x21, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, + 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, 0x44, 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, 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, 0x44, 0x52, 0x35, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x74, 0x4d, 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, 0x45, 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, 0x46, 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, 0x47, 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, 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, 0x45, 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, 0x46, 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, 0x47, 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, 0x48, 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, 0x49, 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, 0x4a, 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, 0x4b, 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, 0x4c, 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, 0x4d, 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, 0x4e, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x4f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 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, 0x48, 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, 0x49, 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, 0x4a, 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, 0x4b, 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, 0x4c, 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, 0x4d, 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, 0x4e, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x50, 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, 0x51, 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, 0x52, 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, - 0x53, 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, 0x54, 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, 0x55, 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, - 0x56, 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, 0x32, 0x31, 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, 0x57, 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, 0x58, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1a, 0x67, - 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, - 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xf2, 0x02, 0x20, 0x01, 0x28, 0x01, - 0x48, 0x59, 0x52, 0x17, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x49, 0x6e, 0x76, 0x61, 0x6c, - 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x3a, - 0x0a, 0x16, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, - 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0xf3, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, - 0x5a, 0x52, 0x14, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x49, 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, 0x5b, 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, 0x5c, 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, 0x5d, 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, 0x5e, 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, 0x5f, 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, 0x60, 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, 0x61, 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, 0x62, 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, 0x63, 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, 0x64, 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, 0x65, 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, 0x66, 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, 0x67, 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, 0x68, 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, 0x69, 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, 0x6a, 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, 0x6b, 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, + 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, 0x4f, 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, 0x32, 0x32, 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, 0x50, 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, 0x51, 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, 0x52, + 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, 0x53, 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, 0x54, 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, 0x55, 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, 0x56, 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, 0x32, 0x32, + 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, 0x57, 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, 0x58, 0x52, 0x0d, 0x69, 0x6e, 0x76, 0x61, + 0x6c, 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x88, 0x01, 0x01, 0x12, 0x41, 0x0a, 0x1a, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, + 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0xf2, 0x02, 0x20, 0x01, 0x28, + 0x01, 0x48, 0x59, 0x52, 0x17, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x49, 0x6e, 0x76, 0x61, + 0x6c, 0x69, 0x64, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, + 0x3a, 0x0a, 0x16, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, + 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x18, 0xf3, 0x02, 0x20, 0x01, 0x28, 0x03, + 0x48, 0x5a, 0x52, 0x14, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 0x49, 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, 0x5b, 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, 0x5c, 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, 0x5d, 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, 0x5e, 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, 0x5f, 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, 0x60, 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, 0x61, 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, 0x62, + 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, 0x63, 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, 0x64, 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, 0x65, 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, 0x66, 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, 0x67, 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, 0x68, 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, 0x69, 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, 0x6a, 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, 0x6b, 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, 0x6c, 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, 0x6d, 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, 0x6e, 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, 0x6f, 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, 0x70, 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, 0x71, 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, 0x89, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x6c, 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, 0x6d, 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, - 0x6e, 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, 0x6f, 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, 0x70, 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, 0x71, 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, + 0x65, 0x18, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x72, 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, 0x73, 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, 0x8f, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x72, 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, 0x73, 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, 0x74, 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, 0x75, 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, 0x32, 0x31, 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, 0x76, - 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, 0x77, 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, 0x78, 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, 0x79, 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, 0x7a, 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, 0x7b, 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, 0x7c, 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, 0x7d, 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, 0x7e, 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, 0x7f, - 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, 0x66, 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, 0x80, 0x01, 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, 0x3e, 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, 0x81, 0x01, 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, 0x3c, 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, 0x82, 0x01, 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, 0x3c, - 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, 0x83, 0x01, 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, 0x84, - 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, 0x85, 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, - 0x86, 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, 0x87, 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, 0x63, 0x6c, 0x69, 0x63, - 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x8b, 0x02, 0x20, 0x01, 0x28, 0x01, - 0x48, 0x88, 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, 0x89, 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, 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, - 0x8a, 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, 0x8b, - 0x01, 0x52, 0x24, 0x61, 0x6c, 0x6c, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x18, 0x91, 0x01, 0x20, 0x01, 0x28, 0x01, 0x48, 0x74, 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, 0x75, 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, 0x32, 0x32, 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, + 0x76, 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, 0x77, 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, 0x78, 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, 0x79, 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, 0x7a, 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, 0x7b, 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, 0x7c, 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, 0x7d, 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, 0x7e, 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, + 0x7f, 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, 0x66, 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, 0x80, 0x01, 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, 0x3e, 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, 0x81, 0x01, 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, 0x3c, 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, 0x82, 0x01, 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, + 0x3c, 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, 0x83, 0x01, 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, + 0x84, 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, 0x3e, 0x0a, 0x18, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, + 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x96, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0x85, + 0x01, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x14, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, + 0x65, 0x77, 0x73, 0x18, 0x97, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x86, 0x01, 0x52, 0x12, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x87, 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, 0x63, + 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x74, 0x6f, 0x5f, 0x63, 0x61, 0x6c, 0x6c, 0x18, 0x8b, 0x02, 0x20, + 0x01, 0x28, 0x01, 0x48, 0x88, 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, 0x89, + 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, 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, 0x8c, 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, + 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, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, - 0x69, 0x74, 0x73, 0x18, 0x90, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x8d, 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, 0x8e, 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, - 0x8f, 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, 0x90, 0x01, 0x52, 0x32, 0x76, - 0x69, 0x65, 0x77, 0x54, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6d, 0x65, 0x6e, 0x75, 0x18, 0x8d, 0x02, 0x20, 0x01, + 0x28, 0x01, 0x48, 0x8a, 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, 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, + 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, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, - 0x94, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x91, 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, + 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x8e, 0x02, 0x20, 0x01, 0x28, + 0x01, 0x48, 0x8b, 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, 0x8c, 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, 0x8d, 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, 0x8e, 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, - 0x6d, 0x65, 0x6e, 0x75, 0x18, 0x95, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0x92, 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, 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, 0x93, 0x01, 0x52, 0x2c, + 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x92, 0x02, 0x20, 0x01, + 0x28, 0x03, 0x48, 0x8f, 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, 0x90, 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, 0x91, 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, 0x92, + 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, 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, 0x93, + 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, 0x94, 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, 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, 0x94, 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, 0x95, 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, 0x96, 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, 0x97, 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, 0x98, 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, 0x99, 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, 0x9a, 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, 0x9b, - 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, 0x9c, 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, 0x9d, 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, 0x9e, 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, 0x9f, 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, 0xa0, 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, 0xa1, 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, 0xa2, 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, 0xa3, 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, 0xa4, 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, 0xa5, 0x01, 0x52, 0x11, 0x6c, 0x65, 0x61, 0x64, 0x52, + 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, 0x95, 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, 0x96, 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, 0x97, 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, 0x98, 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, 0x99, 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, 0x9a, 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, 0x9b, 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, 0x9c, 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, 0x9d, 0x01, 0x52, 0x0d, 0x72, 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, 0xa6, 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, 0xa7, 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, 0xa8, 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, 0xa9, 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, 0xaa, 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, 0xab, 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, + 0x24, 0x0a, 0x0a, 0x75, 0x6e, 0x69, 0x74, 0x73, 0x5f, 0x73, 0x6f, 0x6c, 0x64, 0x18, 0xaf, 0x02, + 0x20, 0x01, 0x28, 0x01, 0x48, 0x9e, 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, 0x9f, 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, 0xa0, 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, 0xa1, 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, 0xa2, 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, 0xa3, 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, 0xa4, + 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, 0xa5, 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, 0xa6, 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, 0xa7, 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, 0xa8, 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, 0xa9, 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, 0xaa, 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, 0x74, 0x77, 0x6f, 0x5f, 0x63, 0x6f, - 0x75, 0x6e, 0x74, 0x18, 0xde, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xac, 0x01, 0x52, 0x25, 0x61, + 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, 0xab, 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, + 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, 0x68, 0x72, - 0x65, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0xdf, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, - 0xad, 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, 0xae, 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, 0xaf, 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, + 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, 0xac, 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, 0xad, 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, 0xae, 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, 0xaf, 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, 0xb0, 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, 0xb1, 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, 0xe2, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xb0, 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, 0xb1, - 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, 0xb2, 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, 0xb3, - 0x01, 0x52, 0x2c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, + 0x18, 0xe4, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xb2, 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, 0xb3, 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, + 0xb4, 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, 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, 0xb4, 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, 0xb5, 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, 0xb6, 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, 0xb7, 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, + 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, 0xea, 0x02, 0x20, - 0x01, 0x28, 0x01, 0x48, 0xb8, 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, + 0x74, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, 0x61, 0x67, 0x65, 0x18, 0xe7, 0x02, 0x20, + 0x01, 0x28, 0x01, 0x48, 0xb5, 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, 0xb6, + 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, 0xb7, 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, 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, 0xb9, 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, 0x12, 0x73, 0x0a, 0x34, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, - 0x74, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 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, 0xed, 0x02, 0x20, 0x01, 0x28, - 0x01, 0x48, 0xba, 0x01, 0x52, 0x2e, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, 0x73, 0x69, 0x74, - 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 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, 0x47, 0x0a, 0x1c, 0x72, 0x65, 0x73, 0x75, 0x6c, - 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, - 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x18, 0xee, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xbb, - 0x01, 0x52, 0x1a, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x88, 0x01, 0x01, - 0x12, 0x3b, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, - 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0xef, 0x02, 0x20, 0x01, - 0x28, 0x01, 0x48, 0xbc, 0x01, 0x52, 0x13, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x3f, 0x0a, - 0x19, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, - 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0xf0, 0x02, 0x20, 0x01, 0x28, - 0x01, 0x48, 0xbd, 0x01, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, 0x52, - 0x61, 0x74, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x3a, - 0x0a, 0x16, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, - 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x18, 0xf1, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, - 0xbe, 0x01, 0x52, 0x13, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x56, 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, - 0x65, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x14, 0x63, 0x6f, - 0x76, 0x69, 0x65, 0x77, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x18, 0xfc, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xbf, 0x01, 0x52, 0x13, 0x63, 0x6f, - 0x76, 0x69, 0x65, 0x77, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, - 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x13, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, - 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xfd, 0x02, 0x20, 0x01, - 0x28, 0x03, 0x48, 0xc0, 0x01, 0x52, 0x12, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x49, 0x6d, - 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x78, 0x0a, 0x36, + 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, 0xb8, 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, 0xb9, 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, 0x12, 0x73, 0x0a, 0x34, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x5f, 0x76, + 0x69, 0x73, 0x69, 0x74, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 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, 0xed, 0x02, + 0x20, 0x01, 0x28, 0x01, 0x48, 0xba, 0x01, 0x52, 0x2e, 0x73, 0x74, 0x6f, 0x72, 0x65, 0x56, 0x69, + 0x73, 0x69, 0x74, 0x73, 0x4c, 0x61, 0x73, 0x74, 0x43, 0x6c, 0x69, 0x63, 0x6b, 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, 0x47, 0x0a, 0x1c, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x5f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, 0x18, 0xee, 0x02, 0x20, 0x01, 0x28, + 0x01, 0x48, 0xbb, 0x01, 0x52, 0x1a, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x43, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x50, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, + 0x88, 0x01, 0x01, 0x12, 0x4c, 0x0a, 0x20, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, + 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x98, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xbc, + 0x01, 0x52, 0x1b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x88, 0x01, + 0x01, 0x12, 0x50, 0x0a, 0x22, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, + 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x99, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xbd, + 0x01, 0x52, 0x1d, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, + 0x88, 0x01, 0x01, 0x12, 0x4b, 0x0a, 0x1f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, + 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x18, 0x9a, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xbe, 0x01, + 0x52, 0x1b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x54, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x56, + 0x69, 0x65, 0x77, 0x52, 0x61, 0x74, 0x65, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x88, 0x01, 0x01, + 0x12, 0x38, 0x0a, 0x14, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, + 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xfc, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, + 0xbf, 0x01, 0x52, 0x13, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x64, 0x49, 0x6d, 0x70, 0x72, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x13, 0x70, 0x72, + 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x18, 0xfd, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0xc0, 0x01, 0x52, 0x12, 0x70, 0x72, 0x69, + 0x6d, 0x61, 0x72, 0x79, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, + 0x01, 0x01, 0x12, 0x78, 0x0a, 0x36, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, + 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0xfe, 0x02, 0x20, + 0x01, 0x28, 0x01, 0x48, 0xc1, 0x01, 0x52, 0x31, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, + 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x4d, 0x0a, 0x1f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, - 0x62, 0x6c, 0x65, 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, 0xfe, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc1, 0x01, - 0x52, 0x31, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, - 0x61, 0x62, 0x6c, 0x65, 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, 0x4d, 0x0a, 0x1f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, - 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0xff, 0x02, 0x20, 0x01, 0x28, 0x01, - 0x48, 0xc2, 0x01, 0x52, 0x1d, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, - 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x25, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, - 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, - 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x80, - 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc3, 0x01, 0x52, 0x22, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, - 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, - 0x68, 0x0a, 0x2e, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, - 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x81, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc4, 0x01, 0x52, 0x29, 0x70, 0x6c, 0x61, - 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x70, 0x0a, 0x32, 0x70, 0x6c, 0x61, - 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, - 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, - 0x82, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc5, 0x01, 0x52, 0x2d, 0x70, 0x6c, 0x61, 0x74, 0x66, + 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, + 0xff, 0x02, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc2, 0x01, 0x52, 0x1d, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x7b, 0x0a, 0x38, 0x70, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x58, 0x0a, 0x25, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x83, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc6, - 0x01, 0x52, 0x32, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, - 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x98, 0x01, 0x0a, 0x47, 0x70, 0x6c, 0x61, - 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, - 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, 0x84, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc7, 0x01, 0x52, 0x40, + 0x61, 0x6c, 0x75, 0x65, 0x18, 0x80, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc3, 0x01, 0x52, 0x22, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, - 0x6c, 0x65, 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, 0x5b, 0x0a, 0x27, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, - 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, - 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x85, - 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc8, 0x01, 0x52, 0x23, 0x63, 0x6f, 0x73, 0x74, 0x50, 0x65, - 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, - 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, - 0x12, 0x5d, 0x0a, 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, - 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x86, 0x03, 0x20, - 0x01, 0x28, 0x01, 0x48, 0xc9, 0x01, 0x52, 0x24, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, - 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, - 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, - 0x82, 0x01, 0x0a, 0x3c, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, - 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, - 0x65, 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, 0x87, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xca, 0x01, 0x52, 0x35, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, - 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x7f, 0x0a, 0x3a, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, - 0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, + 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x56, 0x61, 0x6c, + 0x75, 0x65, 0x88, 0x01, 0x01, 0x12, 0x68, 0x0a, 0x2e, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, + 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x81, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc4, + 0x01, 0x52, 0x29, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, + 0x72, 0x61, 0x62, 0x6c, 0x65, 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, + 0x70, 0x0a, 0x32, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, + 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x82, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc5, 0x01, 0x52, + 0x2d, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, + 0x62, 0x6c, 0x65, 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, 0x7b, 0x0a, 0x38, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x83, 0x03, + 0x20, 0x01, 0x28, 0x01, 0x48, 0xc6, 0x01, 0x52, 0x32, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, + 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x98, + 0x01, 0x0a, 0x47, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, + 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x84, 0x03, 0x20, 0x01, 0x28, + 0x01, 0x48, 0xc7, 0x01, 0x52, 0x40, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, + 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x5b, 0x0a, 0x27, 0x63, 0x6f, 0x73, + 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, + 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x85, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc8, 0x01, 0x52, 0x23, + 0x63, 0x6f, 0x73, 0x74, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, + 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x5d, 0x0a, 0x28, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x18, 0x88, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xcb, 0x01, 0x52, 0x34, 0x63, 0x6f, - 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x43, 0x75, 0x72, 0x72, 0x65, - 0x6e, 0x63, 0x79, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, + 0x6f, 0x6e, 0x18, 0x86, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xc9, 0x01, 0x52, 0x24, 0x76, 0x61, + 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x10, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x61, - 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x8e, 0x03, 0x20, 0x01, 0x28, 0x01, - 0x48, 0xcc, 0x01, 0x52, 0x0f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, - 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, 0x14, 0x61, 0x6c, 0x6c, 0x5f, 0x76, + 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x82, 0x01, 0x0a, 0x3c, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, + 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, + 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x87, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xca, 0x01, + 0x52, 0x35, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, 0x66, 0x6f, + 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x7f, 0x0a, 0x3a, 0x63, 0x6f, + 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x75, 0x72, + 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, + 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x88, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, + 0xcb, 0x01, 0x52, 0x34, 0x63, 0x6f, 0x73, 0x74, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, + 0x64, 0x43, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x50, 0x65, 0x72, 0x50, 0x6c, 0x61, 0x74, + 0x66, 0x6f, 0x72, 0x6d, 0x43, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x43, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x10, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, - 0x8f, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xcd, 0x01, 0x52, 0x12, 0x61, 0x6c, 0x6c, 0x56, 0x61, - 0x6c, 0x75, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, - 0x12, 0x46, 0x0a, 0x1c, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, - 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, - 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xce, 0x01, 0x52, 0x19, 0x63, 0x6c, 0x69, 0x63, - 0x6b, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x43, 0x6c, 0x75, - 0x73, 0x74, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x21, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, - 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, 0x91, 0x03, - 0x20, 0x01, 0x28, 0x03, 0x48, 0xcf, 0x01, 0x52, 0x1e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x43, - 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x50, 0x0a, 0x21, 0x69, 0x6d, - 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, - 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, - 0x92, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xd0, 0x01, 0x52, 0x1e, 0x69, 0x6d, 0x70, 0x72, 0x65, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, - 0x79, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 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, 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, + 0x8e, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xcc, 0x01, 0x52, 0x0f, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x37, 0x0a, + 0x14, 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, + 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x8f, 0x03, 0x20, 0x01, 0x28, 0x01, 0x48, 0xcd, 0x01, 0x52, + 0x12, 0x61, 0x6c, 0x6c, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x41, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, + 0x65, 0x6e, 0x74, 0x88, 0x01, 0x01, 0x12, 0x46, 0x0a, 0x1c, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, + 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, + 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, 0x90, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xce, 0x01, + 0x52, 0x19, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x51, 0x75, + 0x65, 0x72, 0x79, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, 0x12, 0x50, + 0x0a, 0x21, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, + 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, + 0x65, 0x72, 0x73, 0x18, 0x91, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xcf, 0x01, 0x52, 0x1e, 0x63, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x6e, 0x69, 0x71, 0x75, 0x65, + 0x51, 0x75, 0x65, 0x72, 0x79, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x88, 0x01, 0x01, + 0x12, 0x50, 0x0a, 0x21, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, + 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, + 0x73, 0x74, 0x65, 0x72, 0x73, 0x18, 0x92, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xd0, 0x01, 0x52, + 0x1e, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x55, 0x6e, 0x69, 0x71, + 0x75, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, 0x43, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x88, + 0x01, 0x01, 0x12, 0x4d, 0x0a, 0x20, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x77, 0x61, 0x74, 0x63, + 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x18, 0x93, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0xd1, 0x01, + 0x52, 0x1c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x57, 0x61, 0x74, 0x63, 0x68, 0x54, 0x69, 0x6d, 0x65, + 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x88, 0x01, + 0x01, 0x12, 0x5c, 0x0a, 0x28, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x64, + 0x65, 0x6f, 0x5f, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x64, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x18, 0x94, 0x03, + 0x20, 0x01, 0x28, 0x03, 0x48, 0xd2, 0x01, 0x52, 0x23, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, + 0x56, 0x69, 0x64, 0x65, 0x6f, 0x57, 0x61, 0x74, 0x63, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x44, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 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, 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, - 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, + 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, 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, 0x2f, 0x0a, - 0x2d, 0x5f, 0x62, 0x69, 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x68, 0x6f, 0x72, - 0x74, 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, 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, + 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, 0x17, 0x0a, 0x15, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, + 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, - 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, + 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, 0x2f, 0x0a, 0x2d, 0x5f, 0x62, 0x69, + 0x64, 0x64, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x68, 0x6f, 0x72, 0x74, 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, 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, 0x21, 0x0a, 0x1f, 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, 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, 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, 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, 0x21, 0x0a, 0x1f, 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, 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, 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, 0x1d, 0x0a, 0x1b, 0x5f, 0x67, 0x65, 0x6e, - 0x65, 0x72, 0x61, 0x6c, 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, - 0x63, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x67, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x6c, 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, + 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, 0x1d, 0x0a, 0x1b, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, + 0x5f, 0x69, 0x6e, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x72, + 0x61, 0x74, 0x65, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x6c, 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, 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, + 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, 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, + 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, 0x35, 0x30, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x42, 0x1a, 0x0a, + 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, 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, + 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, 0x1b, 0x0a, 0x19, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, + 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 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, 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, 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, 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, + 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, 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, + 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, 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, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x42, 0x40, 0x0a, - 0x3e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x5f, 0x63, + 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, 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, 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, + 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, 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, 0x37, 0x0a, 0x35, 0x5f, 0x73, 0x74, 0x6f, - 0x72, 0x65, 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, - 0x6c, 0x69, 0x63, 0x6b, 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, 0x1f, 0x0a, 0x1d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, - 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, - 0x73, 0x65, 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, - 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x1c, - 0x0a, 0x1a, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, - 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x19, 0x0a, 0x17, - 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, - 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x6f, 0x76, 0x69, - 0x65, 0x77, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, - 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x39, 0x0a, 0x37, 0x5f, 0x70, 0x6c, 0x61, - 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, - 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, 0x22, 0x0a, 0x20, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, - 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x70, 0x6c, 0x61, 0x74, - 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, - 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, - 0x65, 0x42, 0x31, 0x0a, 0x2f, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, + 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, 0x42, 0x37, 0x0a, 0x35, 0x5f, 0x73, 0x74, 0x6f, 0x72, 0x65, + 0x5f, 0x76, 0x69, 0x73, 0x69, 0x74, 0x73, 0x5f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x63, 0x6c, 0x69, + 0x63, 0x6b, 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, + 0x1f, 0x0a, 0x1d, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x5f, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x70, 0x75, 0x72, 0x63, 0x68, 0x61, 0x73, 0x65, + 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, + 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x6e, + 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, + 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x22, 0x0a, 0x20, + 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, + 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, + 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x65, 0x64, 0x5f, 0x69, 0x6d, + 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x16, 0x0a, 0x14, 0x5f, 0x70, 0x72, + 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x42, 0x39, 0x0a, 0x37, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x35, 0x0a, 0x33, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, - 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x3b, 0x0a, 0x39, 0x5f, - 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, - 0x62, 0x6c, 0x65, 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, 0x4a, 0x0a, 0x48, 0x5f, 0x70, 0x6c, 0x61, - 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, - 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, 0x2a, 0x0a, 0x28, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, - 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, - 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x70, - 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, - 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x3f, 0x0a, - 0x3d, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, - 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x3d, - 0x0a, 0x3b, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, - 0x64, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, + 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, 0x22, 0x0a, 0x20, + 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, + 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, + 0x42, 0x28, 0x0a, 0x26, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x42, 0x31, 0x0a, 0x2f, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, - 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, - 0x11, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, - 0x6e, 0x74, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, - 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, - 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, - 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x42, 0x24, 0x0a, 0x22, - 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, - 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, - 0x72, 0x73, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, - 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 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, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x03, 0x48, 0x01, 0x52, 0x03, 0x6d, 0x61, 0x78, 0x88, 0x01, 0x01, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x6c, 0x65, 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, 0x35, 0x0a, + 0x33, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, + 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x3b, 0x0a, 0x39, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, + 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x4a, 0x0a, 0x48, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, + 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x2a, 0x0a, + 0x28, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, + 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, + 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x3f, 0x0a, 0x3d, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x63, 0x6f, + 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 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, 0x3d, 0x0a, 0x3b, 0x5f, 0x63, 0x6f, 0x73, 0x74, + 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, + 0x6e, 0x63, 0x79, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x70, 0x6c, 0x61, 0x74, 0x66, 0x6f, 0x72, 0x6d, + 0x5f, 0x63, 0x6f, 0x6d, 0x70, 0x61, 0x72, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x63, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x13, 0x0a, 0x11, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, + 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x17, 0x0a, 0x15, 0x5f, + 0x61, 0x6c, 0x6c, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, + 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x73, 0x5f, + 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, + 0x73, 0x74, 0x65, 0x72, 0x73, 0x42, 0x24, 0x0a, 0x22, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, + 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x73, 0x42, 0x24, 0x0a, 0x22, 0x5f, + 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x75, 0x6e, 0x69, 0x71, + 0x75, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, + 0x73, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x77, 0x61, 0x74, 0x63, + 0x68, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x6d, 0x69, 0x6c, 0x6c, 0x69, 0x73, 0x42, 0x2b, 0x0a, 0x29, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, + 0x67, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x77, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, + 0x69, 0x6d, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6d, 0x69, 0x6c, + 0x6c, 0x69, 0x73, 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, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x03, + 0x6d, 0x61, 0x78, 0x88, 0x01, 0x01, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x43, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_metrics_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_metrics_proto_rawDescData []byte + file_google_ads_googleads_v22_common_metrics_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_metrics_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_metrics_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_metrics_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_metrics_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_metrics_proto_rawDesc), len(file_google_ads_googleads_v21_common_metrics_proto_rawDesc))) +func file_google_ads_googleads_v22_common_metrics_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_metrics_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_metrics_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_metrics_proto_rawDesc), len(file_google_ads_googleads_v22_common_metrics_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_metrics_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_metrics_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_common_metrics_proto_goTypes = []any{ - (*Metrics)(nil), // 0: google.ads.googleads.v21.common.Metrics - (*SearchVolumeRange)(nil), // 1: google.ads.googleads.v21.common.SearchVolumeRange - (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 2: google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - (enums.InteractionEventTypeEnum_InteractionEventType)(0), // 3: google.ads.googleads.v21.enums.InteractionEventTypeEnum.InteractionEventType -} -var file_google_ads_googleads_v21_common_metrics_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.common.Metrics.historical_creative_quality_score:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - 2, // 1: google.ads.googleads.v21.common.Metrics.historical_landing_page_quality_score:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - 2, // 2: google.ads.googleads.v21.common.Metrics.historical_search_predicted_ctr:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - 3, // 3: google.ads.googleads.v21.common.Metrics.interaction_event_types:type_name -> google.ads.googleads.v21.enums.InteractionEventTypeEnum.InteractionEventType - 1, // 4: google.ads.googleads.v21.common.Metrics.search_volume:type_name -> google.ads.googleads.v21.common.SearchVolumeRange + return file_google_ads_googleads_v22_common_metrics_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_metrics_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_common_metrics_proto_goTypes = []any{ + (*Metrics)(nil), // 0: google.ads.googleads.v22.common.Metrics + (*SearchVolumeRange)(nil), // 1: google.ads.googleads.v22.common.SearchVolumeRange + (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 2: google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + (enums.InteractionEventTypeEnum_InteractionEventType)(0), // 3: google.ads.googleads.v22.enums.InteractionEventTypeEnum.InteractionEventType +} +var file_google_ads_googleads_v22_common_metrics_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.Metrics.historical_creative_quality_score:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + 2, // 1: google.ads.googleads.v22.common.Metrics.historical_landing_page_quality_score:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + 2, // 2: google.ads.googleads.v22.common.Metrics.historical_search_predicted_ctr:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + 3, // 3: google.ads.googleads.v22.common.Metrics.interaction_event_types:type_name -> google.ads.googleads.v22.enums.InteractionEventTypeEnum.InteractionEventType + 1, // 4: google.ads.googleads.v22.common.Metrics.search_volume:type_name -> google.ads.googleads.v22.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 @@ -4377,28 +4425,28 @@ var file_google_ads_googleads_v21_common_metrics_proto_depIdxs = []int32{ 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_metrics_proto_init() } -func file_google_ads_googleads_v21_common_metrics_proto_init() { - if File_google_ads_googleads_v21_common_metrics_proto != nil { +func init() { file_google_ads_googleads_v22_common_metrics_proto_init() } +func file_google_ads_googleads_v22_common_metrics_proto_init() { + if File_google_ads_googleads_v22_common_metrics_proto != nil { return } - file_google_ads_googleads_v21_common_metrics_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_metrics_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_metrics_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_metrics_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_metrics_proto_rawDesc), len(file_google_ads_googleads_v21_common_metrics_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_metrics_proto_rawDesc), len(file_google_ads_googleads_v22_common_metrics_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_metrics_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_metrics_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_metrics_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_metrics_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_metrics_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_metrics_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_metrics_proto = out.File - file_google_ads_googleads_v21_common_metrics_proto_goTypes = nil - file_google_ads_googleads_v21_common_metrics_proto_depIdxs = nil + File_google_ads_googleads_v22_common_metrics_proto = out.File + file_google_ads_googleads_v22_common_metrics_proto_goTypes = nil + file_google_ads_googleads_v22_common_metrics_proto_depIdxs = nil } diff --git a/common/offline_user_data.pb.go b/common/offline_user_data.pb.go index e5cdec6d..934a48ff 100644 --- a/common/offline_user_data.pb.go +++ b/common/offline_user_data.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/offline_user_data.proto +// source: google/ads/googleads/v22/common/offline_user_data.proto package common @@ -67,7 +67,7 @@ type OfflineUserAddressInfo struct { func (x *OfflineUserAddressInfo) Reset() { *x = OfflineUserAddressInfo{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *OfflineUserAddressInfo) String() string { func (*OfflineUserAddressInfo) ProtoMessage() {} func (x *OfflineUserAddressInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *OfflineUserAddressInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserAddressInfo.ProtoReflect.Descriptor instead. func (*OfflineUserAddressInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{0} } func (x *OfflineUserAddressInfo) GetHashedFirstName() string { @@ -149,7 +149,7 @@ type UserIdentifier struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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, @@ -172,7 +172,7 @@ type UserIdentifier struct { func (x *UserIdentifier) Reset() { *x = UserIdentifier{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184,7 +184,7 @@ func (x *UserIdentifier) String() string { func (*UserIdentifier) ProtoMessage() {} func (x *UserIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197,7 +197,7 @@ func (x *UserIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use UserIdentifier.ProtoReflect.Descriptor instead. func (*UserIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{1} } func (x *UserIdentifier) GetUserIdentifierSource() enums.UserIdentifierSourceEnum_UserIdentifierSource { @@ -342,7 +342,7 @@ type TransactionAttribute struct { func (x *TransactionAttribute) Reset() { *x = TransactionAttribute{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -354,7 +354,7 @@ func (x *TransactionAttribute) String() string { func (*TransactionAttribute) ProtoMessage() {} func (x *TransactionAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -367,7 +367,7 @@ func (x *TransactionAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use TransactionAttribute.ProtoReflect.Descriptor instead. func (*TransactionAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -450,7 +450,7 @@ func (x *StoreAttribute) String() string { func (*StoreAttribute) ProtoMessage() {} func (x *StoreAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -463,7 +463,7 @@ func (x *StoreAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use StoreAttribute.ProtoReflect.Descriptor instead. func (*StoreAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{3} } func (x *StoreAttribute) GetStoreCode() string { @@ -503,7 +503,7 @@ type ItemAttribute struct { func (x *ItemAttribute) Reset() { *x = ItemAttribute{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -515,7 +515,7 @@ func (x *ItemAttribute) String() string { func (*ItemAttribute) ProtoMessage() {} func (x *ItemAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -528,7 +528,7 @@ func (x *ItemAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use ItemAttribute.ProtoReflect.Descriptor instead. func (*ItemAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -598,7 +598,7 @@ func (x *UserData) String() string { func (*UserData) ProtoMessage() {} func (x *UserData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -611,7 +611,7 @@ func (x *UserData) ProtoReflect() protoreflect.Message { // Deprecated: Use UserData.ProtoReflect.Descriptor instead. func (*UserData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{5} } func (x *UserData) GetUserIdentifiers() []*UserIdentifier { @@ -688,7 +688,7 @@ type UserAttribute struct { func (x *UserAttribute) Reset() { *x = UserAttribute{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -700,7 +700,7 @@ func (x *UserAttribute) String() string { func (*UserAttribute) ProtoMessage() {} func (x *UserAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -713,7 +713,7 @@ func (x *UserAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use UserAttribute.ProtoReflect.Descriptor instead. func (*UserAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{6} } func (x *UserAttribute) GetLifetimeValueMicros() int64 { @@ -806,7 +806,7 @@ type EventAttribute struct { func (x *EventAttribute) Reset() { *x = EventAttribute{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -818,7 +818,7 @@ func (x *EventAttribute) String() string { func (*EventAttribute) ProtoMessage() {} func (x *EventAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -831,7 +831,7 @@ func (x *EventAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use EventAttribute.ProtoReflect.Descriptor instead. func (*EventAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{7} } func (x *EventAttribute) GetEvent() string { @@ -867,7 +867,7 @@ type EventItemAttribute struct { func (x *EventItemAttribute) Reset() { *x = EventItemAttribute{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -879,7 +879,7 @@ func (x *EventItemAttribute) String() string { func (*EventItemAttribute) ProtoMessage() {} func (x *EventItemAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -892,7 +892,7 @@ func (x *EventItemAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use EventItemAttribute.ProtoReflect.Descriptor instead. func (*EventItemAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{8} } func (x *EventItemAttribute) GetItemId() string { @@ -917,7 +917,7 @@ type ShoppingLoyalty struct { func (x *ShoppingLoyalty) Reset() { *x = ShoppingLoyalty{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -929,7 +929,7 @@ func (x *ShoppingLoyalty) String() string { func (*ShoppingLoyalty) ProtoMessage() {} func (x *ShoppingLoyalty) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -942,7 +942,7 @@ func (x *ShoppingLoyalty) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingLoyalty.ProtoReflect.Descriptor instead. func (*ShoppingLoyalty) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{9} } func (x *ShoppingLoyalty) GetLoyaltyTier() string { @@ -966,7 +966,7 @@ type CustomerMatchUserListMetadata struct { func (x *CustomerMatchUserListMetadata) Reset() { *x = CustomerMatchUserListMetadata{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -978,7 +978,7 @@ func (x *CustomerMatchUserListMetadata) String() string { func (*CustomerMatchUserListMetadata) ProtoMessage() {} func (x *CustomerMatchUserListMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -991,7 +991,7 @@ func (x *CustomerMatchUserListMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerMatchUserListMetadata.ProtoReflect.Descriptor instead. func (*CustomerMatchUserListMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{10} } func (x *CustomerMatchUserListMetadata) GetUserList() string { @@ -1034,7 +1034,7 @@ type StoreSalesMetadata struct { func (x *StoreSalesMetadata) Reset() { *x = StoreSalesMetadata{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1046,7 +1046,7 @@ func (x *StoreSalesMetadata) String() string { func (*StoreSalesMetadata) ProtoMessage() {} func (x *StoreSalesMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1059,7 +1059,7 @@ func (x *StoreSalesMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use StoreSalesMetadata.ProtoReflect.Descriptor instead. func (*StoreSalesMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{11} } func (x *StoreSalesMetadata) GetLoyaltyFraction() float64 { @@ -1125,7 +1125,7 @@ type StoreSalesThirdPartyMetadata struct { func (x *StoreSalesThirdPartyMetadata) Reset() { *x = StoreSalesThirdPartyMetadata{} - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1137,7 +1137,7 @@ func (x *StoreSalesThirdPartyMetadata) String() string { func (*StoreSalesThirdPartyMetadata) ProtoMessage() {} func (x *StoreSalesThirdPartyMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1150,7 +1150,7 @@ func (x *StoreSalesThirdPartyMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use StoreSalesThirdPartyMetadata.ProtoReflect.Descriptor instead. func (*StoreSalesThirdPartyMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP(), []int{12} } func (x *StoreSalesThirdPartyMetadata) GetAdvertiserUploadDateTime() string { @@ -1195,20 +1195,20 @@ func (x *StoreSalesThirdPartyMetadata) GetPartnerId() int64 { return 0 } -var File_google_ads_googleads_v21_common_offline_user_data_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_offline_user_data_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_offline_user_data_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x2d, 0x67, 0x6f, 0x6f, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6e, 0x73, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, + 0x76, 0x32, 0x32, 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, @@ -1244,7 +1244,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1262,7 +1262,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4f, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1286,7 +1286,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x74, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1294,7 +1294,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x74, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1325,24 +1325,24 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x72, 0x61, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1370,7 +1370,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1383,7 +1383,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1399,7 +1399,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1417,7 +1417,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1435,7 +1435,7 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1479,67 +1479,67 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x14, 0x4f, 0x66, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescData []byte + file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc), len(file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc))) +func file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_offline_user_data_proto_rawDesc), len(file_google_ads_googleads_v22_common_offline_user_data_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_offline_user_data_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes = make([]protoimpl.MessageInfo, 13) -var file_google_ads_googleads_v21_common_offline_user_data_proto_goTypes = []any{ - (*OfflineUserAddressInfo)(nil), // 0: google.ads.googleads.v21.common.OfflineUserAddressInfo - (*UserIdentifier)(nil), // 1: google.ads.googleads.v21.common.UserIdentifier - (*TransactionAttribute)(nil), // 2: google.ads.googleads.v21.common.TransactionAttribute - (*StoreAttribute)(nil), // 3: google.ads.googleads.v21.common.StoreAttribute - (*ItemAttribute)(nil), // 4: google.ads.googleads.v21.common.ItemAttribute - (*UserData)(nil), // 5: google.ads.googleads.v21.common.UserData - (*UserAttribute)(nil), // 6: google.ads.googleads.v21.common.UserAttribute - (*EventAttribute)(nil), // 7: google.ads.googleads.v21.common.EventAttribute - (*EventItemAttribute)(nil), // 8: google.ads.googleads.v21.common.EventItemAttribute - (*ShoppingLoyalty)(nil), // 9: google.ads.googleads.v21.common.ShoppingLoyalty - (*CustomerMatchUserListMetadata)(nil), // 10: google.ads.googleads.v21.common.CustomerMatchUserListMetadata - (*StoreSalesMetadata)(nil), // 11: google.ads.googleads.v21.common.StoreSalesMetadata - (*StoreSalesThirdPartyMetadata)(nil), // 12: google.ads.googleads.v21.common.StoreSalesThirdPartyMetadata - (enums.UserIdentifierSourceEnum_UserIdentifierSource)(0), // 13: google.ads.googleads.v21.enums.UserIdentifierSourceEnum.UserIdentifierSource - (*Consent)(nil), // 14: google.ads.googleads.v21.common.Consent -} -var file_google_ads_googleads_v21_common_offline_user_data_proto_depIdxs = []int32{ - 13, // 0: google.ads.googleads.v21.common.UserIdentifier.user_identifier_source:type_name -> google.ads.googleads.v21.enums.UserIdentifierSourceEnum.UserIdentifierSource - 0, // 1: google.ads.googleads.v21.common.UserIdentifier.address_info:type_name -> google.ads.googleads.v21.common.OfflineUserAddressInfo - 3, // 2: google.ads.googleads.v21.common.TransactionAttribute.store_attribute:type_name -> google.ads.googleads.v21.common.StoreAttribute - 4, // 3: google.ads.googleads.v21.common.TransactionAttribute.item_attribute:type_name -> google.ads.googleads.v21.common.ItemAttribute - 1, // 4: google.ads.googleads.v21.common.UserData.user_identifiers:type_name -> google.ads.googleads.v21.common.UserIdentifier - 2, // 5: google.ads.googleads.v21.common.UserData.transaction_attribute:type_name -> google.ads.googleads.v21.common.TransactionAttribute - 6, // 6: google.ads.googleads.v21.common.UserData.user_attribute:type_name -> google.ads.googleads.v21.common.UserAttribute - 14, // 7: google.ads.googleads.v21.common.UserData.consent:type_name -> google.ads.googleads.v21.common.Consent - 9, // 8: google.ads.googleads.v21.common.UserAttribute.shopping_loyalty:type_name -> google.ads.googleads.v21.common.ShoppingLoyalty - 7, // 9: google.ads.googleads.v21.common.UserAttribute.event_attribute:type_name -> google.ads.googleads.v21.common.EventAttribute - 8, // 10: google.ads.googleads.v21.common.EventAttribute.item_attribute:type_name -> google.ads.googleads.v21.common.EventItemAttribute - 14, // 11: google.ads.googleads.v21.common.CustomerMatchUserListMetadata.consent:type_name -> google.ads.googleads.v21.common.Consent - 12, // 12: google.ads.googleads.v21.common.StoreSalesMetadata.third_party_metadata:type_name -> google.ads.googleads.v21.common.StoreSalesThirdPartyMetadata + return file_google_ads_googleads_v22_common_offline_user_data_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_google_ads_googleads_v22_common_offline_user_data_proto_goTypes = []any{ + (*OfflineUserAddressInfo)(nil), // 0: google.ads.googleads.v22.common.OfflineUserAddressInfo + (*UserIdentifier)(nil), // 1: google.ads.googleads.v22.common.UserIdentifier + (*TransactionAttribute)(nil), // 2: google.ads.googleads.v22.common.TransactionAttribute + (*StoreAttribute)(nil), // 3: google.ads.googleads.v22.common.StoreAttribute + (*ItemAttribute)(nil), // 4: google.ads.googleads.v22.common.ItemAttribute + (*UserData)(nil), // 5: google.ads.googleads.v22.common.UserData + (*UserAttribute)(nil), // 6: google.ads.googleads.v22.common.UserAttribute + (*EventAttribute)(nil), // 7: google.ads.googleads.v22.common.EventAttribute + (*EventItemAttribute)(nil), // 8: google.ads.googleads.v22.common.EventItemAttribute + (*ShoppingLoyalty)(nil), // 9: google.ads.googleads.v22.common.ShoppingLoyalty + (*CustomerMatchUserListMetadata)(nil), // 10: google.ads.googleads.v22.common.CustomerMatchUserListMetadata + (*StoreSalesMetadata)(nil), // 11: google.ads.googleads.v22.common.StoreSalesMetadata + (*StoreSalesThirdPartyMetadata)(nil), // 12: google.ads.googleads.v22.common.StoreSalesThirdPartyMetadata + (enums.UserIdentifierSourceEnum_UserIdentifierSource)(0), // 13: google.ads.googleads.v22.enums.UserIdentifierSourceEnum.UserIdentifierSource + (*Consent)(nil), // 14: google.ads.googleads.v22.common.Consent +} +var file_google_ads_googleads_v22_common_offline_user_data_proto_depIdxs = []int32{ + 13, // 0: google.ads.googleads.v22.common.UserIdentifier.user_identifier_source:type_name -> google.ads.googleads.v22.enums.UserIdentifierSourceEnum.UserIdentifierSource + 0, // 1: google.ads.googleads.v22.common.UserIdentifier.address_info:type_name -> google.ads.googleads.v22.common.OfflineUserAddressInfo + 3, // 2: google.ads.googleads.v22.common.TransactionAttribute.store_attribute:type_name -> google.ads.googleads.v22.common.StoreAttribute + 4, // 3: google.ads.googleads.v22.common.TransactionAttribute.item_attribute:type_name -> google.ads.googleads.v22.common.ItemAttribute + 1, // 4: google.ads.googleads.v22.common.UserData.user_identifiers:type_name -> google.ads.googleads.v22.common.UserIdentifier + 2, // 5: google.ads.googleads.v22.common.UserData.transaction_attribute:type_name -> google.ads.googleads.v22.common.TransactionAttribute + 6, // 6: google.ads.googleads.v22.common.UserData.user_attribute:type_name -> google.ads.googleads.v22.common.UserAttribute + 14, // 7: google.ads.googleads.v22.common.UserData.consent:type_name -> google.ads.googleads.v22.common.Consent + 9, // 8: google.ads.googleads.v22.common.UserAttribute.shopping_loyalty:type_name -> google.ads.googleads.v22.common.ShoppingLoyalty + 7, // 9: google.ads.googleads.v22.common.UserAttribute.event_attribute:type_name -> google.ads.googleads.v22.common.EventAttribute + 8, // 10: google.ads.googleads.v22.common.EventAttribute.item_attribute:type_name -> google.ads.googleads.v22.common.EventItemAttribute + 14, // 11: google.ads.googleads.v22.common.CustomerMatchUserListMetadata.consent:type_name -> google.ads.googleads.v22.common.Consent + 12, // 12: google.ads.googleads.v22.common.StoreSalesMetadata.third_party_metadata:type_name -> google.ads.googleads.v22.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 @@ -1547,44 +1547,44 @@ var file_google_ads_googleads_v21_common_offline_user_data_proto_depIdxs = []int 0, // [0:13] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_offline_user_data_proto_init() } -func file_google_ads_googleads_v21_common_offline_user_data_proto_init() { - if File_google_ads_googleads_v21_common_offline_user_data_proto != nil { +func init() { file_google_ads_googleads_v22_common_offline_user_data_proto_init() } +func file_google_ads_googleads_v22_common_offline_user_data_proto_init() { + if File_google_ads_googleads_v22_common_offline_user_data_proto != nil { return } - file_google_ads_googleads_v21_common_consent_proto_init() - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_consent_proto_init() + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[1].OneofWrappers = []any{ (*UserIdentifier_HashedEmail)(nil), (*UserIdentifier_HashedPhoneNumber)(nil), (*UserIdentifier_MobileId)(nil), (*UserIdentifier_ThirdPartyUserId)(nil), (*UserIdentifier_AddressInfo)(nil), } - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[10].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes[12].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc), len(file_google_ads_googleads_v21_common_offline_user_data_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_offline_user_data_proto_rawDesc), len(file_google_ads_googleads_v22_common_offline_user_data_proto_rawDesc)), NumEnums: 0, NumMessages: 13, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_offline_user_data_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_offline_user_data_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_offline_user_data_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_offline_user_data_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_offline_user_data_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_offline_user_data_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_offline_user_data_proto = out.File - file_google_ads_googleads_v21_common_offline_user_data_proto_goTypes = nil - file_google_ads_googleads_v21_common_offline_user_data_proto_depIdxs = nil + File_google_ads_googleads_v22_common_offline_user_data_proto = out.File + file_google_ads_googleads_v22_common_offline_user_data_proto_goTypes = nil + file_google_ads_googleads_v22_common_offline_user_data_proto_depIdxs = nil } diff --git a/common/policy.pb.go b/common/policy.pb.go index 92102fad..11c206e9 100644 --- a/common/policy.pb.go +++ b/common/policy.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/policy.proto +// source: google/ads/googleads/v22/common/policy.proto package common @@ -54,7 +54,7 @@ type PolicyViolationKey struct { func (x *PolicyViolationKey) Reset() { *x = PolicyViolationKey{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *PolicyViolationKey) String() string { func (*PolicyViolationKey) ProtoMessage() {} func (x *PolicyViolationKey) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *PolicyViolationKey) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyViolationKey.ProtoReflect.Descriptor instead. func (*PolicyViolationKey) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{0} } func (x *PolicyViolationKey) GetPolicyName() string { @@ -124,7 +124,7 @@ type PolicyValidationParameter struct { func (x *PolicyValidationParameter) Reset() { *x = PolicyValidationParameter{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *PolicyValidationParameter) String() string { func (*PolicyValidationParameter) ProtoMessage() {} func (x *PolicyValidationParameter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,7 +149,7 @@ func (x *PolicyValidationParameter) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyValidationParameter.ProtoReflect.Descriptor instead. func (*PolicyValidationParameter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{1} } func (x *PolicyValidationParameter) GetIgnorablePolicyTopics() []string { @@ -182,7 +182,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.v21.enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType" json:"type,omitempty"` + Type enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v22.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"` @@ -195,7 +195,7 @@ type PolicyTopicEntry struct { func (x *PolicyTopicEntry) Reset() { *x = PolicyTopicEntry{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -207,7 +207,7 @@ func (x *PolicyTopicEntry) String() string { func (*PolicyTopicEntry) ProtoMessage() {} func (x *PolicyTopicEntry) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -220,7 +220,7 @@ func (x *PolicyTopicEntry) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyTopicEntry.ProtoReflect.Descriptor instead. func (*PolicyTopicEntry) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{2} } func (x *PolicyTopicEntry) GetTopic() string { @@ -271,7 +271,7 @@ type PolicyTopicEvidence struct { func (x *PolicyTopicEvidence) Reset() { *x = PolicyTopicEvidence{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -283,7 +283,7 @@ func (x *PolicyTopicEvidence) String() string { func (*PolicyTopicEvidence) ProtoMessage() {} func (x *PolicyTopicEvidence) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -296,7 +296,7 @@ func (x *PolicyTopicEvidence) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyTopicEvidence.ProtoReflect.Descriptor instead. func (*PolicyTopicEvidence) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3} } func (x *PolicyTopicEvidence) GetValue() isPolicyTopicEvidence_Value { @@ -427,7 +427,7 @@ type PolicyTopicConstraint struct { func (x *PolicyTopicConstraint) Reset() { *x = PolicyTopicConstraint{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -439,7 +439,7 @@ func (x *PolicyTopicConstraint) String() string { func (*PolicyTopicConstraint) ProtoMessage() {} func (x *PolicyTopicConstraint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -452,7 +452,7 @@ func (x *PolicyTopicConstraint) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyTopicConstraint.ProtoReflect.Descriptor instead. func (*PolicyTopicConstraint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{4} } func (x *PolicyTopicConstraint) GetValue() isPolicyTopicConstraint_Value { @@ -543,7 +543,7 @@ type PolicyTopicEvidence_TextList struct { func (x *PolicyTopicEvidence_TextList) Reset() { *x = PolicyTopicEvidence_TextList{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -555,7 +555,7 @@ func (x *PolicyTopicEvidence_TextList) String() string { func (*PolicyTopicEvidence_TextList) ProtoMessage() {} func (x *PolicyTopicEvidence_TextList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -568,7 +568,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_v21_common_policy_proto_rawDescGZIP(), []int{3, 0} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3, 0} } func (x *PolicyTopicEvidence_TextList) GetTexts() []string { @@ -592,7 +592,7 @@ type PolicyTopicEvidence_WebsiteList struct { func (x *PolicyTopicEvidence_WebsiteList) Reset() { *x = PolicyTopicEvidence_WebsiteList{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_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_v21_common_policy_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[6] if 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_v21_common_policy_proto_rawDescGZIP(), []int{3, 1} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3, 1} } func (x *PolicyTopicEvidence_WebsiteList) GetWebsites() []string { @@ -639,7 +639,7 @@ type PolicyTopicEvidence_DestinationTextList struct { func (x *PolicyTopicEvidence_DestinationTextList) Reset() { *x = PolicyTopicEvidence_DestinationTextList{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -651,7 +651,7 @@ func (x *PolicyTopicEvidence_DestinationTextList) String() string { func (*PolicyTopicEvidence_DestinationTextList) ProtoMessage() {} func (x *PolicyTopicEvidence_DestinationTextList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -664,7 +664,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_v21_common_policy_proto_rawDescGZIP(), []int{3, 2} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3, 2} } func (x *PolicyTopicEvidence_DestinationTextList) GetDestinationTexts() []string { @@ -678,14 +678,14 @@ func (x *PolicyTopicEvidence_DestinationTextList) GetDestinationTexts() []string type PolicyTopicEvidence_DestinationMismatch struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType" json:"url_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *PolicyTopicEvidence_DestinationMismatch) Reset() { *x = PolicyTopicEvidence_DestinationMismatch{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -697,7 +697,7 @@ func (x *PolicyTopicEvidence_DestinationMismatch) String() string { func (*PolicyTopicEvidence_DestinationMismatch) ProtoMessage() {} func (x *PolicyTopicEvidence_DestinationMismatch) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -710,7 +710,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_v21_common_policy_proto_rawDescGZIP(), []int{3, 3} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3, 3} } func (x *PolicyTopicEvidence_DestinationMismatch) GetUrlTypes() []enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType { @@ -727,7 +727,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.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice" json:"device,omitempty"` + Device enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice `protobuf:"varint,4,opt,name=device,proto3,enum=google.ads.googleads.v22.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" @@ -745,7 +745,7 @@ type PolicyTopicEvidence_DestinationNotWorking struct { func (x *PolicyTopicEvidence_DestinationNotWorking) Reset() { *x = PolicyTopicEvidence_DestinationNotWorking{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -757,7 +757,7 @@ func (x *PolicyTopicEvidence_DestinationNotWorking) String() string { func (*PolicyTopicEvidence_DestinationNotWorking) ProtoMessage() {} func (x *PolicyTopicEvidence_DestinationNotWorking) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -770,7 +770,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_v21_common_policy_proto_rawDescGZIP(), []int{3, 4} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{3, 4} } func (x *PolicyTopicEvidence_DestinationNotWorking) GetExpandedUrl() string { @@ -825,7 +825,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.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType,oneof"` + DnsErrorType enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType `protobuf:"varint,1,opt,name=dns_error_type,json=dnsErrorType,proto3,enum=google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType,oneof"` } type PolicyTopicEvidence_DestinationNotWorking_HttpErrorCode struct { @@ -852,7 +852,7 @@ type PolicyTopicConstraint_CountryConstraintList struct { func (x *PolicyTopicConstraint_CountryConstraintList) Reset() { *x = PolicyTopicConstraint_CountryConstraintList{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -864,7 +864,7 @@ func (x *PolicyTopicConstraint_CountryConstraintList) String() string { func (*PolicyTopicConstraint_CountryConstraintList) ProtoMessage() {} func (x *PolicyTopicConstraint_CountryConstraintList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -877,7 +877,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_v21_common_policy_proto_rawDescGZIP(), []int{4, 0} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{4, 0} } func (x *PolicyTopicConstraint_CountryConstraintList) GetTotalTargetedCountries() int32 { @@ -904,7 +904,7 @@ type PolicyTopicConstraint_ResellerConstraint struct { func (x *PolicyTopicConstraint_ResellerConstraint) Reset() { *x = PolicyTopicConstraint_ResellerConstraint{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -916,7 +916,7 @@ func (x *PolicyTopicConstraint_ResellerConstraint) String() string { func (*PolicyTopicConstraint_ResellerConstraint) ProtoMessage() {} func (x *PolicyTopicConstraint_ResellerConstraint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -929,7 +929,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_v21_common_policy_proto_rawDescGZIP(), []int{4, 1} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{4, 1} } // Indicates that a resource's ability to serve in a particular country is @@ -945,7 +945,7 @@ type PolicyTopicConstraint_CountryConstraint struct { func (x *PolicyTopicConstraint_CountryConstraint) Reset() { *x = PolicyTopicConstraint_CountryConstraint{} - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -957,7 +957,7 @@ func (x *PolicyTopicConstraint_CountryConstraint) String() string { func (*PolicyTopicConstraint_CountryConstraint) ProtoMessage() {} func (x *PolicyTopicConstraint_CountryConstraint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_policy_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -970,7 +970,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_v21_common_policy_proto_rawDescGZIP(), []int{4, 2} + return file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP(), []int{4, 2} } func (x *PolicyTopicConstraint_CountryConstraint) GetCountryCriterion() string { @@ -980,31 +980,31 @@ func (x *PolicyTopicConstraint_CountryConstraint) GetCountryCriterion() string { return "" } -var File_google_ads_googleads_v21_common_policy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_policy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -1027,7 +1027,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1036,19 +1036,19 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -1056,13 +1056,13 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x54, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1071,7 +1071,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1079,7 +1079,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1087,7 +1087,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1105,7 +1105,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1119,7 +1119,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1133,7 +1133,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1153,7 +1153,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1161,7 +1161,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1170,7 +1170,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1181,7 +1181,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1195,7 +1195,7 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1210,73 +1210,73 @@ var file_google_ads_googleads_v21_common_policy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_policy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_policy_proto_rawDescData []byte + file_google_ads_googleads_v22_common_policy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_policy_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_policy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_policy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_policy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_policy_proto_rawDesc), len(file_google_ads_googleads_v21_common_policy_proto_rawDesc))) +func file_google_ads_googleads_v22_common_policy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_policy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_policy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_policy_proto_rawDesc), len(file_google_ads_googleads_v22_common_policy_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_policy_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 13) -var file_google_ads_googleads_v21_common_policy_proto_goTypes = []any{ - (*PolicyViolationKey)(nil), // 0: google.ads.googleads.v21.common.PolicyViolationKey - (*PolicyValidationParameter)(nil), // 1: google.ads.googleads.v21.common.PolicyValidationParameter - (*PolicyTopicEntry)(nil), // 2: google.ads.googleads.v21.common.PolicyTopicEntry - (*PolicyTopicEvidence)(nil), // 3: google.ads.googleads.v21.common.PolicyTopicEvidence - (*PolicyTopicConstraint)(nil), // 4: google.ads.googleads.v21.common.PolicyTopicConstraint - (*PolicyTopicEvidence_TextList)(nil), // 5: google.ads.googleads.v21.common.PolicyTopicEvidence.TextList - (*PolicyTopicEvidence_WebsiteList)(nil), // 6: google.ads.googleads.v21.common.PolicyTopicEvidence.WebsiteList - (*PolicyTopicEvidence_DestinationTextList)(nil), // 7: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationTextList - (*PolicyTopicEvidence_DestinationMismatch)(nil), // 8: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationMismatch - (*PolicyTopicEvidence_DestinationNotWorking)(nil), // 9: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationNotWorking - (*PolicyTopicConstraint_CountryConstraintList)(nil), // 10: google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraintList - (*PolicyTopicConstraint_ResellerConstraint)(nil), // 11: google.ads.googleads.v21.common.PolicyTopicConstraint.ResellerConstraint - (*PolicyTopicConstraint_CountryConstraint)(nil), // 12: google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraint - (enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 13: google.ads.googleads.v21.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType - (enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 14: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType - (enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 15: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice - (enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 16: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType -} -var file_google_ads_googleads_v21_common_policy_proto_depIdxs = []int32{ - 0, // 0: google.ads.googleads.v21.common.PolicyValidationParameter.exempt_policy_violation_keys:type_name -> google.ads.googleads.v21.common.PolicyViolationKey - 13, // 1: google.ads.googleads.v21.common.PolicyTopicEntry.type:type_name -> google.ads.googleads.v21.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType - 3, // 2: google.ads.googleads.v21.common.PolicyTopicEntry.evidences:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence - 4, // 3: google.ads.googleads.v21.common.PolicyTopicEntry.constraints:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint - 6, // 4: google.ads.googleads.v21.common.PolicyTopicEvidence.website_list:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence.WebsiteList - 5, // 5: google.ads.googleads.v21.common.PolicyTopicEvidence.text_list:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence.TextList - 7, // 6: google.ads.googleads.v21.common.PolicyTopicEvidence.destination_text_list:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationTextList - 8, // 7: google.ads.googleads.v21.common.PolicyTopicEvidence.destination_mismatch:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationMismatch - 9, // 8: google.ads.googleads.v21.common.PolicyTopicEvidence.destination_not_working:type_name -> google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationNotWorking - 10, // 9: google.ads.googleads.v21.common.PolicyTopicConstraint.country_constraint_list:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraintList - 11, // 10: google.ads.googleads.v21.common.PolicyTopicConstraint.reseller_constraint:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint.ResellerConstraint - 10, // 11: google.ads.googleads.v21.common.PolicyTopicConstraint.certificate_missing_in_country_list:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraintList - 10, // 12: google.ads.googleads.v21.common.PolicyTopicConstraint.certificate_domain_mismatch_in_country_list:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraintList - 14, // 13: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationMismatch.url_types:type_name -> google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType - 15, // 14: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationNotWorking.device:type_name -> google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice - 16, // 15: google.ads.googleads.v21.common.PolicyTopicEvidence.DestinationNotWorking.dns_error_type:type_name -> google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType - 12, // 16: google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraintList.countries:type_name -> google.ads.googleads.v21.common.PolicyTopicConstraint.CountryConstraint + return file_google_ads_googleads_v22_common_policy_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_policy_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_google_ads_googleads_v22_common_policy_proto_goTypes = []any{ + (*PolicyViolationKey)(nil), // 0: google.ads.googleads.v22.common.PolicyViolationKey + (*PolicyValidationParameter)(nil), // 1: google.ads.googleads.v22.common.PolicyValidationParameter + (*PolicyTopicEntry)(nil), // 2: google.ads.googleads.v22.common.PolicyTopicEntry + (*PolicyTopicEvidence)(nil), // 3: google.ads.googleads.v22.common.PolicyTopicEvidence + (*PolicyTopicConstraint)(nil), // 4: google.ads.googleads.v22.common.PolicyTopicConstraint + (*PolicyTopicEvidence_TextList)(nil), // 5: google.ads.googleads.v22.common.PolicyTopicEvidence.TextList + (*PolicyTopicEvidence_WebsiteList)(nil), // 6: google.ads.googleads.v22.common.PolicyTopicEvidence.WebsiteList + (*PolicyTopicEvidence_DestinationTextList)(nil), // 7: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationTextList + (*PolicyTopicEvidence_DestinationMismatch)(nil), // 8: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationMismatch + (*PolicyTopicEvidence_DestinationNotWorking)(nil), // 9: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationNotWorking + (*PolicyTopicConstraint_CountryConstraintList)(nil), // 10: google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraintList + (*PolicyTopicConstraint_ResellerConstraint)(nil), // 11: google.ads.googleads.v22.common.PolicyTopicConstraint.ResellerConstraint + (*PolicyTopicConstraint_CountryConstraint)(nil), // 12: google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraint + (enums.PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 13: google.ads.googleads.v22.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType + (enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 14: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType + (enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 15: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice + (enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 16: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType +} +var file_google_ads_googleads_v22_common_policy_proto_depIdxs = []int32{ + 0, // 0: google.ads.googleads.v22.common.PolicyValidationParameter.exempt_policy_violation_keys:type_name -> google.ads.googleads.v22.common.PolicyViolationKey + 13, // 1: google.ads.googleads.v22.common.PolicyTopicEntry.type:type_name -> google.ads.googleads.v22.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType + 3, // 2: google.ads.googleads.v22.common.PolicyTopicEntry.evidences:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence + 4, // 3: google.ads.googleads.v22.common.PolicyTopicEntry.constraints:type_name -> google.ads.googleads.v22.common.PolicyTopicConstraint + 6, // 4: google.ads.googleads.v22.common.PolicyTopicEvidence.website_list:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence.WebsiteList + 5, // 5: google.ads.googleads.v22.common.PolicyTopicEvidence.text_list:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence.TextList + 7, // 6: google.ads.googleads.v22.common.PolicyTopicEvidence.destination_text_list:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationTextList + 8, // 7: google.ads.googleads.v22.common.PolicyTopicEvidence.destination_mismatch:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationMismatch + 9, // 8: google.ads.googleads.v22.common.PolicyTopicEvidence.destination_not_working:type_name -> google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationNotWorking + 10, // 9: google.ads.googleads.v22.common.PolicyTopicConstraint.country_constraint_list:type_name -> google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraintList + 11, // 10: google.ads.googleads.v22.common.PolicyTopicConstraint.reseller_constraint:type_name -> google.ads.googleads.v22.common.PolicyTopicConstraint.ResellerConstraint + 10, // 11: google.ads.googleads.v22.common.PolicyTopicConstraint.certificate_missing_in_country_list:type_name -> google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraintList + 10, // 12: google.ads.googleads.v22.common.PolicyTopicConstraint.certificate_domain_mismatch_in_country_list:type_name -> google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraintList + 14, // 13: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationMismatch.url_types:type_name -> google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType + 15, // 14: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationNotWorking.device:type_name -> google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice + 16, // 15: google.ads.googleads.v22.common.PolicyTopicEvidence.DestinationNotWorking.dns_error_type:type_name -> google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType + 12, // 16: google.ads.googleads.v22.common.PolicyTopicConstraint.CountryConstraintList.countries:type_name -> google.ads.googleads.v22.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 @@ -1284,14 +1284,14 @@ var file_google_ads_googleads_v21_common_policy_proto_depIdxs = []int32{ 0, // [0:17] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_policy_proto_init() } -func file_google_ads_googleads_v21_common_policy_proto_init() { - if File_google_ads_googleads_v21_common_policy_proto != nil { +func init() { file_google_ads_googleads_v22_common_policy_proto_init() } +func file_google_ads_googleads_v22_common_policy_proto_init() { + if File_google_ads_googleads_v22_common_policy_proto != nil { return } - file_google_ads_googleads_v21_common_policy_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_policy_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_policy_proto_msgTypes[3].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_policy_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_policy_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_policy_proto_msgTypes[3].OneofWrappers = []any{ (*PolicyTopicEvidence_WebsiteList_)(nil), (*PolicyTopicEvidence_TextList_)(nil), (*PolicyTopicEvidence_LanguageCode)(nil), @@ -1299,33 +1299,33 @@ func file_google_ads_googleads_v21_common_policy_proto_init() { (*PolicyTopicEvidence_DestinationMismatch_)(nil), (*PolicyTopicEvidence_DestinationNotWorking_)(nil), } - file_google_ads_googleads_v21_common_policy_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_policy_proto_msgTypes[4].OneofWrappers = []any{ (*PolicyTopicConstraint_CountryConstraintList_)(nil), (*PolicyTopicConstraint_ResellerConstraint_)(nil), (*PolicyTopicConstraint_CertificateMissingInCountryList)(nil), (*PolicyTopicConstraint_CertificateDomainMismatchInCountryList)(nil), } - file_google_ads_googleads_v21_common_policy_proto_msgTypes[9].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_policy_proto_msgTypes[9].OneofWrappers = []any{ (*PolicyTopicEvidence_DestinationNotWorking_DnsErrorType)(nil), (*PolicyTopicEvidence_DestinationNotWorking_HttpErrorCode)(nil), } - file_google_ads_googleads_v21_common_policy_proto_msgTypes[10].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_policy_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_policy_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_policy_proto_msgTypes[12].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_policy_proto_rawDesc), len(file_google_ads_googleads_v21_common_policy_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_policy_proto_rawDesc), len(file_google_ads_googleads_v22_common_policy_proto_rawDesc)), NumEnums: 0, NumMessages: 13, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_policy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_policy_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_policy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_policy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_policy_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_policy_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_policy_proto = out.File - file_google_ads_googleads_v21_common_policy_proto_goTypes = nil - file_google_ads_googleads_v21_common_policy_proto_depIdxs = nil + File_google_ads_googleads_v22_common_policy_proto = out.File + file_google_ads_googleads_v22_common_policy_proto_goTypes = nil + file_google_ads_googleads_v22_common_policy_proto_depIdxs = nil } diff --git a/common/policy_summary.pb.go b/common/policy_summary.pb.go index 96f1aeed..fb040aab 100644 --- a/common/policy_summary.pb.go +++ b/common/policy_summary.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/policy_summary.proto +// source: google/ads/googleads/v22/common/policy_summary.proto package common @@ -42,17 +42,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *PolicySummary) Reset() { *x = PolicySummary{} - mi := &file_google_ads_googleads_v21_common_policy_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_policy_summary_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *PolicySummary) String() string { func (*PolicySummary) ProtoMessage() {} func (x *PolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_policy_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_policy_summary_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *PolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicySummary.ProtoReflect.Descriptor instead. func (*PolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_policy_summary_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_policy_summary_proto_rawDescGZIP(), []int{0} } func (x *PolicySummary) GetPolicyTopicEntries() []*PolicyTopicEntry { @@ -101,88 +101,88 @@ func (x *PolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusEnum_Polic return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0) } -var File_google_ads_googleads_v21_common_policy_summary_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_policy_summary_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_policy_summary_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_policy_summary_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_policy_summary_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_policy_summary_proto_rawDescData []byte + file_google_ads_googleads_v22_common_policy_summary_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_policy_summary_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_policy_summary_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_policy_summary_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_policy_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_policy_summary_proto_rawDesc), len(file_google_ads_googleads_v21_common_policy_summary_proto_rawDesc))) +func file_google_ads_googleads_v22_common_policy_summary_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_policy_summary_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_policy_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_policy_summary_proto_rawDesc), len(file_google_ads_googleads_v22_common_policy_summary_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_policy_summary_proto_rawDescData + return file_google_ads_googleads_v22_common_policy_summary_proto_rawDescData } -var file_google_ads_googleads_v21_common_policy_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_policy_summary_proto_goTypes = []any{ - (*PolicySummary)(nil), // 0: google.ads.googleads.v21.common.PolicySummary - (*PolicyTopicEntry)(nil), // 1: google.ads.googleads.v21.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 2: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 3: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v22_common_policy_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_policy_summary_proto_goTypes = []any{ + (*PolicySummary)(nil), // 0: google.ads.googleads.v22.common.PolicySummary + (*PolicyTopicEntry)(nil), // 1: google.ads.googleads.v22.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 2: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 3: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus } -var file_google_ads_googleads_v21_common_policy_summary_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.PolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 2, // 1: google.ads.googleads.v21.common.PolicySummary.review_status:type_name -> google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 3, // 2: google.ads.googleads.v21.common.PolicySummary.approval_status:type_name -> google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v22_common_policy_summary_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.PolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 2, // 1: google.ads.googleads.v22.common.PolicySummary.review_status:type_name -> google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 3, // 2: google.ads.googleads.v22.common.PolicySummary.approval_status:type_name -> google.ads.googleads.v22.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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_common_policy_summary_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_policy_summary_proto_init() } -func file_google_ads_googleads_v21_common_policy_summary_proto_init() { - if File_google_ads_googleads_v21_common_policy_summary_proto != nil { +func init() { file_google_ads_googleads_v22_common_policy_summary_proto_init() } +func file_google_ads_googleads_v22_common_policy_summary_proto_init() { + if File_google_ads_googleads_v22_common_policy_summary_proto != nil { return } - file_google_ads_googleads_v21_common_policy_proto_init() + file_google_ads_googleads_v22_common_policy_proto_init() type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_policy_summary_proto_rawDesc), len(file_google_ads_googleads_v21_common_policy_summary_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_policy_summary_proto_rawDesc), len(file_google_ads_googleads_v22_common_policy_summary_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_policy_summary_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_policy_summary_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_policy_summary_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_policy_summary_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_policy_summary_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_policy_summary_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_policy_summary_proto = out.File - file_google_ads_googleads_v21_common_policy_summary_proto_goTypes = nil - file_google_ads_googleads_v21_common_policy_summary_proto_depIdxs = nil + File_google_ads_googleads_v22_common_policy_summary_proto = out.File + file_google_ads_googleads_v22_common_policy_summary_proto_goTypes = nil + file_google_ads_googleads_v22_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 0b31b8b7..92307e56 100644 --- a/common/real_time_bidding_setting.pb.go +++ b/common/real_time_bidding_setting.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/real_time_bidding_setting.proto +// source: google/ads/googleads/v22/common/real_time_bidding_setting.proto package common @@ -47,7 +47,7 @@ type RealTimeBiddingSetting struct { func (x *RealTimeBiddingSetting) Reset() { *x = RealTimeBiddingSetting{} - mi := &file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -59,7 +59,7 @@ func (x *RealTimeBiddingSetting) String() string { func (*RealTimeBiddingSetting) ProtoMessage() {} func (x *RealTimeBiddingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -72,7 +72,7 @@ func (x *RealTimeBiddingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use RealTimeBiddingSetting.ProtoReflect.Descriptor instead. func (*RealTimeBiddingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescGZIP(), []int{0} } func (x *RealTimeBiddingSetting) GetOptIn() bool { @@ -82,55 +82,55 @@ func (x *RealTimeBiddingSetting) GetOptIn() bool { return false } -var File_google_ads_googleads_v21_common_real_time_bidding_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_real_time_bidding_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x1b, 0x52, 0x65, 0x61, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescData []byte + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDesc), len(file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDesc))) +func file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDescData + return file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDescData } -var file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_goTypes = []any{ - (*RealTimeBiddingSetting)(nil), // 0: google.ads.googleads.v21.common.RealTimeBiddingSetting +var file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_goTypes = []any{ + (*RealTimeBiddingSetting)(nil), // 0: google.ads.googleads.v22.common.RealTimeBiddingSetting } -var file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -138,27 +138,27 @@ var file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_init() } -func file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_init() { - if File_google_ads_googleads_v21_common_real_time_bidding_setting_proto != nil { +func init() { file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_init() } +func file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_init() { + if File_google_ads_googleads_v22_common_real_time_bidding_setting_proto != nil { return } - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDesc), len(file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_real_time_bidding_setting_proto = out.File - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_goTypes = nil - file_google_ads_googleads_v21_common_real_time_bidding_setting_proto_depIdxs = nil + File_google_ads_googleads_v22_common_real_time_bidding_setting_proto = out.File + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_goTypes = nil + file_google_ads_googleads_v22_common_real_time_bidding_setting_proto_depIdxs = nil } diff --git a/common/segments.pb.go b/common/segments.pb.go index 6b4353d4..d107f529 100644 --- a/common/segments.pb.go +++ b/common/segments.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/segments.proto +// source: google/ads/googleads/v22/common/segments.proto package common @@ -53,11 +53,11 @@ 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.v21.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.v22.enums.AdDestinationTypeEnum_AdDestinationType" json:"ad_destination_type,omitempty"` // Ad Format type. - AdFormatType enums.AdFormatTypeEnum_AdFormatType `protobuf:"varint,191,opt,name=ad_format_type,json=adFormatType,proto3,enum=google.ads.googleads.v21.enums.AdFormatTypeEnum_AdFormatType" json:"ad_format_type,omitempty"` + AdFormatType enums.AdFormatTypeEnum_AdFormatType `protobuf:"varint,191,opt,name=ad_format_type,json=adFormatType,proto3,enum=google.ads.googleads.v22.enums.AdFormatTypeEnum_AdFormatType" json:"ad_format_type,omitempty"` // Ad network type. - AdNetworkType enums.AdNetworkTypeEnum_AdNetworkType `protobuf:"varint,3,opt,name=ad_network_type,json=adNetworkType,proto3,enum=google.ads.googleads.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.enums.DeviceEnum_Device" json:"device,omitempty"` + Device enums.DeviceEnum_Device `protobuf:"varint,1,opt,name=device,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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. @@ -159,12 +159,12 @@ type Segments struct { // Keyword criterion. Keyword *Keyword `protobuf:"bytes,61,opt,name=keyword,proto3" json:"keyword,omitempty"` // The source of a landing page in the landing page report. - LandingPageSource enums.LandingPageSourceEnum_LandingPageSource `protobuf:"varint,200,opt,name=landing_page_source,json=landingPageSource,proto3,enum=google.ads.googleads.v21.enums.LandingPageSourceEnum_LandingPageSource" json:"landing_page_source,omitempty"` + LandingPageSource enums.LandingPageSourceEnum_LandingPageSource `protobuf:"varint,200,opt,name=landing_page_source,json=landingPageSource,proto3,enum=google.ads.googleads.v22.enums.LandingPageSourceEnum_LandingPageSource" json:"landing_page_source,omitempty"` // Month as represented by the date of the first day of a month. Formatted as // 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.v21.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.v22.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"` // Aggregator ID 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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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"` @@ -233,9 +233,9 @@ type Segments struct { // The region the user is searching for at query time. TravelDestinationRegion *string `protobuf:"bytes,195,opt,name=travel_destination_region,json=travelDestinationRegion,proto3,oneof" json:"travel_destination_region,omitempty"` // Recommendation type. - RecommendationType enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,140,opt,name=recommendation_type,json=recommendationType,proto3,enum=google.ads.googleads.v21.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.v22.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.v21.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.v22.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"` @@ -245,14 +245,14 @@ type Segments struct { // with keyword_view. For other resources, use match_type. While match_type is // filtered to Broad, Exact, Phrase and Ai Max, search_term_match_type // includes variants like Near Exact and Near Phrase. - SearchTermMatchType enums.SearchTermMatchTypeEnum_SearchTermMatchType `protobuf:"varint,22,opt,name=search_term_match_type,json=searchTermMatchType,proto3,enum=google.ads.googleads.v21.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.v22.enums.SearchTermMatchTypeEnum_SearchTermMatchType" json:"search_term_match_type,omitempty"` // The match type of the keyword that triggered the ad. This segment is for // use with keyword_view. For other resources, use search_term_match_type. // While match_type is filtered to Broad, Exact, Phrase and Ai Max, // search_term_match_type includes variants like Near Exact, Near Phrase. - MatchType enums.MatchTypeEnum_MatchType `protobuf:"varint,199,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v21.enums.MatchTypeEnum_MatchType" json:"match_type,omitempty"` + MatchType enums.MatchTypeEnum_MatchType `protobuf:"varint,199,opt,name=match_type,json=matchType,proto3,enum=google.ads.googleads.v22.enums.MatchTypeEnum_MatchType" json:"match_type,omitempty"` // Position of the ad. - Slot enums.SlotEnum_Slot `protobuf:"varint,23,opt,name=slot,proto3,enum=google.ads.googleads.v21.enums.SlotEnum_Slot" json:"slot,omitempty"` + Slot enums.SlotEnum_Slot `protobuf:"varint,23,opt,name=slot,proto3,enum=google.ads.googleads.v22.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. @@ -260,7 +260,7 @@ type Segments struct { // has been applied. // GEO_LOCATION, DEVICE, AUDIENCE, ITINERARY 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.v21.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.v22.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 @@ -282,17 +282,17 @@ type Segments struct { // 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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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. @@ -301,7 +301,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.v21.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.v22.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"` // The version of the SKAdNetwork API used. @@ -320,34 +320,42 @@ 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.v21.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.v22.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket" json:"new_versus_returning_customers,omitempty"` // Adjusted age range. This is the age range of the user after applying // modeling to get more accurate age and gender information. Currently, both // adjusted_age_range and adjusted_gender need to be selected together to get // valid reach stats. These segmentations are only available for allowlisted // customers. - AdjustedAgeRange enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,196,opt,name=adjusted_age_range,json=adjustedAgeRange,proto3,enum=google.ads.googleads.v21.enums.AgeRangeTypeEnum_AgeRangeType" json:"adjusted_age_range,omitempty"` + AdjustedAgeRange enums.AgeRangeTypeEnum_AgeRangeType `protobuf:"varint,196,opt,name=adjusted_age_range,json=adjustedAgeRange,proto3,enum=google.ads.googleads.v22.enums.AgeRangeTypeEnum_AgeRangeType" json:"adjusted_age_range,omitempty"` // Adjusted gender. This is the gender of the user after applying modeling to // get more accurate age and gender information. Currently, both // adjusted_age_range and adjusted_gender need to be selected together to get // valid reach stats. These segmentations are only available for allowlisted // customers. - AdjustedGender enums.GenderTypeEnum_GenderType `protobuf:"varint,197,opt,name=adjusted_gender,json=adjustedGender,proto3,enum=google.ads.googleads.v21.enums.GenderTypeEnum_GenderType" json:"adjusted_gender,omitempty"` + AdjustedGender enums.GenderTypeEnum_GenderType `protobuf:"varint,197,opt,name=adjusted_gender,json=adjustedGender,proto3,enum=google.ads.googleads.v22.enums.GenderTypeEnum_GenderType" json:"adjusted_gender,omitempty"` // Specifies the source for how the search term was matched, which reveals the // type of ad campaign responsible. Use this to distinguish between automated // campaigns (like AI Max, Dynamic Search Ads) and keyword-based campaigns // (Standard). - SearchTermMatchSource enums.SearchTermMatchSourceEnum_SearchTermMatchSource `protobuf:"varint,198,opt,name=search_term_match_source,json=searchTermMatchSource,proto3,enum=google.ads.googleads.v21.enums.SearchTermMatchSourceEnum_SearchTermMatchSource" json:"search_term_match_source,omitempty"` + SearchTermMatchSource enums.SearchTermMatchSourceEnum_SearchTermMatchSource `protobuf:"varint,198,opt,name=search_term_match_source,json=searchTermMatchSource,proto3,enum=google.ads.googleads.v22.enums.SearchTermMatchSourceEnum_SearchTermMatchSource" json:"search_term_match_source,omitempty"` // Indicates whether the search term is currently one of your targeted or // excluded keywords. - SearchTermTargetingStatus enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus `protobuf:"varint,201,opt,name=search_term_targeting_status,json=searchTermTargetingStatus,proto3,enum=google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"search_term_targeting_status,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + SearchTermTargetingStatus enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus `protobuf:"varint,201,opt,name=search_term_targeting_status,json=searchTermTargetingStatus,proto3,enum=google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"search_term_targeting_status,omitempty"` + // Indicates whether an ad is using product data from a Google Merchant + // Center feed. This segment is only available for PMax campaigns and will + // not return data when any other campaign type is selected. + AdUsingProductData *bool `protobuf:"varint,202,opt,name=ad_using_product_data,json=adUsingProductData,proto3,oneof" json:"ad_using_product_data,omitempty"` + // Indicates whether an ad is using a video asset. This segment is only + // available for PMax campaigns and will not return data when any other + // campaign type is selected. + AdUsingVideo *bool `protobuf:"varint,203,opt,name=ad_using_video,json=adUsingVideo,proto3,oneof" json:"ad_using_video,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *Segments) Reset() { *x = Segments{} - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -359,7 +367,7 @@ func (x *Segments) String() string { func (*Segments) ProtoMessage() {} func (x *Segments) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -372,7 +380,7 @@ func (x *Segments) ProtoReflect() protoreflect.Message { // Deprecated: Use Segments.ProtoReflect.Descriptor instead. func (*Segments) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP(), []int{0} } func (x *Segments) GetActivityAccountId() int64 { @@ -1194,6 +1202,20 @@ func (x *Segments) GetSearchTermTargetingStatus() enums.SearchTermTargetingStatu return enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus(0) } +func (x *Segments) GetAdUsingProductData() bool { + if x != nil && x.AdUsingProductData != nil { + return *x.AdUsingProductData + } + return false +} + +func (x *Segments) GetAdUsingVideo() bool { + if x != nil && x.AdUsingVideo != nil { + return *x.AdUsingVideo + } + return false +} + // A Keyword criterion segment. type Keyword struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -1207,7 +1229,7 @@ type Keyword struct { func (x *Keyword) Reset() { *x = Keyword{} - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1219,7 +1241,7 @@ func (x *Keyword) String() string { func (*Keyword) ProtoMessage() {} func (x *Keyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1232,7 +1254,7 @@ func (x *Keyword) ProtoReflect() protoreflect.Message { // Deprecated: Use Keyword.ProtoReflect.Descriptor instead. func (*Keyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP(), []int{1} } func (x *Keyword) GetAdGroupCriterion() string { @@ -1255,14 +1277,14 @@ 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.v21.enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus" json:"status,omitempty"` + Status enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BudgetCampaignAssociationStatus) Reset() { *x = BudgetCampaignAssociationStatus{} - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1274,7 +1296,7 @@ func (x *BudgetCampaignAssociationStatus) String() string { func (*BudgetCampaignAssociationStatus) ProtoMessage() {} func (x *BudgetCampaignAssociationStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1287,7 +1309,7 @@ func (x *BudgetCampaignAssociationStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetCampaignAssociationStatus.ProtoReflect.Descriptor instead. func (*BudgetCampaignAssociationStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP(), []int{2} } func (x *BudgetCampaignAssociationStatus) GetCampaign() string { @@ -1319,7 +1341,7 @@ type AssetInteractionTarget struct { func (x *AssetInteractionTarget) Reset() { *x = AssetInteractionTarget{} - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1331,7 +1353,7 @@ func (x *AssetInteractionTarget) String() string { func (*AssetInteractionTarget) ProtoMessage() {} func (x *AssetInteractionTarget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1344,7 +1366,7 @@ func (x *AssetInteractionTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetInteractionTarget.ProtoReflect.Descriptor instead. func (*AssetInteractionTarget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP(), []int{3} } func (x *AssetInteractionTarget) GetAsset() string { @@ -1373,7 +1395,7 @@ type SkAdNetworkSourceApp struct { func (x *SkAdNetworkSourceApp) Reset() { *x = SkAdNetworkSourceApp{} - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1385,7 +1407,7 @@ func (x *SkAdNetworkSourceApp) String() string { func (*SkAdNetworkSourceApp) ProtoMessage() {} func (x *SkAdNetworkSourceApp) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_segments_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_segments_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1398,7 +1420,7 @@ func (x *SkAdNetworkSourceApp) ProtoReflect() protoreflect.Message { // Deprecated: Use SkAdNetworkSourceApp.ProtoReflect.Descriptor instead. func (*SkAdNetworkSourceApp) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP(), []int{4} } func (x *SkAdNetworkSourceApp) GetSkAdNetworkSourceAppId() string { @@ -1408,157 +1430,157 @@ func (x *SkAdNetworkSourceApp) GetSkAdNetworkSourceAppId() string { return "" } -var File_google_ads_googleads_v21_common_segments_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_segments_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_segments_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x66, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x64, 0x67, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x78, 0x74, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x30, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x72, + 0x32, 0x32, 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, 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x61, 0x74, 0x63, 0x68, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x5f, + 0x76, 0x32, 0x32, 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, 0x34, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x65, + 0x32, 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, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, + 0x76, 0x32, 0x32, 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, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, 0x5f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x87, 0x56, 0x0a, 0x08, 0x53, 0x65, 0x67, 0x6d, 0x65, 0x6e, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x99, 0x57, 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, @@ -1581,20 +1603,20 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, + 0x32, 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, 0x64, 0x44, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x64, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0xbf, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x46, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x52, 0x0c, 0x61, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1610,7 +1632,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1620,7 +1642,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, @@ -1633,7 +1655,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 0x32, 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, 0x18, @@ -1650,7 +1672,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, @@ -1660,7 +1682,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x52, 0x13, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, @@ -1669,7 +1691,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x69, 0x6f, 0x6e, 0x4f, 0x72, 0x41, 0x64, 0x6a, @@ -1680,18 +1702,18 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x0d, 0x52, 0x04, 0x64, 0x61, 0x74, 0x65, 0x88, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1750,7 +1772,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x1a, 0x68, 0x6f, 0x74, 0x65, 0x6c, 0x5f, 0x63, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1765,7 +1787,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, + 0x2e, 0x76, 0x32, 0x32, 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, 0x70, 0x65, 0x52, 0x16, 0x68, 0x6f, @@ -1779,14 +1801,14 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x61, 0x74, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x49, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1801,12 +1823,12 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x6e, 0x54, 0x68, 0x69, 0x73, 0x45, 0x78, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x78, 0x0a, 0x13, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0xc8, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x52, 0x11, 0x6c, 0x61, @@ -1815,7 +1837,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1850,7 +1872,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x64, 0x88, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1858,7 +1880,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, + 0x32, 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, 0x52, @@ -1866,7 +1888,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x78, 0x63, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1943,7 +1965,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x69, 0x6f, 0x6e, 0x88, 0x01, 0x01, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1952,7 +1974,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x6e, 0x67, 0x69, 0x6e, 0x65, 0x5f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1967,7 +1989,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x88, 0x01, 0x01, 0x12, 0x80, 0x01, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1975,18 +1997,18 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x12, 0x57, 0x0a, 0x0a, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0xc7, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x74, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x52, 0x09, 0x6d, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2015,7 +2037,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2024,7 +2046,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, + 0x76, 0x32, 0x32, 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, @@ -2033,14 +2055,14 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, 0x74, + 0x32, 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, 0x4a, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2051,7 +2073,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2066,7 +2088,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2084,7 +2106,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x4e, 0x52, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, @@ -2092,7 +2114,7 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2104,20 +2126,20 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x12, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x67, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x67, 0x65, 0x18, 0xc4, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x67, 0x65, 0x52, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x10, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x65, 0x64, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, 0x67, 0x65, 0x12, 0x63, 0x0a, 0x0f, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x65, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x18, 0xc5, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0e, 0x61, 0x64, 0x6a, 0x75, 0x73, 0x74, 0x65, 0x64, 0x47, 0x65, 0x6e, 0x64, 0x65, 0x72, 0x12, 0x89, 0x01, 0x0a, 0x18, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0xc6, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x53, @@ -2126,282 +2148,291 @@ var file_google_ads_googleads_v21_common_segments_proto_rawDesc = string([]byte{ 0x1c, 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, 0x18, 0xc9, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x19, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, - 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 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, 0x1a, 0x0a, 0x18, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, - 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x69, 0x74, - 0x79, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x64, 0x65, 0x73, - 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, - 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x74, - 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x67, 0x69, 0x6f, 0x6e, 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, 0x18, 0x0a, 0x16, 0x5f, 0x73, 0x6b, 0x5f, - 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, + 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x37, 0x0a, 0x15, 0x61, 0x64, 0x5f, 0x75, + 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x64, 0x61, 0x74, + 0x61, 0x18, 0xca, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x4f, 0x52, 0x12, 0x61, 0x64, 0x55, 0x73, + 0x69, 0x6e, 0x67, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x44, 0x61, 0x74, 0x61, 0x88, 0x01, + 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x61, 0x64, 0x5f, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x76, 0x69, + 0x64, 0x65, 0x6f, 0x18, 0xcb, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x50, 0x52, 0x0c, 0x61, 0x64, + 0x55, 0x73, 0x69, 0x6e, 0x67, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x88, 0x01, 0x01, 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, 0x1a, 0x0a, 0x18, 0x5f, 0x74, + 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x63, 0x69, 0x74, 0x79, 0x42, 0x1d, 0x0a, 0x1b, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, + 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x72, 0x79, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, + 0x5f, 0x64, 0x65, 0x73, 0x74, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x65, 0x67, + 0x69, 0x6f, 0x6e, 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, 0x18, 0x0a, + 0x16, 0x5f, 0x73, 0x6b, 0x5f, 0x61, 0x64, 0x5f, 0x6e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x5f, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 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, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x61, 0x64, 0x5f, 0x75, 0x73, 0x69, 0x6e, + 0x67, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x42, 0x11, + 0x0a, 0x0f, 0x5f, 0x61, 0x64, 0x5f, 0x75, 0x73, 0x69, 0x6e, 0x67, 0x5f, 0x76, 0x69, 0x64, 0x65, + 0x6f, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_segments_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_segments_proto_rawDescData []byte + file_google_ads_googleads_v22_common_segments_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_segments_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_segments_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_segments_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_segments_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_segments_proto_rawDesc), len(file_google_ads_googleads_v21_common_segments_proto_rawDesc))) +func file_google_ads_googleads_v22_common_segments_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_segments_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_segments_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_segments_proto_rawDesc), len(file_google_ads_googleads_v22_common_segments_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_segments_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_segments_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v21_common_segments_proto_goTypes = []any{ - (*Segments)(nil), // 0: google.ads.googleads.v21.common.Segments - (*Keyword)(nil), // 1: google.ads.googleads.v21.common.Keyword - (*BudgetCampaignAssociationStatus)(nil), // 2: google.ads.googleads.v21.common.BudgetCampaignAssociationStatus - (*AssetInteractionTarget)(nil), // 3: google.ads.googleads.v21.common.AssetInteractionTarget - (*SkAdNetworkSourceApp)(nil), // 4: google.ads.googleads.v21.common.SkAdNetworkSourceApp - (enums.AdDestinationTypeEnum_AdDestinationType)(0), // 5: google.ads.googleads.v21.enums.AdDestinationTypeEnum.AdDestinationType - (enums.AdFormatTypeEnum_AdFormatType)(0), // 6: google.ads.googleads.v21.enums.AdFormatTypeEnum.AdFormatType - (enums.AdNetworkTypeEnum_AdNetworkType)(0), // 7: google.ads.googleads.v21.enums.AdNetworkTypeEnum.AdNetworkType - (enums.ClickTypeEnum_ClickType)(0), // 8: google.ads.googleads.v21.enums.ClickTypeEnum.ClickType - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 10: google.ads.googleads.v21.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType - (enums.ConversionLagBucketEnum_ConversionLagBucket)(0), // 11: google.ads.googleads.v21.enums.ConversionLagBucketEnum.ConversionLagBucket - (enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 12: google.ads.googleads.v21.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket - (enums.DayOfWeekEnum_DayOfWeek)(0), // 13: google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - (enums.DeviceEnum_Device)(0), // 14: google.ads.googleads.v21.enums.DeviceEnum.Device - (enums.ExternalConversionSourceEnum_ExternalConversionSource)(0), // 15: google.ads.googleads.v21.enums.ExternalConversionSourceEnum.ExternalConversionSource - (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 16: google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType - (enums.HotelRateTypeEnum_HotelRateType)(0), // 17: google.ads.googleads.v21.enums.HotelRateTypeEnum.HotelRateType - (enums.HotelPriceBucketEnum_HotelPriceBucket)(0), // 18: google.ads.googleads.v21.enums.HotelPriceBucketEnum.HotelPriceBucket - (enums.LandingPageSourceEnum_LandingPageSource)(0), // 19: google.ads.googleads.v21.enums.LandingPageSourceEnum.LandingPageSource - (enums.MonthOfYearEnum_MonthOfYear)(0), // 20: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - (enums.ProductChannelEnum_ProductChannel)(0), // 21: google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 22: google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - (enums.ProductConditionEnum_ProductCondition)(0), // 23: google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - (enums.RecommendationTypeEnum_RecommendationType)(0), // 24: google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - (enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 25: google.ads.googleads.v21.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType - (enums.SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 26: google.ads.googleads.v21.enums.SearchTermMatchTypeEnum.SearchTermMatchType - (enums.MatchTypeEnum_MatchType)(0), // 27: google.ads.googleads.v21.enums.MatchTypeEnum.MatchType - (enums.SlotEnum_Slot)(0), // 28: google.ads.googleads.v21.enums.SlotEnum.Slot - (enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 29: google.ads.googleads.v21.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension - (enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 30: google.ads.googleads.v21.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType - (enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 31: google.ads.googleads.v21.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType - (enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 32: google.ads.googleads.v21.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit - (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 33: google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue - (enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 34: google.ads.googleads.v21.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType - (enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 35: google.ads.googleads.v21.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket - (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 36: google.ads.googleads.v21.enums.AgeRangeTypeEnum.AgeRangeType - (enums.GenderTypeEnum_GenderType)(0), // 37: google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - (enums.SearchTermMatchSourceEnum_SearchTermMatchSource)(0), // 38: google.ads.googleads.v21.enums.SearchTermMatchSourceEnum.SearchTermMatchSource - (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 39: google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus - (*KeywordInfo)(nil), // 40: google.ads.googleads.v21.common.KeywordInfo - (enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 41: google.ads.googleads.v21.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus -} -var file_google_ads_googleads_v21_common_segments_proto_depIdxs = []int32{ - 5, // 0: google.ads.googleads.v21.common.Segments.ad_destination_type:type_name -> google.ads.googleads.v21.enums.AdDestinationTypeEnum.AdDestinationType - 6, // 1: google.ads.googleads.v21.common.Segments.ad_format_type:type_name -> google.ads.googleads.v21.enums.AdFormatTypeEnum.AdFormatType - 7, // 2: google.ads.googleads.v21.common.Segments.ad_network_type:type_name -> google.ads.googleads.v21.enums.AdNetworkTypeEnum.AdNetworkType - 2, // 3: google.ads.googleads.v21.common.Segments.budget_campaign_association_status:type_name -> google.ads.googleads.v21.common.BudgetCampaignAssociationStatus - 8, // 4: google.ads.googleads.v21.common.Segments.click_type:type_name -> google.ads.googleads.v21.enums.ClickTypeEnum.ClickType - 9, // 5: google.ads.googleads.v21.common.Segments.conversion_action_category:type_name -> google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - 10, // 6: google.ads.googleads.v21.common.Segments.conversion_attribution_event_type:type_name -> google.ads.googleads.v21.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType - 11, // 7: google.ads.googleads.v21.common.Segments.conversion_lag_bucket:type_name -> google.ads.googleads.v21.enums.ConversionLagBucketEnum.ConversionLagBucket - 12, // 8: google.ads.googleads.v21.common.Segments.conversion_or_adjustment_lag_bucket:type_name -> google.ads.googleads.v21.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket - 13, // 9: google.ads.googleads.v21.common.Segments.day_of_week:type_name -> google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - 14, // 10: google.ads.googleads.v21.common.Segments.device:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 15, // 11: google.ads.googleads.v21.common.Segments.external_conversion_source:type_name -> google.ads.googleads.v21.enums.ExternalConversionSourceEnum.ExternalConversionSource - 13, // 12: google.ads.googleads.v21.common.Segments.hotel_check_in_day_of_week:type_name -> google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - 16, // 13: google.ads.googleads.v21.common.Segments.hotel_date_selection_type:type_name -> google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType - 17, // 14: google.ads.googleads.v21.common.Segments.hotel_rate_type:type_name -> google.ads.googleads.v21.enums.HotelRateTypeEnum.HotelRateType - 18, // 15: google.ads.googleads.v21.common.Segments.hotel_price_bucket:type_name -> google.ads.googleads.v21.enums.HotelPriceBucketEnum.HotelPriceBucket - 1, // 16: google.ads.googleads.v21.common.Segments.keyword:type_name -> google.ads.googleads.v21.common.Keyword - 19, // 17: google.ads.googleads.v21.common.Segments.landing_page_source:type_name -> google.ads.googleads.v21.enums.LandingPageSourceEnum.LandingPageSource - 20, // 18: google.ads.googleads.v21.common.Segments.month_of_year:type_name -> google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - 21, // 19: google.ads.googleads.v21.common.Segments.product_channel:type_name -> google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - 22, // 20: google.ads.googleads.v21.common.Segments.product_channel_exclusivity:type_name -> google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - 23, // 21: google.ads.googleads.v21.common.Segments.product_condition:type_name -> google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - 24, // 22: google.ads.googleads.v21.common.Segments.recommendation_type:type_name -> google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - 25, // 23: google.ads.googleads.v21.common.Segments.search_engine_results_page_type:type_name -> google.ads.googleads.v21.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType - 26, // 24: google.ads.googleads.v21.common.Segments.search_term_match_type:type_name -> google.ads.googleads.v21.enums.SearchTermMatchTypeEnum.SearchTermMatchType - 27, // 25: google.ads.googleads.v21.common.Segments.match_type:type_name -> google.ads.googleads.v21.enums.MatchTypeEnum.MatchType - 28, // 26: google.ads.googleads.v21.common.Segments.slot:type_name -> google.ads.googleads.v21.enums.SlotEnum.Slot - 29, // 27: google.ads.googleads.v21.common.Segments.conversion_value_rule_primary_dimension:type_name -> google.ads.googleads.v21.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension - 30, // 28: google.ads.googleads.v21.common.Segments.sk_ad_network_user_type:type_name -> google.ads.googleads.v21.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType - 31, // 29: google.ads.googleads.v21.common.Segments.sk_ad_network_ad_event_type:type_name -> google.ads.googleads.v21.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType - 4, // 30: google.ads.googleads.v21.common.Segments.sk_ad_network_source_app:type_name -> google.ads.googleads.v21.common.SkAdNetworkSourceApp - 32, // 31: google.ads.googleads.v21.common.Segments.sk_ad_network_attribution_credit:type_name -> google.ads.googleads.v21.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit - 33, // 32: google.ads.googleads.v21.common.Segments.sk_ad_network_coarse_conversion_value:type_name -> google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue - 34, // 33: google.ads.googleads.v21.common.Segments.sk_ad_network_source_type:type_name -> google.ads.googleads.v21.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType - 3, // 34: google.ads.googleads.v21.common.Segments.asset_interaction_target:type_name -> google.ads.googleads.v21.common.AssetInteractionTarget - 35, // 35: google.ads.googleads.v21.common.Segments.new_versus_returning_customers:type_name -> google.ads.googleads.v21.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket - 36, // 36: google.ads.googleads.v21.common.Segments.adjusted_age_range:type_name -> google.ads.googleads.v21.enums.AgeRangeTypeEnum.AgeRangeType - 37, // 37: google.ads.googleads.v21.common.Segments.adjusted_gender:type_name -> google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - 38, // 38: google.ads.googleads.v21.common.Segments.search_term_match_source:type_name -> google.ads.googleads.v21.enums.SearchTermMatchSourceEnum.SearchTermMatchSource - 39, // 39: google.ads.googleads.v21.common.Segments.search_term_targeting_status:type_name -> google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus - 40, // 40: google.ads.googleads.v21.common.Keyword.info:type_name -> google.ads.googleads.v21.common.KeywordInfo - 41, // 41: google.ads.googleads.v21.common.BudgetCampaignAssociationStatus.status:type_name -> google.ads.googleads.v21.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus + return file_google_ads_googleads_v22_common_segments_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_segments_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v22_common_segments_proto_goTypes = []any{ + (*Segments)(nil), // 0: google.ads.googleads.v22.common.Segments + (*Keyword)(nil), // 1: google.ads.googleads.v22.common.Keyword + (*BudgetCampaignAssociationStatus)(nil), // 2: google.ads.googleads.v22.common.BudgetCampaignAssociationStatus + (*AssetInteractionTarget)(nil), // 3: google.ads.googleads.v22.common.AssetInteractionTarget + (*SkAdNetworkSourceApp)(nil), // 4: google.ads.googleads.v22.common.SkAdNetworkSourceApp + (enums.AdDestinationTypeEnum_AdDestinationType)(0), // 5: google.ads.googleads.v22.enums.AdDestinationTypeEnum.AdDestinationType + (enums.AdFormatTypeEnum_AdFormatType)(0), // 6: google.ads.googleads.v22.enums.AdFormatTypeEnum.AdFormatType + (enums.AdNetworkTypeEnum_AdNetworkType)(0), // 7: google.ads.googleads.v22.enums.AdNetworkTypeEnum.AdNetworkType + (enums.ClickTypeEnum_ClickType)(0), // 8: google.ads.googleads.v22.enums.ClickTypeEnum.ClickType + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 10: google.ads.googleads.v22.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType + (enums.ConversionLagBucketEnum_ConversionLagBucket)(0), // 11: google.ads.googleads.v22.enums.ConversionLagBucketEnum.ConversionLagBucket + (enums.ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 12: google.ads.googleads.v22.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket + (enums.DayOfWeekEnum_DayOfWeek)(0), // 13: google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + (enums.DeviceEnum_Device)(0), // 14: google.ads.googleads.v22.enums.DeviceEnum.Device + (enums.ExternalConversionSourceEnum_ExternalConversionSource)(0), // 15: google.ads.googleads.v22.enums.ExternalConversionSourceEnum.ExternalConversionSource + (enums.HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 16: google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType + (enums.HotelRateTypeEnum_HotelRateType)(0), // 17: google.ads.googleads.v22.enums.HotelRateTypeEnum.HotelRateType + (enums.HotelPriceBucketEnum_HotelPriceBucket)(0), // 18: google.ads.googleads.v22.enums.HotelPriceBucketEnum.HotelPriceBucket + (enums.LandingPageSourceEnum_LandingPageSource)(0), // 19: google.ads.googleads.v22.enums.LandingPageSourceEnum.LandingPageSource + (enums.MonthOfYearEnum_MonthOfYear)(0), // 20: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + (enums.ProductChannelEnum_ProductChannel)(0), // 21: google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 22: google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + (enums.ProductConditionEnum_ProductCondition)(0), // 23: google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + (enums.RecommendationTypeEnum_RecommendationType)(0), // 24: google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + (enums.SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 25: google.ads.googleads.v22.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType + (enums.SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 26: google.ads.googleads.v22.enums.SearchTermMatchTypeEnum.SearchTermMatchType + (enums.MatchTypeEnum_MatchType)(0), // 27: google.ads.googleads.v22.enums.MatchTypeEnum.MatchType + (enums.SlotEnum_Slot)(0), // 28: google.ads.googleads.v22.enums.SlotEnum.Slot + (enums.ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 29: google.ads.googleads.v22.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension + (enums.SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 30: google.ads.googleads.v22.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType + (enums.SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 31: google.ads.googleads.v22.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType + (enums.SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 32: google.ads.googleads.v22.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit + (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 33: google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue + (enums.SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 34: google.ads.googleads.v22.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType + (enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 35: google.ads.googleads.v22.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket + (enums.AgeRangeTypeEnum_AgeRangeType)(0), // 36: google.ads.googleads.v22.enums.AgeRangeTypeEnum.AgeRangeType + (enums.GenderTypeEnum_GenderType)(0), // 37: google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + (enums.SearchTermMatchSourceEnum_SearchTermMatchSource)(0), // 38: google.ads.googleads.v22.enums.SearchTermMatchSourceEnum.SearchTermMatchSource + (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 39: google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus + (*KeywordInfo)(nil), // 40: google.ads.googleads.v22.common.KeywordInfo + (enums.BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 41: google.ads.googleads.v22.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus +} +var file_google_ads_googleads_v22_common_segments_proto_depIdxs = []int32{ + 5, // 0: google.ads.googleads.v22.common.Segments.ad_destination_type:type_name -> google.ads.googleads.v22.enums.AdDestinationTypeEnum.AdDestinationType + 6, // 1: google.ads.googleads.v22.common.Segments.ad_format_type:type_name -> google.ads.googleads.v22.enums.AdFormatTypeEnum.AdFormatType + 7, // 2: google.ads.googleads.v22.common.Segments.ad_network_type:type_name -> google.ads.googleads.v22.enums.AdNetworkTypeEnum.AdNetworkType + 2, // 3: google.ads.googleads.v22.common.Segments.budget_campaign_association_status:type_name -> google.ads.googleads.v22.common.BudgetCampaignAssociationStatus + 8, // 4: google.ads.googleads.v22.common.Segments.click_type:type_name -> google.ads.googleads.v22.enums.ClickTypeEnum.ClickType + 9, // 5: google.ads.googleads.v22.common.Segments.conversion_action_category:type_name -> google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + 10, // 6: google.ads.googleads.v22.common.Segments.conversion_attribution_event_type:type_name -> google.ads.googleads.v22.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType + 11, // 7: google.ads.googleads.v22.common.Segments.conversion_lag_bucket:type_name -> google.ads.googleads.v22.enums.ConversionLagBucketEnum.ConversionLagBucket + 12, // 8: google.ads.googleads.v22.common.Segments.conversion_or_adjustment_lag_bucket:type_name -> google.ads.googleads.v22.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket + 13, // 9: google.ads.googleads.v22.common.Segments.day_of_week:type_name -> google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + 14, // 10: google.ads.googleads.v22.common.Segments.device:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 15, // 11: google.ads.googleads.v22.common.Segments.external_conversion_source:type_name -> google.ads.googleads.v22.enums.ExternalConversionSourceEnum.ExternalConversionSource + 13, // 12: google.ads.googleads.v22.common.Segments.hotel_check_in_day_of_week:type_name -> google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + 16, // 13: google.ads.googleads.v22.common.Segments.hotel_date_selection_type:type_name -> google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType + 17, // 14: google.ads.googleads.v22.common.Segments.hotel_rate_type:type_name -> google.ads.googleads.v22.enums.HotelRateTypeEnum.HotelRateType + 18, // 15: google.ads.googleads.v22.common.Segments.hotel_price_bucket:type_name -> google.ads.googleads.v22.enums.HotelPriceBucketEnum.HotelPriceBucket + 1, // 16: google.ads.googleads.v22.common.Segments.keyword:type_name -> google.ads.googleads.v22.common.Keyword + 19, // 17: google.ads.googleads.v22.common.Segments.landing_page_source:type_name -> google.ads.googleads.v22.enums.LandingPageSourceEnum.LandingPageSource + 20, // 18: google.ads.googleads.v22.common.Segments.month_of_year:type_name -> google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + 21, // 19: google.ads.googleads.v22.common.Segments.product_channel:type_name -> google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + 22, // 20: google.ads.googleads.v22.common.Segments.product_channel_exclusivity:type_name -> google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + 23, // 21: google.ads.googleads.v22.common.Segments.product_condition:type_name -> google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + 24, // 22: google.ads.googleads.v22.common.Segments.recommendation_type:type_name -> google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + 25, // 23: google.ads.googleads.v22.common.Segments.search_engine_results_page_type:type_name -> google.ads.googleads.v22.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType + 26, // 24: google.ads.googleads.v22.common.Segments.search_term_match_type:type_name -> google.ads.googleads.v22.enums.SearchTermMatchTypeEnum.SearchTermMatchType + 27, // 25: google.ads.googleads.v22.common.Segments.match_type:type_name -> google.ads.googleads.v22.enums.MatchTypeEnum.MatchType + 28, // 26: google.ads.googleads.v22.common.Segments.slot:type_name -> google.ads.googleads.v22.enums.SlotEnum.Slot + 29, // 27: google.ads.googleads.v22.common.Segments.conversion_value_rule_primary_dimension:type_name -> google.ads.googleads.v22.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension + 30, // 28: google.ads.googleads.v22.common.Segments.sk_ad_network_user_type:type_name -> google.ads.googleads.v22.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType + 31, // 29: google.ads.googleads.v22.common.Segments.sk_ad_network_ad_event_type:type_name -> google.ads.googleads.v22.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType + 4, // 30: google.ads.googleads.v22.common.Segments.sk_ad_network_source_app:type_name -> google.ads.googleads.v22.common.SkAdNetworkSourceApp + 32, // 31: google.ads.googleads.v22.common.Segments.sk_ad_network_attribution_credit:type_name -> google.ads.googleads.v22.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit + 33, // 32: google.ads.googleads.v22.common.Segments.sk_ad_network_coarse_conversion_value:type_name -> google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue + 34, // 33: google.ads.googleads.v22.common.Segments.sk_ad_network_source_type:type_name -> google.ads.googleads.v22.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType + 3, // 34: google.ads.googleads.v22.common.Segments.asset_interaction_target:type_name -> google.ads.googleads.v22.common.AssetInteractionTarget + 35, // 35: google.ads.googleads.v22.common.Segments.new_versus_returning_customers:type_name -> google.ads.googleads.v22.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket + 36, // 36: google.ads.googleads.v22.common.Segments.adjusted_age_range:type_name -> google.ads.googleads.v22.enums.AgeRangeTypeEnum.AgeRangeType + 37, // 37: google.ads.googleads.v22.common.Segments.adjusted_gender:type_name -> google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + 38, // 38: google.ads.googleads.v22.common.Segments.search_term_match_source:type_name -> google.ads.googleads.v22.enums.SearchTermMatchSourceEnum.SearchTermMatchSource + 39, // 39: google.ads.googleads.v22.common.Segments.search_term_targeting_status:type_name -> google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus + 40, // 40: google.ads.googleads.v22.common.Keyword.info:type_name -> google.ads.googleads.v22.common.KeywordInfo + 41, // 41: google.ads.googleads.v22.common.BudgetCampaignAssociationStatus.status:type_name -> google.ads.googleads.v22.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus 42, // [42:42] is the sub-list for method output_type 42, // [42:42] is the sub-list for method input_type 42, // [42:42] is the sub-list for extension type_name @@ -2409,31 +2440,31 @@ var file_google_ads_googleads_v21_common_segments_proto_depIdxs = []int32{ 0, // [0:42] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_segments_proto_init() } -func file_google_ads_googleads_v21_common_segments_proto_init() { - if File_google_ads_googleads_v21_common_segments_proto != nil { +func init() { file_google_ads_googleads_v22_common_segments_proto_init() } +func file_google_ads_googleads_v22_common_segments_proto_init() { + if File_google_ads_googleads_v22_common_segments_proto != nil { return } - file_google_ads_googleads_v21_common_criteria_proto_init() - file_google_ads_googleads_v21_common_segments_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_segments_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_segments_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_segments_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_criteria_proto_init() + file_google_ads_googleads_v22_common_segments_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_segments_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_segments_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_segments_proto_msgTypes[4].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_segments_proto_rawDesc), len(file_google_ads_googleads_v21_common_segments_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_segments_proto_rawDesc), len(file_google_ads_googleads_v22_common_segments_proto_rawDesc)), NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_segments_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_segments_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_segments_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_segments_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_segments_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_segments_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_segments_proto = out.File - file_google_ads_googleads_v21_common_segments_proto_goTypes = nil - file_google_ads_googleads_v21_common_segments_proto_depIdxs = nil + File_google_ads_googleads_v22_common_segments_proto = out.File + file_google_ads_googleads_v22_common_segments_proto_goTypes = nil + file_google_ads_googleads_v22_common_segments_proto_depIdxs = nil } diff --git a/common/simulation.pb.go b/common/simulation.pb.go index 9c1de12d..c4a7d356 100644 --- a/common/simulation.pb.go +++ b/common/simulation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/simulation.proto +// source: google/ads/googleads/v22/common/simulation.proto package common @@ -46,7 +46,7 @@ type CpcBidSimulationPointList struct { func (x *CpcBidSimulationPointList) Reset() { *x = CpcBidSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -58,7 +58,7 @@ func (x *CpcBidSimulationPointList) String() string { func (*CpcBidSimulationPointList) ProtoMessage() {} func (x *CpcBidSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -71,7 +71,7 @@ func (x *CpcBidSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use CpcBidSimulationPointList.ProtoReflect.Descriptor instead. func (*CpcBidSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{0} } func (x *CpcBidSimulationPointList) GetPoints() []*CpcBidSimulationPoint { @@ -92,7 +92,7 @@ type CpvBidSimulationPointList struct { func (x *CpvBidSimulationPointList) Reset() { *x = CpvBidSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104,7 +104,7 @@ func (x *CpvBidSimulationPointList) String() string { func (*CpvBidSimulationPointList) ProtoMessage() {} func (x *CpvBidSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117,7 +117,7 @@ func (x *CpvBidSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use CpvBidSimulationPointList.ProtoReflect.Descriptor instead. func (*CpvBidSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{1} } func (x *CpvBidSimulationPointList) GetPoints() []*CpvBidSimulationPoint { @@ -138,7 +138,7 @@ type TargetCpaSimulationPointList struct { func (x *TargetCpaSimulationPointList) Reset() { *x = TargetCpaSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *TargetCpaSimulationPointList) String() string { func (*TargetCpaSimulationPointList) ProtoMessage() {} func (x *TargetCpaSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *TargetCpaSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpaSimulationPointList.ProtoReflect.Descriptor instead. func (*TargetCpaSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{2} } func (x *TargetCpaSimulationPointList) GetPoints() []*TargetCpaSimulationPoint { @@ -184,7 +184,7 @@ type TargetRoasSimulationPointList struct { func (x *TargetRoasSimulationPointList) Reset() { *x = TargetRoasSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -196,7 +196,7 @@ func (x *TargetRoasSimulationPointList) String() string { func (*TargetRoasSimulationPointList) ProtoMessage() {} func (x *TargetRoasSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -209,7 +209,7 @@ func (x *TargetRoasSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetRoasSimulationPointList.ProtoReflect.Descriptor instead. func (*TargetRoasSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{3} } func (x *TargetRoasSimulationPointList) GetPoints() []*TargetRoasSimulationPoint { @@ -230,7 +230,7 @@ type PercentCpcBidSimulationPointList struct { func (x *PercentCpcBidSimulationPointList) Reset() { *x = PercentCpcBidSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *PercentCpcBidSimulationPointList) String() string { func (*PercentCpcBidSimulationPointList) ProtoMessage() {} func (x *PercentCpcBidSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *PercentCpcBidSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use PercentCpcBidSimulationPointList.ProtoReflect.Descriptor instead. func (*PercentCpcBidSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{4} } func (x *PercentCpcBidSimulationPointList) GetPoints() []*PercentCpcBidSimulationPoint { @@ -276,7 +276,7 @@ type BudgetSimulationPointList struct { func (x *BudgetSimulationPointList) Reset() { *x = BudgetSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -288,7 +288,7 @@ func (x *BudgetSimulationPointList) String() string { func (*BudgetSimulationPointList) ProtoMessage() {} func (x *BudgetSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -301,7 +301,7 @@ func (x *BudgetSimulationPointList) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetSimulationPointList.ProtoReflect.Descriptor instead. func (*BudgetSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{5} } func (x *BudgetSimulationPointList) GetPoints() []*BudgetSimulationPoint { @@ -323,7 +323,7 @@ type TargetImpressionShareSimulationPointList struct { func (x *TargetImpressionShareSimulationPointList) Reset() { *x = TargetImpressionShareSimulationPointList{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -335,7 +335,7 @@ func (x *TargetImpressionShareSimulationPointList) String() string { func (*TargetImpressionShareSimulationPointList) ProtoMessage() {} func (x *TargetImpressionShareSimulationPointList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -348,7 +348,7 @@ func (x *TargetImpressionShareSimulationPointList) ProtoReflect() protoreflect.M // Deprecated: Use TargetImpressionShareSimulationPointList.ProtoReflect.Descriptor instead. func (*TargetImpressionShareSimulationPointList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{6} } func (x *TargetImpressionShareSimulationPointList) GetPoints() []*TargetImpressionShareSimulationPoint { @@ -393,7 +393,7 @@ type CpcBidSimulationPoint struct { func (x *CpcBidSimulationPoint) Reset() { *x = CpcBidSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -405,7 +405,7 @@ func (x *CpcBidSimulationPoint) String() string { func (*CpcBidSimulationPoint) ProtoMessage() {} func (x *CpcBidSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -418,7 +418,7 @@ func (x *CpcBidSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use CpcBidSimulationPoint.ProtoReflect.Descriptor instead. func (*CpcBidSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{7} } func (x *CpcBidSimulationPoint) GetRequiredBudgetAmountMicros() int64 { @@ -532,7 +532,7 @@ type CpvBidSimulationPoint struct { func (x *CpvBidSimulationPoint) Reset() { *x = CpvBidSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -544,7 +544,7 @@ func (x *CpvBidSimulationPoint) String() string { func (*CpvBidSimulationPoint) ProtoMessage() {} func (x *CpvBidSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -557,7 +557,7 @@ func (x *CpvBidSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use CpvBidSimulationPoint.ProtoReflect.Descriptor instead. func (*CpvBidSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{8} } func (x *CpvBidSimulationPoint) GetCpvBidMicros() int64 { @@ -630,7 +630,7 @@ type TargetCpaSimulationPoint struct { func (x *TargetCpaSimulationPoint) Reset() { *x = TargetCpaSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -642,7 +642,7 @@ func (x *TargetCpaSimulationPoint) String() string { func (*TargetCpaSimulationPoint) ProtoMessage() {} func (x *TargetCpaSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -655,7 +655,7 @@ func (x *TargetCpaSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetCpaSimulationPoint.ProtoReflect.Descriptor instead. func (*TargetCpaSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{9} } func (x *TargetCpaSimulationPoint) GetRequiredBudgetAmountMicros() int64 { @@ -802,7 +802,7 @@ type TargetRoasSimulationPoint struct { func (x *TargetRoasSimulationPoint) Reset() { *x = TargetRoasSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -814,7 +814,7 @@ func (x *TargetRoasSimulationPoint) String() string { func (*TargetRoasSimulationPoint) ProtoMessage() {} func (x *TargetRoasSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -827,7 +827,7 @@ func (x *TargetRoasSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetRoasSimulationPoint.ProtoReflect.Descriptor instead. func (*TargetRoasSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{10} } func (x *TargetRoasSimulationPoint) GetTargetRoas() float64 { @@ -912,7 +912,7 @@ type PercentCpcBidSimulationPoint struct { func (x *PercentCpcBidSimulationPoint) Reset() { *x = PercentCpcBidSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -924,7 +924,7 @@ func (x *PercentCpcBidSimulationPoint) String() string { func (*PercentCpcBidSimulationPoint) ProtoMessage() {} func (x *PercentCpcBidSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -937,7 +937,7 @@ func (x *PercentCpcBidSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use PercentCpcBidSimulationPoint.ProtoReflect.Descriptor instead. func (*PercentCpcBidSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{11} } func (x *PercentCpcBidSimulationPoint) GetPercentCpcBidMicros() int64 { @@ -1020,7 +1020,7 @@ type BudgetSimulationPoint struct { func (x *BudgetSimulationPoint) Reset() { *x = BudgetSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1032,7 +1032,7 @@ func (x *BudgetSimulationPoint) String() string { func (*BudgetSimulationPoint) ProtoMessage() {} func (x *BudgetSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1045,7 +1045,7 @@ func (x *BudgetSimulationPoint) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetSimulationPoint.ProtoReflect.Descriptor instead. func (*BudgetSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{12} } func (x *BudgetSimulationPoint) GetBudgetAmountMicros() int64 { @@ -1147,7 +1147,7 @@ type TargetImpressionShareSimulationPoint struct { func (x *TargetImpressionShareSimulationPoint) Reset() { *x = TargetImpressionShareSimulationPoint{} - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1159,7 +1159,7 @@ func (x *TargetImpressionShareSimulationPoint) String() string { func (*TargetImpressionShareSimulationPoint) ProtoMessage() {} func (x *TargetImpressionShareSimulationPoint) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_simulation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_simulation_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1172,7 +1172,7 @@ func (x *TargetImpressionShareSimulationPoint) ProtoReflect() protoreflect.Messa // Deprecated: Use TargetImpressionShareSimulationPoint.ProtoReflect.Descriptor instead. func (*TargetImpressionShareSimulationPoint) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP(), []int{13} } func (x *TargetImpressionShareSimulationPoint) GetTargetImpressionShareMicros() int64 { @@ -1245,40 +1245,40 @@ func (x *TargetImpressionShareSimulationPoint) GetAbsoluteTopImpressions() int64 return 0 } -var File_google_ads_googleads_v21_common_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_simulation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_simulation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1286,14 +1286,14 @@ var file_google_ads_googleads_v21_common_simulation_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x65, 0x72, 0x63, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1301,7 +1301,7 @@ var file_google_ads_googleads_v21_common_simulation_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1539,59 +1539,59 @@ var file_google_ads_googleads_v21_common_simulation_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x0f, 0x53, 0x69, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_simulation_proto_rawDescData []byte + file_google_ads_googleads_v22_common_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_simulation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_common_simulation_proto_rawDesc))) +func file_google_ads_googleads_v22_common_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_common_simulation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_simulation_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 14) -var file_google_ads_googleads_v21_common_simulation_proto_goTypes = []any{ - (*CpcBidSimulationPointList)(nil), // 0: google.ads.googleads.v21.common.CpcBidSimulationPointList - (*CpvBidSimulationPointList)(nil), // 1: google.ads.googleads.v21.common.CpvBidSimulationPointList - (*TargetCpaSimulationPointList)(nil), // 2: google.ads.googleads.v21.common.TargetCpaSimulationPointList - (*TargetRoasSimulationPointList)(nil), // 3: google.ads.googleads.v21.common.TargetRoasSimulationPointList - (*PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v21.common.PercentCpcBidSimulationPointList - (*BudgetSimulationPointList)(nil), // 5: google.ads.googleads.v21.common.BudgetSimulationPointList - (*TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v21.common.TargetImpressionShareSimulationPointList - (*CpcBidSimulationPoint)(nil), // 7: google.ads.googleads.v21.common.CpcBidSimulationPoint - (*CpvBidSimulationPoint)(nil), // 8: google.ads.googleads.v21.common.CpvBidSimulationPoint - (*TargetCpaSimulationPoint)(nil), // 9: google.ads.googleads.v21.common.TargetCpaSimulationPoint - (*TargetRoasSimulationPoint)(nil), // 10: google.ads.googleads.v21.common.TargetRoasSimulationPoint - (*PercentCpcBidSimulationPoint)(nil), // 11: google.ads.googleads.v21.common.PercentCpcBidSimulationPoint - (*BudgetSimulationPoint)(nil), // 12: google.ads.googleads.v21.common.BudgetSimulationPoint - (*TargetImpressionShareSimulationPoint)(nil), // 13: google.ads.googleads.v21.common.TargetImpressionShareSimulationPoint -} -var file_google_ads_googleads_v21_common_simulation_proto_depIdxs = []int32{ - 7, // 0: google.ads.googleads.v21.common.CpcBidSimulationPointList.points:type_name -> google.ads.googleads.v21.common.CpcBidSimulationPoint - 8, // 1: google.ads.googleads.v21.common.CpvBidSimulationPointList.points:type_name -> google.ads.googleads.v21.common.CpvBidSimulationPoint - 9, // 2: google.ads.googleads.v21.common.TargetCpaSimulationPointList.points:type_name -> google.ads.googleads.v21.common.TargetCpaSimulationPoint - 10, // 3: google.ads.googleads.v21.common.TargetRoasSimulationPointList.points:type_name -> google.ads.googleads.v21.common.TargetRoasSimulationPoint - 11, // 4: google.ads.googleads.v21.common.PercentCpcBidSimulationPointList.points:type_name -> google.ads.googleads.v21.common.PercentCpcBidSimulationPoint - 12, // 5: google.ads.googleads.v21.common.BudgetSimulationPointList.points:type_name -> google.ads.googleads.v21.common.BudgetSimulationPoint - 13, // 6: google.ads.googleads.v21.common.TargetImpressionShareSimulationPointList.points:type_name -> google.ads.googleads.v21.common.TargetImpressionShareSimulationPoint + return file_google_ads_googleads_v22_common_simulation_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 14) +var file_google_ads_googleads_v22_common_simulation_proto_goTypes = []any{ + (*CpcBidSimulationPointList)(nil), // 0: google.ads.googleads.v22.common.CpcBidSimulationPointList + (*CpvBidSimulationPointList)(nil), // 1: google.ads.googleads.v22.common.CpvBidSimulationPointList + (*TargetCpaSimulationPointList)(nil), // 2: google.ads.googleads.v22.common.TargetCpaSimulationPointList + (*TargetRoasSimulationPointList)(nil), // 3: google.ads.googleads.v22.common.TargetRoasSimulationPointList + (*PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v22.common.PercentCpcBidSimulationPointList + (*BudgetSimulationPointList)(nil), // 5: google.ads.googleads.v22.common.BudgetSimulationPointList + (*TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v22.common.TargetImpressionShareSimulationPointList + (*CpcBidSimulationPoint)(nil), // 7: google.ads.googleads.v22.common.CpcBidSimulationPoint + (*CpvBidSimulationPoint)(nil), // 8: google.ads.googleads.v22.common.CpvBidSimulationPoint + (*TargetCpaSimulationPoint)(nil), // 9: google.ads.googleads.v22.common.TargetCpaSimulationPoint + (*TargetRoasSimulationPoint)(nil), // 10: google.ads.googleads.v22.common.TargetRoasSimulationPoint + (*PercentCpcBidSimulationPoint)(nil), // 11: google.ads.googleads.v22.common.PercentCpcBidSimulationPoint + (*BudgetSimulationPoint)(nil), // 12: google.ads.googleads.v22.common.BudgetSimulationPoint + (*TargetImpressionShareSimulationPoint)(nil), // 13: google.ads.googleads.v22.common.TargetImpressionShareSimulationPoint +} +var file_google_ads_googleads_v22_common_simulation_proto_depIdxs = []int32{ + 7, // 0: google.ads.googleads.v22.common.CpcBidSimulationPointList.points:type_name -> google.ads.googleads.v22.common.CpcBidSimulationPoint + 8, // 1: google.ads.googleads.v22.common.CpvBidSimulationPointList.points:type_name -> google.ads.googleads.v22.common.CpvBidSimulationPoint + 9, // 2: google.ads.googleads.v22.common.TargetCpaSimulationPointList.points:type_name -> google.ads.googleads.v22.common.TargetCpaSimulationPoint + 10, // 3: google.ads.googleads.v22.common.TargetRoasSimulationPointList.points:type_name -> google.ads.googleads.v22.common.TargetRoasSimulationPoint + 11, // 4: google.ads.googleads.v22.common.PercentCpcBidSimulationPointList.points:type_name -> google.ads.googleads.v22.common.PercentCpcBidSimulationPoint + 12, // 5: google.ads.googleads.v22.common.BudgetSimulationPointList.points:type_name -> google.ads.googleads.v22.common.BudgetSimulationPoint + 13, // 6: google.ads.googleads.v22.common.TargetImpressionShareSimulationPointList.points:type_name -> google.ads.googleads.v22.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 @@ -1599,37 +1599,37 @@ var file_google_ads_googleads_v21_common_simulation_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_simulation_proto_init() } -func file_google_ads_googleads_v21_common_simulation_proto_init() { - if File_google_ads_googleads_v21_common_simulation_proto != nil { +func init() { file_google_ads_googleads_v22_common_simulation_proto_init() } +func file_google_ads_googleads_v22_common_simulation_proto_init() { + if File_google_ads_googleads_v22_common_simulation_proto != nil { return } - file_google_ads_googleads_v21_common_simulation_proto_msgTypes[7].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_simulation_proto_msgTypes[7].OneofWrappers = []any{ (*CpcBidSimulationPoint_CpcBidMicros)(nil), (*CpcBidSimulationPoint_CpcBidScalingModifier)(nil), } - file_google_ads_googleads_v21_common_simulation_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_simulation_proto_msgTypes[9].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_simulation_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_simulation_proto_msgTypes[9].OneofWrappers = []any{ (*TargetCpaSimulationPoint_TargetCpaMicros)(nil), (*TargetCpaSimulationPoint_TargetCpaScalingModifier)(nil), } - file_google_ads_googleads_v21_common_simulation_proto_msgTypes[10].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_simulation_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_simulation_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_simulation_proto_msgTypes[11].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_common_simulation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_common_simulation_proto_rawDesc)), NumEnums: 0, NumMessages: 14, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_simulation_proto = out.File - file_google_ads_googleads_v21_common_simulation_proto_goTypes = nil - file_google_ads_googleads_v21_common_simulation_proto_depIdxs = nil + File_google_ads_googleads_v22_common_simulation_proto = out.File + file_google_ads_googleads_v22_common_simulation_proto_goTypes = nil + file_google_ads_googleads_v22_common_simulation_proto_depIdxs = nil } diff --git a/common/tag_snippet.pb.go b/common/tag_snippet.pb.go index 67547c1d..d1ebfc97 100644 --- a/common/tag_snippet.pb.go +++ b/common/tag_snippet.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/tag_snippet.proto +// source: google/ads/googleads/v22/common/tag_snippet.proto package common @@ -40,10 +40,10 @@ const ( type TagSnippet struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.enums.TrackingCodeTypeEnum_TrackingCodeType" json:"type,omitempty"` + Type enums.TrackingCodeTypeEnum_TrackingCodeType `protobuf:"varint,1,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -56,7 +56,7 @@ type TagSnippet struct { func (x *TagSnippet) Reset() { *x = TagSnippet{} - mi := &file_google_ads_googleads_v21_common_tag_snippet_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_tag_snippet_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *TagSnippet) String() string { func (*TagSnippet) ProtoMessage() {} func (x *TagSnippet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_tag_snippet_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_tag_snippet_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *TagSnippet) ProtoReflect() protoreflect.Message { // Deprecated: Use TagSnippet.ProtoReflect.Descriptor instead. func (*TagSnippet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescGZIP(), []int{0} } func (x *TagSnippet) GetType() enums.TrackingCodeTypeEnum_TrackingCodeType { @@ -112,32 +112,32 @@ func (x *TagSnippet) GetEventSnippet() string { return "" } -var File_google_ads_googleads_v21_common_tag_snippet_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_tag_snippet_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_tag_snippet_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72, 0x61, 0x63, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x72, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,44 +151,44 @@ var file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescData []byte + file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc), len(file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc))) +func file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_tag_snippet_proto_rawDesc), len(file_google_ads_googleads_v22_common_tag_snippet_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_tag_snippet_proto_rawDescData + return file_google_ads_googleads_v22_common_tag_snippet_proto_rawDescData } -var file_google_ads_googleads_v21_common_tag_snippet_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_tag_snippet_proto_goTypes = []any{ - (*TagSnippet)(nil), // 0: google.ads.googleads.v21.common.TagSnippet - (enums.TrackingCodeTypeEnum_TrackingCodeType)(0), // 1: google.ads.googleads.v21.enums.TrackingCodeTypeEnum.TrackingCodeType - (enums.TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 2: google.ads.googleads.v21.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat +var file_google_ads_googleads_v22_common_tag_snippet_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_tag_snippet_proto_goTypes = []any{ + (*TagSnippet)(nil), // 0: google.ads.googleads.v22.common.TagSnippet + (enums.TrackingCodeTypeEnum_TrackingCodeType)(0), // 1: google.ads.googleads.v22.enums.TrackingCodeTypeEnum.TrackingCodeType + (enums.TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 2: google.ads.googleads.v22.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat } -var file_google_ads_googleads_v21_common_tag_snippet_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.TagSnippet.type:type_name -> google.ads.googleads.v21.enums.TrackingCodeTypeEnum.TrackingCodeType - 2, // 1: google.ads.googleads.v21.common.TagSnippet.page_format:type_name -> google.ads.googleads.v21.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat +var file_google_ads_googleads_v22_common_tag_snippet_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.TagSnippet.type:type_name -> google.ads.googleads.v22.enums.TrackingCodeTypeEnum.TrackingCodeType + 2, // 1: google.ads.googleads.v22.common.TagSnippet.page_format:type_name -> google.ads.googleads.v22.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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_common_tag_snippet_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_tag_snippet_proto_init() } -func file_google_ads_googleads_v21_common_tag_snippet_proto_init() { - if File_google_ads_googleads_v21_common_tag_snippet_proto != nil { +func init() { file_google_ads_googleads_v22_common_tag_snippet_proto_init() } +func file_google_ads_googleads_v22_common_tag_snippet_proto_init() { + if File_google_ads_googleads_v22_common_tag_snippet_proto != nil { return } - file_google_ads_googleads_v21_common_tag_snippet_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_tag_snippet_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc), len(file_google_ads_googleads_v21_common_tag_snippet_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_tag_snippet_proto_rawDesc), len(file_google_ads_googleads_v22_common_tag_snippet_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_tag_snippet_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_tag_snippet_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_tag_snippet_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_tag_snippet_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_tag_snippet_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_tag_snippet_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_tag_snippet_proto = out.File - file_google_ads_googleads_v21_common_tag_snippet_proto_goTypes = nil - file_google_ads_googleads_v21_common_tag_snippet_proto_depIdxs = nil + File_google_ads_googleads_v22_common_tag_snippet_proto = out.File + file_google_ads_googleads_v22_common_tag_snippet_proto_goTypes = nil + file_google_ads_googleads_v22_common_tag_snippet_proto_depIdxs = nil } diff --git a/common/targeting_setting.pb.go b/common/targeting_setting.pb.go index d6f3ad06..7eab7618 100644 --- a/common/targeting_setting.pb.go +++ b/common/targeting_setting.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/targeting_setting.proto +// source: google/ads/googleads/v22/common/targeting_setting.proto package common @@ -77,11 +77,11 @@ func (x TargetRestrictionOperation_Operator) String() string { } func (TargetRestrictionOperation_Operator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_common_targeting_setting_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_common_targeting_setting_proto_enumTypes[0].Descriptor() } func (TargetRestrictionOperation_Operator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_common_targeting_setting_proto_enumTypes[0] + return &file_google_ads_googleads_v22_common_targeting_setting_proto_enumTypes[0] } func (x TargetRestrictionOperation_Operator) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_common_targeting_setting_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescGZIP(), []int{2, 0} } // Settings for the targeting-related features, at the campaign and ad group @@ -112,7 +112,7 @@ type TargetingSetting struct { func (x *TargetingSetting) Reset() { *x = TargetingSetting{} - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *TargetingSetting) String() string { func (*TargetingSetting) ProtoMessage() {} func (x *TargetingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,7 +137,7 @@ func (x *TargetingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetingSetting.ProtoReflect.Descriptor instead. func (*TargetingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescGZIP(), []int{0} } func (x *TargetingSetting) GetTargetRestrictions() []*TargetRestriction { @@ -158,7 +158,7 @@ func (x *TargetingSetting) GetTargetRestrictionOperations() []*TargetRestriction type TargetRestriction struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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 @@ -173,7 +173,7 @@ type TargetRestriction struct { func (x *TargetRestriction) Reset() { *x = TargetRestriction{} - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185,7 +185,7 @@ func (x *TargetRestriction) String() string { func (*TargetRestriction) ProtoMessage() {} func (x *TargetRestriction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198,7 +198,7 @@ func (x *TargetRestriction) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetRestriction.ProtoReflect.Descriptor instead. func (*TargetRestriction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescGZIP(), []int{1} } func (x *TargetRestriction) GetTargetingDimension() enums.TargetingDimensionEnum_TargetingDimension { @@ -219,7 +219,7 @@ func (x *TargetRestriction) GetBidOnly() bool { type TargetRestrictionOperation struct { state protoimpl.MessageState `protogen:"open.v1"` // Type of list operation to perform. - Operator TargetRestrictionOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v21.common.TargetRestrictionOperation_Operator" json:"operator,omitempty"` + Operator TargetRestrictionOperation_Operator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -228,7 +228,7 @@ type TargetRestrictionOperation struct { func (x *TargetRestrictionOperation) Reset() { *x = TargetRestrictionOperation{} - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -240,7 +240,7 @@ func (x *TargetRestrictionOperation) String() string { func (*TargetRestrictionOperation) ProtoMessage() {} func (x *TargetRestrictionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -253,7 +253,7 @@ func (x *TargetRestrictionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetRestrictionOperation.ProtoReflect.Descriptor instead. func (*TargetRestrictionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescGZIP(), []int{2} } func (x *TargetRestrictionOperation) GetOperator() TargetRestrictionOperation_Operator { @@ -270,30 +270,30 @@ func (x *TargetRestrictionOperation) GetValue() *TargetRestriction { return nil } -var File_google_ads_googleads_v21_common_targeting_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_targeting_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_targeting_setting_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x38, 0x67, 0x6f, 0x6f, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -302,7 +302,7 @@ var file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -314,13 +314,13 @@ var file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -328,50 +328,50 @@ var file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescData []byte + file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc), len(file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc))) +func file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_targeting_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_targeting_setting_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_targeting_setting_proto_rawDescData + return file_google_ads_googleads_v22_common_targeting_setting_proto_rawDescData } -var file_google_ads_googleads_v21_common_targeting_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_common_targeting_setting_proto_goTypes = []any{ - (TargetRestrictionOperation_Operator)(0), // 0: google.ads.googleads.v21.common.TargetRestrictionOperation.Operator - (*TargetingSetting)(nil), // 1: google.ads.googleads.v21.common.TargetingSetting - (*TargetRestriction)(nil), // 2: google.ads.googleads.v21.common.TargetRestriction - (*TargetRestrictionOperation)(nil), // 3: google.ads.googleads.v21.common.TargetRestrictionOperation - (enums.TargetingDimensionEnum_TargetingDimension)(0), // 4: google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimension +var file_google_ads_googleads_v22_common_targeting_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_common_targeting_setting_proto_goTypes = []any{ + (TargetRestrictionOperation_Operator)(0), // 0: google.ads.googleads.v22.common.TargetRestrictionOperation.Operator + (*TargetingSetting)(nil), // 1: google.ads.googleads.v22.common.TargetingSetting + (*TargetRestriction)(nil), // 2: google.ads.googleads.v22.common.TargetRestriction + (*TargetRestrictionOperation)(nil), // 3: google.ads.googleads.v22.common.TargetRestrictionOperation + (enums.TargetingDimensionEnum_TargetingDimension)(0), // 4: google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimension } -var file_google_ads_googleads_v21_common_targeting_setting_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.common.TargetingSetting.target_restrictions:type_name -> google.ads.googleads.v21.common.TargetRestriction - 3, // 1: google.ads.googleads.v21.common.TargetingSetting.target_restriction_operations:type_name -> google.ads.googleads.v21.common.TargetRestrictionOperation - 4, // 2: google.ads.googleads.v21.common.TargetRestriction.targeting_dimension:type_name -> google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimension - 0, // 3: google.ads.googleads.v21.common.TargetRestrictionOperation.operator:type_name -> google.ads.googleads.v21.common.TargetRestrictionOperation.Operator - 2, // 4: google.ads.googleads.v21.common.TargetRestrictionOperation.value:type_name -> google.ads.googleads.v21.common.TargetRestriction +var file_google_ads_googleads_v22_common_targeting_setting_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.common.TargetingSetting.target_restrictions:type_name -> google.ads.googleads.v22.common.TargetRestriction + 3, // 1: google.ads.googleads.v22.common.TargetingSetting.target_restriction_operations:type_name -> google.ads.googleads.v22.common.TargetRestrictionOperation + 4, // 2: google.ads.googleads.v22.common.TargetRestriction.targeting_dimension:type_name -> google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimension + 0, // 3: google.ads.googleads.v22.common.TargetRestrictionOperation.operator:type_name -> google.ads.googleads.v22.common.TargetRestrictionOperation.Operator + 2, // 4: google.ads.googleads.v22.common.TargetRestrictionOperation.value:type_name -> google.ads.googleads.v22.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 @@ -379,28 +379,28 @@ var file_google_ads_googleads_v21_common_targeting_setting_proto_depIdxs = []int 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_targeting_setting_proto_init() } -func file_google_ads_googleads_v21_common_targeting_setting_proto_init() { - if File_google_ads_googleads_v21_common_targeting_setting_proto != nil { +func init() { file_google_ads_googleads_v22_common_targeting_setting_proto_init() } +func file_google_ads_googleads_v22_common_targeting_setting_proto_init() { + if File_google_ads_googleads_v22_common_targeting_setting_proto != nil { return } - file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc), len(file_google_ads_googleads_v21_common_targeting_setting_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_targeting_setting_proto_rawDesc), len(file_google_ads_googleads_v22_common_targeting_setting_proto_rawDesc)), NumEnums: 1, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_targeting_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_targeting_setting_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_common_targeting_setting_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_common_targeting_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_targeting_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_targeting_setting_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_common_targeting_setting_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_common_targeting_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_targeting_setting_proto = out.File - file_google_ads_googleads_v21_common_targeting_setting_proto_goTypes = nil - file_google_ads_googleads_v21_common_targeting_setting_proto_depIdxs = nil + File_google_ads_googleads_v22_common_targeting_setting_proto = out.File + file_google_ads_googleads_v22_common_targeting_setting_proto_goTypes = nil + file_google_ads_googleads_v22_common_targeting_setting_proto_depIdxs = nil } diff --git a/common/text_label.pb.go b/common/text_label.pb.go index dbe7acfb..109a0f09 100644 --- a/common/text_label.pb.go +++ b/common/text_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/text_label.proto +// source: google/ads/googleads/v22/common/text_label.proto package common @@ -51,7 +51,7 @@ type TextLabel struct { func (x *TextLabel) Reset() { *x = TextLabel{} - mi := &file_google_ads_googleads_v21_common_text_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_text_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *TextLabel) String() string { func (*TextLabel) ProtoMessage() {} func (x *TextLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_text_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_text_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *TextLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use TextLabel.ProtoReflect.Descriptor instead. func (*TextLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_text_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_text_label_proto_rawDescGZIP(), []int{0} } func (x *TextLabel) GetBackgroundColor() string { @@ -93,14 +93,14 @@ func (x *TextLabel) GetDescription() string { return "" } -var File_google_ads_googleads_v21_common_text_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_text_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_text_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_text_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -111,40 +111,40 @@ var file_google_ads_googleads_v21_common_text_label_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_text_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_text_label_proto_rawDescData []byte + file_google_ads_googleads_v22_common_text_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_text_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_text_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_text_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_text_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_text_label_proto_rawDesc), len(file_google_ads_googleads_v21_common_text_label_proto_rawDesc))) +func file_google_ads_googleads_v22_common_text_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_text_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_text_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_text_label_proto_rawDesc), len(file_google_ads_googleads_v22_common_text_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_text_label_proto_rawDescData + return file_google_ads_googleads_v22_common_text_label_proto_rawDescData } -var file_google_ads_googleads_v21_common_text_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_text_label_proto_goTypes = []any{ - (*TextLabel)(nil), // 0: google.ads.googleads.v21.common.TextLabel +var file_google_ads_googleads_v22_common_text_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_text_label_proto_goTypes = []any{ + (*TextLabel)(nil), // 0: google.ads.googleads.v22.common.TextLabel } -var file_google_ads_googleads_v21_common_text_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -152,27 +152,27 @@ var file_google_ads_googleads_v21_common_text_label_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_text_label_proto_init() } -func file_google_ads_googleads_v21_common_text_label_proto_init() { - if File_google_ads_googleads_v21_common_text_label_proto != nil { +func init() { file_google_ads_googleads_v22_common_text_label_proto_init() } +func file_google_ads_googleads_v22_common_text_label_proto_init() { + if File_google_ads_googleads_v22_common_text_label_proto != nil { return } - file_google_ads_googleads_v21_common_text_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_text_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_text_label_proto_rawDesc), len(file_google_ads_googleads_v21_common_text_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_text_label_proto_rawDesc), len(file_google_ads_googleads_v22_common_text_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_text_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_text_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_text_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_text_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_text_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_text_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_text_label_proto = out.File - file_google_ads_googleads_v21_common_text_label_proto_goTypes = nil - file_google_ads_googleads_v21_common_text_label_proto_depIdxs = nil + File_google_ads_googleads_v22_common_text_label_proto = out.File + file_google_ads_googleads_v22_common_text_label_proto_goTypes = nil + file_google_ads_googleads_v22_common_text_label_proto_depIdxs = nil } diff --git a/common/third_party_integration_partners.pb.go b/common/third_party_integration_partners.pb.go index b2ab97c4..8cdb1a62 100644 --- a/common/third_party_integration_partners.pb.go +++ b/common/third_party_integration_partners.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/third_party_integration_partners.proto +// source: google/ads/googleads/v22/common/third_party_integration_partners.proto package common @@ -37,7 +37,6 @@ const ( ) // Container for Customer level third party integration partners. -// Next Id = 5 type CustomerThirdPartyIntegrationPartners struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for YouTube viewability @@ -55,7 +54,7 @@ type CustomerThirdPartyIntegrationPartners struct { func (x *CustomerThirdPartyIntegrationPartners) Reset() { *x = CustomerThirdPartyIntegrationPartners{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +66,7 @@ func (x *CustomerThirdPartyIntegrationPartners) String() string { func (*CustomerThirdPartyIntegrationPartners) ProtoMessage() {} func (x *CustomerThirdPartyIntegrationPartners) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +79,7 @@ func (x *CustomerThirdPartyIntegrationPartners) ProtoReflect() protoreflect.Mess // Deprecated: Use CustomerThirdPartyIntegrationPartners.ProtoReflect.Descriptor instead. func (*CustomerThirdPartyIntegrationPartners) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{0} } func (x *CustomerThirdPartyIntegrationPartners) GetViewabilityIntegrationPartners() []*CustomerThirdPartyViewabilityIntegrationPartner { @@ -112,12 +111,11 @@ func (x *CustomerThirdPartyIntegrationPartners) GetReachIntegrationPartners() [] } // Container for third party viewability integration data for Customer. -// Next Id = 3 type CustomerThirdPartyViewabilityIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for YouTube viewability // verification. - ViewabilityIntegrationPartner enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner `protobuf:"varint,1,opt,name=viewability_integration_partner,json=viewabilityIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner" json:"viewability_integration_partner,omitempty"` + ViewabilityIntegrationPartner enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner `protobuf:"varint,1,opt,name=viewability_integration_partner,json=viewabilityIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner" json:"viewability_integration_partner,omitempty"` // If true, cost data can be shared with this vendor. AllowShareCost bool `protobuf:"varint,2,opt,name=allow_share_cost,json=allowShareCost,proto3" json:"allow_share_cost,omitempty"` unknownFields protoimpl.UnknownFields @@ -126,7 +124,7 @@ type CustomerThirdPartyViewabilityIntegrationPartner struct { func (x *CustomerThirdPartyViewabilityIntegrationPartner) Reset() { *x = CustomerThirdPartyViewabilityIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +136,7 @@ func (x *CustomerThirdPartyViewabilityIntegrationPartner) String() string { func (*CustomerThirdPartyViewabilityIntegrationPartner) ProtoMessage() {} func (x *CustomerThirdPartyViewabilityIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,7 +149,7 @@ func (x *CustomerThirdPartyViewabilityIntegrationPartner) ProtoReflect() protore // Deprecated: Use CustomerThirdPartyViewabilityIntegrationPartner.ProtoReflect.Descriptor instead. func (*CustomerThirdPartyViewabilityIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{1} } func (x *CustomerThirdPartyViewabilityIntegrationPartner) GetViewabilityIntegrationPartner() enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner { @@ -169,18 +167,17 @@ func (x *CustomerThirdPartyViewabilityIntegrationPartner) GetAllowShareCost() bo } // Container for third party brand safety integration data for Customer. -// Next Id = 2 type CustomerThirdPartyBrandSafetyIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for brand safety verification. - BrandSafetyIntegrationPartner enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner `protobuf:"varint,1,opt,name=brand_safety_integration_partner,json=brandSafetyIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner" json:"brand_safety_integration_partner,omitempty"` + BrandSafetyIntegrationPartner enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner `protobuf:"varint,1,opt,name=brand_safety_integration_partner,json=brandSafetyIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner" json:"brand_safety_integration_partner,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) Reset() { *x = CustomerThirdPartyBrandSafetyIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +189,7 @@ func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) String() string { func (*CustomerThirdPartyBrandSafetyIntegrationPartner) ProtoMessage() {} func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,7 +202,7 @@ func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) ProtoReflect() protore // Deprecated: Use CustomerThirdPartyBrandSafetyIntegrationPartner.ProtoReflect.Descriptor instead. func (*CustomerThirdPartyBrandSafetyIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{2} } func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) GetBrandSafetyIntegrationPartner() enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner { @@ -216,11 +213,10 @@ func (x *CustomerThirdPartyBrandSafetyIntegrationPartner) GetBrandSafetyIntegrat } // Container for third party Brand Lift integration data for Customer. -// Next Id = 3 type CustomerThirdPartyBrandLiftIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed Third Party integration partners for Brand Lift verification. - BrandLiftIntegrationPartner enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner `protobuf:"varint,1,opt,name=brand_lift_integration_partner,json=brandLiftIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner" json:"brand_lift_integration_partner,omitempty"` + BrandLiftIntegrationPartner enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner `protobuf:"varint,1,opt,name=brand_lift_integration_partner,json=brandLiftIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner" json:"brand_lift_integration_partner,omitempty"` // If true, cost data can be shared with this vendor. AllowShareCost bool `protobuf:"varint,2,opt,name=allow_share_cost,json=allowShareCost,proto3" json:"allow_share_cost,omitempty"` unknownFields protoimpl.UnknownFields @@ -229,7 +225,7 @@ type CustomerThirdPartyBrandLiftIntegrationPartner struct { func (x *CustomerThirdPartyBrandLiftIntegrationPartner) Reset() { *x = CustomerThirdPartyBrandLiftIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +237,7 @@ func (x *CustomerThirdPartyBrandLiftIntegrationPartner) String() string { func (*CustomerThirdPartyBrandLiftIntegrationPartner) ProtoMessage() {} func (x *CustomerThirdPartyBrandLiftIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -254,7 +250,7 @@ func (x *CustomerThirdPartyBrandLiftIntegrationPartner) ProtoReflect() protorefl // Deprecated: Use CustomerThirdPartyBrandLiftIntegrationPartner.ProtoReflect.Descriptor instead. func (*CustomerThirdPartyBrandLiftIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{3} } func (x *CustomerThirdPartyBrandLiftIntegrationPartner) GetBrandLiftIntegrationPartner() enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner { @@ -272,11 +268,10 @@ func (x *CustomerThirdPartyBrandLiftIntegrationPartner) GetAllowShareCost() bool } // Container for third party reach integration data for Customer. -// Next Id = 3 type CustomerThirdPartyReachIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed Third Party integration partners for reach verification. - ReachIntegrationPartner enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner `protobuf:"varint,1,opt,name=reach_integration_partner,json=reachIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner" json:"reach_integration_partner,omitempty"` + ReachIntegrationPartner enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner `protobuf:"varint,1,opt,name=reach_integration_partner,json=reachIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner" json:"reach_integration_partner,omitempty"` // If true, cost data can be shared with this vendor. AllowShareCost bool `protobuf:"varint,2,opt,name=allow_share_cost,json=allowShareCost,proto3" json:"allow_share_cost,omitempty"` unknownFields protoimpl.UnknownFields @@ -285,7 +280,7 @@ type CustomerThirdPartyReachIntegrationPartner struct { func (x *CustomerThirdPartyReachIntegrationPartner) Reset() { *x = CustomerThirdPartyReachIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -297,7 +292,7 @@ func (x *CustomerThirdPartyReachIntegrationPartner) String() string { func (*CustomerThirdPartyReachIntegrationPartner) ProtoMessage() {} func (x *CustomerThirdPartyReachIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -310,7 +305,7 @@ func (x *CustomerThirdPartyReachIntegrationPartner) ProtoReflect() protoreflect. // Deprecated: Use CustomerThirdPartyReachIntegrationPartner.ProtoReflect.Descriptor instead. func (*CustomerThirdPartyReachIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{4} } func (x *CustomerThirdPartyReachIntegrationPartner) GetReachIntegrationPartner() enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner { @@ -328,7 +323,6 @@ func (x *CustomerThirdPartyReachIntegrationPartner) GetAllowShareCost() bool { } // Container for Campaign level third party integration partners. -// Next Id = 5 type CampaignThirdPartyIntegrationPartners struct { state protoimpl.MessageState `protogen:"open.v1"` // Third party integration partners for YouTube viewability @@ -348,7 +342,7 @@ type CampaignThirdPartyIntegrationPartners struct { func (x *CampaignThirdPartyIntegrationPartners) Reset() { *x = CampaignThirdPartyIntegrationPartners{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -360,7 +354,7 @@ func (x *CampaignThirdPartyIntegrationPartners) String() string { func (*CampaignThirdPartyIntegrationPartners) ProtoMessage() {} func (x *CampaignThirdPartyIntegrationPartners) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -373,7 +367,7 @@ func (x *CampaignThirdPartyIntegrationPartners) ProtoReflect() protoreflect.Mess // Deprecated: Use CampaignThirdPartyIntegrationPartners.ProtoReflect.Descriptor instead. func (*CampaignThirdPartyIntegrationPartners) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{5} } func (x *CampaignThirdPartyIntegrationPartners) GetViewabilityIntegrationPartners() []*CampaignThirdPartyViewabilityIntegrationPartner { @@ -405,12 +399,11 @@ func (x *CampaignThirdPartyIntegrationPartners) GetReachIntegrationPartners() [] } // Container for third party viewability integration data for Campaign. -// Next Id = 4 type CampaignThirdPartyViewabilityIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for YouTube viewability // verification. - ViewabilityIntegrationPartner enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner `protobuf:"varint,1,opt,name=viewability_integration_partner,json=viewabilityIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner" json:"viewability_integration_partner,omitempty"` + ViewabilityIntegrationPartner enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner `protobuf:"varint,1,opt,name=viewability_integration_partner,json=viewabilityIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner" json:"viewability_integration_partner,omitempty"` // Third party partner data for YouTube viewability verification. This is // optional metadata for partners to join or attach data to Ads campaigns. ViewabilityIntegrationPartnerData *ThirdPartyIntegrationPartnerData `protobuf:"bytes,2,opt,name=viewability_integration_partner_data,json=viewabilityIntegrationPartnerData,proto3" json:"viewability_integration_partner_data,omitempty"` @@ -422,7 +415,7 @@ type CampaignThirdPartyViewabilityIntegrationPartner struct { func (x *CampaignThirdPartyViewabilityIntegrationPartner) Reset() { *x = CampaignThirdPartyViewabilityIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -434,7 +427,7 @@ func (x *CampaignThirdPartyViewabilityIntegrationPartner) String() string { func (*CampaignThirdPartyViewabilityIntegrationPartner) ProtoMessage() {} func (x *CampaignThirdPartyViewabilityIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -447,7 +440,7 @@ func (x *CampaignThirdPartyViewabilityIntegrationPartner) ProtoReflect() protore // Deprecated: Use CampaignThirdPartyViewabilityIntegrationPartner.ProtoReflect.Descriptor instead. func (*CampaignThirdPartyViewabilityIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{6} } func (x *CampaignThirdPartyViewabilityIntegrationPartner) GetViewabilityIntegrationPartner() enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner { @@ -472,11 +465,10 @@ func (x *CampaignThirdPartyViewabilityIntegrationPartner) GetShareCost() bool { } // Container for third party brand safety integration data for Campaign. -// Next Id = 3 type CampaignThirdPartyBrandSafetyIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for brand safety verification. - BrandSafetyIntegrationPartner enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner `protobuf:"varint,1,opt,name=brand_safety_integration_partner,json=brandSafetyIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner" json:"brand_safety_integration_partner,omitempty"` + BrandSafetyIntegrationPartner enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner `protobuf:"varint,1,opt,name=brand_safety_integration_partner,json=brandSafetyIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner" json:"brand_safety_integration_partner,omitempty"` // Third party partner data for YouTube brand safety verification. This is // optional metadata for partners to join or attach data to Ads campaigns. BrandSafetyIntegrationPartnerData *ThirdPartyIntegrationPartnerData `protobuf:"bytes,2,opt,name=brand_safety_integration_partner_data,json=brandSafetyIntegrationPartnerData,proto3" json:"brand_safety_integration_partner_data,omitempty"` @@ -486,7 +478,7 @@ type CampaignThirdPartyBrandSafetyIntegrationPartner struct { func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) Reset() { *x = CampaignThirdPartyBrandSafetyIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -498,7 +490,7 @@ func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) String() string { func (*CampaignThirdPartyBrandSafetyIntegrationPartner) ProtoMessage() {} func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -511,7 +503,7 @@ func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) ProtoReflect() protore // Deprecated: Use CampaignThirdPartyBrandSafetyIntegrationPartner.ProtoReflect.Descriptor instead. func (*CampaignThirdPartyBrandSafetyIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{7} } func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) GetBrandSafetyIntegrationPartner() enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner { @@ -529,11 +521,10 @@ func (x *CampaignThirdPartyBrandSafetyIntegrationPartner) GetBrandSafetyIntegrat } // Container for third party Brand Lift integration data for Campaign. -// Next Id = 4 type CampaignThirdPartyBrandLiftIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for Brand Lift verification. - BrandLiftIntegrationPartner enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner `protobuf:"varint,1,opt,name=brand_lift_integration_partner,json=brandLiftIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner" json:"brand_lift_integration_partner,omitempty"` + BrandLiftIntegrationPartner enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner `protobuf:"varint,1,opt,name=brand_lift_integration_partner,json=brandLiftIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner" json:"brand_lift_integration_partner,omitempty"` // Third party partner data for YouTube Brand Lift verification. This is // optional metadata for partners to join or attach data to Ads campaigns. BrandLiftIntegrationPartnerData *ThirdPartyIntegrationPartnerData `protobuf:"bytes,2,opt,name=brand_lift_integration_partner_data,json=brandLiftIntegrationPartnerData,proto3" json:"brand_lift_integration_partner_data,omitempty"` @@ -545,7 +536,7 @@ type CampaignThirdPartyBrandLiftIntegrationPartner struct { func (x *CampaignThirdPartyBrandLiftIntegrationPartner) Reset() { *x = CampaignThirdPartyBrandLiftIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -557,7 +548,7 @@ func (x *CampaignThirdPartyBrandLiftIntegrationPartner) String() string { func (*CampaignThirdPartyBrandLiftIntegrationPartner) ProtoMessage() {} func (x *CampaignThirdPartyBrandLiftIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -570,7 +561,7 @@ func (x *CampaignThirdPartyBrandLiftIntegrationPartner) ProtoReflect() protorefl // Deprecated: Use CampaignThirdPartyBrandLiftIntegrationPartner.ProtoReflect.Descriptor instead. func (*CampaignThirdPartyBrandLiftIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{8} } func (x *CampaignThirdPartyBrandLiftIntegrationPartner) GetBrandLiftIntegrationPartner() enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner { @@ -595,11 +586,10 @@ func (x *CampaignThirdPartyBrandLiftIntegrationPartner) GetShareCost() bool { } // Container for third party reach integration data for Campaign. -// Next Id = 4 type CampaignThirdPartyReachIntegrationPartner struct { state protoimpl.MessageState `protogen:"open.v1"` // Allowed third party integration partners for reach verification. - ReachIntegrationPartner enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner `protobuf:"varint,1,opt,name=reach_integration_partner,json=reachIntegrationPartner,proto3,enum=google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner" json:"reach_integration_partner,omitempty"` + ReachIntegrationPartner enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner `protobuf:"varint,1,opt,name=reach_integration_partner,json=reachIntegrationPartner,proto3,enum=google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner" json:"reach_integration_partner,omitempty"` // Third party partner data for YouTube Reach verification. This is // optional metadata for partners to join or attach data to Ads campaigns. ReachIntegrationPartnerData *ThirdPartyIntegrationPartnerData `protobuf:"bytes,2,opt,name=reach_integration_partner_data,json=reachIntegrationPartnerData,proto3" json:"reach_integration_partner_data,omitempty"` @@ -611,7 +601,7 @@ type CampaignThirdPartyReachIntegrationPartner struct { func (x *CampaignThirdPartyReachIntegrationPartner) Reset() { *x = CampaignThirdPartyReachIntegrationPartner{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -623,7 +613,7 @@ func (x *CampaignThirdPartyReachIntegrationPartner) String() string { func (*CampaignThirdPartyReachIntegrationPartner) ProtoMessage() {} func (x *CampaignThirdPartyReachIntegrationPartner) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -636,7 +626,7 @@ func (x *CampaignThirdPartyReachIntegrationPartner) ProtoReflect() protoreflect. // Deprecated: Use CampaignThirdPartyReachIntegrationPartner.ProtoReflect.Descriptor instead. func (*CampaignThirdPartyReachIntegrationPartner) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{9} } func (x *CampaignThirdPartyReachIntegrationPartner) GetReachIntegrationPartner() enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner { @@ -661,7 +651,6 @@ func (x *CampaignThirdPartyReachIntegrationPartner) GetShareCost() bool { } // Contains third party measurement partner related data for video campaigns. -// Next Id = 3 type ThirdPartyIntegrationPartnerData struct { state protoimpl.MessageState `protogen:"open.v1"` // The client ID that allows the measurement partner to join multiple @@ -676,7 +665,7 @@ type ThirdPartyIntegrationPartnerData struct { func (x *ThirdPartyIntegrationPartnerData) Reset() { *x = ThirdPartyIntegrationPartnerData{} - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -688,7 +677,7 @@ func (x *ThirdPartyIntegrationPartnerData) String() string { func (*ThirdPartyIntegrationPartnerData) ProtoMessage() {} func (x *ThirdPartyIntegrationPartnerData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -701,7 +690,7 @@ func (x *ThirdPartyIntegrationPartnerData) ProtoReflect() protoreflect.Message { // Deprecated: Use ThirdPartyIntegrationPartnerData.ProtoReflect.Descriptor instead. func (*ThirdPartyIntegrationPartnerData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP(), []int{10} } func (x *ThirdPartyIntegrationPartnerData) GetClientId() string { @@ -718,33 +707,33 @@ func (x *ThirdPartyIntegrationPartnerData) GetThirdPartyPlacementId() string { return "" } -var File_google_ads_googleads_v21_common_third_party_integration_partners_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_third_party_integration_partners_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x4f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x1a, 0x4f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x85, 0x05, 0x0a, 0x25, @@ -754,7 +743,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, @@ -764,7 +753,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x1c, 0x62, 0x72, @@ -774,7 +763,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x03, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x1e, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x53, @@ -783,7 +772,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x18, 0x72, 0x65, 0x61, 0x63, 0x68, @@ -795,7 +784,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, @@ -813,7 +802,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x66, 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, @@ -828,7 +817,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x69, 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, @@ -845,7 +834,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, @@ -861,7 +850,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x1e, 0x76, 0x69, 0x65, 0x77, @@ -870,7 +859,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x02, 0x20, 0x03, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, @@ -880,7 +869,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, @@ -889,7 +878,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x12, 0x88, 0x01, 0x0a, 0x1a, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x04, 0x20, 0x03, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, @@ -902,7 +891,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, @@ -914,7 +903,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x21, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, @@ -928,7 +917,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, @@ -940,7 +929,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x21, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, @@ -952,7 +941,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x1e, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x18, 0x01, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, @@ -964,7 +953,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x1f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, @@ -978,7 +967,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, @@ -988,7 +977,7 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x61, 0x74, 0x61, 0x52, 0x1b, 0x72, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, @@ -1004,75 +993,75 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0x01, 0x28, 0x09, 0x52, 0x15, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x64, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x42, 0x22, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescData []byte + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDesc), len(file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDesc))) +func file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDesc), len(file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_goTypes = []any{ - (*CustomerThirdPartyIntegrationPartners)(nil), // 0: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners - (*CustomerThirdPartyViewabilityIntegrationPartner)(nil), // 1: google.ads.googleads.v21.common.CustomerThirdPartyViewabilityIntegrationPartner - (*CustomerThirdPartyBrandSafetyIntegrationPartner)(nil), // 2: google.ads.googleads.v21.common.CustomerThirdPartyBrandSafetyIntegrationPartner - (*CustomerThirdPartyBrandLiftIntegrationPartner)(nil), // 3: google.ads.googleads.v21.common.CustomerThirdPartyBrandLiftIntegrationPartner - (*CustomerThirdPartyReachIntegrationPartner)(nil), // 4: google.ads.googleads.v21.common.CustomerThirdPartyReachIntegrationPartner - (*CampaignThirdPartyIntegrationPartners)(nil), // 5: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners - (*CampaignThirdPartyViewabilityIntegrationPartner)(nil), // 6: google.ads.googleads.v21.common.CampaignThirdPartyViewabilityIntegrationPartner - (*CampaignThirdPartyBrandSafetyIntegrationPartner)(nil), // 7: google.ads.googleads.v21.common.CampaignThirdPartyBrandSafetyIntegrationPartner - (*CampaignThirdPartyBrandLiftIntegrationPartner)(nil), // 8: google.ads.googleads.v21.common.CampaignThirdPartyBrandLiftIntegrationPartner - (*CampaignThirdPartyReachIntegrationPartner)(nil), // 9: google.ads.googleads.v21.common.CampaignThirdPartyReachIntegrationPartner - (*ThirdPartyIntegrationPartnerData)(nil), // 10: google.ads.googleads.v21.common.ThirdPartyIntegrationPartnerData - (enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner)(0), // 11: google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner - (enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner)(0), // 12: google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner - (enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner)(0), // 13: google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner - (enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner)(0), // 14: google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner -} -var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners.viewability_integration_partners:type_name -> google.ads.googleads.v21.common.CustomerThirdPartyViewabilityIntegrationPartner - 3, // 1: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners.brand_lift_integration_partners:type_name -> google.ads.googleads.v21.common.CustomerThirdPartyBrandLiftIntegrationPartner - 2, // 2: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners.brand_safety_integration_partners:type_name -> google.ads.googleads.v21.common.CustomerThirdPartyBrandSafetyIntegrationPartner - 4, // 3: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners.reach_integration_partners:type_name -> google.ads.googleads.v21.common.CustomerThirdPartyReachIntegrationPartner - 11, // 4: google.ads.googleads.v21.common.CustomerThirdPartyViewabilityIntegrationPartner.viewability_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner - 12, // 5: google.ads.googleads.v21.common.CustomerThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner - 13, // 6: google.ads.googleads.v21.common.CustomerThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner - 14, // 7: google.ads.googleads.v21.common.CustomerThirdPartyReachIntegrationPartner.reach_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner - 6, // 8: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners.viewability_integration_partners:type_name -> google.ads.googleads.v21.common.CampaignThirdPartyViewabilityIntegrationPartner - 8, // 9: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners.brand_lift_integration_partners:type_name -> google.ads.googleads.v21.common.CampaignThirdPartyBrandLiftIntegrationPartner - 7, // 10: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners.brand_safety_integration_partners:type_name -> google.ads.googleads.v21.common.CampaignThirdPartyBrandSafetyIntegrationPartner - 9, // 11: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners.reach_integration_partners:type_name -> google.ads.googleads.v21.common.CampaignThirdPartyReachIntegrationPartner - 11, // 12: google.ads.googleads.v21.common.CampaignThirdPartyViewabilityIntegrationPartner.viewability_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner - 10, // 13: google.ads.googleads.v21.common.CampaignThirdPartyViewabilityIntegrationPartner.viewability_integration_partner_data:type_name -> google.ads.googleads.v21.common.ThirdPartyIntegrationPartnerData - 12, // 14: google.ads.googleads.v21.common.CampaignThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner - 10, // 15: google.ads.googleads.v21.common.CampaignThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner_data:type_name -> google.ads.googleads.v21.common.ThirdPartyIntegrationPartnerData - 13, // 16: google.ads.googleads.v21.common.CampaignThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner - 10, // 17: google.ads.googleads.v21.common.CampaignThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner_data:type_name -> google.ads.googleads.v21.common.ThirdPartyIntegrationPartnerData - 14, // 18: google.ads.googleads.v21.common.CampaignThirdPartyReachIntegrationPartner.reach_integration_partner:type_name -> google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner - 10, // 19: google.ads.googleads.v21.common.CampaignThirdPartyReachIntegrationPartner.reach_integration_partner_data:type_name -> google.ads.googleads.v21.common.ThirdPartyIntegrationPartnerData + return file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes = make([]protoimpl.MessageInfo, 11) +var file_google_ads_googleads_v22_common_third_party_integration_partners_proto_goTypes = []any{ + (*CustomerThirdPartyIntegrationPartners)(nil), // 0: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners + (*CustomerThirdPartyViewabilityIntegrationPartner)(nil), // 1: google.ads.googleads.v22.common.CustomerThirdPartyViewabilityIntegrationPartner + (*CustomerThirdPartyBrandSafetyIntegrationPartner)(nil), // 2: google.ads.googleads.v22.common.CustomerThirdPartyBrandSafetyIntegrationPartner + (*CustomerThirdPartyBrandLiftIntegrationPartner)(nil), // 3: google.ads.googleads.v22.common.CustomerThirdPartyBrandLiftIntegrationPartner + (*CustomerThirdPartyReachIntegrationPartner)(nil), // 4: google.ads.googleads.v22.common.CustomerThirdPartyReachIntegrationPartner + (*CampaignThirdPartyIntegrationPartners)(nil), // 5: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners + (*CampaignThirdPartyViewabilityIntegrationPartner)(nil), // 6: google.ads.googleads.v22.common.CampaignThirdPartyViewabilityIntegrationPartner + (*CampaignThirdPartyBrandSafetyIntegrationPartner)(nil), // 7: google.ads.googleads.v22.common.CampaignThirdPartyBrandSafetyIntegrationPartner + (*CampaignThirdPartyBrandLiftIntegrationPartner)(nil), // 8: google.ads.googleads.v22.common.CampaignThirdPartyBrandLiftIntegrationPartner + (*CampaignThirdPartyReachIntegrationPartner)(nil), // 9: google.ads.googleads.v22.common.CampaignThirdPartyReachIntegrationPartner + (*ThirdPartyIntegrationPartnerData)(nil), // 10: google.ads.googleads.v22.common.ThirdPartyIntegrationPartnerData + (enums.ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner)(0), // 11: google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner + (enums.ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner)(0), // 12: google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner + (enums.ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner)(0), // 13: google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner + (enums.ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner)(0), // 14: google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner +} +var file_google_ads_googleads_v22_common_third_party_integration_partners_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners.viewability_integration_partners:type_name -> google.ads.googleads.v22.common.CustomerThirdPartyViewabilityIntegrationPartner + 3, // 1: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners.brand_lift_integration_partners:type_name -> google.ads.googleads.v22.common.CustomerThirdPartyBrandLiftIntegrationPartner + 2, // 2: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners.brand_safety_integration_partners:type_name -> google.ads.googleads.v22.common.CustomerThirdPartyBrandSafetyIntegrationPartner + 4, // 3: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners.reach_integration_partners:type_name -> google.ads.googleads.v22.common.CustomerThirdPartyReachIntegrationPartner + 11, // 4: google.ads.googleads.v22.common.CustomerThirdPartyViewabilityIntegrationPartner.viewability_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner + 12, // 5: google.ads.googleads.v22.common.CustomerThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner + 13, // 6: google.ads.googleads.v22.common.CustomerThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner + 14, // 7: google.ads.googleads.v22.common.CustomerThirdPartyReachIntegrationPartner.reach_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner + 6, // 8: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners.viewability_integration_partners:type_name -> google.ads.googleads.v22.common.CampaignThirdPartyViewabilityIntegrationPartner + 8, // 9: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners.brand_lift_integration_partners:type_name -> google.ads.googleads.v22.common.CampaignThirdPartyBrandLiftIntegrationPartner + 7, // 10: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners.brand_safety_integration_partners:type_name -> google.ads.googleads.v22.common.CampaignThirdPartyBrandSafetyIntegrationPartner + 9, // 11: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners.reach_integration_partners:type_name -> google.ads.googleads.v22.common.CampaignThirdPartyReachIntegrationPartner + 11, // 12: google.ads.googleads.v22.common.CampaignThirdPartyViewabilityIntegrationPartner.viewability_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner + 10, // 13: google.ads.googleads.v22.common.CampaignThirdPartyViewabilityIntegrationPartner.viewability_integration_partner_data:type_name -> google.ads.googleads.v22.common.ThirdPartyIntegrationPartnerData + 12, // 14: google.ads.googleads.v22.common.CampaignThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner + 10, // 15: google.ads.googleads.v22.common.CampaignThirdPartyBrandSafetyIntegrationPartner.brand_safety_integration_partner_data:type_name -> google.ads.googleads.v22.common.ThirdPartyIntegrationPartnerData + 13, // 16: google.ads.googleads.v22.common.CampaignThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner + 10, // 17: google.ads.googleads.v22.common.CampaignThirdPartyBrandLiftIntegrationPartner.brand_lift_integration_partner_data:type_name -> google.ads.googleads.v22.common.ThirdPartyIntegrationPartnerData + 14, // 18: google.ads.googleads.v22.common.CampaignThirdPartyReachIntegrationPartner.reach_integration_partner:type_name -> google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner + 10, // 19: google.ads.googleads.v22.common.CampaignThirdPartyReachIntegrationPartner.reach_integration_partner_data:type_name -> google.ads.googleads.v22.common.ThirdPartyIntegrationPartnerData 20, // [20:20] is the sub-list for method output_type 20, // [20:20] is the sub-list for method input_type 20, // [20:20] is the sub-list for extension type_name @@ -1080,26 +1069,26 @@ var file_google_ads_googleads_v21_common_third_party_integration_partners_proto_ 0, // [0:20] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_third_party_integration_partners_proto_init() } -func file_google_ads_googleads_v21_common_third_party_integration_partners_proto_init() { - if File_google_ads_googleads_v21_common_third_party_integration_partners_proto != nil { +func init() { file_google_ads_googleads_v22_common_third_party_integration_partners_proto_init() } +func file_google_ads_googleads_v22_common_third_party_integration_partners_proto_init() { + if File_google_ads_googleads_v22_common_third_party_integration_partners_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDesc), len(file_google_ads_googleads_v21_common_third_party_integration_partners_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDesc), len(file_google_ads_googleads_v22_common_third_party_integration_partners_proto_rawDesc)), NumEnums: 0, NumMessages: 11, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_third_party_integration_partners_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_third_party_integration_partners_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_third_party_integration_partners_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_third_party_integration_partners_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_third_party_integration_partners_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_third_party_integration_partners_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_third_party_integration_partners_proto = out.File - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_goTypes = nil - file_google_ads_googleads_v21_common_third_party_integration_partners_proto_depIdxs = nil + File_google_ads_googleads_v22_common_third_party_integration_partners_proto = out.File + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_goTypes = nil + file_google_ads_googleads_v22_common_third_party_integration_partners_proto_depIdxs = nil } diff --git a/common/url_collection.pb.go b/common/url_collection.pb.go index 1b7b3e03..5f8284c4 100644 --- a/common/url_collection.pb.go +++ b/common/url_collection.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/url_collection.proto +// source: google/ads/googleads/v22/common/url_collection.proto package common @@ -52,7 +52,7 @@ type UrlCollection struct { func (x *UrlCollection) Reset() { *x = UrlCollection{} - mi := &file_google_ads_googleads_v21_common_url_collection_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_url_collection_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *UrlCollection) String() string { func (*UrlCollection) ProtoMessage() {} func (x *UrlCollection) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_url_collection_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_url_collection_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *UrlCollection) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlCollection.ProtoReflect.Descriptor instead. func (*UrlCollection) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_url_collection_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_url_collection_proto_rawDescGZIP(), []int{0} } func (x *UrlCollection) GetUrlCollectionId() string { @@ -108,14 +108,14 @@ func (x *UrlCollection) GetTrackingUrlTemplate() string { return "" } -var File_google_ads_googleads_v21_common_url_collection_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_url_collection_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_url_collection_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_url_collection_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -133,40 +133,40 @@ var file_google_ads_googleads_v21_common_url_collection_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_url_collection_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_url_collection_proto_rawDescData []byte + file_google_ads_googleads_v22_common_url_collection_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_url_collection_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_url_collection_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_url_collection_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_url_collection_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_url_collection_proto_rawDesc), len(file_google_ads_googleads_v21_common_url_collection_proto_rawDesc))) +func file_google_ads_googleads_v22_common_url_collection_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_url_collection_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_url_collection_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_url_collection_proto_rawDesc), len(file_google_ads_googleads_v22_common_url_collection_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_url_collection_proto_rawDescData + return file_google_ads_googleads_v22_common_url_collection_proto_rawDescData } -var file_google_ads_googleads_v21_common_url_collection_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_url_collection_proto_goTypes = []any{ - (*UrlCollection)(nil), // 0: google.ads.googleads.v21.common.UrlCollection +var file_google_ads_googleads_v22_common_url_collection_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_url_collection_proto_goTypes = []any{ + (*UrlCollection)(nil), // 0: google.ads.googleads.v22.common.UrlCollection } -var file_google_ads_googleads_v21_common_url_collection_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -174,27 +174,27 @@ var file_google_ads_googleads_v21_common_url_collection_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_url_collection_proto_init() } -func file_google_ads_googleads_v21_common_url_collection_proto_init() { - if File_google_ads_googleads_v21_common_url_collection_proto != nil { +func init() { file_google_ads_googleads_v22_common_url_collection_proto_init() } +func file_google_ads_googleads_v22_common_url_collection_proto_init() { + if File_google_ads_googleads_v22_common_url_collection_proto != nil { return } - file_google_ads_googleads_v21_common_url_collection_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_url_collection_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_url_collection_proto_rawDesc), len(file_google_ads_googleads_v21_common_url_collection_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_url_collection_proto_rawDesc), len(file_google_ads_googleads_v22_common_url_collection_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_url_collection_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_url_collection_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_url_collection_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_url_collection_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_url_collection_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_url_collection_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_url_collection_proto = out.File - file_google_ads_googleads_v21_common_url_collection_proto_goTypes = nil - file_google_ads_googleads_v21_common_url_collection_proto_depIdxs = nil + File_google_ads_googleads_v22_common_url_collection_proto = out.File + file_google_ads_googleads_v22_common_url_collection_proto_goTypes = nil + file_google_ads_googleads_v22_common_url_collection_proto_depIdxs = nil } diff --git a/common/user_lists.pb.go b/common/user_lists.pb.go index 1b7d163b..006683c2 100644 --- a/common/user_lists.pb.go +++ b/common/user_lists.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/user_lists.proto +// source: google/ads/googleads/v22/common/user_lists.proto package common @@ -44,7 +44,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.v21.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.v22.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"` @@ -54,7 +54,7 @@ type LookalikeUserListInfo struct { func (x *LookalikeUserListInfo) Reset() { *x = LookalikeUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *LookalikeUserListInfo) String() string { func (*LookalikeUserListInfo) ProtoMessage() {} func (x *LookalikeUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *LookalikeUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LookalikeUserListInfo.ProtoReflect.Descriptor instead. func (*LookalikeUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{0} } func (x *LookalikeUserListInfo) GetSeedUserListIds() []int64 { @@ -115,7 +115,7 @@ type SimilarUserListInfo struct { func (x *SimilarUserListInfo) Reset() { *x = SimilarUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *SimilarUserListInfo) String() string { func (*SimilarUserListInfo) ProtoMessage() {} func (x *SimilarUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,7 +140,7 @@ func (x *SimilarUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SimilarUserListInfo.ProtoReflect.Descriptor instead. func (*SimilarUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{1} } func (x *SimilarUserListInfo) GetSeedUserList() string { @@ -167,17 +167,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType" json:"data_source_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CrmBasedUserListInfo) Reset() { *x = CrmBasedUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189,7 +189,7 @@ func (x *CrmBasedUserListInfo) String() string { func (*CrmBasedUserListInfo) ProtoMessage() {} func (x *CrmBasedUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202,7 +202,7 @@ func (x *CrmBasedUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use CrmBasedUserListInfo.ProtoReflect.Descriptor instead. func (*CrmBasedUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{2} } func (x *CrmBasedUserListInfo) GetAppId() string { @@ -237,7 +237,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.v21.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.v22.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"` @@ -247,7 +247,7 @@ type UserListRuleInfo struct { func (x *UserListRuleInfo) Reset() { *x = UserListRuleInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -259,7 +259,7 @@ func (x *UserListRuleInfo) String() string { func (*UserListRuleInfo) ProtoMessage() {} func (x *UserListRuleInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -272,7 +272,7 @@ func (x *UserListRuleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListRuleInfo.ProtoReflect.Descriptor instead. func (*UserListRuleInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{3} } func (x *UserListRuleInfo) GetRuleType() enums.UserListRuleTypeEnum_UserListRuleType { @@ -300,7 +300,7 @@ type UserListRuleItemGroupInfo struct { func (x *UserListRuleItemGroupInfo) Reset() { *x = UserListRuleItemGroupInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -312,7 +312,7 @@ func (x *UserListRuleItemGroupInfo) String() string { func (*UserListRuleItemGroupInfo) ProtoMessage() {} func (x *UserListRuleItemGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -325,7 +325,7 @@ func (x *UserListRuleItemGroupInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListRuleItemGroupInfo.ProtoReflect.Descriptor instead. func (*UserListRuleItemGroupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{4} } func (x *UserListRuleItemGroupInfo) GetRuleItems() []*UserListRuleItemInfo { @@ -361,7 +361,7 @@ type UserListRuleItemInfo struct { func (x *UserListRuleItemInfo) Reset() { *x = UserListRuleItemInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -373,7 +373,7 @@ func (x *UserListRuleItemInfo) String() string { func (*UserListRuleItemInfo) ProtoMessage() {} func (x *UserListRuleItemInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -386,7 +386,7 @@ func (x *UserListRuleItemInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListRuleItemInfo.ProtoReflect.Descriptor instead. func (*UserListRuleItemInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{5} } func (x *UserListRuleItemInfo) GetName() string { @@ -461,7 +461,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.v21.enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator" json:"operator,omitempty"` + Operator enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v22.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. @@ -476,7 +476,7 @@ type UserListDateRuleItemInfo struct { func (x *UserListDateRuleItemInfo) Reset() { *x = UserListDateRuleItemInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -488,7 +488,7 @@ func (x *UserListDateRuleItemInfo) String() string { func (*UserListDateRuleItemInfo) ProtoMessage() {} func (x *UserListDateRuleItemInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -501,7 +501,7 @@ func (x *UserListDateRuleItemInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListDateRuleItemInfo.ProtoReflect.Descriptor instead. func (*UserListDateRuleItemInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{6} } func (x *UserListDateRuleItemInfo) GetOperator() enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator { @@ -531,7 +531,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.v21.enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator" json:"operator,omitempty"` + Operator enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v22.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. @@ -542,7 +542,7 @@ type UserListNumberRuleItemInfo struct { func (x *UserListNumberRuleItemInfo) Reset() { *x = UserListNumberRuleItemInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -554,7 +554,7 @@ func (x *UserListNumberRuleItemInfo) String() string { func (*UserListNumberRuleItemInfo) ProtoMessage() {} func (x *UserListNumberRuleItemInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -567,7 +567,7 @@ func (x *UserListNumberRuleItemInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListNumberRuleItemInfo.ProtoReflect.Descriptor instead. func (*UserListNumberRuleItemInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{7} } func (x *UserListNumberRuleItemInfo) GetOperator() enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator { @@ -590,7 +590,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.v21.enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator" json:"operator,omitempty"` + Operator enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v22.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 @@ -602,7 +602,7 @@ type UserListStringRuleItemInfo struct { func (x *UserListStringRuleItemInfo) Reset() { *x = UserListStringRuleItemInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -614,7 +614,7 @@ func (x *UserListStringRuleItemInfo) String() string { func (*UserListStringRuleItemInfo) ProtoMessage() {} func (x *UserListStringRuleItemInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -627,7 +627,7 @@ func (x *UserListStringRuleItemInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListStringRuleItemInfo.ProtoReflect.Descriptor instead. func (*UserListStringRuleItemInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{8} } func (x *UserListStringRuleItemInfo) GetOperator() enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator { @@ -658,7 +658,7 @@ type FlexibleRuleOperandInfo struct { func (x *FlexibleRuleOperandInfo) Reset() { *x = FlexibleRuleOperandInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -670,7 +670,7 @@ func (x *FlexibleRuleOperandInfo) String() string { func (*FlexibleRuleOperandInfo) ProtoMessage() {} func (x *FlexibleRuleOperandInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -683,7 +683,7 @@ func (x *FlexibleRuleOperandInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FlexibleRuleOperandInfo.ProtoReflect.Descriptor instead. func (*FlexibleRuleOperandInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{9} } func (x *FlexibleRuleOperandInfo) GetRule() *UserListRuleInfo { @@ -710,7 +710,7 @@ func (x *FlexibleRuleOperandInfo) GetLookbackWindowDays() int64 { type FlexibleRuleUserListInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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. @@ -725,7 +725,7 @@ type FlexibleRuleUserListInfo struct { func (x *FlexibleRuleUserListInfo) Reset() { *x = FlexibleRuleUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -737,7 +737,7 @@ func (x *FlexibleRuleUserListInfo) String() string { func (*FlexibleRuleUserListInfo) ProtoMessage() {} func (x *FlexibleRuleUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -750,7 +750,7 @@ func (x *FlexibleRuleUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use FlexibleRuleUserListInfo.ProtoReflect.Descriptor instead. func (*FlexibleRuleUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{10} } func (x *FlexibleRuleUserListInfo) GetInclusiveRuleOperator() enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator { @@ -785,7 +785,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.v21.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.v22.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 @@ -800,7 +800,7 @@ type RuleBasedUserListInfo struct { func (x *RuleBasedUserListInfo) Reset() { *x = RuleBasedUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -812,7 +812,7 @@ func (x *RuleBasedUserListInfo) String() string { func (*RuleBasedUserListInfo) ProtoMessage() {} func (x *RuleBasedUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -825,7 +825,7 @@ func (x *RuleBasedUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use RuleBasedUserListInfo.ProtoReflect.Descriptor instead. func (*RuleBasedUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{11} } func (x *RuleBasedUserListInfo) GetPrepopulationStatus() enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus { @@ -857,7 +857,7 @@ type LogicalUserListInfo struct { func (x *LogicalUserListInfo) Reset() { *x = LogicalUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -869,7 +869,7 @@ func (x *LogicalUserListInfo) String() string { func (*LogicalUserListInfo) ProtoMessage() {} func (x *LogicalUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -882,7 +882,7 @@ func (x *LogicalUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LogicalUserListInfo.ProtoReflect.Descriptor instead. func (*LogicalUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{12} } func (x *LogicalUserListInfo) GetRules() []*UserListLogicalRuleInfo { @@ -897,7 +897,7 @@ func (x *LogicalUserListInfo) GetRules() []*UserListLogicalRuleInfo { type UserListLogicalRuleInfo struct { state protoimpl.MessageState `protogen:"open.v1"` // The logical operator of the rule. - Operator enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v21.enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator" json:"operator,omitempty"` + Operator enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator `protobuf:"varint,1,opt,name=operator,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -906,7 +906,7 @@ type UserListLogicalRuleInfo struct { func (x *UserListLogicalRuleInfo) Reset() { *x = UserListLogicalRuleInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -918,7 +918,7 @@ func (x *UserListLogicalRuleInfo) String() string { func (*UserListLogicalRuleInfo) ProtoMessage() {} func (x *UserListLogicalRuleInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -931,7 +931,7 @@ func (x *UserListLogicalRuleInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListLogicalRuleInfo.ProtoReflect.Descriptor instead. func (*UserListLogicalRuleInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{13} } func (x *UserListLogicalRuleInfo) GetOperator() enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator { @@ -959,7 +959,7 @@ type LogicalUserListOperandInfo struct { func (x *LogicalUserListOperandInfo) Reset() { *x = LogicalUserListOperandInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -971,7 +971,7 @@ func (x *LogicalUserListOperandInfo) String() string { func (*LogicalUserListOperandInfo) ProtoMessage() {} func (x *LogicalUserListOperandInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -984,7 +984,7 @@ func (x *LogicalUserListOperandInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use LogicalUserListOperandInfo.ProtoReflect.Descriptor instead. func (*LogicalUserListOperandInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{14} } func (x *LogicalUserListOperandInfo) GetUserList() string { @@ -1005,7 +1005,7 @@ type BasicUserListInfo struct { func (x *BasicUserListInfo) Reset() { *x = BasicUserListInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1017,7 +1017,7 @@ func (x *BasicUserListInfo) String() string { func (*BasicUserListInfo) ProtoMessage() {} func (x *BasicUserListInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1030,7 +1030,7 @@ func (x *BasicUserListInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use BasicUserListInfo.ProtoReflect.Descriptor instead. func (*BasicUserListInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{15} } func (x *BasicUserListInfo) GetActions() []*UserListActionInfo { @@ -1056,7 +1056,7 @@ type UserListActionInfo struct { func (x *UserListActionInfo) Reset() { *x = UserListActionInfo{} - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1068,7 +1068,7 @@ func (x *UserListActionInfo) String() string { func (*UserListActionInfo) ProtoMessage() {} func (x *UserListActionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1081,7 +1081,7 @@ func (x *UserListActionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListActionInfo.ProtoReflect.Descriptor instead. func (*UserListActionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP(), []int{16} } func (x *UserListActionInfo) GetUserListAction() isUserListActionInfo_UserListAction { @@ -1127,55 +1127,55 @@ func (*UserListActionInfo_ConversionAction) isUserListActionInfo_UserListAction( func (*UserListActionInfo_RemarketingAction) isUserListActionInfo_UserListAction() {} -var File_google_ads_googleads_v21_common_user_lists_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_user_lists_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_user_lists_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x6f, 0x6b, 0x61, 0x6c, 0x69, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -1185,7 +1185,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1204,7 +1204,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1213,7 +1213,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x76, 0x32, 0x32, 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, @@ -1222,14 +1222,14 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1237,7 +1237,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1246,20 +1246,20 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1268,7 +1268,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1284,7 +1284,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, + 0x32, 0x32, 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, @@ -1296,7 +1296,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1308,7 +1308,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, + 0x32, 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, @@ -1320,7 +1320,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1329,14 +1329,14 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x6c, 0x65, 0x78, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -1344,7 +1344,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1353,7 +1353,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1361,14 +1361,14 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x76, 0x32, 0x32, 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, @@ -1376,7 +1376,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, + 0x32, 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, @@ -1387,7 +1387,7 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1400,88 +1400,88 @@ var file_google_ads_googleads_v21_common_user_lists_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xa2, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_user_lists_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_user_lists_proto_rawDescData []byte + file_google_ads_googleads_v22_common_user_lists_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_user_lists_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_user_lists_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_user_lists_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_user_lists_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_user_lists_proto_rawDesc), len(file_google_ads_googleads_v21_common_user_lists_proto_rawDesc))) +func file_google_ads_googleads_v22_common_user_lists_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_user_lists_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_user_lists_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_user_lists_proto_rawDesc), len(file_google_ads_googleads_v22_common_user_lists_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_user_lists_proto_rawDescData -} - -var file_google_ads_googleads_v21_common_user_lists_proto_msgTypes = make([]protoimpl.MessageInfo, 17) -var file_google_ads_googleads_v21_common_user_lists_proto_goTypes = []any{ - (*LookalikeUserListInfo)(nil), // 0: google.ads.googleads.v21.common.LookalikeUserListInfo - (*SimilarUserListInfo)(nil), // 1: google.ads.googleads.v21.common.SimilarUserListInfo - (*CrmBasedUserListInfo)(nil), // 2: google.ads.googleads.v21.common.CrmBasedUserListInfo - (*UserListRuleInfo)(nil), // 3: google.ads.googleads.v21.common.UserListRuleInfo - (*UserListRuleItemGroupInfo)(nil), // 4: google.ads.googleads.v21.common.UserListRuleItemGroupInfo - (*UserListRuleItemInfo)(nil), // 5: google.ads.googleads.v21.common.UserListRuleItemInfo - (*UserListDateRuleItemInfo)(nil), // 6: google.ads.googleads.v21.common.UserListDateRuleItemInfo - (*UserListNumberRuleItemInfo)(nil), // 7: google.ads.googleads.v21.common.UserListNumberRuleItemInfo - (*UserListStringRuleItemInfo)(nil), // 8: google.ads.googleads.v21.common.UserListStringRuleItemInfo - (*FlexibleRuleOperandInfo)(nil), // 9: google.ads.googleads.v21.common.FlexibleRuleOperandInfo - (*FlexibleRuleUserListInfo)(nil), // 10: google.ads.googleads.v21.common.FlexibleRuleUserListInfo - (*RuleBasedUserListInfo)(nil), // 11: google.ads.googleads.v21.common.RuleBasedUserListInfo - (*LogicalUserListInfo)(nil), // 12: google.ads.googleads.v21.common.LogicalUserListInfo - (*UserListLogicalRuleInfo)(nil), // 13: google.ads.googleads.v21.common.UserListLogicalRuleInfo - (*LogicalUserListOperandInfo)(nil), // 14: google.ads.googleads.v21.common.LogicalUserListOperandInfo - (*BasicUserListInfo)(nil), // 15: google.ads.googleads.v21.common.BasicUserListInfo - (*UserListActionInfo)(nil), // 16: google.ads.googleads.v21.common.UserListActionInfo - (enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 17: google.ads.googleads.v21.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel - (enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 18: google.ads.googleads.v21.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType - (enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 19: google.ads.googleads.v21.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType - (enums.UserListRuleTypeEnum_UserListRuleType)(0), // 20: google.ads.googleads.v21.enums.UserListRuleTypeEnum.UserListRuleType - (enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 21: google.ads.googleads.v21.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator - (enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 22: google.ads.googleads.v21.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator - (enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 23: google.ads.googleads.v21.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator - (enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 24: google.ads.googleads.v21.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator - (enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 25: google.ads.googleads.v21.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus - (enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 26: google.ads.googleads.v21.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator -} -var file_google_ads_googleads_v21_common_user_lists_proto_depIdxs = []int32{ - 17, // 0: google.ads.googleads.v21.common.LookalikeUserListInfo.expansion_level:type_name -> google.ads.googleads.v21.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel - 18, // 1: google.ads.googleads.v21.common.CrmBasedUserListInfo.upload_key_type:type_name -> google.ads.googleads.v21.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType - 19, // 2: google.ads.googleads.v21.common.CrmBasedUserListInfo.data_source_type:type_name -> google.ads.googleads.v21.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType - 20, // 3: google.ads.googleads.v21.common.UserListRuleInfo.rule_type:type_name -> google.ads.googleads.v21.enums.UserListRuleTypeEnum.UserListRuleType - 4, // 4: google.ads.googleads.v21.common.UserListRuleInfo.rule_item_groups:type_name -> google.ads.googleads.v21.common.UserListRuleItemGroupInfo - 5, // 5: google.ads.googleads.v21.common.UserListRuleItemGroupInfo.rule_items:type_name -> google.ads.googleads.v21.common.UserListRuleItemInfo - 7, // 6: google.ads.googleads.v21.common.UserListRuleItemInfo.number_rule_item:type_name -> google.ads.googleads.v21.common.UserListNumberRuleItemInfo - 8, // 7: google.ads.googleads.v21.common.UserListRuleItemInfo.string_rule_item:type_name -> google.ads.googleads.v21.common.UserListStringRuleItemInfo - 6, // 8: google.ads.googleads.v21.common.UserListRuleItemInfo.date_rule_item:type_name -> google.ads.googleads.v21.common.UserListDateRuleItemInfo - 21, // 9: google.ads.googleads.v21.common.UserListDateRuleItemInfo.operator:type_name -> google.ads.googleads.v21.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator - 22, // 10: google.ads.googleads.v21.common.UserListNumberRuleItemInfo.operator:type_name -> google.ads.googleads.v21.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator - 23, // 11: google.ads.googleads.v21.common.UserListStringRuleItemInfo.operator:type_name -> google.ads.googleads.v21.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator - 3, // 12: google.ads.googleads.v21.common.FlexibleRuleOperandInfo.rule:type_name -> google.ads.googleads.v21.common.UserListRuleInfo - 24, // 13: google.ads.googleads.v21.common.FlexibleRuleUserListInfo.inclusive_rule_operator:type_name -> google.ads.googleads.v21.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator - 9, // 14: google.ads.googleads.v21.common.FlexibleRuleUserListInfo.inclusive_operands:type_name -> google.ads.googleads.v21.common.FlexibleRuleOperandInfo - 9, // 15: google.ads.googleads.v21.common.FlexibleRuleUserListInfo.exclusive_operands:type_name -> google.ads.googleads.v21.common.FlexibleRuleOperandInfo - 25, // 16: google.ads.googleads.v21.common.RuleBasedUserListInfo.prepopulation_status:type_name -> google.ads.googleads.v21.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus - 10, // 17: google.ads.googleads.v21.common.RuleBasedUserListInfo.flexible_rule_user_list:type_name -> google.ads.googleads.v21.common.FlexibleRuleUserListInfo - 13, // 18: google.ads.googleads.v21.common.LogicalUserListInfo.rules:type_name -> google.ads.googleads.v21.common.UserListLogicalRuleInfo - 26, // 19: google.ads.googleads.v21.common.UserListLogicalRuleInfo.operator:type_name -> google.ads.googleads.v21.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator - 14, // 20: google.ads.googleads.v21.common.UserListLogicalRuleInfo.rule_operands:type_name -> google.ads.googleads.v21.common.LogicalUserListOperandInfo - 16, // 21: google.ads.googleads.v21.common.BasicUserListInfo.actions:type_name -> google.ads.googleads.v21.common.UserListActionInfo + return file_google_ads_googleads_v22_common_user_lists_proto_rawDescData +} + +var file_google_ads_googleads_v22_common_user_lists_proto_msgTypes = make([]protoimpl.MessageInfo, 17) +var file_google_ads_googleads_v22_common_user_lists_proto_goTypes = []any{ + (*LookalikeUserListInfo)(nil), // 0: google.ads.googleads.v22.common.LookalikeUserListInfo + (*SimilarUserListInfo)(nil), // 1: google.ads.googleads.v22.common.SimilarUserListInfo + (*CrmBasedUserListInfo)(nil), // 2: google.ads.googleads.v22.common.CrmBasedUserListInfo + (*UserListRuleInfo)(nil), // 3: google.ads.googleads.v22.common.UserListRuleInfo + (*UserListRuleItemGroupInfo)(nil), // 4: google.ads.googleads.v22.common.UserListRuleItemGroupInfo + (*UserListRuleItemInfo)(nil), // 5: google.ads.googleads.v22.common.UserListRuleItemInfo + (*UserListDateRuleItemInfo)(nil), // 6: google.ads.googleads.v22.common.UserListDateRuleItemInfo + (*UserListNumberRuleItemInfo)(nil), // 7: google.ads.googleads.v22.common.UserListNumberRuleItemInfo + (*UserListStringRuleItemInfo)(nil), // 8: google.ads.googleads.v22.common.UserListStringRuleItemInfo + (*FlexibleRuleOperandInfo)(nil), // 9: google.ads.googleads.v22.common.FlexibleRuleOperandInfo + (*FlexibleRuleUserListInfo)(nil), // 10: google.ads.googleads.v22.common.FlexibleRuleUserListInfo + (*RuleBasedUserListInfo)(nil), // 11: google.ads.googleads.v22.common.RuleBasedUserListInfo + (*LogicalUserListInfo)(nil), // 12: google.ads.googleads.v22.common.LogicalUserListInfo + (*UserListLogicalRuleInfo)(nil), // 13: google.ads.googleads.v22.common.UserListLogicalRuleInfo + (*LogicalUserListOperandInfo)(nil), // 14: google.ads.googleads.v22.common.LogicalUserListOperandInfo + (*BasicUserListInfo)(nil), // 15: google.ads.googleads.v22.common.BasicUserListInfo + (*UserListActionInfo)(nil), // 16: google.ads.googleads.v22.common.UserListActionInfo + (enums.LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 17: google.ads.googleads.v22.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel + (enums.CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 18: google.ads.googleads.v22.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType + (enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 19: google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType + (enums.UserListRuleTypeEnum_UserListRuleType)(0), // 20: google.ads.googleads.v22.enums.UserListRuleTypeEnum.UserListRuleType + (enums.UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 21: google.ads.googleads.v22.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator + (enums.UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 22: google.ads.googleads.v22.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator + (enums.UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 23: google.ads.googleads.v22.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator + (enums.UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 24: google.ads.googleads.v22.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator + (enums.UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 25: google.ads.googleads.v22.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus + (enums.UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 26: google.ads.googleads.v22.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator +} +var file_google_ads_googleads_v22_common_user_lists_proto_depIdxs = []int32{ + 17, // 0: google.ads.googleads.v22.common.LookalikeUserListInfo.expansion_level:type_name -> google.ads.googleads.v22.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel + 18, // 1: google.ads.googleads.v22.common.CrmBasedUserListInfo.upload_key_type:type_name -> google.ads.googleads.v22.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType + 19, // 2: google.ads.googleads.v22.common.CrmBasedUserListInfo.data_source_type:type_name -> google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType + 20, // 3: google.ads.googleads.v22.common.UserListRuleInfo.rule_type:type_name -> google.ads.googleads.v22.enums.UserListRuleTypeEnum.UserListRuleType + 4, // 4: google.ads.googleads.v22.common.UserListRuleInfo.rule_item_groups:type_name -> google.ads.googleads.v22.common.UserListRuleItemGroupInfo + 5, // 5: google.ads.googleads.v22.common.UserListRuleItemGroupInfo.rule_items:type_name -> google.ads.googleads.v22.common.UserListRuleItemInfo + 7, // 6: google.ads.googleads.v22.common.UserListRuleItemInfo.number_rule_item:type_name -> google.ads.googleads.v22.common.UserListNumberRuleItemInfo + 8, // 7: google.ads.googleads.v22.common.UserListRuleItemInfo.string_rule_item:type_name -> google.ads.googleads.v22.common.UserListStringRuleItemInfo + 6, // 8: google.ads.googleads.v22.common.UserListRuleItemInfo.date_rule_item:type_name -> google.ads.googleads.v22.common.UserListDateRuleItemInfo + 21, // 9: google.ads.googleads.v22.common.UserListDateRuleItemInfo.operator:type_name -> google.ads.googleads.v22.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator + 22, // 10: google.ads.googleads.v22.common.UserListNumberRuleItemInfo.operator:type_name -> google.ads.googleads.v22.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator + 23, // 11: google.ads.googleads.v22.common.UserListStringRuleItemInfo.operator:type_name -> google.ads.googleads.v22.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator + 3, // 12: google.ads.googleads.v22.common.FlexibleRuleOperandInfo.rule:type_name -> google.ads.googleads.v22.common.UserListRuleInfo + 24, // 13: google.ads.googleads.v22.common.FlexibleRuleUserListInfo.inclusive_rule_operator:type_name -> google.ads.googleads.v22.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator + 9, // 14: google.ads.googleads.v22.common.FlexibleRuleUserListInfo.inclusive_operands:type_name -> google.ads.googleads.v22.common.FlexibleRuleOperandInfo + 9, // 15: google.ads.googleads.v22.common.FlexibleRuleUserListInfo.exclusive_operands:type_name -> google.ads.googleads.v22.common.FlexibleRuleOperandInfo + 25, // 16: google.ads.googleads.v22.common.RuleBasedUserListInfo.prepopulation_status:type_name -> google.ads.googleads.v22.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus + 10, // 17: google.ads.googleads.v22.common.RuleBasedUserListInfo.flexible_rule_user_list:type_name -> google.ads.googleads.v22.common.FlexibleRuleUserListInfo + 13, // 18: google.ads.googleads.v22.common.LogicalUserListInfo.rules:type_name -> google.ads.googleads.v22.common.UserListLogicalRuleInfo + 26, // 19: google.ads.googleads.v22.common.UserListLogicalRuleInfo.operator:type_name -> google.ads.googleads.v22.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator + 14, // 20: google.ads.googleads.v22.common.UserListLogicalRuleInfo.rule_operands:type_name -> google.ads.googleads.v22.common.LogicalUserListOperandInfo + 16, // 21: google.ads.googleads.v22.common.BasicUserListInfo.actions:type_name -> google.ads.googleads.v22.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 @@ -1489,24 +1489,24 @@ var file_google_ads_googleads_v21_common_user_lists_proto_depIdxs = []int32{ 0, // [0:22] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_user_lists_proto_init() } -func file_google_ads_googleads_v21_common_user_lists_proto_init() { - if File_google_ads_googleads_v21_common_user_lists_proto != nil { +func init() { file_google_ads_googleads_v22_common_user_lists_proto_init() } +func file_google_ads_googleads_v22_common_user_lists_proto_init() { + if File_google_ads_googleads_v22_common_user_lists_proto != nil { return } - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[5].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[5].OneofWrappers = []any{ (*UserListRuleItemInfo_NumberRuleItem)(nil), (*UserListRuleItemInfo_StringRuleItem)(nil), (*UserListRuleItemInfo_DateRuleItem)(nil), } - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[14].OneofWrappers = []any{} - file_google_ads_googleads_v21_common_user_lists_proto_msgTypes[16].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_common_user_lists_proto_msgTypes[16].OneofWrappers = []any{ (*UserListActionInfo_ConversionAction)(nil), (*UserListActionInfo_RemarketingAction)(nil), } @@ -1514,17 +1514,17 @@ func file_google_ads_googleads_v21_common_user_lists_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_user_lists_proto_rawDesc), len(file_google_ads_googleads_v21_common_user_lists_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_user_lists_proto_rawDesc), len(file_google_ads_googleads_v22_common_user_lists_proto_rawDesc)), NumEnums: 0, NumMessages: 17, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_user_lists_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_user_lists_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_user_lists_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_user_lists_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_user_lists_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_user_lists_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_user_lists_proto = out.File - file_google_ads_googleads_v21_common_user_lists_proto_goTypes = nil - file_google_ads_googleads_v21_common_user_lists_proto_depIdxs = nil + File_google_ads_googleads_v22_common_user_lists_proto = out.File + file_google_ads_googleads_v22_common_user_lists_proto_goTypes = nil + file_google_ads_googleads_v22_common_user_lists_proto_depIdxs = nil } diff --git a/common/value.pb.go b/common/value.pb.go index 99cce856..207f7149 100644 --- a/common/value.pb.go +++ b/common/value.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/common/value.proto +// source: google/ads/googleads/v22/common/value.proto package common @@ -54,7 +54,7 @@ type Value struct { func (x *Value) Reset() { *x = Value{} - mi := &file_google_ads_googleads_v21_common_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_value_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *Value) String() string { func (*Value) ProtoMessage() {} func (x *Value) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_common_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_common_value_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *Value) ProtoReflect() protoreflect.Message { // Deprecated: Use Value.ProtoReflect.Descriptor instead. func (*Value) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_common_value_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_common_value_proto_rawDescGZIP(), []int{0} } func (x *Value) GetValue() isValue_Value { @@ -173,14 +173,14 @@ func (*Value_DoubleValue) isValue_Value() {} func (*Value_StringValue) isValue_Value() {} -var File_google_ads_googleads_v21_common_value_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_common_value_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_common_value_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_common_value_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x22, 0xc7, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -195,39 +195,39 @@ var file_google_ads_googleads_v21_common_value_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x3b, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x43, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_common_value_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_common_value_proto_rawDescData []byte + file_google_ads_googleads_v22_common_value_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_common_value_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_common_value_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_common_value_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_common_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_value_proto_rawDesc), len(file_google_ads_googleads_v21_common_value_proto_rawDesc))) +func file_google_ads_googleads_v22_common_value_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_common_value_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_common_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_value_proto_rawDesc), len(file_google_ads_googleads_v22_common_value_proto_rawDesc))) }) - return file_google_ads_googleads_v21_common_value_proto_rawDescData + return file_google_ads_googleads_v22_common_value_proto_rawDescData } -var file_google_ads_googleads_v21_common_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_common_value_proto_goTypes = []any{ - (*Value)(nil), // 0: google.ads.googleads.v21.common.Value +var file_google_ads_googleads_v22_common_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_common_value_proto_goTypes = []any{ + (*Value)(nil), // 0: google.ads.googleads.v22.common.Value } -var file_google_ads_googleads_v21_common_value_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -235,12 +235,12 @@ var file_google_ads_googleads_v21_common_value_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_common_value_proto_init() } -func file_google_ads_googleads_v21_common_value_proto_init() { - if File_google_ads_googleads_v21_common_value_proto != nil { +func init() { file_google_ads_googleads_v22_common_value_proto_init() } +func file_google_ads_googleads_v22_common_value_proto_init() { + if File_google_ads_googleads_v22_common_value_proto != nil { return } - file_google_ads_googleads_v21_common_value_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_common_value_proto_msgTypes[0].OneofWrappers = []any{ (*Value_BooleanValue)(nil), (*Value_Int64Value)(nil), (*Value_FloatValue)(nil), @@ -251,17 +251,17 @@ func file_google_ads_googleads_v21_common_value_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_common_value_proto_rawDesc), len(file_google_ads_googleads_v21_common_value_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_common_value_proto_rawDesc), len(file_google_ads_googleads_v22_common_value_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_common_value_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_common_value_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_common_value_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_common_value_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_common_value_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_common_value_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_common_value_proto = out.File - file_google_ads_googleads_v21_common_value_proto_goTypes = nil - file_google_ads_googleads_v21_common_value_proto_depIdxs = nil + File_google_ads_googleads_v22_common_value_proto = out.File + file_google_ads_googleads_v22_common_value_proto_goTypes = nil + file_google_ads_googleads_v22_common_value_proto_depIdxs = nil } diff --git a/enums/access_invitation_status.pb.go b/enums/access_invitation_status.pb.go index 4c4b6215..5276a37a 100644 --- a/enums/access_invitation_status.pb.go +++ b/enums/access_invitation_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/access_invitation_status.proto +// source: google/ads/googleads/v22/enums/access_invitation_status.proto package enums @@ -82,11 +82,11 @@ func (x AccessInvitationStatusEnum_AccessInvitationStatus) String() string { } func (AccessInvitationStatusEnum_AccessInvitationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_access_invitation_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_access_invitation_status_proto_enumTypes[0].Descriptor() } func (AccessInvitationStatusEnum_AccessInvitationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_access_invitation_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_access_invitation_status_proto_enumTypes[0] } func (x AccessInvitationStatusEnum_AccessInvitationStatus) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x AccessInvitationStatusEnum_AccessInvitationStatus) Number() protoreflect // Deprecated: Use AccessInvitationStatusEnum_AccessInvitationStatus.Descriptor instead. func (AccessInvitationStatusEnum_AccessInvitationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_access_invitation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_invitation_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *AccessInvitationStatusEnum) String() string { func (*AccessInvitationStatusEnum) ProtoMessage() {} func (x *AccessInvitationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_access_invitation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_invitation_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *AccessInvitationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessInvitationStatusEnum.ProtoReflect.Descriptor instead. func (*AccessInvitationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_access_invitation_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_access_invitation_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_access_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_access_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_access_invitation_status_proto_goTypes = []any{ - (AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 0: google.ads.googleads.v21.enums.AccessInvitationStatusEnum.AccessInvitationStatus - (*AccessInvitationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AccessInvitationStatusEnum +var file_google_ads_googleads_v22_enums_access_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_access_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_access_invitation_status_proto_goTypes = []any{ + (AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 0: google.ads.googleads.v22.enums.AccessInvitationStatusEnum.AccessInvitationStatus + (*AccessInvitationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AccessInvitationStatusEnum } -var file_google_ads_googleads_v21_enums_access_invitation_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_access_invitation_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_access_invitation_status_proto_init() } -func file_google_ads_googleads_v21_enums_access_invitation_status_proto_init() { - if File_google_ads_googleads_v21_enums_access_invitation_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_access_invitation_status_proto_init() } +func file_google_ads_googleads_v22_enums_access_invitation_status_proto_init() { + if File_google_ads_googleads_v22_enums_access_invitation_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_invitation_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_invitation_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_access_invitation_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_access_invitation_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_access_invitation_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_access_invitation_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_access_invitation_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_access_invitation_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_access_invitation_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_access_invitation_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_access_invitation_status_proto = out.File - file_google_ads_googleads_v21_enums_access_invitation_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_access_invitation_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_access_invitation_status_proto = out.File + file_google_ads_googleads_v22_enums_access_invitation_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_access_invitation_status_proto_depIdxs = nil } diff --git a/enums/access_reason.pb.go b/enums/access_reason.pb.go index 0744082a..8ac2b3fc 100644 --- a/enums/access_reason.pb.go +++ b/enums/access_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/access_reason.proto +// source: google/ads/googleads/v22/enums/access_reason.proto package enums @@ -88,11 +88,11 @@ func (x AccessReasonEnum_AccessReason) String() string { } func (AccessReasonEnum_AccessReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_access_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_access_reason_proto_enumTypes[0].Descriptor() } func (AccessReasonEnum_AccessReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_access_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_access_reason_proto_enumTypes[0] } func (x AccessReasonEnum_AccessReason) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_access_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_access_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *AccessReasonEnum) String() string { func (*AccessReasonEnum) ProtoMessage() {} func (x *AccessReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_access_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,17 +138,17 @@ func (x *AccessReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessReasonEnum.ProtoReflect.Descriptor instead. func (*AccessReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_access_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_access_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_access_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_access_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_access_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_access_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_access_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_access_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_access_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_access_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_access_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_access_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_access_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_access_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_access_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_access_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_access_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_access_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_access_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_access_reason_proto_goTypes = []any{ - (AccessReasonEnum_AccessReason)(0), // 0: google.ads.googleads.v21.enums.AccessReasonEnum.AccessReason - (*AccessReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AccessReasonEnum +var file_google_ads_googleads_v22_enums_access_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_access_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_access_reason_proto_goTypes = []any{ + (AccessReasonEnum_AccessReason)(0), // 0: google.ads.googleads.v22.enums.AccessReasonEnum.AccessReason + (*AccessReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AccessReasonEnum } -var file_google_ads_googleads_v21_enums_access_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_access_reason_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_access_reason_proto_init() } -func file_google_ads_googleads_v21_enums_access_reason_proto_init() { - if File_google_ads_googleads_v21_enums_access_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_access_reason_proto_init() } +func file_google_ads_googleads_v22_enums_access_reason_proto_init() { + if File_google_ads_googleads_v22_enums_access_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_access_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_access_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_access_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_access_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_access_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_access_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_access_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_access_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_access_reason_proto = out.File - file_google_ads_googleads_v21_enums_access_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_access_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_access_reason_proto = out.File + file_google_ads_googleads_v22_enums_access_reason_proto_goTypes = nil + file_google_ads_googleads_v22_enums_access_reason_proto_depIdxs = nil } diff --git a/enums/access_role.pb.go b/enums/access_role.pb.go index 08b762f5..c9cd341e 100644 --- a/enums/access_role.pb.go +++ b/enums/access_role.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/access_role.proto +// source: google/ads/googleads/v22/enums/access_role.proto package enums @@ -85,11 +85,11 @@ func (x AccessRoleEnum_AccessRole) String() string { } func (AccessRoleEnum_AccessRole) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_access_role_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_access_role_proto_enumTypes[0].Descriptor() } func (AccessRoleEnum_AccessRole) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_access_role_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_access_role_proto_enumTypes[0] } func (x AccessRoleEnum_AccessRole) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_enums_access_role_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_access_role_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_role_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *AccessRoleEnum) String() string { func (*AccessRoleEnum) ProtoMessage() {} func (x *AccessRoleEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_access_role_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_access_role_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,17 +135,17 @@ func (x *AccessRoleEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessRoleEnum.ProtoReflect.Descriptor instead. func (*AccessRoleEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_access_role_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_access_role_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_access_role_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_access_role_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_access_role_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_access_role_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -155,41 +155,41 @@ var file_google_ads_googleads_v21_enums_access_role_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_access_role_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_access_role_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_access_role_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_access_role_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_access_role_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_access_role_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_access_role_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_role_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_role_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_access_role_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_access_role_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_access_role_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_role_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_role_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_access_role_proto_rawDescData + return file_google_ads_googleads_v22_enums_access_role_proto_rawDescData } -var file_google_ads_googleads_v21_enums_access_role_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_access_role_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_access_role_proto_goTypes = []any{ - (AccessRoleEnum_AccessRole)(0), // 0: google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole - (*AccessRoleEnum)(nil), // 1: google.ads.googleads.v21.enums.AccessRoleEnum +var file_google_ads_googleads_v22_enums_access_role_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_access_role_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_access_role_proto_goTypes = []any{ + (AccessRoleEnum_AccessRole)(0), // 0: google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole + (*AccessRoleEnum)(nil), // 1: google.ads.googleads.v22.enums.AccessRoleEnum } -var file_google_ads_googleads_v21_enums_access_role_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -197,27 +197,27 @@ var file_google_ads_googleads_v21_enums_access_role_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_access_role_proto_init() } -func file_google_ads_googleads_v21_enums_access_role_proto_init() { - if File_google_ads_googleads_v21_enums_access_role_proto != nil { +func init() { file_google_ads_googleads_v22_enums_access_role_proto_init() } +func file_google_ads_googleads_v22_enums_access_role_proto_init() { + if File_google_ads_googleads_v22_enums_access_role_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_access_role_proto_rawDesc), len(file_google_ads_googleads_v21_enums_access_role_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_access_role_proto_rawDesc), len(file_google_ads_googleads_v22_enums_access_role_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_access_role_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_access_role_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_access_role_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_access_role_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_access_role_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_access_role_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_access_role_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_access_role_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_access_role_proto = out.File - file_google_ads_googleads_v21_enums_access_role_proto_goTypes = nil - file_google_ads_googleads_v21_enums_access_role_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_access_role_proto = out.File + file_google_ads_googleads_v22_enums_access_role_proto_goTypes = nil + file_google_ads_googleads_v22_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 89c3503b..4d8b1443 100644 --- a/enums/account_budget_proposal_status.pb.go +++ b/enums/account_budget_proposal_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/account_budget_proposal_status.proto +// source: google/ads/googleads/v22/enums/account_budget_proposal_status.proto package enums @@ -92,11 +92,11 @@ func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) String() st } func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_enumTypes[0].Descriptor() } func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_enumTypes[0] } func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) Number() pr // Deprecated: Use AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus.Descriptor instead. func (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *AccountBudgetProposalStatusEnum) String() string { func (*AccountBudgetProposalStatusEnum) ProtoMessage() {} func (x *AccountBudgetProposalStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,18 +142,18 @@ func (x *AccountBudgetProposalStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposalStatusEnum.ProtoReflect.Descriptor instead. func (*AccountBudgetProposalStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_account_budget_proposal_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_account_budget_proposal_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x63, 0x63, 0x6f, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_goTypes = []any{ - (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 0: google.ads.googleads.v21.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus - (*AccountBudgetProposalStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AccountBudgetProposalStatusEnum +var file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_goTypes = []any{ + (AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 0: google.ads.googleads.v22.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus + (*AccountBudgetProposalStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AccountBudgetProposalStatusEnum } -var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_init() } -func file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_init() { - if File_google_ads_googleads_v21_enums_account_budget_proposal_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_init() } +func file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_init() { + if File_google_ads_googleads_v22_enums_account_budget_proposal_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_account_budget_proposal_status_proto = out.File - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_account_budget_proposal_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_account_budget_proposal_status_proto = out.File + file_google_ads_googleads_v22_enums_account_budget_proposal_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 1eed186b..4e703f1e 100644 --- a/enums/account_budget_proposal_type.pb.go +++ b/enums/account_budget_proposal_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/account_budget_proposal_type.proto +// source: google/ads/googleads/v22/enums/account_budget_proposal_type.proto package enums @@ -84,11 +84,11 @@ func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) String() string } func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_enumTypes[0].Descriptor() } func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_enumTypes[0] } func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x AccountBudgetProposalTypeEnum_AccountBudgetProposalType) Number() protor // Deprecated: Use AccountBudgetProposalTypeEnum_AccountBudgetProposalType.Descriptor instead. func (AccountBudgetProposalTypeEnum_AccountBudgetProposalType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *AccountBudgetProposalTypeEnum) String() string { func (*AccountBudgetProposalTypeEnum) ProtoMessage() {} func (x *AccountBudgetProposalTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *AccountBudgetProposalTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposalTypeEnum.ProtoReflect.Descriptor instead. func (*AccountBudgetProposalTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_account_budget_proposal_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_account_budget_proposal_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_goTypes = []any{ - (AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 0: google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType - (*AccountBudgetProposalTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum +var file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_goTypes = []any{ + (AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 0: google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType + (*AccountBudgetProposalTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum } -var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_init() } -func file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_init() { - if File_google_ads_googleads_v21_enums_account_budget_proposal_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_init() } +func file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_init() { + if File_google_ads_googleads_v22_enums_account_budget_proposal_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_account_budget_proposal_type_proto = out.File - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_account_budget_proposal_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_account_budget_proposal_type_proto = out.File + file_google_ads_googleads_v22_enums_account_budget_proposal_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 6ffbcbdb..12ee905a 100644 --- a/enums/account_budget_status.pb.go +++ b/enums/account_budget_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/account_budget_status.proto +// source: google/ads/googleads/v22/enums/account_budget_status.proto package enums @@ -80,11 +80,11 @@ func (x AccountBudgetStatusEnum_AccountBudgetStatus) String() string { } func (AccountBudgetStatusEnum_AccountBudgetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_account_budget_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_account_budget_status_proto_enumTypes[0].Descriptor() } func (AccountBudgetStatusEnum_AccountBudgetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_account_budget_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_account_budget_status_proto_enumTypes[0] } func (x AccountBudgetStatusEnum_AccountBudgetStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_account_budget_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_account_budget_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AccountBudgetStatusEnum) String() string { func (*AccountBudgetStatusEnum) ProtoMessage() {} func (x *AccountBudgetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_account_budget_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_budget_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *AccountBudgetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetStatusEnum.ProtoReflect.Descriptor instead. func (*AccountBudgetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_account_budget_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_account_budget_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x17, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_account_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_account_budget_status_proto_goTypes = []any{ - (AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 0: google.ads.googleads.v21.enums.AccountBudgetStatusEnum.AccountBudgetStatus - (*AccountBudgetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AccountBudgetStatusEnum +var file_google_ads_googleads_v22_enums_account_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_account_budget_status_proto_goTypes = []any{ + (AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 0: google.ads.googleads.v22.enums.AccountBudgetStatusEnum.AccountBudgetStatus + (*AccountBudgetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AccountBudgetStatusEnum } -var file_google_ads_googleads_v21_enums_account_budget_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_account_budget_status_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_account_budget_status_proto_init() } -func file_google_ads_googleads_v21_enums_account_budget_status_proto_init() { - if File_google_ads_googleads_v21_enums_account_budget_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_account_budget_status_proto_init() } +func file_google_ads_googleads_v22_enums_account_budget_status_proto_init() { + if File_google_ads_googleads_v22_enums_account_budget_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_budget_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_budget_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_account_budget_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_account_budget_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_account_budget_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_account_budget_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_account_budget_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_account_budget_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_account_budget_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_account_budget_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_account_budget_status_proto = out.File - file_google_ads_googleads_v21_enums_account_budget_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_account_budget_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_account_budget_status_proto = out.File + file_google_ads_googleads_v22_enums_account_budget_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_account_budget_status_proto_depIdxs = nil } diff --git a/enums/account_link_status.pb.go b/enums/account_link_status.pb.go index 334b3e03..204e3dd0 100644 --- a/enums/account_link_status.pb.go +++ b/enums/account_link_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/account_link_status.proto +// source: google/ads/googleads/v22/enums/account_link_status.proto package enums @@ -95,11 +95,11 @@ func (x AccountLinkStatusEnum_AccountLinkStatus) String() string { } func (AccountLinkStatusEnum_AccountLinkStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_account_link_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_account_link_status_proto_enumTypes[0].Descriptor() } func (AccountLinkStatusEnum_AccountLinkStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_account_link_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_account_link_status_proto_enumTypes[0] } func (x AccountLinkStatusEnum_AccountLinkStatus) Number() protoreflect.EnumNumber { @@ -108,7 +108,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_v21_enums_account_link_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_account_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_link_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *AccountLinkStatusEnum) String() string { func (*AccountLinkStatusEnum) ProtoMessage() {} func (x *AccountLinkStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_account_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_account_link_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,18 +145,18 @@ func (x *AccountLinkStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountLinkStatusEnum.ProtoReflect.Descriptor instead. func (*AccountLinkStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_account_link_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_account_link_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_account_link_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x01, 0x0a, 0x15, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,41 +169,41 @@ var file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x63, 0x63, 0x6f, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_link_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_account_link_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_account_link_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_account_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_account_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_account_link_status_proto_goTypes = []any{ - (AccountLinkStatusEnum_AccountLinkStatus)(0), // 0: google.ads.googleads.v21.enums.AccountLinkStatusEnum.AccountLinkStatus - (*AccountLinkStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AccountLinkStatusEnum +var file_google_ads_googleads_v22_enums_account_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_account_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_account_link_status_proto_goTypes = []any{ + (AccountLinkStatusEnum_AccountLinkStatus)(0), // 0: google.ads.googleads.v22.enums.AccountLinkStatusEnum.AccountLinkStatus + (*AccountLinkStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AccountLinkStatusEnum } -var file_google_ads_googleads_v21_enums_account_link_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,27 +211,27 @@ var file_google_ads_googleads_v21_enums_account_link_status_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_account_link_status_proto_init() } -func file_google_ads_googleads_v21_enums_account_link_status_proto_init() { - if File_google_ads_googleads_v21_enums_account_link_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_account_link_status_proto_init() } +func file_google_ads_googleads_v22_enums_account_link_status_proto_init() { + if File_google_ads_googleads_v22_enums_account_link_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_account_link_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_account_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_account_link_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_account_link_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_account_link_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_account_link_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_account_link_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_account_link_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_account_link_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_account_link_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_account_link_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_account_link_status_proto = out.File - file_google_ads_googleads_v21_enums_account_link_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_account_link_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_account_link_status_proto = out.File + file_google_ads_googleads_v22_enums_account_link_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_account_link_status_proto_depIdxs = nil } diff --git a/enums/ad_destination_type.pb.go b/enums/ad_destination_type.pb.go index eea2d03f..194b27ac 100644 --- a/enums/ad_destination_type.pb.go +++ b/enums/ad_destination_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_destination_type.proto +// source: google/ads/googleads/v22/enums/ad_destination_type.proto package enums @@ -112,11 +112,11 @@ func (x AdDestinationTypeEnum_AdDestinationType) String() string { } func (AdDestinationTypeEnum_AdDestinationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_destination_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_destination_type_proto_enumTypes[0].Descriptor() } func (AdDestinationTypeEnum_AdDestinationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_destination_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_destination_type_proto_enumTypes[0] } func (x AdDestinationTypeEnum_AdDestinationType) Number() protoreflect.EnumNumber { @@ -125,7 +125,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_v21_enums_ad_destination_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_destination_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_destination_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *AdDestinationTypeEnum) String() string { func (*AdDestinationTypeEnum) ProtoMessage() {} func (x *AdDestinationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_destination_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_destination_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,18 +162,18 @@ func (x *AdDestinationTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdDestinationTypeEnum.ProtoReflect.Descriptor instead. func (*AdDestinationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_destination_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_destination_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x02, 0x0a, 0x15, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -192,42 +192,42 @@ var file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_destination_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_destination_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_destination_type_proto_goTypes = []any{ - (AdDestinationTypeEnum_AdDestinationType)(0), // 0: google.ads.googleads.v21.enums.AdDestinationTypeEnum.AdDestinationType - (*AdDestinationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdDestinationTypeEnum +var file_google_ads_googleads_v22_enums_ad_destination_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_destination_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_destination_type_proto_goTypes = []any{ + (AdDestinationTypeEnum_AdDestinationType)(0), // 0: google.ads.googleads.v22.enums.AdDestinationTypeEnum.AdDestinationType + (*AdDestinationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdDestinationTypeEnum } -var file_google_ads_googleads_v21_enums_ad_destination_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -235,27 +235,27 @@ var file_google_ads_googleads_v21_enums_ad_destination_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_destination_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_destination_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_destination_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_destination_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_destination_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_destination_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_destination_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_destination_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_destination_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_destination_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_destination_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_destination_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_destination_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_destination_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_destination_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_destination_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_destination_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_destination_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_destination_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_destination_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_destination_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_destination_type_proto_depIdxs = nil } diff --git a/enums/ad_format_type.pb.go b/enums/ad_format_type.pb.go index 42e378ab..f5df100a 100644 --- a/enums/ad_format_type.pb.go +++ b/enums/ad_format_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_format_type.proto +// source: google/ads/googleads/v22/enums/ad_format_type.proto package enums @@ -131,11 +131,11 @@ func (x AdFormatTypeEnum_AdFormatType) String() string { } func (AdFormatTypeEnum_AdFormatType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_format_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_format_type_proto_enumTypes[0].Descriptor() } func (AdFormatTypeEnum_AdFormatType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_format_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_format_type_proto_enumTypes[0] } func (x AdFormatTypeEnum_AdFormatType) Number() protoreflect.EnumNumber { @@ -144,7 +144,7 @@ func (x AdFormatTypeEnum_AdFormatType) Number() protoreflect.EnumNumber { // Deprecated: Use AdFormatTypeEnum_AdFormatType.Descriptor instead. func (AdFormatTypeEnum_AdFormatType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enumeration of Google Ads format types. @@ -156,7 +156,7 @@ type AdFormatTypeEnum struct { func (x *AdFormatTypeEnum) Reset() { *x = AdFormatTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_ad_format_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_format_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *AdFormatTypeEnum) String() string { func (*AdFormatTypeEnum) ProtoMessage() {} func (x *AdFormatTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_format_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_format_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,17 +181,17 @@ func (x *AdFormatTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdFormatTypeEnum.ProtoReflect.Descriptor instead. func (*AdFormatTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_format_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_format_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe8, 0x01, 0x0a, 0x10, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd3, 0x01, 0x0a, 0x0c, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, @@ -209,41 +209,41 @@ var file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc = string([] 0x52, 0x54, 0x53, 0x10, 0x0b, 0x12, 0x09, 0x0a, 0x05, 0x50, 0x41, 0x55, 0x53, 0x45, 0x10, 0x0c, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_format_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_format_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_format_type_proto_goTypes = []any{ - (AdFormatTypeEnum_AdFormatType)(0), // 0: google.ads.googleads.v21.enums.AdFormatTypeEnum.AdFormatType - (*AdFormatTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdFormatTypeEnum +var file_google_ads_googleads_v22_enums_ad_format_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_format_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_format_type_proto_goTypes = []any{ + (AdFormatTypeEnum_AdFormatType)(0), // 0: google.ads.googleads.v22.enums.AdFormatTypeEnum.AdFormatType + (*AdFormatTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdFormatTypeEnum } -var file_google_ads_googleads_v21_enums_ad_format_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_ad_format_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,27 +251,27 @@ var file_google_ads_googleads_v21_enums_ad_format_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_format_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_format_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_format_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_format_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_format_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_format_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_format_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_format_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_format_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_format_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_format_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_format_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_format_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_format_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_format_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_format_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_format_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_format_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_format_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_format_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_format_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_format_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 0159de2e..c8666e18 100644 --- a/enums/ad_group_ad_primary_status.pb.go +++ b/enums/ad_group_ad_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_ad_primary_status.proto +// source: google/ads/googleads/v22/enums/ad_group_ad_primary_status.proto package enums @@ -92,11 +92,11 @@ func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) String() string { } func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_enumTypes[0].Descriptor() } func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_enumTypes[0] } func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) Number() protoreflect // Deprecated: Use AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus.Descriptor instead. func (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *AdGroupAdPrimaryStatusEnum) String() string { func (*AdGroupAdPrimaryStatusEnum) ProtoMessage() {} func (x *AdGroupAdPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,18 +143,18 @@ func (x *AdGroupAdPrimaryStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupAdPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_goTypes = []any{ - (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus - (*AdGroupAdPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_goTypes = []any{ + (AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus + (*AdGroupAdPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_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_v21_enums_ad_group_ad_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 428eb8c0..5aa26da8 100644 --- a/enums/ad_group_ad_primary_status_reason.pb.go +++ b/enums/ad_group_ad_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_ad_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/ad_group_ad_primary_status_reason.proto package enums @@ -142,11 +142,11 @@ func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) String() } func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0].Descriptor() } func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_enumTypes[0] } func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -155,7 +155,7 @@ func (x AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) Number() // Deprecated: Use AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason.Descriptor instead. func (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181,7 +181,7 @@ func (x *AdGroupAdPrimaryStatusReasonEnum) String() string { func (*AdGroupAdPrimaryStatusReasonEnum) ProtoMessage() {} func (x *AdGroupAdPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194,19 +194,19 @@ func (x *AdGroupAdPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*AdGroupAdPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xea, 0x03, 0x0a, 0x20, 0x41, 0x64, 0x47, + 0x32, 0x32, 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, @@ -239,42 +239,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_goTypes = []any{ - (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason - (*AdGroupAdPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_goTypes = []any{ + (AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason + (*AdGroupAdPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -282,27 +282,27 @@ var file_google_ads_googleads_v21_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_v21_enums_ad_group_ad_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_ad_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_ad_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 1fe6ec43..58e50725 100644 --- a/enums/ad_group_ad_rotation_mode.pb.go +++ b/enums/ad_group_ad_rotation_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_ad_rotation_mode.proto +// source: google/ads/googleads/v22/enums/ad_group_ad_rotation_mode.proto package enums @@ -78,11 +78,11 @@ func (x AdGroupAdRotationModeEnum_AdGroupAdRotationMode) String() string { } func (AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_enumTypes[0].Descriptor() } func (AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_enumTypes[0] } func (x AdGroupAdRotationModeEnum_AdGroupAdRotationMode) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *AdGroupAdRotationModeEnum) String() string { func (*AdGroupAdRotationModeEnum) ProtoMessage() {} func (x *AdGroupAdRotationModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,18 +129,18 @@ func (x *AdGroupAdRotationModeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdRotationModeEnum.ProtoReflect.Descriptor instead. func (*AdGroupAdRotationModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_goTypes = []any{ - (AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 0: google.ads.googleads.v21.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode - (*AdGroupAdRotationModeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupAdRotationModeEnum +var file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_goTypes = []any{ + (AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 0: google.ads.googleads.v22.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode + (*AdGroupAdRotationModeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupAdRotationModeEnum } -var file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_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_v21_enums_ad_group_ad_rotation_mode_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_ad_rotation_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_ad_rotation_mode_proto_goTypes = nil + file_google_ads_googleads_v22_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 0d8dc1eb..584dcb3f 100644 --- a/enums/ad_group_ad_status.pb.go +++ b/enums/ad_group_ad_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_ad_status.proto +// source: google/ads/googleads/v22/enums/ad_group_ad_status.proto package enums @@ -82,11 +82,11 @@ func (x AdGroupAdStatusEnum_AdGroupAdStatus) String() string { } func (AdGroupAdStatusEnum_AdGroupAdStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_enumTypes[0].Descriptor() } func (AdGroupAdStatusEnum_AdGroupAdStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_enumTypes[0] } func (x AdGroupAdStatusEnum_AdGroupAdStatus) Number() protoreflect.EnumNumber { @@ -95,7 +95,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_v21_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *AdGroupAdStatusEnum) String() string { func (*AdGroupAdStatusEnum) ProtoMessage() {} func (x *AdGroupAdStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *AdGroupAdStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupAdStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_ad_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_ad_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x64, 0x47, + 0x76, 0x32, 0x32, 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, @@ -152,41 +152,41 @@ var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_goTypes = []any{ - (AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupAdStatusEnum.AdGroupAdStatus - (*AdGroupAdStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupAdStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_goTypes = []any{ + (AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupAdStatusEnum.AdGroupAdStatus + (*AdGroupAdStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupAdStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_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_v21_enums_ad_group_ad_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_ad_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_ad_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_ad_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_ad_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_ad_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_ad_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 a5f89173..bbfc536a 100644 --- a/enums/ad_group_criterion_approval_status.pb.go +++ b/enums/ad_group_criterion_approval_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_criterion_approval_status.proto +// source: google/ads/googleads/v22/enums/ad_group_criterion_approval_status.proto package enums @@ -84,11 +84,11 @@ func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Strin } func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_enumTypes[0] } func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) Numbe // Deprecated: Use AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus.Descriptor instead. func (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *AdGroupCriterionApprovalStatusEnum) String() string { func (*AdGroupCriterionApprovalStatusEnum) ProtoMessage() {} func (x *AdGroupCriterionApprovalStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,19 +134,19 @@ func (x *AdGroupCriterionApprovalStatusEnum) ProtoReflect() protoreflect.Message // Deprecated: Use AdGroupCriterionApprovalStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionApprovalStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x22, 0x41, 0x64, + 0x76, 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_goTypes = []any{ - (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus - (*AdGroupCriterionApprovalStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupCriterionApprovalStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_goTypes = []any{ + (AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus + (*AdGroupCriterionApprovalStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupCriterionApprovalStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_criterion_approval_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_criterion_approval_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 4b065b40..65786c83 100644 --- a/enums/ad_group_criterion_primary_status.pb.go +++ b/enums/ad_group_criterion_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_criterion_primary_status.proto +// source: google/ads/googleads/v22/enums/ad_group_criterion_primary_status.proto package enums @@ -90,11 +90,11 @@ func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) String( } func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_enumTypes[0] } func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Number() protoreflect.EnumNumber { @@ -103,7 +103,7 @@ func (x AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) Number( // Deprecated: Use AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus.Descriptor instead. func (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible ad group criterion primary status. @@ -115,7 +115,7 @@ type AdGroupCriterionPrimaryStatusEnum struct { func (x *AdGroupCriterionPrimaryStatusEnum) Reset() { *x = AdGroupCriterionPrimaryStatusEnum{} - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *AdGroupCriterionPrimaryStatusEnum) String() string { func (*AdGroupCriterionPrimaryStatusEnum) ProtoMessage() {} func (x *AdGroupCriterionPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,19 +140,19 @@ func (x *AdGroupCriterionPrimaryStatusEnum) ProtoReflect() protoreflect.Message // Deprecated: Use AdGroupCriterionPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x21, 0x41, 0x64, 0x47, + 0x32, 0x32, 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, @@ -165,42 +165,42 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x41, 0x64, 0x47, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_goTypes = []any{ - (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus - (*AdGroupCriterionPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_goTypes = []any{ + (AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus + (*AdGroupCriterionPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 9ea6c1f9..ff537062 100644 --- a/enums/ad_group_criterion_primary_status_reason.pb.go +++ b/enums/ad_group_criterion_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_criterion_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/ad_group_criterion_primary_status_reason.proto package enums @@ -161,11 +161,11 @@ func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusRea } func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_enumTypes[0] } func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -174,7 +174,7 @@ func (x AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusRea // Deprecated: Use AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason.Descriptor instead. func (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible ad group criterion primary status @@ -187,7 +187,7 @@ type AdGroupCriterionPrimaryStatusReasonEnum struct { func (x *AdGroupCriterionPrimaryStatusReasonEnum) Reset() { *x = AdGroupCriterionPrimaryStatusReasonEnum{} - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199,7 +199,7 @@ func (x *AdGroupCriterionPrimaryStatusReasonEnum) String() string { func (*AdGroupCriterionPrimaryStatusReasonEnum) ProtoMessage() {} func (x *AdGroupCriterionPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -212,19 +212,19 @@ func (x *AdGroupCriterionPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Me // Deprecated: Use AdGroupCriterionPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -269,43 +269,43 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_goTypes = []any{ - (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason - (*AdGroupCriterionPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_goTypes = []any{ + (AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason + (*AdGroupCriterionPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -314,28 +314,28 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason } func init() { - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_init() + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto != nil { +func file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_criterion_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_criterion_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 12fb20ad..a8133dfc 100644 --- a/enums/ad_group_criterion_status.pb.go +++ b/enums/ad_group_criterion_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_criterion_status.proto +// source: google/ads/googleads/v22/enums/ad_group_criterion_status.proto package enums @@ -82,11 +82,11 @@ func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) String() string { } func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_enumTypes[0] } func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x AdGroupCriterionStatusEnum_AdGroupCriterionStatus) Number() protoreflect // Deprecated: Use AdGroupCriterionStatusEnum_AdGroupCriterionStatus.Descriptor instead. func (AdGroupCriterionStatusEnum_AdGroupCriterionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *AdGroupCriterionStatusEnum) String() string { func (*AdGroupCriterionStatusEnum) ProtoMessage() {} func (x *AdGroupCriterionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *AdGroupCriterionStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_criterion_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_criterion_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_goTypes = []any{ - (AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus - (*AdGroupCriterionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupCriterionStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_goTypes = []any{ + (AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus + (*AdGroupCriterionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupCriterionStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_criterion_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_criterion_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_criterion_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_criterion_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_criterion_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_criterion_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 54bf6a7a..44f70fcc 100644 --- a/enums/ad_group_primary_status.pb.go +++ b/enums/ad_group_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_primary_status.proto +// source: google/ads/googleads/v22/enums/ad_group_primary_status.proto package enums @@ -92,11 +92,11 @@ func (x AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) String() string { } func (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_enumTypes[0].Descriptor() } func (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_enumTypes[0] } func (x AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *AdGroupPrimaryStatusEnum) String() string { func (*AdGroupPrimaryStatusEnum) ProtoMessage() {} func (x *AdGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,18 +143,18 @@ func (x *AdGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_goTypes = []any{ - (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus - (*AdGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_goTypes = []any{ + (AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus + (*AdGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 e62acc55..865476bc 100644 --- a/enums/ad_group_primary_status_reason.pb.go +++ b/enums/ad_group_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/ad_group_primary_status_reason.proto package enums @@ -148,11 +148,11 @@ func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) String() stri } func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_enumTypes[0].Descriptor() } func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_enumTypes[0] } func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -161,7 +161,7 @@ func (x AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) Number() prot // Deprecated: Use AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason.Descriptor instead. func (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187,7 +187,7 @@ func (x *AdGroupPrimaryStatusReasonEnum) String() string { func (*AdGroupPrimaryStatusReasonEnum) ProtoMessage() {} func (x *AdGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200,18 +200,18 @@ func (x *AdGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*AdGroupPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -244,42 +244,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x41, 0x64, 0x47, 0x72, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_goTypes = []any{ - (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason - (*AdGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_goTypes = []any{ + (AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason + (*AdGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -287,27 +287,27 @@ var file_google_ads_googleads_v21_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_v21_enums_ad_group_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 ecea3680..acb24628 100644 --- a/enums/ad_group_status.pb.go +++ b/enums/ad_group_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_status.proto +// source: google/ads/googleads/v22/enums/ad_group_status.proto package enums @@ -82,11 +82,11 @@ func (x AdGroupStatusEnum_AdGroupStatus) String() string { } func (AdGroupStatusEnum_AdGroupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_status_proto_enumTypes[0].Descriptor() } func (AdGroupStatusEnum_AdGroupStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_status_proto_enumTypes[0] } func (x AdGroupStatusEnum_AdGroupStatus) Number() protoreflect.EnumNumber { @@ -95,7 +95,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_v21_enums_ad_group_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *AdGroupStatusEnum) String() string { func (*AdGroupStatusEnum) ProtoMessage() {} func (x *AdGroupStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,17 +132,17 @@ func (x *AdGroupStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupStatusEnum.ProtoReflect.Descriptor instead. func (*AdGroupStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,41 +152,41 @@ var file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc = string([ 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_status_proto_goTypes = []any{ - (AdGroupStatusEnum_AdGroupStatus)(0), // 0: google.ads.googleads.v21.enums.AdGroupStatusEnum.AdGroupStatus - (*AdGroupStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupStatusEnum +var file_google_ads_googleads_v22_enums_ad_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_status_proto_goTypes = []any{ + (AdGroupStatusEnum_AdGroupStatus)(0), // 0: google.ads.googleads.v22.enums.AdGroupStatusEnum.AdGroupStatus + (*AdGroupStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupStatusEnum } -var file_google_ads_googleads_v21_enums_ad_group_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_ad_group_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_group_status_proto_depIdxs = nil } diff --git a/enums/ad_group_type.pb.go b/enums/ad_group_type.pb.go index 7680da1b..0bd1da89 100644 --- a/enums/ad_group_type.pb.go +++ b/enums/ad_group_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_group_type.proto +// source: google/ads/googleads/v22/enums/ad_group_type.proto package enums @@ -138,11 +138,11 @@ func (x AdGroupTypeEnum_AdGroupType) String() string { } func (AdGroupTypeEnum_AdGroupType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_group_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_group_type_proto_enumTypes[0].Descriptor() } func (AdGroupTypeEnum_AdGroupType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_group_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_group_type_proto_enumTypes[0] } func (x AdGroupTypeEnum_AdGroupType) Number() protoreflect.EnumNumber { @@ -151,7 +151,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_v21_enums_ad_group_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177,7 +177,7 @@ func (x *AdGroupTypeEnum) String() string { func (*AdGroupTypeEnum) ProtoMessage() {} func (x *AdGroupTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_group_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190,17 +190,17 @@ func (x *AdGroupTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupTypeEnum.ProtoReflect.Descriptor instead. func (*AdGroupTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_group_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_group_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe0, 0x03, 0x0a, 0x0f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xcc, 0x03, 0x0a, 0x0b, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, @@ -233,41 +233,41 @@ var file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc = string([]b 0x44, 0x53, 0x10, 0x13, 0x12, 0x11, 0x0a, 0x0d, 0x59, 0x4f, 0x55, 0x54, 0x55, 0x42, 0x45, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x10, 0x14, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_group_type_proto_goTypes = []any{ - (AdGroupTypeEnum_AdGroupType)(0), // 0: google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - (*AdGroupTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdGroupTypeEnum +var file_google_ads_googleads_v22_enums_ad_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_group_type_proto_goTypes = []any{ + (AdGroupTypeEnum_AdGroupType)(0), // 0: google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + (*AdGroupTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdGroupTypeEnum } -var file_google_ads_googleads_v21_enums_ad_group_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -275,27 +275,27 @@ var file_google_ads_googleads_v21_enums_ad_group_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_group_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_group_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_group_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_group_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_group_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_group_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_group_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_group_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_group_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_group_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_group_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_group_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_group_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_group_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_group_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_group_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_group_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_group_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_group_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_group_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_group_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_group_type_proto_depIdxs = nil } diff --git a/enums/ad_network_type.pb.go b/enums/ad_network_type.pb.go index 8eb9821f..8217a662 100644 --- a/enums/ad_network_type.pb.go +++ b/enums/ad_network_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_network_type.proto +// source: google/ads/googleads/v22/enums/ad_network_type.proto package enums @@ -111,11 +111,11 @@ func (x AdNetworkTypeEnum_AdNetworkType) String() string { } func (AdNetworkTypeEnum_AdNetworkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_network_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_network_type_proto_enumTypes[0].Descriptor() } func (AdNetworkTypeEnum_AdNetworkType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_network_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_network_type_proto_enumTypes[0] } func (x AdNetworkTypeEnum_AdNetworkType) Number() protoreflect.EnumNumber { @@ -124,7 +124,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_v21_enums_ad_network_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enumeration of Google Ads network types. @@ -136,7 +136,7 @@ type AdNetworkTypeEnum struct { func (x *AdNetworkTypeEnum) Reset() { *x = AdNetworkTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_ad_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_network_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148,7 +148,7 @@ func (x *AdNetworkTypeEnum) String() string { func (*AdNetworkTypeEnum) ProtoMessage() {} func (x *AdNetworkTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_network_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161,17 +161,17 @@ func (x *AdNetworkTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdNetworkTypeEnum.ProtoReflect.Descriptor instead. func (*AdNetworkTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_network_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_network_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd6, 0x01, 0x0a, 0x11, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc0, 0x01, 0x0a, 0x0d, 0x41, 0x64, 0x4e, 0x65, 0x74, 0x77, 0x6f, 0x72, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, @@ -187,42 +187,42 @@ var file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc = string([ 0x47, 0x4d, 0x41, 0x49, 0x4c, 0x10, 0x0b, 0x12, 0x0c, 0x0a, 0x08, 0x44, 0x49, 0x53, 0x43, 0x4f, 0x56, 0x45, 0x52, 0x10, 0x0c, 0x12, 0x08, 0x0a, 0x04, 0x4d, 0x41, 0x50, 0x53, 0x10, 0x0d, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_network_type_proto_goTypes = []any{ - (AdNetworkTypeEnum_AdNetworkType)(0), // 0: google.ads.googleads.v21.enums.AdNetworkTypeEnum.AdNetworkType - (*AdNetworkTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdNetworkTypeEnum +var file_google_ads_googleads_v22_enums_ad_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_network_type_proto_goTypes = []any{ + (AdNetworkTypeEnum_AdNetworkType)(0), // 0: google.ads.googleads.v22.enums.AdNetworkTypeEnum.AdNetworkType + (*AdNetworkTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdNetworkTypeEnum } -var file_google_ads_googleads_v21_enums_ad_network_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -230,27 +230,27 @@ var file_google_ads_googleads_v21_enums_ad_network_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_network_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_network_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_network_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_network_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_network_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_network_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_network_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_network_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_network_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_network_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_network_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_network_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_network_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_network_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_network_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_network_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_network_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_network_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_network_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_network_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_network_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 46716872..68b0e219 100644 --- a/enums/ad_serving_optimization_status.pb.go +++ b/enums/ad_serving_optimization_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_serving_optimization_status.proto +// source: google/ads/googleads/v22/enums/ad_serving_optimization_status.proto package enums @@ -93,11 +93,11 @@ func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) String() st } func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_enumTypes[0].Descriptor() } func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_enumTypes[0] } func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Number() protoreflect.EnumNumber { @@ -106,7 +106,7 @@ func (x AdServingOptimizationStatusEnum_AdServingOptimizationStatus) Number() pr // Deprecated: Use AdServingOptimizationStatusEnum_AdServingOptimizationStatus.Descriptor instead. func (AdServingOptimizationStatusEnum_AdServingOptimizationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *AdServingOptimizationStatusEnum) String() string { func (*AdServingOptimizationStatusEnum) ProtoMessage() {} func (x *AdServingOptimizationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,18 +143,18 @@ func (x *AdServingOptimizationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdServingOptimizationStatusEnum.ProtoReflect.Descriptor instead. func (*AdServingOptimizationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,42 +169,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x41, 0x64, 0x53, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_goTypes = []any{ - (AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 0: google.ads.googleads.v21.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus - (*AdServingOptimizationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AdServingOptimizationStatusEnum +var file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_goTypes = []any{ + (AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 0: google.ads.googleads.v22.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus + (*AdServingOptimizationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AdServingOptimizationStatusEnum } -var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -212,27 +212,27 @@ var file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_init() } -func file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_init() { - if File_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_init() } +func file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_init() { + if File_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto = out.File - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_serving_optimization_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto = out.File + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_serving_optimization_status_proto_depIdxs = nil } diff --git a/enums/ad_strength.pb.go b/enums/ad_strength.pb.go index 4cdfe416..fe15ef39 100644 --- a/enums/ad_strength.pb.go +++ b/enums/ad_strength.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_strength.proto +// source: google/ads/googleads/v22/enums/ad_strength.proto package enums @@ -92,11 +92,11 @@ func (x AdStrengthEnum_AdStrength) String() string { } func (AdStrengthEnum_AdStrength) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_strength_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_strength_proto_enumTypes[0].Descriptor() } func (AdStrengthEnum_AdStrength) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_strength_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_strength_proto_enumTypes[0] } func (x AdStrengthEnum_AdStrength) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_enums_ad_strength_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_strength_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_strength_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *AdStrengthEnum) String() string { func (*AdStrengthEnum) ProtoMessage() {} func (x *AdStrengthEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_strength_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_strength_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,17 +142,17 @@ func (x *AdStrengthEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdStrengthEnum.ProtoReflect.Descriptor instead. func (*AdStrengthEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_strength_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_strength_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_strength_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,41 +163,41 @@ var file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_strength_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_strength_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_strength_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_strength_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_strength_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_strength_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_strength_proto_goTypes = []any{ - (AdStrengthEnum_AdStrength)(0), // 0: google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - (*AdStrengthEnum)(nil), // 1: google.ads.googleads.v21.enums.AdStrengthEnum +var file_google_ads_googleads_v22_enums_ad_strength_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_strength_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_strength_proto_goTypes = []any{ + (AdStrengthEnum_AdStrength)(0), // 0: google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + (*AdStrengthEnum)(nil), // 1: google.ads.googleads.v22.enums.AdStrengthEnum } -var file_google_ads_googleads_v21_enums_ad_strength_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_ad_strength_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_strength_proto_init() } -func file_google_ads_googleads_v21_enums_ad_strength_proto_init() { - if File_google_ads_googleads_v21_enums_ad_strength_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_strength_proto_init() } +func file_google_ads_googleads_v22_enums_ad_strength_proto_init() { + if File_google_ads_googleads_v22_enums_ad_strength_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_strength_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_strength_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_strength_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_strength_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_strength_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_strength_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_strength_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_strength_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_strength_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_strength_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_strength_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_strength_proto = out.File - file_google_ads_googleads_v21_enums_ad_strength_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_strength_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_strength_proto = out.File + file_google_ads_googleads_v22_enums_ad_strength_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_strength_proto_depIdxs = nil } diff --git a/enums/ad_strength_action_item_type.pb.go b/enums/ad_strength_action_item_type.pb.go index 458ca8f5..b3a599b5 100644 --- a/enums/ad_strength_action_item_type.pb.go +++ b/enums/ad_strength_action_item_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_strength_action_item_type.proto +// source: google/ads/googleads/v22/enums/ad_strength_action_item_type.proto package enums @@ -72,11 +72,11 @@ func (x AdStrengthActionItemTypeEnum_AdStrengthActionItemType) String() string { } func (AdStrengthActionItemTypeEnum_AdStrengthActionItemType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_enumTypes[0].Descriptor() } func (AdStrengthActionItemTypeEnum_AdStrengthActionItemType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_enumTypes[0] } func (x AdStrengthActionItemTypeEnum_AdStrengthActionItemType) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x AdStrengthActionItemTypeEnum_AdStrengthActionItemType) Number() protoref // Deprecated: Use AdStrengthActionItemTypeEnum_AdStrengthActionItemType.Descriptor instead. func (AdStrengthActionItemTypeEnum_AdStrengthActionItemType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enumeration of ad strength action item types. @@ -97,7 +97,7 @@ type AdStrengthActionItemTypeEnum struct { func (x *AdStrengthActionItemTypeEnum) Reset() { *x = AdStrengthActionItemTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *AdStrengthActionItemTypeEnum) String() string { func (*AdStrengthActionItemTypeEnum) ProtoMessage() {} func (x *AdStrengthActionItemTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *AdStrengthActionItemTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdStrengthActionItemTypeEnum.ProtoReflect.Descriptor instead. func (*AdStrengthActionItemTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x67, 0x0a, 0x1c, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x47, 0x0a, 0x18, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDe 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x44, 0x44, 0x5f, 0x41, 0x53, 0x53, 0x45, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_goTypes = []any{ - (AdStrengthActionItemTypeEnum_AdStrengthActionItemType)(0), // 0: google.ads.googleads.v21.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType - (*AdStrengthActionItemTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdStrengthActionItemTypeEnum +var file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_goTypes = []any{ + (AdStrengthActionItemTypeEnum_AdStrengthActionItemType)(0), // 0: google.ads.googleads.v22.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType + (*AdStrengthActionItemTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdStrengthActionItemTypeEnum } -var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_ad_strength_action_item_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,27 +185,27 @@ var file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_strength_action_item_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_ad_strength_action_item_type_proto_depIdxs = nil } diff --git a/enums/ad_type.pb.go b/enums/ad_type.pb.go index 02c53e60..f33707bb 100644 --- a/enums/ad_type.pb.go +++ b/enums/ad_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/ad_type.proto +// source: google/ads/googleads/v22/enums/ad_type.proto package enums @@ -199,11 +199,11 @@ func (x AdTypeEnum_AdType) String() string { } func (AdTypeEnum_AdType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_ad_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_ad_type_proto_enumTypes[0].Descriptor() } func (AdTypeEnum_AdType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_ad_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_ad_type_proto_enumTypes[0] } func (x AdTypeEnum_AdType) Number() protoreflect.EnumNumber { @@ -212,7 +212,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_v21_enums_ad_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_ad_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -236,7 +236,7 @@ func (x *AdTypeEnum) String() string { func (*AdTypeEnum) ProtoMessage() {} func (x *AdTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_ad_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_ad_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -249,17 +249,17 @@ func (x *AdTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdTypeEnum.ProtoReflect.Descriptor instead. func (*AdTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_ad_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_ad_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_ad_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_ad_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_ad_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaf, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaf, 0x06, 0x0a, 0x0a, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa0, 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, @@ -313,40 +313,40 @@ var file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc = string([]byte{ 0x55, 0x54, 0x55, 0x42, 0x45, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x5f, 0x41, 0x44, 0x10, 0x2c, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x41, 0x64, 0x54, 0x79, 0x70, 0x65, 0x50, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_ad_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_ad_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_ad_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_ad_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_ad_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_ad_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_ad_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_ad_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_ad_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_ad_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_ad_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_ad_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_ad_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_ad_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_ad_type_proto_goTypes = []any{ - (AdTypeEnum_AdType)(0), // 0: google.ads.googleads.v21.enums.AdTypeEnum.AdType - (*AdTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdTypeEnum +var file_google_ads_googleads_v22_enums_ad_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_ad_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_ad_type_proto_goTypes = []any{ + (AdTypeEnum_AdType)(0), // 0: google.ads.googleads.v22.enums.AdTypeEnum.AdType + (*AdTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdTypeEnum } -var file_google_ads_googleads_v21_enums_ad_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -354,27 +354,27 @@ var file_google_ads_googleads_v21_enums_ad_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_ad_type_proto_init() } -func file_google_ads_googleads_v21_enums_ad_type_proto_init() { - if File_google_ads_googleads_v21_enums_ad_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_ad_type_proto_init() } +func file_google_ads_googleads_v22_enums_ad_type_proto_init() { + if File_google_ads_googleads_v22_enums_ad_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_ad_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_ad_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_ad_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_ad_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_ad_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_ad_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_ad_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_ad_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_ad_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_ad_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_ad_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_ad_type_proto = out.File - file_google_ads_googleads_v21_enums_ad_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_ad_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_ad_type_proto = out.File + file_google_ads_googleads_v22_enums_ad_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 f6e889cc..3fd264d8 100644 --- a/enums/advertising_channel_sub_type.pb.go +++ b/enums/advertising_channel_sub_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/advertising_channel_sub_type.proto +// source: google/ads/googleads/v22/enums/advertising_channel_sub_type.proto package enums @@ -152,11 +152,11 @@ func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) String() string } func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_enumTypes[0].Descriptor() } func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_enumTypes[0] } func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Number() protoreflect.EnumNumber { @@ -165,7 +165,7 @@ func (x AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) Number() protor // Deprecated: Use AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType.Descriptor instead. func (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189,7 +189,7 @@ func (x *AdvertisingChannelSubTypeEnum) String() string { func (*AdvertisingChannelSubTypeEnum) ProtoMessage() {} func (x *AdvertisingChannelSubTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202,18 +202,18 @@ func (x *AdvertisingChannelSubTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvertisingChannelSubTypeEnum.ProtoReflect.Descriptor instead. func (*AdvertisingChannelSubTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xaf, 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, 0x8d, 0x04, 0x0a, 0x19, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, @@ -251,42 +251,42 @@ var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDe 0x10, 0x14, 0x12, 0x11, 0x0a, 0x0d, 0x59, 0x4f, 0x55, 0x54, 0x55, 0x42, 0x45, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x4f, 0x10, 0x16, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_goTypes = []any{ - (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 0: google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - (*AdvertisingChannelSubTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum +var file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_goTypes = []any{ + (AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 0: google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + (*AdvertisingChannelSubTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum } -var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -294,27 +294,27 @@ var file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_init() } -func file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_init() { - if File_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_init() } +func file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_init() { + if File_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto = out.File - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_advertising_channel_sub_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto = out.File + file_google_ads_googleads_v22_enums_advertising_channel_sub_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 b5cc382d..5da2581c 100644 --- a/enums/advertising_channel_type.pb.go +++ b/enums/advertising_channel_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/advertising_channel_type.proto +// source: google/ads/googleads/v22/enums/advertising_channel_type.proto package enums @@ -118,11 +118,11 @@ func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) String() string { } func (AdvertisingChannelTypeEnum_AdvertisingChannelType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_advertising_channel_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_advertising_channel_type_proto_enumTypes[0].Descriptor() } func (AdvertisingChannelTypeEnum_AdvertisingChannelType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_advertising_channel_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_advertising_channel_type_proto_enumTypes[0] } func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) Number() protoreflect.EnumNumber { @@ -131,7 +131,7 @@ func (x AdvertisingChannelTypeEnum_AdvertisingChannelType) Number() protoreflect // Deprecated: Use AdvertisingChannelTypeEnum_AdvertisingChannelType.Descriptor instead. func (AdvertisingChannelTypeEnum_AdvertisingChannelType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_advertising_channel_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_advertising_channel_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *AdvertisingChannelTypeEnum) String() string { func (*AdvertisingChannelTypeEnum) ProtoMessage() {} func (x *AdvertisingChannelTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_advertising_channel_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_advertising_channel_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,18 +168,18 @@ func (x *AdvertisingChannelTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvertisingChannelTypeEnum.ProtoReflect.Descriptor instead. func (*AdvertisingChannelTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_advertising_channel_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_advertising_channel_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -198,42 +198,42 @@ var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc = 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_goTypes = []any{ - (AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 0: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (*AdvertisingChannelTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum +var file_google_ads_googleads_v22_enums_advertising_channel_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_advertising_channel_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_advertising_channel_type_proto_goTypes = []any{ + (AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 0: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (*AdvertisingChannelTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum } -var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -241,27 +241,27 @@ var file_google_ads_googleads_v21_enums_advertising_channel_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_advertising_channel_type_proto_init() } -func file_google_ads_googleads_v21_enums_advertising_channel_type_proto_init() { - if File_google_ads_googleads_v21_enums_advertising_channel_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_advertising_channel_type_proto_init() } +func file_google_ads_googleads_v22_enums_advertising_channel_type_proto_init() { + if File_google_ads_googleads_v22_enums_advertising_channel_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_advertising_channel_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_advertising_channel_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_advertising_channel_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_advertising_channel_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_advertising_channel_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_advertising_channel_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_advertising_channel_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_advertising_channel_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_advertising_channel_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_advertising_channel_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_advertising_channel_type_proto = out.File - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_advertising_channel_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_advertising_channel_type_proto = out.File + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_advertising_channel_type_proto_depIdxs = nil } diff --git a/enums/age_range_type.pb.go b/enums/age_range_type.pb.go index bafc94ca..fadeeba9 100644 --- a/enums/age_range_type.pb.go +++ b/enums/age_range_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/age_range_type.proto +// source: google/ads/googleads/v22/enums/age_range_type.proto package enums @@ -97,11 +97,11 @@ func (x AgeRangeTypeEnum_AgeRangeType) String() string { } func (AgeRangeTypeEnum_AgeRangeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_age_range_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_age_range_type_proto_enumTypes[0].Descriptor() } func (AgeRangeTypeEnum_AgeRangeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_age_range_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_age_range_type_proto_enumTypes[0] } func (x AgeRangeTypeEnum_AgeRangeType) Number() protoreflect.EnumNumber { @@ -110,7 +110,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_v21_enums_age_range_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_age_range_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_age_range_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *AgeRangeTypeEnum) String() string { func (*AgeRangeTypeEnum) ProtoMessage() {} func (x *AgeRangeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_age_range_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_age_range_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,17 +147,17 @@ func (x *AgeRangeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeRangeTypeEnum.ProtoReflect.Descriptor instead. func (*AgeRangeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_age_range_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_age_range_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_age_range_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -175,41 +175,41 @@ var file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc = string([] 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, 0x67, 0x65, 0x52, 0x61, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_age_range_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_age_range_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_age_range_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_age_range_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_age_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_age_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_age_range_type_proto_goTypes = []any{ - (AgeRangeTypeEnum_AgeRangeType)(0), // 0: google.ads.googleads.v21.enums.AgeRangeTypeEnum.AgeRangeType - (*AgeRangeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AgeRangeTypeEnum +var file_google_ads_googleads_v22_enums_age_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_age_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_age_range_type_proto_goTypes = []any{ + (AgeRangeTypeEnum_AgeRangeType)(0), // 0: google.ads.googleads.v22.enums.AgeRangeTypeEnum.AgeRangeType + (*AgeRangeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AgeRangeTypeEnum } -var file_google_ads_googleads_v21_enums_age_range_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -217,27 +217,27 @@ var file_google_ads_googleads_v21_enums_age_range_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_age_range_type_proto_init() } -func file_google_ads_googleads_v21_enums_age_range_type_proto_init() { - if File_google_ads_googleads_v21_enums_age_range_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_age_range_type_proto_init() } +func file_google_ads_googleads_v22_enums_age_range_type_proto_init() { + if File_google_ads_googleads_v22_enums_age_range_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_age_range_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_age_range_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_age_range_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_age_range_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_age_range_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_age_range_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_age_range_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_age_range_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_age_range_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_age_range_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_age_range_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_age_range_type_proto = out.File - file_google_ads_googleads_v21_enums_age_range_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_age_range_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_age_range_type_proto = out.File + file_google_ads_googleads_v22_enums_age_range_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 06fd926b..35df5143 100644 --- a/enums/android_privacy_interaction_type.pb.go +++ b/enums/android_privacy_interaction_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/android_privacy_interaction_type.proto +// source: google/ads/googleads/v22/enums/android_privacy_interaction_type.proto package enums @@ -80,11 +80,11 @@ func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) String( } func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_enumTypes[0].Descriptor() } func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_enumTypes[0] } func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) Number( // Deprecated: Use AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType.Descriptor instead. func (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AndroidPrivacyInteractionTypeEnum) String() string { func (*AndroidPrivacyInteractionTypeEnum) ProtoMessage() {} func (x *AndroidPrivacyInteractionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,19 +130,19 @@ func (x *AndroidPrivacyInteractionTypeEnum) ProtoReflect() protoreflect.Message // Deprecated: Use AndroidPrivacyInteractionTypeEnum.ProtoReflect.Descriptor instead. func (*AndroidPrivacyInteractionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x21, 0x41, 0x6e, 0x64, 0x72, + 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x41, 0x6e, 0x64, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_goTypes = []any{ - (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 0: google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - (*AndroidPrivacyInteractionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum +var file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_goTypes = []any{ + (AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 0: google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + (*AndroidPrivacyInteractionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum } -var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_init() } -func file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_init() { - if File_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_init() } +func file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_init() { + if File_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto = out.File - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_android_privacy_interaction_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto = out.File + file_google_ads_googleads_v22_enums_android_privacy_interaction_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 34bc48b0..e3a80962 100644 --- a/enums/android_privacy_network_type.pb.go +++ b/enums/android_privacy_network_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/android_privacy_network_type.proto +// source: google/ads/googleads/v22/enums/android_privacy_network_type.proto package enums @@ -80,11 +80,11 @@ func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) String() string } func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_enumTypes[0].Descriptor() } func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_enumTypes[0] } func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) Number() protor // Deprecated: Use AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType.Descriptor instead. func (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AndroidPrivacyNetworkTypeEnum) String() string { func (*AndroidPrivacyNetworkTypeEnum) ProtoMessage() {} func (x *AndroidPrivacyNetworkTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *AndroidPrivacyNetworkTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AndroidPrivacyNetworkTypeEnum.ProtoReflect.Descriptor instead. func (*AndroidPrivacyNetworkTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_android_privacy_network_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_android_privacy_network_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_goTypes = []any{ - (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 0: google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType - (*AndroidPrivacyNetworkTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum +var file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_goTypes = []any{ + (AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 0: google.ads.googleads.v22.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType + (*AndroidPrivacyNetworkTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AndroidPrivacyNetworkTypeEnum } -var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_init() } -func file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_init() { - if File_google_ads_googleads_v21_enums_android_privacy_network_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_init() } +func file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_init() { + if File_google_ads_googleads_v22_enums_android_privacy_network_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_android_privacy_network_type_proto = out.File - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_android_privacy_network_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_android_privacy_network_type_proto = out.File + file_google_ads_googleads_v22_enums_android_privacy_network_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 39d472e5..677507bf 100644 --- a/enums/app_bidding_goal.pb.go +++ b/enums/app_bidding_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/app_bidding_goal.proto +// source: google/ads/googleads/v22/enums/app_bidding_goal.proto package enums @@ -107,11 +107,11 @@ func (x AppBiddingGoalEnum_AppBiddingGoal) String() string { } func (AppBiddingGoalEnum_AppBiddingGoal) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_app_bidding_goal_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_app_bidding_goal_proto_enumTypes[0].Descriptor() } func (AppBiddingGoalEnum_AppBiddingGoal) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_app_bidding_goal_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_app_bidding_goal_proto_enumTypes[0] } func (x AppBiddingGoalEnum_AppBiddingGoal) Number() protoreflect.EnumNumber { @@ -120,7 +120,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_v21_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_app_bidding_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_bidding_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *AppBiddingGoalEnum) String() string { func (*AppBiddingGoalEnum) ProtoMessage() {} func (x *AppBiddingGoalEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_app_bidding_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_bidding_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,18 +158,18 @@ func (x *AppBiddingGoalEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AppBiddingGoalEnum.ProtoReflect.Descriptor instead. func (*AppBiddingGoalEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_app_bidding_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_app_bidding_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x03, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x42, + 0x32, 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, @@ -196,42 +196,42 @@ var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDescData + return file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDescData } -var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_goTypes = []any{ - (AppBiddingGoalEnum_AppBiddingGoal)(0), // 0: google.ads.googleads.v21.enums.AppBiddingGoalEnum.AppBiddingGoal - (*AppBiddingGoalEnum)(nil), // 1: google.ads.googleads.v21.enums.AppBiddingGoalEnum +var file_google_ads_googleads_v22_enums_app_bidding_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_app_bidding_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_app_bidding_goal_proto_goTypes = []any{ + (AppBiddingGoalEnum_AppBiddingGoal)(0), // 0: google.ads.googleads.v22.enums.AppBiddingGoalEnum.AppBiddingGoal + (*AppBiddingGoalEnum)(nil), // 1: google.ads.googleads.v22.enums.AppBiddingGoalEnum } -var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -239,27 +239,27 @@ var file_google_ads_googleads_v21_enums_app_bidding_goal_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_app_bidding_goal_proto_init() } -func file_google_ads_googleads_v21_enums_app_bidding_goal_proto_init() { - if File_google_ads_googleads_v21_enums_app_bidding_goal_proto != nil { +func init() { file_google_ads_googleads_v22_enums_app_bidding_goal_proto_init() } +func file_google_ads_googleads_v22_enums_app_bidding_goal_proto_init() { + if File_google_ads_googleads_v22_enums_app_bidding_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_bidding_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_bidding_goal_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_app_bidding_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_app_bidding_goal_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_app_bidding_goal_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_app_bidding_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_app_bidding_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_app_bidding_goal_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_app_bidding_goal_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_app_bidding_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_app_bidding_goal_proto = out.File - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_goTypes = nil - file_google_ads_googleads_v21_enums_app_bidding_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_app_bidding_goal_proto = out.File + file_google_ads_googleads_v22_enums_app_bidding_goal_proto_goTypes = nil + file_google_ads_googleads_v22_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 4caddda0..43b89542 100644 --- a/enums/app_campaign_app_store.pb.go +++ b/enums/app_campaign_app_store.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/app_campaign_app_store.proto +// source: google/ads/googleads/v22/enums/app_campaign_app_store.proto package enums @@ -76,11 +76,11 @@ func (x AppCampaignAppStoreEnum_AppCampaignAppStore) String() string { } func (AppCampaignAppStoreEnum_AppCampaignAppStore) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_enumTypes[0].Descriptor() } func (AppCampaignAppStoreEnum_AppCampaignAppStore) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_enumTypes[0] } func (x AppCampaignAppStoreEnum_AppCampaignAppStore) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *AppCampaignAppStoreEnum) String() string { func (*AppCampaignAppStoreEnum) ProtoMessage() {} func (x *AppCampaignAppStoreEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *AppCampaignAppStoreEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AppCampaignAppStoreEnum.ProtoReflect.Descriptor instead. func (*AppCampaignAppStoreEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_app_campaign_app_store_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_app_campaign_app_store_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x79, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDescData + return file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDescData } -var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_goTypes = []any{ - (AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 0: google.ads.googleads.v21.enums.AppCampaignAppStoreEnum.AppCampaignAppStore - (*AppCampaignAppStoreEnum)(nil), // 1: google.ads.googleads.v21.enums.AppCampaignAppStoreEnum +var file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_goTypes = []any{ + (AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 0: google.ads.googleads.v22.enums.AppCampaignAppStoreEnum.AppCampaignAppStore + (*AppCampaignAppStoreEnum)(nil), // 1: google.ads.googleads.v22.enums.AppCampaignAppStoreEnum } -var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_init() } -func file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_init() { - if File_google_ads_googleads_v21_enums_app_campaign_app_store_proto != nil { +func init() { file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_init() } +func file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_init() { + if File_google_ads_googleads_v22_enums_app_campaign_app_store_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_app_campaign_app_store_proto = out.File - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_goTypes = nil - file_google_ads_googleads_v21_enums_app_campaign_app_store_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_app_campaign_app_store_proto = out.File + file_google_ads_googleads_v22_enums_app_campaign_app_store_proto_goTypes = nil + file_google_ads_googleads_v22_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 bc04dca6..6370568a 100644 --- a/enums/app_campaign_bidding_strategy_goal_type.pb.go +++ b/enums/app_campaign_bidding_strategy_goal_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/app_campaign_bidding_strategy_goal_type.proto +// source: google/ads/googleads/v22/enums/app_campaign_bidding_strategy_goal_type.proto package enums @@ -62,6 +62,13 @@ const ( AppCampaignBiddingStrategyGoalTypeEnum_OPTIMIZE_PRE_REGISTRATION_CONVERSION_VOLUME AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType = 6 // Aim to maximize installation of the app without target cost-per-install. AppCampaignBiddingStrategyGoalTypeEnum_OPTIMIZE_INSTALLS_WITHOUT_TARGET_INSTALL_COST AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType = 7 + // Aim to maximize the selected in-app conversion's volume while spending + // the full budget. No advertiser-specific target CPA. + AppCampaignBiddingStrategyGoalTypeEnum_OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType = 8 + // Aim to maximize total conversion value, such as install and selected + // in-app conversions, while spending the full budget. No + // advertiser-specified target ROAS. + AppCampaignBiddingStrategyGoalTypeEnum_OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType = 9 ) // Enum value maps for AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType. @@ -75,6 +82,8 @@ var ( 5: "OPTIMIZE_RETURN_ON_ADVERTISING_SPEND", 6: "OPTIMIZE_PRE_REGISTRATION_CONVERSION_VOLUME", 7: "OPTIMIZE_INSTALLS_WITHOUT_TARGET_INSTALL_COST", + 8: "OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA", + 9: "OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS", } AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType_value = map[string]int32{ "UNSPECIFIED": 0, @@ -85,6 +94,8 @@ var ( "OPTIMIZE_RETURN_ON_ADVERTISING_SPEND": 5, "OPTIMIZE_PRE_REGISTRATION_CONVERSION_VOLUME": 6, "OPTIMIZE_INSTALLS_WITHOUT_TARGET_INSTALL_COST": 7, + "OPTIMIZE_IN_APP_CONVERSIONS_WITHOUT_TARGET_CPA": 8, + "OPTIMIZE_TOTAL_VALUE_WITHOUT_TARGET_ROAS": 9, } ) @@ -99,11 +110,11 @@ func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalTyp } func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0].Descriptor() } func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes[0] } func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) Number() protoreflect.EnumNumber { @@ -112,7 +123,7 @@ func (x AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalTyp // Deprecated: Use AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType.Descriptor instead. func (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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 +136,7 @@ type AppCampaignBiddingStrategyGoalTypeEnum struct { func (x *AppCampaignBiddingStrategyGoalTypeEnum) Reset() { *x = AppCampaignBiddingStrategyGoalTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +148,7 @@ func (x *AppCampaignBiddingStrategyGoalTypeEnum) String() string { func (*AppCampaignBiddingStrategyGoalTypeEnum) ProtoMessage() {} func (x *AppCampaignBiddingStrategyGoalTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,22 +161,22 @@ func (x *AppCampaignBiddingStrategyGoalTypeEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use AppCampaignBiddingStrategyGoalTypeEnum.ProtoReflect.Descriptor instead. func (*AppCampaignBiddingStrategyGoalTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf5, 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, + 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xca, 0x03, 0x0a, 0x22, 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, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, @@ -188,44 +199,51 @@ var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_ 0x06, 0x12, 0x31, 0x0a, 0x2d, 0x4f, 0x50, 0x54, 0x49, 0x4d, 0x49, 0x5a, 0x45, 0x5f, 0x49, 0x4e, 0x53, 0x54, 0x41, 0x4c, 0x4c, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x4f, 0x55, 0x54, 0x5f, 0x54, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, - 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, - 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, - 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, - 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x53, 0x54, 0x10, 0x07, 0x12, 0x32, 0x0a, 0x2e, 0x4f, 0x50, 0x54, 0x49, 0x4d, 0x49, 0x5a, 0x45, + 0x5f, 0x49, 0x4e, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, + 0x4f, 0x4e, 0x53, 0x5f, 0x57, 0x49, 0x54, 0x48, 0x4f, 0x55, 0x54, 0x5f, 0x54, 0x41, 0x52, 0x47, + 0x45, 0x54, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x08, 0x12, 0x2c, 0x0a, 0x28, 0x4f, 0x50, 0x54, 0x49, + 0x4d, 0x49, 0x5a, 0x45, 0x5f, 0x54, 0x4f, 0x54, 0x41, 0x4c, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, + 0x5f, 0x57, 0x49, 0x54, 0x48, 0x4f, 0x55, 0x54, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, + 0x52, 0x4f, 0x41, 0x53, 0x10, 0x09, 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, 0x32, 0x32, 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, 0x32, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, + 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, + 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = []any{ - (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 0: google.ads.googleads.v21.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType - (*AppCampaignBiddingStrategyGoalTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AppCampaignBiddingStrategyGoalTypeEnum +var file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = []any{ + (AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 0: google.ads.googleads.v22.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType + (*AppCampaignBiddingStrategyGoalTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AppCampaignBiddingStrategyGoalTypeEnum } -var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +251,27 @@ var file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_init() } -func file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_init() { - if File_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_init() } +func file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_init() { + if File_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto = out.File - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_app_campaign_bidding_strategy_goal_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto = out.File + file_google_ads_googleads_v22_enums_app_campaign_bidding_strategy_goal_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 b857c014..6eb1ee25 100644 --- a/enums/app_payment_model_type.pb.go +++ b/enums/app_payment_model_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/app_payment_model_type.proto +// source: google/ads/googleads/v22/enums/app_payment_model_type.proto package enums @@ -72,11 +72,11 @@ func (x AppPaymentModelTypeEnum_AppPaymentModelType) String() string { } func (AppPaymentModelTypeEnum_AppPaymentModelType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_app_payment_model_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_app_payment_model_type_proto_enumTypes[0].Descriptor() } func (AppPaymentModelTypeEnum_AppPaymentModelType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_app_payment_model_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_app_payment_model_type_proto_enumTypes[0] } func (x AppPaymentModelTypeEnum_AppPaymentModelType) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_app_payment_model_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_payment_model_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *AppPaymentModelTypeEnum) String() string { func (*AppPaymentModelTypeEnum) ProtoMessage() {} func (x *AppPaymentModelTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_app_payment_model_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_payment_model_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *AppPaymentModelTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AppPaymentModelTypeEnum.ProtoReflect.Descriptor instead. func (*AppPaymentModelTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_app_payment_model_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_app_payment_model_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,42 +141,42 @@ var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_goTypes = []any{ - (AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 0: google.ads.googleads.v21.enums.AppPaymentModelTypeEnum.AppPaymentModelType - (*AppPaymentModelTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AppPaymentModelTypeEnum +var file_google_ads_googleads_v22_enums_app_payment_model_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_app_payment_model_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_app_payment_model_type_proto_goTypes = []any{ + (AppPaymentModelTypeEnum_AppPaymentModelType)(0), // 0: google.ads.googleads.v22.enums.AppPaymentModelTypeEnum.AppPaymentModelType + (*AppPaymentModelTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AppPaymentModelTypeEnum } -var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_enums_app_payment_model_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_app_payment_model_type_proto_init() } -func file_google_ads_googleads_v21_enums_app_payment_model_type_proto_init() { - if File_google_ads_googleads_v21_enums_app_payment_model_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_app_payment_model_type_proto_init() } +func file_google_ads_googleads_v22_enums_app_payment_model_type_proto_init() { + if File_google_ads_googleads_v22_enums_app_payment_model_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_payment_model_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_payment_model_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_app_payment_model_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_app_payment_model_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_app_payment_model_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_app_payment_model_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_app_payment_model_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_app_payment_model_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_app_payment_model_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_app_payment_model_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_app_payment_model_type_proto = out.File - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_app_payment_model_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_app_payment_model_type_proto = out.File + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_app_payment_model_type_proto_depIdxs = nil } diff --git a/enums/app_url_operating_system_type.pb.go b/enums/app_url_operating_system_type.pb.go index 376347f1..c34b33d5 100644 --- a/enums/app_url_operating_system_type.pb.go +++ b/enums/app_url_operating_system_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/app_url_operating_system_type.proto +// source: google/ads/googleads/v22/enums/app_url_operating_system_type.proto package enums @@ -76,11 +76,11 @@ func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) String() string } func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_enumTypes[0].Descriptor() } func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_enumTypes[0] } func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) Number() protor // Deprecated: Use AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType.Descriptor instead. func (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *AppUrlOperatingSystemTypeEnum) String() string { func (*AppUrlOperatingSystemTypeEnum) ProtoMessage() {} func (x *AppUrlOperatingSystemTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *AppUrlOperatingSystemTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AppUrlOperatingSystemTypeEnum.ProtoReflect.Descriptor instead. func (*AppUrlOperatingSystemTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_app_url_operating_system_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_app_url_operating_system_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_goTypes = []any{ - (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 0: google.ads.googleads.v21.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType - (*AppUrlOperatingSystemTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AppUrlOperatingSystemTypeEnum +var file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_goTypes = []any{ + (AppUrlOperatingSystemTypeEnum_AppUrlOperatingSystemType)(0), // 0: google.ads.googleads.v22.enums.AppUrlOperatingSystemTypeEnum.AppUrlOperatingSystemType + (*AppUrlOperatingSystemTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AppUrlOperatingSystemTypeEnum } -var file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_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_v21_enums_app_url_operating_system_type_proto_init() } -func file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_init() { - if File_google_ads_googleads_v21_enums_app_url_operating_system_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_init() } +func file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_init() { + if File_google_ads_googleads_v22_enums_app_url_operating_system_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_app_url_operating_system_type_proto = out.File - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_app_url_operating_system_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_app_url_operating_system_type_proto = out.File + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_app_url_operating_system_type_proto_depIdxs = nil } diff --git a/enums/application_instance.pb.go b/enums/application_instance.pb.go index b602ff6b..176e355b 100644 --- a/enums/application_instance.pb.go +++ b/enums/application_instance.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/application_instance.proto +// source: google/ads/googleads/v22/enums/application_instance.proto package enums @@ -76,11 +76,11 @@ func (x ApplicationInstanceEnum_ApplicationInstance) String() string { } func (ApplicationInstanceEnum_ApplicationInstance) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_application_instance_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_application_instance_proto_enumTypes[0].Descriptor() } func (ApplicationInstanceEnum_ApplicationInstance) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_application_instance_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_application_instance_proto_enumTypes[0] } func (x ApplicationInstanceEnum_ApplicationInstance) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ApplicationInstanceEnum_ApplicationInstance) Number() protoreflect.EnumN // Deprecated: Use ApplicationInstanceEnum_ApplicationInstance.Descriptor instead. func (ApplicationInstanceEnum_ApplicationInstance) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_application_instance_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_application_instance_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing application instance types. @@ -101,7 +101,7 @@ type ApplicationInstanceEnum struct { func (x *ApplicationInstanceEnum) Reset() { *x = ApplicationInstanceEnum{} - mi := &file_google_ads_googleads_v21_enums_application_instance_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_application_instance_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ApplicationInstanceEnum) String() string { func (*ApplicationInstanceEnum) ProtoMessage() {} func (x *ApplicationInstanceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_application_instance_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_application_instance_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ApplicationInstanceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplicationInstanceEnum.ProtoReflect.Descriptor instead. func (*ApplicationInstanceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_application_instance_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_application_instance_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_application_instance_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_application_instance_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_application_instance_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b, 0x0a, 0x17, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b, 0x0a, 0x17, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x60, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0f, 0x0a, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc = str 0x45, 0x53, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x50, 0x52, 0x4f, 0x44, 0x55, 0x43, 0x54, 0x49, 0x4f, 0x4e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x74, 0x61, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_application_instance_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_application_instance_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_application_instance_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_application_instance_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_application_instance_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_application_instance_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_application_instance_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc), len(file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_application_instance_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_application_instance_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_application_instance_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_application_instance_proto_rawDesc), len(file_google_ads_googleads_v22_enums_application_instance_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_application_instance_proto_rawDescData + return file_google_ads_googleads_v22_enums_application_instance_proto_rawDescData } -var file_google_ads_googleads_v21_enums_application_instance_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_application_instance_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_application_instance_proto_goTypes = []any{ - (ApplicationInstanceEnum_ApplicationInstance)(0), // 0: google.ads.googleads.v21.enums.ApplicationInstanceEnum.ApplicationInstance - (*ApplicationInstanceEnum)(nil), // 1: google.ads.googleads.v21.enums.ApplicationInstanceEnum +var file_google_ads_googleads_v22_enums_application_instance_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_application_instance_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_application_instance_proto_goTypes = []any{ + (ApplicationInstanceEnum_ApplicationInstance)(0), // 0: google.ads.googleads.v22.enums.ApplicationInstanceEnum.ApplicationInstance + (*ApplicationInstanceEnum)(nil), // 1: google.ads.googleads.v22.enums.ApplicationInstanceEnum } -var file_google_ads_googleads_v21_enums_application_instance_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_application_instance_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +190,27 @@ var file_google_ads_googleads_v21_enums_application_instance_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_application_instance_proto_init() } -func file_google_ads_googleads_v21_enums_application_instance_proto_init() { - if File_google_ads_googleads_v21_enums_application_instance_proto != nil { +func init() { file_google_ads_googleads_v22_enums_application_instance_proto_init() } +func file_google_ads_googleads_v22_enums_application_instance_proto_init() { + if File_google_ads_googleads_v22_enums_application_instance_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc), len(file_google_ads_googleads_v21_enums_application_instance_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_application_instance_proto_rawDesc), len(file_google_ads_googleads_v22_enums_application_instance_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_application_instance_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_application_instance_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_application_instance_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_application_instance_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_application_instance_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_application_instance_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_application_instance_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_application_instance_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_application_instance_proto = out.File - file_google_ads_googleads_v21_enums_application_instance_proto_goTypes = nil - file_google_ads_googleads_v21_enums_application_instance_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_application_instance_proto = out.File + file_google_ads_googleads_v22_enums_application_instance_proto_goTypes = nil + file_google_ads_googleads_v22_enums_application_instance_proto_depIdxs = nil } diff --git a/enums/asset_automation_status.pb.go b/enums/asset_automation_status.pb.go index 25ecdf85..2c2dad33 100644 --- a/enums/asset_automation_status.pb.go +++ b/enums/asset_automation_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_automation_status.proto +// source: google/ads/googleads/v22/enums/asset_automation_status.proto package enums @@ -78,11 +78,11 @@ func (x AssetAutomationStatusEnum_AssetAutomationStatus) String() string { } func (AssetAutomationStatusEnum_AssetAutomationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_automation_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_automation_status_proto_enumTypes[0].Descriptor() } func (AssetAutomationStatusEnum_AssetAutomationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_automation_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_automation_status_proto_enumTypes[0] } func (x AssetAutomationStatusEnum_AssetAutomationStatus) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_asset_automation_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_automation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_automation_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *AssetAutomationStatusEnum) String() string { func (*AssetAutomationStatusEnum) ProtoMessage() {} func (x *AssetAutomationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_automation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_automation_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *AssetAutomationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetAutomationStatusEnum.ProtoReflect.Descriptor instead. func (*AssetAutomationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_automation_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_automation_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_automation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_automation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_automation_status_proto_goTypes = []any{ - (AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 0: google.ads.googleads.v21.enums.AssetAutomationStatusEnum.AssetAutomationStatus - (*AssetAutomationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetAutomationStatusEnum +var file_google_ads_googleads_v22_enums_asset_automation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_automation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_automation_status_proto_goTypes = []any{ + (AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 0: google.ads.googleads.v22.enums.AssetAutomationStatusEnum.AssetAutomationStatus + (*AssetAutomationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetAutomationStatusEnum } -var file_google_ads_googleads_v21_enums_asset_automation_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_asset_automation_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_automation_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_automation_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_automation_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_automation_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_automation_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_automation_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_automation_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_automation_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_automation_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_automation_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_automation_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_automation_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_automation_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_automation_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_automation_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_automation_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_automation_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_automation_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_automation_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_automation_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_automation_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_automation_status_proto_depIdxs = nil } diff --git a/enums/asset_automation_type.pb.go b/enums/asset_automation_type.pb.go index fb23824e..b95a924d 100644 --- a/enums/asset_automation_type.pb.go +++ b/enums/asset_automation_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_automation_type.proto +// source: google/ads/googleads/v22/enums/asset_automation_type.proto package enums @@ -65,12 +65,24 @@ const ( // Generates video enhancements (vertical and shorter videos) for PMax // campaigns. Opted in by default. AssetAutomationTypeEnum_GENERATE_ENHANCED_YOUTUBE_VIDEOS AssetAutomationTypeEnum_AssetAutomationType = 6 + // Generates image enhancements (AutoCrop and AutoEnhance). Opted + // in by default for pmax. + AssetAutomationTypeEnum_GENERATE_IMAGE_ENHANCEMENT AssetAutomationTypeEnum_AssetAutomationType = 7 + // Generates image extraction. Opted in by default for pmax. + AssetAutomationTypeEnum_GENERATE_IMAGE_EXTRACTION AssetAutomationTypeEnum_AssetAutomationType = 9 + // Adds design elements and embeds text assets into image assets to create + // images with different aspect ratios. By default, advertisers are opted + // in for DemandGenMultiAssetAd. + AssetAutomationTypeEnum_GENERATE_DESIGN_VERSIONS_FOR_IMAGES AssetAutomationTypeEnum_AssetAutomationType = 10 // Controls automation for text assets related to Final URL expansion. This // includes automatically creating dynamic landing pages from the final URL // and generating text assets from the content of those landing pages. This - // setting only applies to Search campaigns, and advertisers are opted-out - // by default. + // setting is turned OFF by default for Search campaigns, but it is turned + // ON by default for Performance Max campaigns. AssetAutomationTypeEnum_FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION AssetAutomationTypeEnum_AssetAutomationType = 11 + // Generates videos using other Assets as input, such as images and text. By + // default, advertisers are opted in for DemandGenMultiAssetAd. + AssetAutomationTypeEnum_GENERATE_VIDEOS_FROM_OTHER_ASSETS AssetAutomationTypeEnum_AssetAutomationType = 12 ) // Enum value maps for AssetAutomationTypeEnum_AssetAutomationType. @@ -83,7 +95,11 @@ var ( 4: "GENERATE_SHORTER_YOUTUBE_VIDEOS", 5: "GENERATE_LANDING_PAGE_PREVIEW", 6: "GENERATE_ENHANCED_YOUTUBE_VIDEOS", + 7: "GENERATE_IMAGE_ENHANCEMENT", + 9: "GENERATE_IMAGE_EXTRACTION", + 10: "GENERATE_DESIGN_VERSIONS_FOR_IMAGES", 11: "FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION", + 12: "GENERATE_VIDEOS_FROM_OTHER_ASSETS", } AssetAutomationTypeEnum_AssetAutomationType_value = map[string]int32{ "UNSPECIFIED": 0, @@ -93,7 +109,11 @@ var ( "GENERATE_SHORTER_YOUTUBE_VIDEOS": 4, "GENERATE_LANDING_PAGE_PREVIEW": 5, "GENERATE_ENHANCED_YOUTUBE_VIDEOS": 6, + "GENERATE_IMAGE_ENHANCEMENT": 7, + "GENERATE_IMAGE_EXTRACTION": 9, + "GENERATE_DESIGN_VERSIONS_FOR_IMAGES": 10, "FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION": 11, + "GENERATE_VIDEOS_FROM_OTHER_ASSETS": 12, } ) @@ -108,11 +128,11 @@ func (x AssetAutomationTypeEnum_AssetAutomationType) String() string { } func (AssetAutomationTypeEnum_AssetAutomationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_automation_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_automation_type_proto_enumTypes[0].Descriptor() } func (AssetAutomationTypeEnum_AssetAutomationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_automation_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_automation_type_proto_enumTypes[0] } func (x AssetAutomationTypeEnum_AssetAutomationType) Number() protoreflect.EnumNumber { @@ -121,7 +141,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_v21_enums_asset_automation_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the type of asset automation. @@ -133,7 +153,7 @@ type AssetAutomationTypeEnum struct { func (x *AssetAutomationTypeEnum) Reset() { *x = AssetAutomationTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_automation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_automation_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +165,7 @@ func (x *AssetAutomationTypeEnum) String() string { func (*AssetAutomationTypeEnum) ProtoMessage() {} func (x *AssetAutomationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_automation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_automation_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,20 +178,20 @@ func (x *AssetAutomationTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetAutomationTypeEnum.ProtoReflect.Descriptor instead. func (*AssetAutomationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_automation_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_automation_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x02, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbc, 0x03, 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, 0x91, 0x02, 0x0a, 0x13, 0x41, 0x73, 0x73, + 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa0, 0x03, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65, 0x74, 0x41, 0x75, 0x74, 0x6f, 0x6d, 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, 0x19, @@ -185,47 +205,56 @@ var file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc = st 0x5f, 0x4c, 0x41, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x50, 0x52, 0x45, 0x56, 0x49, 0x45, 0x57, 0x10, 0x05, 0x12, 0x24, 0x0a, 0x20, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x5f, 0x45, 0x4e, 0x48, 0x41, 0x4e, 0x43, 0x45, 0x44, 0x5f, 0x59, 0x4f, 0x55, - 0x54, 0x55, 0x42, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x10, 0x06, 0x12, 0x2d, 0x0a, - 0x29, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x45, 0x58, 0x50, 0x41, 0x4e, - 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, - 0x41, 0x55, 0x54, 0x4f, 0x4d, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x0b, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, - 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, - 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x54, 0x55, 0x42, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x10, 0x06, 0x12, 0x1e, 0x0a, + 0x1a, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, + 0x45, 0x4e, 0x48, 0x41, 0x4e, 0x43, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x10, 0x07, 0x12, 0x1d, 0x0a, + 0x19, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, + 0x45, 0x58, 0x54, 0x52, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x09, 0x12, 0x27, 0x0a, 0x23, + 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x5f, 0x44, 0x45, 0x53, 0x49, 0x47, 0x4e, 0x5f, + 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x49, 0x4d, 0x41, + 0x47, 0x45, 0x53, 0x10, 0x0a, 0x12, 0x2d, 0x0a, 0x29, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, + 0x52, 0x4c, 0x5f, 0x45, 0x58, 0x50, 0x41, 0x4e, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x45, 0x58, + 0x54, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x41, 0x55, 0x54, 0x4f, 0x4d, 0x41, 0x54, 0x49, + 0x4f, 0x4e, 0x10, 0x0b, 0x12, 0x25, 0x0a, 0x21, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, + 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x5f, 0x46, 0x52, 0x4f, 0x4d, 0x5f, 0x4f, 0x54, 0x48, + 0x45, 0x52, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x53, 0x10, 0x0c, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_automation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_automation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_automation_type_proto_goTypes = []any{ - (AssetAutomationTypeEnum_AssetAutomationType)(0), // 0: google.ads.googleads.v21.enums.AssetAutomationTypeEnum.AssetAutomationType - (*AssetAutomationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetAutomationTypeEnum +var file_google_ads_googleads_v22_enums_asset_automation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_automation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_automation_type_proto_goTypes = []any{ + (AssetAutomationTypeEnum_AssetAutomationType)(0), // 0: google.ads.googleads.v22.enums.AssetAutomationTypeEnum.AssetAutomationType + (*AssetAutomationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetAutomationTypeEnum } -var file_google_ads_googleads_v21_enums_asset_automation_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +262,27 @@ var file_google_ads_googleads_v21_enums_asset_automation_type_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_automation_type_proto_init() } -func file_google_ads_googleads_v21_enums_asset_automation_type_proto_init() { - if File_google_ads_googleads_v21_enums_asset_automation_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_automation_type_proto_init() } +func file_google_ads_googleads_v22_enums_asset_automation_type_proto_init() { + if File_google_ads_googleads_v22_enums_asset_automation_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_automation_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_automation_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_automation_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_automation_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_automation_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_automation_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_automation_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_automation_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_automation_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_automation_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_automation_type_proto = out.File - file_google_ads_googleads_v21_enums_asset_automation_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_automation_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_automation_type_proto = out.File + file_google_ads_googleads_v22_enums_asset_automation_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_automation_type_proto_depIdxs = nil } diff --git a/enums/asset_coverage_video_aspect_ratio_requirement.pb.go b/enums/asset_coverage_video_aspect_ratio_requirement.pb.go index 1613b1bd..4704634e 100644 --- a/enums/asset_coverage_video_aspect_ratio_requirement.pb.go +++ b/enums/asset_coverage_video_aspect_ratio_requirement.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_coverage_video_aspect_ratio_requirement.proto +// source: google/ads/googleads/v22/enums/asset_coverage_video_aspect_ratio_requirement.proto package enums @@ -80,11 +80,11 @@ func (x AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRat } func (AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes[0].Descriptor() } func (AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes[0] } func (x AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRat // Deprecated: Use AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement.Descriptor instead. func (AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible ad strength video aspect ratio @@ -106,7 +106,7 @@ type AssetCoverageVideoAspectRatioRequirementEnum struct { func (x *AssetCoverageVideoAspectRatioRequirementEnum) Reset() { *x = AssetCoverageVideoAspectRatioRequirementEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *AssetCoverageVideoAspectRatioRequirementEnum) String() string { func (*AssetCoverageVideoAspectRatioRequirementEnum) ProtoMessage() {} func (x *AssetCoverageVideoAspectRatioRequirementEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,19 +131,19 @@ func (x *AssetCoverageVideoAspectRatioRequirementEnum) ProtoReflect() protorefle // Deprecated: Use AssetCoverageVideoAspectRatioRequirementEnum.ProtoReflect.Descriptor instead. func (*AssetCoverageVideoAspectRatioRequirementEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc = string([]byte{ 0x0a, 0x52, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, 0x2c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x70, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, @@ -156,43 +156,43 @@ var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requir 0x0a, 0x0a, 0x06, 0x53, 0x51, 0x55, 0x41, 0x52, 0x45, 0x10, 0x03, 0x12, 0x0c, 0x0a, 0x08, 0x56, 0x45, 0x52, 0x54, 0x49, 0x43, 0x41, 0x4c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x70, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes = []any{ - (AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement)(0), // 0: google.ads.googleads.v21.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement - (*AssetCoverageVideoAspectRatioRequirementEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetCoverageVideoAspectRatioRequirementEnum +var file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes = []any{ + (AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement)(0), // 0: google.ads.googleads.v22.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement + (*AssetCoverageVideoAspectRatioRequirementEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetCoverageVideoAspectRatioRequirementEnum } -var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +201,28 @@ var file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requir } func init() { - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_init() + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_init() } -func file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_init() { - if File_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto != nil { +func file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_init() { + if File_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto = out.File - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto = out.File + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_coverage_video_aspect_ratio_requirement_proto_depIdxs = nil } diff --git a/enums/asset_field_type.pb.go b/enums/asset_field_type.pb.go index ccc7cc30..5d3dd93c 100644 --- a/enums/asset_field_type.pb.go +++ b/enums/asset_field_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_field_type.proto +// source: google/ads/googleads/v22/enums/asset_field_type.proto package enums @@ -107,6 +107,8 @@ const ( AssetFieldTypeEnum_TALL_PORTRAIT_MARKETING_IMAGE AssetFieldTypeEnum_AssetFieldType = 32 // The asset is linked for use as related YouTube videos. AssetFieldTypeEnum_RELATED_YOUTUBE_VIDEOS AssetFieldTypeEnum_AssetFieldType = 33 + // The asset is linked for use as a landing page preview image. + AssetFieldTypeEnum_LANDING_PAGE_PREVIEW AssetFieldTypeEnum_AssetFieldType = 38 ) // Enum value maps for AssetFieldTypeEnum_AssetFieldType. @@ -145,6 +147,7 @@ var ( 31: "BUSINESS_MESSAGE", 32: "TALL_PORTRAIT_MARKETING_IMAGE", 33: "RELATED_YOUTUBE_VIDEOS", + 38: "LANDING_PAGE_PREVIEW", } AssetFieldTypeEnum_AssetFieldType_value = map[string]int32{ "UNSPECIFIED": 0, @@ -180,6 +183,7 @@ var ( "BUSINESS_MESSAGE": 31, "TALL_PORTRAIT_MARKETING_IMAGE": 32, "RELATED_YOUTUBE_VIDEOS": 33, + "LANDING_PAGE_PREVIEW": 38, } ) @@ -194,11 +198,11 @@ func (x AssetFieldTypeEnum_AssetFieldType) String() string { } func (AssetFieldTypeEnum_AssetFieldType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_field_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_field_type_proto_enumTypes[0].Descriptor() } func (AssetFieldTypeEnum_AssetFieldType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_field_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_field_type_proto_enumTypes[0] } func (x AssetFieldTypeEnum_AssetFieldType) Number() protoreflect.EnumNumber { @@ -207,7 +211,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_v21_enums_asset_field_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the possible placements of an asset. @@ -219,7 +223,7 @@ type AssetFieldTypeEnum struct { func (x *AssetFieldTypeEnum) Reset() { *x = AssetFieldTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_field_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_field_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -231,7 +235,7 @@ func (x *AssetFieldTypeEnum) String() string { func (*AssetFieldTypeEnum) ProtoMessage() {} func (x *AssetFieldTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_field_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_field_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -244,19 +248,19 @@ func (x *AssetFieldTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetFieldTypeEnum.ProtoReflect.Descriptor instead. func (*AssetFieldTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_field_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_field_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa1, 0x05, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, - 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8a, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbb, 0x05, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa4, 0x05, 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, @@ -297,44 +301,45 @@ var file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc = string( 0x54, 0x41, 0x4c, 0x4c, 0x5f, 0x50, 0x4f, 0x52, 0x54, 0x52, 0x41, 0x49, 0x54, 0x5f, 0x4d, 0x41, 0x52, 0x4b, 0x45, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x10, 0x20, 0x12, 0x1a, 0x0a, 0x16, 0x52, 0x45, 0x4c, 0x41, 0x54, 0x45, 0x44, 0x5f, 0x59, 0x4f, 0x55, 0x54, 0x55, - 0x42, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x10, 0x21, 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, 0x32, 0x31, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, - 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, - 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, - 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, - 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x42, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x10, 0x21, 0x12, 0x18, 0x0a, 0x14, 0x4c, + 0x41, 0x4e, 0x44, 0x49, 0x4e, 0x47, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x50, 0x52, 0x45, 0x56, + 0x49, 0x45, 0x57, 0x10, 0x26, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, + 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, + 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, + 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_field_type_proto_goTypes = []any{ - (AssetFieldTypeEnum_AssetFieldType)(0), // 0: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (*AssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum +var file_google_ads_googleads_v22_enums_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_field_type_proto_goTypes = []any{ + (AssetFieldTypeEnum_AssetFieldType)(0), // 0: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (*AssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum } -var file_google_ads_googleads_v21_enums_asset_field_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -342,27 +347,27 @@ var file_google_ads_googleads_v21_enums_asset_field_type_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_field_type_proto_init() } -func file_google_ads_googleads_v21_enums_asset_field_type_proto_init() { - if File_google_ads_googleads_v21_enums_asset_field_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_field_type_proto_init() } +func file_google_ads_googleads_v22_enums_asset_field_type_proto_init() { + if File_google_ads_googleads_v22_enums_asset_field_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_field_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_field_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_field_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_field_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_field_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_field_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_field_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_field_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_field_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_field_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_field_type_proto = out.File - file_google_ads_googleads_v21_enums_asset_field_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_field_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_field_type_proto = out.File + file_google_ads_googleads_v22_enums_asset_field_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 db2e8075..9899649e 100644 --- a/enums/asset_group_primary_status.pb.go +++ b/enums/asset_group_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_group_primary_status.proto +// source: google/ads/googleads/v22/enums/asset_group_primary_status.proto package enums @@ -93,11 +93,11 @@ func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) String() string { } func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_enumTypes[0].Descriptor() } func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_enumTypes[0] } func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Number() protoreflect.EnumNumber { @@ -106,7 +106,7 @@ func (x AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) Number() protorefle // Deprecated: Use AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus.Descriptor instead. func (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *AssetGroupPrimaryStatusEnum) String() string { func (*AssetGroupPrimaryStatusEnum) ProtoMessage() {} func (x *AssetGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,18 +143,18 @@ func (x *AssetGroupPrimaryStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*AssetGroupPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_group_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_group_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_goTypes = []any{ - (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus - (*AssetGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_goTypes = []any{ + (AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus + (*AssetGroupPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_group_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_group_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_group_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_group_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_group_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_group_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 8e67e1bd..4dd71c8d 100644 --- a/enums/asset_group_primary_status_reason.pb.go +++ b/enums/asset_group_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_group_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/asset_group_primary_status_reason.proto package enums @@ -115,11 +115,11 @@ func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) String( } func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_enumTypes[0].Descriptor() } func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_enumTypes[0] } func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -128,7 +128,7 @@ func (x AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) Number( // Deprecated: Use AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason.Descriptor instead. func (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible asset group primary status reasons. @@ -140,7 +140,7 @@ type AssetGroupPrimaryStatusReasonEnum struct { func (x *AssetGroupPrimaryStatusReasonEnum) Reset() { *x = AssetGroupPrimaryStatusReasonEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *AssetGroupPrimaryStatusReasonEnum) String() string { func (*AssetGroupPrimaryStatusReasonEnum) ProtoMessage() {} func (x *AssetGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,19 +165,19 @@ func (x *AssetGroupPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message // Deprecated: Use AssetGroupPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*AssetGroupPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd, 0x02, 0x0a, 0x21, 0x41, 0x73, 0x73, + 0x32, 0x32, 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, @@ -199,42 +199,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_goTypes = []any{ - (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason - (*AssetGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_goTypes = []any{ + (AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason + (*AssetGroupPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -242,27 +242,27 @@ var file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_init() } +func file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_group_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_asset_group_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 9edae432..ad2fcc86 100644 --- a/enums/asset_group_signal_approval_status.pb.go +++ b/enums/asset_group_signal_approval_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_group_signal_approval_status.proto +// source: google/ads/googleads/v22/enums/asset_group_signal_approval_status.proto package enums @@ -88,11 +88,11 @@ func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Strin } func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_enumTypes[0].Descriptor() } func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_enumTypes[0] } func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) Numbe // Deprecated: Use AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus.Descriptor instead. func (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *AssetGroupSignalApprovalStatusEnum) String() string { func (*AssetGroupSignalApprovalStatusEnum) ProtoMessage() {} func (x *AssetGroupSignalApprovalStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *AssetGroupSignalApprovalStatusEnum) ProtoReflect() protoreflect.Message // Deprecated: Use AssetGroupSignalApprovalStatusEnum.ProtoReflect.Descriptor instead. func (*AssetGroupSignalApprovalStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, 0x22, 0x41, 0x73, + 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_goTypes = []any{ - (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 0: google.ads.googleads.v21.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus - (*AssetGroupSignalApprovalStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetGroupSignalApprovalStatusEnum +var file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_goTypes = []any{ + (AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 0: google.ads.googleads.v22.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus + (*AssetGroupSignalApprovalStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetGroupSignalApprovalStatusEnum } -var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_group_signal_approval_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_group_signal_approval_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 bf30438d..19cfbd56 100644 --- a/enums/asset_group_status.pb.go +++ b/enums/asset_group_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_group_status.proto +// source: google/ads/googleads/v22/enums/asset_group_status.proto package enums @@ -80,11 +80,11 @@ func (x AssetGroupStatusEnum_AssetGroupStatus) String() string { } func (AssetGroupStatusEnum_AssetGroupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_group_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_group_status_proto_enumTypes[0].Descriptor() } func (AssetGroupStatusEnum_AssetGroupStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_group_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_group_status_proto_enumTypes[0] } func (x AssetGroupStatusEnum_AssetGroupStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_asset_group_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AssetGroupStatusEnum) String() string { func (*AssetGroupStatusEnum) ProtoMessage() {} func (x *AssetGroupStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_group_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *AssetGroupStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupStatusEnum.ProtoReflect.Descriptor instead. func (*AssetGroupStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_group_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_group_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e, 0x0a, 0x14, 0x41, 0x73, 0x73, + 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_group_status_proto_goTypes = []any{ - (AssetGroupStatusEnum_AssetGroupStatus)(0), // 0: google.ads.googleads.v21.enums.AssetGroupStatusEnum.AssetGroupStatus - (*AssetGroupStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetGroupStatusEnum +var file_google_ads_googleads_v22_enums_asset_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_group_status_proto_goTypes = []any{ + (AssetGroupStatusEnum_AssetGroupStatus)(0), // 0: google.ads.googleads.v22.enums.AssetGroupStatusEnum.AssetGroupStatus + (*AssetGroupStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetGroupStatusEnum } -var file_google_ads_googleads_v21_enums_asset_group_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_asset_group_status_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_group_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_group_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_group_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_group_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_group_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_group_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_group_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_group_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_group_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_group_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_group_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_group_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_group_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_group_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_group_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_group_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_group_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_group_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_group_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_group_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_group_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 c46eee45..9116f73c 100644 --- a/enums/asset_link_primary_status.pb.go +++ b/enums/asset_link_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_link_primary_status.proto +// source: google/ads/googleads/v22/enums/asset_link_primary_status.proto package enums @@ -97,11 +97,11 @@ func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) String() string { } func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_enumTypes[0].Descriptor() } func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_enumTypes[0] } func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Number() protoreflect.EnumNumber { @@ -110,7 +110,7 @@ func (x AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) Number() protoreflect // Deprecated: Use AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus.Descriptor instead. func (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *AssetLinkPrimaryStatusEnum) String() string { func (*AssetLinkPrimaryStatusEnum) ProtoMessage() {} func (x *AssetLinkPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,18 +148,18 @@ func (x *AssetLinkPrimaryStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetLinkPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*AssetLinkPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_link_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_link_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -172,42 +172,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_goTypes = []any{ - (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*AssetLinkPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_goTypes = []any{ + (AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*AssetLinkPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_link_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_link_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_link_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_link_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_link_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_link_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 58d45c19..a01345fd 100644 --- a/enums/asset_link_primary_status_reason.pb.go +++ b/enums/asset_link_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_link_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/asset_link_primary_status_reason.proto package enums @@ -99,11 +99,11 @@ func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) String() } func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_enumTypes[0].Descriptor() } func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_enumTypes[0] } func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -112,7 +112,7 @@ func (x AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) Number() // Deprecated: Use AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason.Descriptor instead. func (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *AssetLinkPrimaryStatusReasonEnum) String() string { func (*AssetLinkPrimaryStatusReasonEnum) ProtoMessage() {} func (x *AssetLinkPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,19 +150,19 @@ func (x *AssetLinkPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetLinkPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*AssetLinkPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdb, 0x01, 0x0a, 0x20, 0x41, 0x73, 0x73, 0x65, + 0x32, 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, @@ -178,42 +178,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x41, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_goTypes = []any{ - (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - (*AssetLinkPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_goTypes = []any{ + (AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + (*AssetLinkPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_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_v21_enums_asset_link_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_init() } +func file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_link_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_asset_link_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 83b7f8e7..19501178 100644 --- a/enums/asset_link_status.pb.go +++ b/enums/asset_link_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_link_status.proto +// source: google/ads/googleads/v22/enums/asset_link_status.proto package enums @@ -80,11 +80,11 @@ func (x AssetLinkStatusEnum_AssetLinkStatus) String() string { } func (AssetLinkStatusEnum_AssetLinkStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_link_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_link_status_proto_enumTypes[0].Descriptor() } func (AssetLinkStatusEnum_AssetLinkStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_link_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_link_status_proto_enumTypes[0] } func (x AssetLinkStatusEnum_AssetLinkStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_asset_link_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AssetLinkStatusEnum) String() string { func (*AssetLinkStatusEnum) ProtoMessage() {} func (x *AssetLinkStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_link_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *AssetLinkStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetLinkStatusEnum.ProtoReflect.Descriptor instead. func (*AssetLinkStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_link_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_link_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x13, 0x41, 0x73, 0x73, 0x65, + 0x32, 0x32, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x14, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_link_status_proto_goTypes = []any{ - (AssetLinkStatusEnum_AssetLinkStatus)(0), // 0: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - (*AssetLinkStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetLinkStatusEnum +var file_google_ads_googleads_v22_enums_asset_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_link_status_proto_goTypes = []any{ + (AssetLinkStatusEnum_AssetLinkStatus)(0), // 0: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + (*AssetLinkStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetLinkStatusEnum } -var file_google_ads_googleads_v21_enums_asset_link_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_asset_link_status_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_link_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_link_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_link_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_link_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_link_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_link_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_link_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_link_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_link_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_link_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_link_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_link_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_link_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_link_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_link_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_link_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_link_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_link_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_link_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_link_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_link_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 64165239..34fdebe4 100644 --- a/enums/asset_offline_evaluation_error_reasons.pb.go +++ b/enums/asset_offline_evaluation_error_reasons.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_offline_evaluation_error_reasons.proto +// source: google/ads/googleads/v22/enums/asset_offline_evaluation_error_reasons.proto package enums @@ -98,11 +98,11 @@ func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReason } func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0].Descriptor() } func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_enumTypes[0] } func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) Number() protoreflect.EnumNumber { @@ -111,7 +111,7 @@ func (x AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReason // Deprecated: Use AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons.Descriptor instead. func (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *AssetOfflineEvaluationErrorReasonsEnum) String() string { func (*AssetOfflineEvaluationErrorReasonsEnum) ProtoMessage() {} func (x *AssetOfflineEvaluationErrorReasonsEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,19 +148,19 @@ func (x *AssetOfflineEvaluationErrorReasonsEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use AssetOfflineEvaluationErrorReasonsEnum.ProtoReflect.Descriptor instead. func (*AssetOfflineEvaluationErrorReasonsEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x03, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,43 +189,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_goTypes = []any{ - (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 0: google.ads.googleads.v21.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons - (*AssetOfflineEvaluationErrorReasonsEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetOfflineEvaluationErrorReasonsEnum +var file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_goTypes = []any{ + (AssetOfflineEvaluationErrorReasonsEnum_AssetOfflineEvaluationErrorReasons)(0), // 0: google.ads.googleads.v22.enums.AssetOfflineEvaluationErrorReasonsEnum.AssetOfflineEvaluationErrorReasons + (*AssetOfflineEvaluationErrorReasonsEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetOfflineEvaluationErrorReasonsEnum } -var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +233,27 @@ var file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_p 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_init() } -func file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_init() { - if File_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_init() } +func file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_init() { + if File_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto = out.File - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_offline_evaluation_error_reasons_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto = out.File + file_google_ads_googleads_v22_enums_asset_offline_evaluation_error_reasons_proto_goTypes = nil + file_google_ads_googleads_v22_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 1ca19155..2a0ceae4 100644 --- a/enums/asset_performance_label.pb.go +++ b/enums/asset_performance_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_performance_label.proto +// source: google/ads/googleads/v22/enums/asset_performance_label.proto package enums @@ -91,11 +91,11 @@ func (x AssetPerformanceLabelEnum_AssetPerformanceLabel) String() string { } func (AssetPerformanceLabelEnum_AssetPerformanceLabel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_performance_label_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_performance_label_proto_enumTypes[0].Descriptor() } func (AssetPerformanceLabelEnum_AssetPerformanceLabel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_performance_label_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_performance_label_proto_enumTypes[0] } func (x AssetPerformanceLabelEnum_AssetPerformanceLabel) Number() protoreflect.EnumNumber { @@ -104,7 +104,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_v21_enums_asset_performance_label_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_performance_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_performance_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *AssetPerformanceLabelEnum) String() string { func (*AssetPerformanceLabelEnum) ProtoMessage() {} func (x *AssetPerformanceLabelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_performance_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_performance_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,18 +141,18 @@ func (x *AssetPerformanceLabelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetPerformanceLabelEnum.ProtoReflect.Descriptor instead. func (*AssetPerformanceLabelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_performance_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_performance_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8a, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,42 +163,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_performance_label_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_performance_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_performance_label_proto_goTypes = []any{ - (AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 0: google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (*AssetPerformanceLabelEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetPerformanceLabelEnum +var file_google_ads_googleads_v22_enums_asset_performance_label_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_performance_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_performance_label_proto_goTypes = []any{ + (AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 0: google.ads.googleads.v22.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + (*AssetPerformanceLabelEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetPerformanceLabelEnum } -var file_google_ads_googleads_v21_enums_asset_performance_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -206,27 +206,27 @@ var file_google_ads_googleads_v21_enums_asset_performance_label_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_performance_label_proto_init() } -func file_google_ads_googleads_v21_enums_asset_performance_label_proto_init() { - if File_google_ads_googleads_v21_enums_asset_performance_label_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_performance_label_proto_init() } +func file_google_ads_googleads_v22_enums_asset_performance_label_proto_init() { + if File_google_ads_googleads_v22_enums_asset_performance_label_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_performance_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_performance_label_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_performance_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_performance_label_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_performance_label_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_performance_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_performance_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_performance_label_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_performance_label_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_performance_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_performance_label_proto = out.File - file_google_ads_googleads_v21_enums_asset_performance_label_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_performance_label_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_performance_label_proto = out.File + file_google_ads_googleads_v22_enums_asset_performance_label_proto_goTypes = nil + file_google_ads_googleads_v22_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 d82a7676..148195ea 100644 --- a/enums/asset_set_asset_status.pb.go +++ b/enums/asset_set_asset_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_set_asset_status.proto +// source: google/ads/googleads/v22/enums/asset_set_asset_status.proto package enums @@ -77,11 +77,11 @@ func (x AssetSetAssetStatusEnum_AssetSetAssetStatus) String() string { } func (AssetSetAssetStatusEnum_AssetSetAssetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_enumTypes[0].Descriptor() } func (AssetSetAssetStatusEnum_AssetSetAssetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_enumTypes[0] } func (x AssetSetAssetStatusEnum_AssetSetAssetStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *AssetSetAssetStatusEnum) String() string { func (*AssetSetAssetStatusEnum) ProtoMessage() {} func (x *AssetSetAssetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *AssetSetAssetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAssetStatusEnum.ProtoReflect.Descriptor instead. func (*AssetSetAssetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_set_asset_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_set_asset_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_goTypes = []any{ - (AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 0: google.ads.googleads.v21.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus - (*AssetSetAssetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetSetAssetStatusEnum +var file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_goTypes = []any{ + (AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 0: google.ads.googleads.v22.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus + (*AssetSetAssetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetSetAssetStatusEnum } -var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_set_asset_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_set_asset_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_set_asset_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_set_asset_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_set_asset_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_set_asset_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 edb0bb3c..ae3b5cb5 100644 --- a/enums/asset_set_link_status.pb.go +++ b/enums/asset_set_link_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_set_link_status.proto +// source: google/ads/googleads/v22/enums/asset_set_link_status.proto package enums @@ -77,11 +77,11 @@ func (x AssetSetLinkStatusEnum_AssetSetLinkStatus) String() string { } func (AssetSetLinkStatusEnum_AssetSetLinkStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_set_link_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_set_link_status_proto_enumTypes[0].Descriptor() } func (AssetSetLinkStatusEnum_AssetSetLinkStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_set_link_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_set_link_status_proto_enumTypes[0] } func (x AssetSetLinkStatusEnum_AssetSetLinkStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_set_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_link_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *AssetSetLinkStatusEnum) String() string { func (*AssetSetLinkStatusEnum) ProtoMessage() {} func (x *AssetSetLinkStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_set_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_link_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *AssetSetLinkStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetLinkStatusEnum.ProtoReflect.Descriptor instead. func (*AssetSetLinkStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_set_link_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_set_link_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x16, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_goTypes = []any{ - (AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 0: google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus - (*AssetSetLinkStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetSetLinkStatusEnum +var file_google_ads_googleads_v22_enums_asset_set_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_link_status_proto_goTypes = []any{ + (AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 0: google.ads.googleads.v22.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus + (*AssetSetLinkStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetSetLinkStatusEnum } -var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_asset_set_link_status_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_set_link_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_set_link_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_set_link_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_set_link_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_set_link_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_set_link_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_link_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_link_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_set_link_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_set_link_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_set_link_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_set_link_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_set_link_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_set_link_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_set_link_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_set_link_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_set_link_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_set_link_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_set_link_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_set_link_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 b7707017..49d88c71 100644 --- a/enums/asset_set_status.pb.go +++ b/enums/asset_set_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_set_status.proto +// source: google/ads/googleads/v22/enums/asset_set_status.proto package enums @@ -77,11 +77,11 @@ func (x AssetSetStatusEnum_AssetSetStatus) String() string { } func (AssetSetStatusEnum_AssetSetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_set_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_set_status_proto_enumTypes[0].Descriptor() } func (AssetSetStatusEnum_AssetSetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_set_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_set_status_proto_enumTypes[0] } func (x AssetSetStatusEnum_AssetSetStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_asset_set_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *AssetSetStatusEnum) String() string { func (*AssetSetStatusEnum) ProtoMessage() {} func (x *AssetSetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *AssetSetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetStatusEnum.ProtoReflect.Descriptor instead. func (*AssetSetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_set_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_set_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x5e, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_status_proto_goTypes = []any{ - (AssetSetStatusEnum_AssetSetStatus)(0), // 0: google.ads.googleads.v21.enums.AssetSetStatusEnum.AssetSetStatus - (*AssetSetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetSetStatusEnum +var file_google_ads_googleads_v22_enums_asset_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_status_proto_goTypes = []any{ + (AssetSetStatusEnum_AssetSetStatus)(0), // 0: google.ads.googleads.v22.enums.AssetSetStatusEnum.AssetSetStatus + (*AssetSetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetSetStatusEnum } -var file_google_ads_googleads_v21_enums_asset_set_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_asset_set_status_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_set_status_proto_init() } -func file_google_ads_googleads_v21_enums_asset_set_status_proto_init() { - if File_google_ads_googleads_v21_enums_asset_set_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_set_status_proto_init() } +func file_google_ads_googleads_v22_enums_asset_set_status_proto_init() { + if File_google_ads_googleads_v22_enums_asset_set_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_set_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_set_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_set_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_set_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_set_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_set_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_set_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_set_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_set_status_proto = out.File - file_google_ads_googleads_v21_enums_asset_set_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_set_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_set_status_proto = out.File + file_google_ads_googleads_v22_enums_asset_set_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_set_status_proto_depIdxs = nil } diff --git a/enums/asset_set_type.pb.go b/enums/asset_set_type.pb.go index 9e4823ef..4c910554 100644 --- a/enums/asset_set_type.pb.go +++ b/enums/asset_set_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_set_type.proto +// source: google/ads/googleads/v22/enums/asset_set_type.proto package enums @@ -136,11 +136,11 @@ func (x AssetSetTypeEnum_AssetSetType) String() string { } func (AssetSetTypeEnum_AssetSetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_set_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_set_type_proto_enumTypes[0].Descriptor() } func (AssetSetTypeEnum_AssetSetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_set_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_set_type_proto_enumTypes[0] } func (x AssetSetTypeEnum_AssetSetType) Number() protoreflect.EnumNumber { @@ -149,7 +149,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_v21_enums_asset_set_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible types of an asset set. @@ -161,7 +161,7 @@ type AssetSetTypeEnum struct { func (x *AssetSetTypeEnum) Reset() { *x = AssetSetTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_set_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173,7 +173,7 @@ func (x *AssetSetTypeEnum) String() string { func (*AssetSetTypeEnum) ProtoMessage() {} func (x *AssetSetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_set_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_set_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186,17 +186,17 @@ func (x *AssetSetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetTypeEnum.ProtoReflect.Descriptor instead. func (*AssetSetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_set_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_set_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbe, 0x03, 0x0a, 0x10, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa9, 0x03, 0x0a, 0x0c, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, @@ -227,41 +227,41 @@ var file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc = string([] 0x52, 0x54, 0x59, 0x10, 0x10, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x52, 0x41, 0x56, 0x45, 0x4c, 0x5f, 0x46, 0x45, 0x45, 0x44, 0x10, 0x11, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_set_type_proto_goTypes = []any{ - (AssetSetTypeEnum_AssetSetType)(0), // 0: google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - (*AssetSetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetSetTypeEnum +var file_google_ads_googleads_v22_enums_asset_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_set_type_proto_goTypes = []any{ + (AssetSetTypeEnum_AssetSetType)(0), // 0: google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + (*AssetSetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetSetTypeEnum } -var file_google_ads_googleads_v21_enums_asset_set_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -269,27 +269,27 @@ var file_google_ads_googleads_v21_enums_asset_set_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_set_type_proto_init() } -func file_google_ads_googleads_v21_enums_asset_set_type_proto_init() { - if File_google_ads_googleads_v21_enums_asset_set_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_set_type_proto_init() } +func file_google_ads_googleads_v22_enums_asset_set_type_proto_init() { + if File_google_ads_googleads_v22_enums_asset_set_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_set_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_set_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_set_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_set_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_set_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_set_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_set_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_set_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_set_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_set_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_set_type_proto = out.File - file_google_ads_googleads_v21_enums_asset_set_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_set_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_set_type_proto = out.File + file_google_ads_googleads_v22_enums_asset_set_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_set_type_proto_depIdxs = nil } diff --git a/enums/asset_source.pb.go b/enums/asset_source.pb.go index 17882a0e..a9247a1a 100644 --- a/enums/asset_source.pb.go +++ b/enums/asset_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_source.proto +// source: google/ads/googleads/v22/enums/asset_source.proto package enums @@ -76,11 +76,11 @@ func (x AssetSourceEnum_AssetSource) String() string { } func (AssetSourceEnum_AssetSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_source_proto_enumTypes[0].Descriptor() } func (AssetSourceEnum_AssetSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_source_proto_enumTypes[0] } func (x AssetSourceEnum_AssetSource) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_asset_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_asset_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *AssetSourceEnum) String() string { func (*AssetSourceEnum) ProtoMessage() {} func (x *AssetSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,17 +127,17 @@ func (x *AssetSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSourceEnum.ProtoReflect.Descriptor instead. func (*AssetSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_source_proto_goTypes = []any{ - (AssetSourceEnum_AssetSource)(0), // 0: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (*AssetSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetSourceEnum +var file_google_ads_googleads_v22_enums_asset_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_source_proto_goTypes = []any{ + (AssetSourceEnum_AssetSource)(0), // 0: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (*AssetSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetSourceEnum } -var file_google_ads_googleads_v21_enums_asset_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_asset_source_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_source_proto_init() } -func file_google_ads_googleads_v21_enums_asset_source_proto_init() { - if File_google_ads_googleads_v21_enums_asset_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_source_proto_init() } +func file_google_ads_googleads_v22_enums_asset_source_proto_init() { + if File_google_ads_googleads_v22_enums_asset_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_source_proto = out.File - file_google_ads_googleads_v21_enums_asset_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_source_proto = out.File + file_google_ads_googleads_v22_enums_asset_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_source_proto_depIdxs = nil } diff --git a/enums/asset_type.pb.go b/enums/asset_type.pb.go index 0cdc47f4..2b427ee5 100644 --- a/enums/asset_type.pb.go +++ b/enums/asset_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/asset_type.proto +// source: google/ads/googleads/v22/enums/asset_type.proto package enums @@ -188,11 +188,11 @@ func (x AssetTypeEnum_AssetType) String() string { } func (AssetTypeEnum_AssetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_asset_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_asset_type_proto_enumTypes[0].Descriptor() } func (AssetTypeEnum_AssetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_asset_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_asset_type_proto_enumTypes[0] } func (x AssetTypeEnum_AssetType) Number() protoreflect.EnumNumber { @@ -201,7 +201,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_v21_enums_asset_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_asset_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the types of asset. @@ -213,7 +213,7 @@ type AssetTypeEnum struct { func (x *AssetTypeEnum) Reset() { *x = AssetTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_asset_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *AssetTypeEnum) String() string { func (*AssetTypeEnum) ProtoMessage() {} func (x *AssetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_asset_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_asset_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,17 +238,17 @@ func (x *AssetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetTypeEnum.ProtoReflect.Descriptor instead. func (*AssetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_asset_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_asset_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_asset_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_asset_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_asset_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe8, 0x04, 0x0a, 0x0d, 0x41, 0x73, 0x73, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd6, 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, @@ -289,41 +289,41 @@ var file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc = string([]byte 0x4e, 0x4b, 0x10, 0x1f, 0x12, 0x16, 0x0a, 0x12, 0x59, 0x4f, 0x55, 0x54, 0x55, 0x42, 0x45, 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x20, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_asset_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_asset_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_asset_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_asset_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_asset_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_asset_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_asset_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_asset_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_asset_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_asset_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_asset_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_asset_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_asset_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_asset_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_asset_type_proto_goTypes = []any{ - (AssetTypeEnum_AssetType)(0), // 0: google.ads.googleads.v21.enums.AssetTypeEnum.AssetType - (*AssetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.AssetTypeEnum +var file_google_ads_googleads_v22_enums_asset_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_asset_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_asset_type_proto_goTypes = []any{ + (AssetTypeEnum_AssetType)(0), // 0: google.ads.googleads.v22.enums.AssetTypeEnum.AssetType + (*AssetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.AssetTypeEnum } -var file_google_ads_googleads_v21_enums_asset_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -331,27 +331,27 @@ var file_google_ads_googleads_v21_enums_asset_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_asset_type_proto_init() } -func file_google_ads_googleads_v21_enums_asset_type_proto_init() { - if File_google_ads_googleads_v21_enums_asset_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_asset_type_proto_init() } +func file_google_ads_googleads_v22_enums_asset_type_proto_init() { + if File_google_ads_googleads_v22_enums_asset_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_asset_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_asset_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_asset_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_asset_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_asset_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_asset_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_asset_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_asset_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_asset_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_asset_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_asset_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_asset_type_proto = out.File - file_google_ads_googleads_v21_enums_asset_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_asset_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_asset_type_proto = out.File + file_google_ads_googleads_v22_enums_asset_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_asset_type_proto_depIdxs = nil } diff --git a/enums/async_action_status.pb.go b/enums/async_action_status.pb.go index 5f68234e..74a7af45 100644 --- a/enums/async_action_status.pb.go +++ b/enums/async_action_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/async_action_status.proto +// source: google/ads/googleads/v22/enums/async_action_status.proto package enums @@ -88,11 +88,11 @@ func (x AsyncActionStatusEnum_AsyncActionStatus) String() string { } func (AsyncActionStatusEnum_AsyncActionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_async_action_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_async_action_status_proto_enumTypes[0].Descriptor() } func (AsyncActionStatusEnum_AsyncActionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_async_action_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_async_action_status_proto_enumTypes[0] } func (x AsyncActionStatusEnum_AsyncActionStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_async_action_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_async_action_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_async_action_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *AsyncActionStatusEnum) String() string { func (*AsyncActionStatusEnum) ProtoMessage() {} func (x *AsyncActionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_async_action_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_async_action_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *AsyncActionStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AsyncActionStatusEnum.ProtoReflect.Descriptor instead. func (*AsyncActionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_async_action_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_async_action_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_async_action_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x15, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,41 +162,41 @@ var file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc = stri 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x41, 0x73, 0x79, 0x6e, 0x63, 0x41, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_async_action_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_async_action_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_async_action_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_async_action_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_async_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_async_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_async_action_status_proto_goTypes = []any{ - (AsyncActionStatusEnum_AsyncActionStatus)(0), // 0: google.ads.googleads.v21.enums.AsyncActionStatusEnum.AsyncActionStatus - (*AsyncActionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AsyncActionStatusEnum +var file_google_ads_googleads_v22_enums_async_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_async_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_async_action_status_proto_goTypes = []any{ + (AsyncActionStatusEnum_AsyncActionStatus)(0), // 0: google.ads.googleads.v22.enums.AsyncActionStatusEnum.AsyncActionStatus + (*AsyncActionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AsyncActionStatusEnum } -var file_google_ads_googleads_v21_enums_async_action_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_async_action_status_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_async_action_status_proto_init() } -func file_google_ads_googleads_v21_enums_async_action_status_proto_init() { - if File_google_ads_googleads_v21_enums_async_action_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_async_action_status_proto_init() } +func file_google_ads_googleads_v22_enums_async_action_status_proto_init() { + if File_google_ads_googleads_v22_enums_async_action_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_async_action_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_async_action_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_async_action_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_async_action_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_async_action_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_async_action_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_async_action_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_async_action_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_async_action_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_async_action_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_async_action_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_async_action_status_proto = out.File - file_google_ads_googleads_v21_enums_async_action_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_async_action_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_async_action_status_proto = out.File + file_google_ads_googleads_v22_enums_async_action_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_async_action_status_proto_depIdxs = nil } diff --git a/enums/attribution_model.pb.go b/enums/attribution_model.pb.go index c3c91b62..e5fe0a8b 100644 --- a/enums/attribution_model.pb.go +++ b/enums/attribution_model.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/attribution_model.proto +// source: google/ads/googleads/v22/enums/attribution_model.proto package enums @@ -103,11 +103,11 @@ func (x AttributionModelEnum_AttributionModel) String() string { } func (AttributionModelEnum_AttributionModel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_attribution_model_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_attribution_model_proto_enumTypes[0].Descriptor() } func (AttributionModelEnum_AttributionModel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_attribution_model_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_attribution_model_proto_enumTypes[0] } func (x AttributionModelEnum_AttributionModel) Number() protoreflect.EnumNumber { @@ -116,7 +116,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_v21_enums_attribution_model_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_attribution_model_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_attribution_model_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142,7 +142,7 @@ func (x *AttributionModelEnum) String() string { func (*AttributionModelEnum) ProtoMessage() {} func (x *AttributionModelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_attribution_model_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_attribution_model_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155,18 +155,18 @@ func (x *AttributionModelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AttributionModelEnum.ProtoReflect.Descriptor instead. func (*AttributionModelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_attribution_model_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_attribution_model_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_attribution_model_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc6, 0x02, 0x0a, 0x14, 0x41, 0x74, 0x74, + 0x32, 0x32, 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, @@ -189,41 +189,41 @@ var file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc = string 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc), len(file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_attribution_model_proto_rawDesc), len(file_google_ads_googleads_v22_enums_attribution_model_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_attribution_model_proto_rawDescData + return file_google_ads_googleads_v22_enums_attribution_model_proto_rawDescData } -var file_google_ads_googleads_v21_enums_attribution_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_attribution_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_attribution_model_proto_goTypes = []any{ - (AttributionModelEnum_AttributionModel)(0), // 0: google.ads.googleads.v21.enums.AttributionModelEnum.AttributionModel - (*AttributionModelEnum)(nil), // 1: google.ads.googleads.v21.enums.AttributionModelEnum +var file_google_ads_googleads_v22_enums_attribution_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_attribution_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_attribution_model_proto_goTypes = []any{ + (AttributionModelEnum_AttributionModel)(0), // 0: google.ads.googleads.v22.enums.AttributionModelEnum.AttributionModel + (*AttributionModelEnum)(nil), // 1: google.ads.googleads.v22.enums.AttributionModelEnum } -var file_google_ads_googleads_v21_enums_attribution_model_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -231,27 +231,27 @@ var file_google_ads_googleads_v21_enums_attribution_model_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_attribution_model_proto_init() } -func file_google_ads_googleads_v21_enums_attribution_model_proto_init() { - if File_google_ads_googleads_v21_enums_attribution_model_proto != nil { +func init() { file_google_ads_googleads_v22_enums_attribution_model_proto_init() } +func file_google_ads_googleads_v22_enums_attribution_model_proto_init() { + if File_google_ads_googleads_v22_enums_attribution_model_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc), len(file_google_ads_googleads_v21_enums_attribution_model_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_attribution_model_proto_rawDesc), len(file_google_ads_googleads_v22_enums_attribution_model_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_attribution_model_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_attribution_model_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_attribution_model_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_attribution_model_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_attribution_model_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_attribution_model_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_attribution_model_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_attribution_model_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_attribution_model_proto = out.File - file_google_ads_googleads_v21_enums_attribution_model_proto_goTypes = nil - file_google_ads_googleads_v21_enums_attribution_model_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_attribution_model_proto = out.File + file_google_ads_googleads_v22_enums_attribution_model_proto_goTypes = nil + file_google_ads_googleads_v22_enums_attribution_model_proto_depIdxs = nil } diff --git a/enums/audience_insights_dimension.pb.go b/enums/audience_insights_dimension.pb.go index 13eca6f1..ae5d8c5e 100644 --- a/enums/audience_insights_dimension.pb.go +++ b/enums/audience_insights_dimension.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/audience_insights_dimension.proto +// source: google/ads/googleads/v22/enums/audience_insights_dimension.proto package enums @@ -128,11 +128,11 @@ func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) String() string } func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_enumTypes[0].Descriptor() } func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_enumTypes[0] } func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) Number() protoreflect.EnumNumber { @@ -141,7 +141,7 @@ func (x AudienceInsightsDimensionEnum_AudienceInsightsDimension) Number() protor // Deprecated: Use AudienceInsightsDimensionEnum_AudienceInsightsDimension.Descriptor instead. func (AudienceInsightsDimensionEnum_AudienceInsightsDimension) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing insights dimensions. @@ -153,7 +153,7 @@ type AudienceInsightsDimensionEnum struct { func (x *AudienceInsightsDimensionEnum) Reset() { *x = AudienceInsightsDimensionEnum{} - mi := &file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -165,7 +165,7 @@ func (x *AudienceInsightsDimensionEnum) String() string { func (*AudienceInsightsDimensionEnum) ProtoMessage() {} func (x *AudienceInsightsDimensionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -178,18 +178,18 @@ func (x *AudienceInsightsDimensionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsDimensionEnum.ProtoReflect.Descriptor instead. func (*AudienceInsightsDimensionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_audience_insights_dimension_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_audience_insights_dimension_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x82, 0x03, 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, 0xe0, 0x02, 0x0a, 0x19, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, @@ -216,42 +216,42 @@ var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDes 0x4c, 0x49, 0x4e, 0x45, 0x55, 0x50, 0x10, 0x10, 0x12, 0x0d, 0x0a, 0x09, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x11, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDescData + return file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDescData } -var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_goTypes = []any{ - (AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 0: google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - (*AudienceInsightsDimensionEnum)(nil), // 1: google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum +var file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_goTypes = []any{ + (AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 0: google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + (*AudienceInsightsDimensionEnum)(nil), // 1: google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum } -var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -259,27 +259,27 @@ var file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_init() } -func file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_init() { - if File_google_ads_googleads_v21_enums_audience_insights_dimension_proto != nil { +func init() { file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_init() } +func file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_init() { + if File_google_ads_googleads_v22_enums_audience_insights_dimension_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_audience_insights_dimension_proto = out.File - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_goTypes = nil - file_google_ads_googleads_v21_enums_audience_insights_dimension_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_audience_insights_dimension_proto = out.File + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_goTypes = nil + file_google_ads_googleads_v22_enums_audience_insights_dimension_proto_depIdxs = nil } diff --git a/enums/audience_insights_marketing_objective.pb.go b/enums/audience_insights_marketing_objective.pb.go index a220a909..ae0b4fb6 100644 --- a/enums/audience_insights_marketing_objective.pb.go +++ b/enums/audience_insights_marketing_objective.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/audience_insights_marketing_objective.proto +// source: google/ads/googleads/v22/enums/audience_insights_marketing_objective.proto package enums @@ -78,11 +78,11 @@ func (x AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjectiv } func (AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_enumTypes[0].Descriptor() } func (AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_enumTypes[0] } func (x AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjectiv // Deprecated: Use AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective.Descriptor instead. func (AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing marketing objectives. @@ -103,7 +103,7 @@ type AudienceInsightsMarketingObjectiveEnum struct { func (x *AudienceInsightsMarketingObjectiveEnum) Reset() { *x = AudienceInsightsMarketingObjectiveEnum{} - mi := &file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *AudienceInsightsMarketingObjectiveEnum) String() string { func (*AudienceInsightsMarketingObjectiveEnum) ProtoMessage() {} func (x *AudienceInsightsMarketingObjectiveEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,19 +128,19 @@ func (x *AudienceInsightsMarketingObjectiveEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use AudienceInsightsMarketingObjectiveEnum.ProtoReflect.Descriptor instead. func (*AudienceInsightsMarketingObjectiveEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8e, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8e, 0x01, 0x0a, 0x26, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x64, 0x0a, 0x22, 0x41, 0x75, 0x64, 0x69, 0x65, @@ -151,43 +151,43 @@ var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_pr 0x57, 0x41, 0x52, 0x45, 0x4e, 0x45, 0x53, 0x53, 0x10, 0x02, 0x12, 0x11, 0x0a, 0x0d, 0x43, 0x4f, 0x4e, 0x53, 0x49, 0x44, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x03, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDescData + return file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDescData } -var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_goTypes = []any{ - (AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective)(0), // 0: google.ads.googleads.v21.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective - (*AudienceInsightsMarketingObjectiveEnum)(nil), // 1: google.ads.googleads.v21.enums.AudienceInsightsMarketingObjectiveEnum +var file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_goTypes = []any{ + (AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective)(0), // 0: google.ads.googleads.v22.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective + (*AudienceInsightsMarketingObjectiveEnum)(nil), // 1: google.ads.googleads.v22.enums.AudienceInsightsMarketingObjectiveEnum } -var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +195,27 @@ var file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_init() } -func file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_init() { - if File_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto != nil { +func init() { file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_init() } +func file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_init() { + if File_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto = out.File - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_goTypes = nil - file_google_ads_googleads_v21_enums_audience_insights_marketing_objective_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto = out.File + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_goTypes = nil + file_google_ads_googleads_v22_enums_audience_insights_marketing_objective_proto_depIdxs = nil } diff --git a/enums/audience_scope.pb.go b/enums/audience_scope.pb.go index 3b212750..4cd044eb 100644 --- a/enums/audience_scope.pb.go +++ b/enums/audience_scope.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/audience_scope.proto +// source: google/ads/googleads/v22/enums/audience_scope.proto package enums @@ -76,11 +76,11 @@ func (x AudienceScopeEnum_AudienceScope) String() string { } func (AudienceScopeEnum_AudienceScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_audience_scope_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_audience_scope_proto_enumTypes[0].Descriptor() } func (AudienceScopeEnum_AudienceScope) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_audience_scope_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_audience_scope_proto_enumTypes[0] } func (x AudienceScopeEnum_AudienceScope) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_audience_scope_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_audience_scope_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_scope_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *AudienceScopeEnum) String() string { func (*AudienceScopeEnum) ProtoMessage() {} func (x *AudienceScopeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_audience_scope_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_scope_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *AudienceScopeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceScopeEnum.ProtoReflect.Descriptor instead. func (*AudienceScopeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_audience_scope_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_audience_scope_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_audience_scope_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_scope_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_scope_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_audience_scope_proto_rawDescData + return file_google_ads_googleads_v22_enums_audience_scope_proto_rawDescData } -var file_google_ads_googleads_v21_enums_audience_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_audience_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_audience_scope_proto_goTypes = []any{ - (AudienceScopeEnum_AudienceScope)(0), // 0: google.ads.googleads.v21.enums.AudienceScopeEnum.AudienceScope - (*AudienceScopeEnum)(nil), // 1: google.ads.googleads.v21.enums.AudienceScopeEnum +var file_google_ads_googleads_v22_enums_audience_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_audience_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_audience_scope_proto_goTypes = []any{ + (AudienceScopeEnum_AudienceScope)(0), // 0: google.ads.googleads.v22.enums.AudienceScopeEnum.AudienceScope + (*AudienceScopeEnum)(nil), // 1: google.ads.googleads.v22.enums.AudienceScopeEnum } -var file_google_ads_googleads_v21_enums_audience_scope_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_audience_scope_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_audience_scope_proto_init() } -func file_google_ads_googleads_v21_enums_audience_scope_proto_init() { - if File_google_ads_googleads_v21_enums_audience_scope_proto != nil { +func init() { file_google_ads_googleads_v22_enums_audience_scope_proto_init() } +func file_google_ads_googleads_v22_enums_audience_scope_proto_init() { + if File_google_ads_googleads_v22_enums_audience_scope_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_scope_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_scope_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_scope_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_audience_scope_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_audience_scope_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_audience_scope_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_audience_scope_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_audience_scope_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_audience_scope_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_audience_scope_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_audience_scope_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_audience_scope_proto = out.File - file_google_ads_googleads_v21_enums_audience_scope_proto_goTypes = nil - file_google_ads_googleads_v21_enums_audience_scope_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_audience_scope_proto = out.File + file_google_ads_googleads_v22_enums_audience_scope_proto_goTypes = nil + file_google_ads_googleads_v22_enums_audience_scope_proto_depIdxs = nil } diff --git a/enums/audience_status.pb.go b/enums/audience_status.pb.go index 95b41bca..d682371c 100644 --- a/enums/audience_status.pb.go +++ b/enums/audience_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/audience_status.proto +// source: google/ads/googleads/v22/enums/audience_status.proto package enums @@ -77,11 +77,11 @@ func (x AudienceStatusEnum_AudienceStatus) String() string { } func (AudienceStatusEnum_AudienceStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_audience_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_audience_status_proto_enumTypes[0].Descriptor() } func (AudienceStatusEnum_AudienceStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_audience_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_audience_status_proto_enumTypes[0] } func (x AudienceStatusEnum_AudienceStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_audience_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *AudienceStatusEnum) String() string { func (*AudienceStatusEnum) ProtoMessage() {} func (x *AudienceStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_audience_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,17 +127,17 @@ func (x *AudienceStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceStatusEnum.ProtoReflect.Descriptor instead. func (*AudienceStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_audience_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_audience_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_audience_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_audience_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_audience_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_audience_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_audience_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_audience_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_audience_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_audience_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_audience_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_audience_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_audience_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_audience_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_audience_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_audience_status_proto_goTypes = []any{ - (AudienceStatusEnum_AudienceStatus)(0), // 0: google.ads.googleads.v21.enums.AudienceStatusEnum.AudienceStatus - (*AudienceStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.AudienceStatusEnum +var file_google_ads_googleads_v22_enums_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_audience_status_proto_goTypes = []any{ + (AudienceStatusEnum_AudienceStatus)(0), // 0: google.ads.googleads.v22.enums.AudienceStatusEnum.AudienceStatus + (*AudienceStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.AudienceStatusEnum } -var file_google_ads_googleads_v21_enums_audience_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_audience_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_audience_status_proto_init() } -func file_google_ads_googleads_v21_enums_audience_status_proto_init() { - if File_google_ads_googleads_v21_enums_audience_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_audience_status_proto_init() } +func file_google_ads_googleads_v22_enums_audience_status_proto_init() { + if File_google_ads_googleads_v22_enums_audience_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_audience_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_audience_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_audience_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_audience_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_audience_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_audience_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_audience_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_audience_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_audience_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_audience_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_audience_status_proto = out.File - file_google_ads_googleads_v21_enums_audience_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_audience_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_audience_status_proto = out.File + file_google_ads_googleads_v22_enums_audience_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_audience_status_proto_depIdxs = nil } diff --git a/enums/batch_job_status.pb.go b/enums/batch_job_status.pb.go index b38ee24c..f796d65e 100644 --- a/enums/batch_job_status.pb.go +++ b/enums/batch_job_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/batch_job_status.proto +// source: google/ads/googleads/v22/enums/batch_job_status.proto package enums @@ -80,11 +80,11 @@ func (x BatchJobStatusEnum_BatchJobStatus) String() string { } func (BatchJobStatusEnum_BatchJobStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_batch_job_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_batch_job_status_proto_enumTypes[0].Descriptor() } func (BatchJobStatusEnum_BatchJobStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_batch_job_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_batch_job_status_proto_enumTypes[0] } func (x BatchJobStatusEnum_BatchJobStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_batch_job_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_batch_job_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_batch_job_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *BatchJobStatusEnum) String() string { func (*BatchJobStatusEnum) ProtoMessage() {} func (x *BatchJobStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_batch_job_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_batch_job_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *BatchJobStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobStatusEnum.ProtoReflect.Descriptor instead. func (*BatchJobStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_batch_job_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_batch_job_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x12, 0x42, 0x61, 0x74, 0x63, 0x68, + 0x32, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc = string( 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_batch_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_batch_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_batch_job_status_proto_goTypes = []any{ - (BatchJobStatusEnum_BatchJobStatus)(0), // 0: google.ads.googleads.v21.enums.BatchJobStatusEnum.BatchJobStatus - (*BatchJobStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BatchJobStatusEnum +var file_google_ads_googleads_v22_enums_batch_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_batch_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_batch_job_status_proto_goTypes = []any{ + (BatchJobStatusEnum_BatchJobStatus)(0), // 0: google.ads.googleads.v22.enums.BatchJobStatusEnum.BatchJobStatus + (*BatchJobStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BatchJobStatusEnum } -var file_google_ads_googleads_v21_enums_batch_job_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_batch_job_status_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_batch_job_status_proto_init() } -func file_google_ads_googleads_v21_enums_batch_job_status_proto_init() { - if File_google_ads_googleads_v21_enums_batch_job_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_batch_job_status_proto_init() } +func file_google_ads_googleads_v22_enums_batch_job_status_proto_init() { + if File_google_ads_googleads_v22_enums_batch_job_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_batch_job_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_batch_job_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_batch_job_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_batch_job_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_batch_job_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_batch_job_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_batch_job_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_batch_job_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_batch_job_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_batch_job_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_batch_job_status_proto = out.File - file_google_ads_googleads_v21_enums_batch_job_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_batch_job_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_batch_job_status_proto = out.File + file_google_ads_googleads_v22_enums_batch_job_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_batch_job_status_proto_depIdxs = nil } diff --git a/enums/bid_modifier_source.pb.go b/enums/bid_modifier_source.pb.go index 1e672b05..43fdffe9 100644 --- a/enums/bid_modifier_source.pb.go +++ b/enums/bid_modifier_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/bid_modifier_source.proto +// source: google/ads/googleads/v22/enums/bid_modifier_source.proto package enums @@ -77,11 +77,11 @@ func (x BidModifierSourceEnum_BidModifierSource) String() string { } func (BidModifierSourceEnum_BidModifierSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_bid_modifier_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_bid_modifier_source_proto_enumTypes[0].Descriptor() } func (BidModifierSourceEnum_BidModifierSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_bid_modifier_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_bid_modifier_source_proto_enumTypes[0] } func (x BidModifierSourceEnum_BidModifierSource) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_bid_modifier_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bid_modifier_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *BidModifierSourceEnum) String() string { func (*BidModifierSourceEnum) ProtoMessage() {} func (x *BidModifierSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_bid_modifier_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bid_modifier_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *BidModifierSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BidModifierSourceEnum.ProtoReflect.Descriptor instead. func (*BidModifierSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_bid_modifier_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_bid_modifier_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x15, 0x42, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x42, 0x69, 0x64, 0x4d, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_goTypes = []any{ - (BidModifierSourceEnum_BidModifierSource)(0), // 0: google.ads.googleads.v21.enums.BidModifierSourceEnum.BidModifierSource - (*BidModifierSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.BidModifierSourceEnum +var file_google_ads_googleads_v22_enums_bid_modifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_bid_modifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_bid_modifier_source_proto_goTypes = []any{ + (BidModifierSourceEnum_BidModifierSource)(0), // 0: google.ads.googleads.v22.enums.BidModifierSourceEnum.BidModifierSource + (*BidModifierSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.BidModifierSourceEnum } -var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_bid_modifier_source_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_bid_modifier_source_proto_init() } -func file_google_ads_googleads_v21_enums_bid_modifier_source_proto_init() { - if File_google_ads_googleads_v21_enums_bid_modifier_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_bid_modifier_source_proto_init() } +func file_google_ads_googleads_v22_enums_bid_modifier_source_proto_init() { + if File_google_ads_googleads_v22_enums_bid_modifier_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bid_modifier_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bid_modifier_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_bid_modifier_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_bid_modifier_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_bid_modifier_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_bid_modifier_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_bid_modifier_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_bid_modifier_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_bid_modifier_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_bid_modifier_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_bid_modifier_source_proto = out.File - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_bid_modifier_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_bid_modifier_source_proto = out.File + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_bid_modifier_source_proto_depIdxs = nil } diff --git a/enums/bidding_source.pb.go b/enums/bidding_source.pb.go index dd62df74..e889ec76 100644 --- a/enums/bidding_source.pb.go +++ b/enums/bidding_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/bidding_source.proto +// source: google/ads/googleads/v22/enums/bidding_source.proto package enums @@ -82,11 +82,11 @@ func (x BiddingSourceEnum_BiddingSource) String() string { } func (BiddingSourceEnum_BiddingSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_bidding_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_bidding_source_proto_enumTypes[0].Descriptor() } func (BiddingSourceEnum_BiddingSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_bidding_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_bidding_source_proto_enumTypes[0] } func (x BiddingSourceEnum_BiddingSource) Number() protoreflect.EnumNumber { @@ -95,7 +95,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_v21_enums_bidding_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_bidding_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *BiddingSourceEnum) String() string { func (*BiddingSourceEnum) ProtoMessage() {} func (x *BiddingSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_bidding_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,17 +132,17 @@ func (x *BiddingSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingSourceEnum.ProtoReflect.Descriptor instead. func (*BiddingSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_bidding_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_bidding_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_bidding_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc = string([] 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_bidding_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_bidding_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_bidding_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_source_proto_goTypes = []any{ - (BiddingSourceEnum_BiddingSource)(0), // 0: google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - (*BiddingSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.BiddingSourceEnum +var file_google_ads_googleads_v22_enums_bidding_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_source_proto_goTypes = []any{ + (BiddingSourceEnum_BiddingSource)(0), // 0: google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + (*BiddingSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.BiddingSourceEnum } -var file_google_ads_googleads_v21_enums_bidding_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_bidding_source_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_bidding_source_proto_init() } -func file_google_ads_googleads_v21_enums_bidding_source_proto_init() { - if File_google_ads_googleads_v21_enums_bidding_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_bidding_source_proto_init() } +func file_google_ads_googleads_v22_enums_bidding_source_proto_init() { + if File_google_ads_googleads_v22_enums_bidding_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_bidding_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_bidding_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_bidding_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_bidding_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_bidding_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_bidding_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_bidding_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_bidding_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_bidding_source_proto = out.File - file_google_ads_googleads_v21_enums_bidding_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_bidding_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_bidding_source_proto = out.File + file_google_ads_googleads_v22_enums_bidding_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_bidding_source_proto_depIdxs = nil } diff --git a/enums/bidding_strategy_status.pb.go b/enums/bidding_strategy_status.pb.go index 694ef570..97a7b569 100644 --- a/enums/bidding_strategy_status.pb.go +++ b/enums/bidding_strategy_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/bidding_strategy_status.proto +// source: google/ads/googleads/v22/enums/bidding_strategy_status.proto package enums @@ -78,11 +78,11 @@ func (x BiddingStrategyStatusEnum_BiddingStrategyStatus) String() string { } func (BiddingStrategyStatusEnum_BiddingStrategyStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_enumTypes[0].Descriptor() } func (BiddingStrategyStatusEnum_BiddingStrategyStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_enumTypes[0] } func (x BiddingStrategyStatusEnum_BiddingStrategyStatus) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *BiddingStrategyStatusEnum) String() string { func (*BiddingStrategyStatusEnum) ProtoMessage() {} func (x *BiddingStrategyStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *BiddingStrategyStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategyStatusEnum.ProtoReflect.Descriptor instead. func (*BiddingStrategyStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_bidding_strategy_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_bidding_strategy_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_goTypes = []any{ - (BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 0: google.ads.googleads.v21.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus - (*BiddingStrategyStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BiddingStrategyStatusEnum +var file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_goTypes = []any{ + (BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 0: google.ads.googleads.v22.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus + (*BiddingStrategyStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BiddingStrategyStatusEnum } -var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_init() } -func file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_init() { - if File_google_ads_googleads_v21_enums_bidding_strategy_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_init() } +func file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_init() { + if File_google_ads_googleads_v22_enums_bidding_strategy_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_bidding_strategy_status_proto = out.File - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_bidding_strategy_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_bidding_strategy_status_proto = out.File + file_google_ads_googleads_v22_enums_bidding_strategy_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 4b8b9c35..16c9ebdd 100644 --- a/enums/bidding_strategy_system_status.pb.go +++ b/enums/bidding_strategy_system_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/bidding_strategy_system_status.proto +// source: google/ads/googleads/v22/enums/bidding_strategy_system_status.proto package enums @@ -190,11 +190,11 @@ func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) String() st } func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_enumTypes[0].Descriptor() } func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_enumTypes[0] } func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Number() protoreflect.EnumNumber { @@ -203,7 +203,7 @@ func (x BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) Number() pr // Deprecated: Use BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus.Descriptor instead. func (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *BiddingStrategySystemStatusEnum) String() string { func (*BiddingStrategySystemStatusEnum) ProtoMessage() {} func (x *BiddingStrategySystemStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,18 +240,18 @@ func (x *BiddingStrategySystemStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategySystemStatusEnum.ProtoReflect.Descriptor instead. func (*BiddingStrategySystemStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -303,42 +303,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_goTypes = []any{ - (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 0: google.ads.googleads.v21.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus - (*BiddingStrategySystemStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BiddingStrategySystemStatusEnum +var file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_goTypes = []any{ + (BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 0: google.ads.googleads.v22.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus + (*BiddingStrategySystemStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BiddingStrategySystemStatusEnum } -var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -346,27 +346,27 @@ var file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_init() } -func file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_init() { - if File_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_init() } +func file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_init() { + if File_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto = out.File - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_bidding_strategy_system_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto = out.File + file_google_ads_googleads_v22_enums_bidding_strategy_system_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 72a83e0e..6ec11d32 100644 --- a/enums/bidding_strategy_type.pb.go +++ b/enums/bidding_strategy_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/bidding_strategy_type.proto +// source: google/ads/googleads/v22/enums/bidding_strategy_type.proto package enums @@ -52,6 +52,9 @@ const ( BiddingStrategyTypeEnum_ENHANCED_CPC BiddingStrategyTypeEnum_BiddingStrategyType = 2 // Fixed CPM is a manual bidding strategy with a fixed CPM. BiddingStrategyTypeEnum_FIXED_CPM BiddingStrategyTypeEnum_BiddingStrategyType = 19 + // Fixed share of voice is a manual bidding strategy for YouTube + // Sponsorships that bills either on CPM or a fixed cost per day. + BiddingStrategyTypeEnum_FIXED_SHARE_OF_VOICE BiddingStrategyTypeEnum_BiddingStrategyType = 22 // Used for return value only. Indicates that a campaign does not have a // bidding strategy. This prevents the campaign from serving. For example, // a campaign may be attached to a manager bidding strategy and the serving @@ -87,6 +90,9 @@ const ( // to help get as many conversions as possible // at the target cost-per-acquisition (CPA) you set. BiddingStrategyTypeEnum_TARGET_CPA BiddingStrategyTypeEnum_BiddingStrategyType = 6 + // Target CPC is an automated bid strategy that sets bids to help get + // as many clicks as possible at the target cost-per-click (CPC) you set. + BiddingStrategyTypeEnum_TARGET_CPC BiddingStrategyTypeEnum_BiddingStrategyType = 21 // Target CPM is an automated bid strategy that sets bids to help get // as many impressions as possible at the target cost per one thousand // impressions (CPM) you set. @@ -120,6 +126,7 @@ var ( 16: "COMMISSION", 2: "ENHANCED_CPC", 19: "FIXED_CPM", + 22: "FIXED_SHARE_OF_VOICE", 17: "INVALID", 18: "MANUAL_CPA", 3: "MANUAL_CPC", @@ -130,6 +137,7 @@ var ( 5: "PAGE_ONE_PROMOTED", 12: "PERCENT_CPC", 6: "TARGET_CPA", + 21: "TARGET_CPC", 14: "TARGET_CPM", 20: "TARGET_CPV", 15: "TARGET_IMPRESSION_SHARE", @@ -143,6 +151,7 @@ var ( "COMMISSION": 16, "ENHANCED_CPC": 2, "FIXED_CPM": 19, + "FIXED_SHARE_OF_VOICE": 22, "INVALID": 17, "MANUAL_CPA": 18, "MANUAL_CPC": 3, @@ -153,6 +162,7 @@ var ( "PAGE_ONE_PROMOTED": 5, "PERCENT_CPC": 12, "TARGET_CPA": 6, + "TARGET_CPC": 21, "TARGET_CPM": 14, "TARGET_CPV": 20, "TARGET_IMPRESSION_SHARE": 15, @@ -173,11 +183,11 @@ func (x BiddingStrategyTypeEnum_BiddingStrategyType) String() string { } func (BiddingStrategyTypeEnum_BiddingStrategyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_enumTypes[0].Descriptor() } func (BiddingStrategyTypeEnum_BiddingStrategyType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_enumTypes[0] } func (x BiddingStrategyTypeEnum_BiddingStrategyType) Number() protoreflect.EnumNumber { @@ -186,7 +196,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_v21_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible bidding strategy types. @@ -198,7 +208,7 @@ type BiddingStrategyTypeEnum struct { func (x *BiddingStrategyTypeEnum) Reset() { *x = BiddingStrategyTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -210,7 +220,7 @@ func (x *BiddingStrategyTypeEnum) String() string { func (*BiddingStrategyTypeEnum) ProtoMessage() {} func (x *BiddingStrategyTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -223,83 +233,85 @@ func (x *BiddingStrategyTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategyTypeEnum.ProtoReflect.Descriptor instead. func (*BiddingStrategyTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_bidding_strategy_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_bidding_strategy_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb8, 0x03, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe2, 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, 0x9c, 0x03, 0x0a, 0x13, 0x42, 0x69, 0x64, + 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc6, 0x03, 0x0a, 0x13, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, 0x0e, 0x0a, 0x0a, 0x43, 0x4f, 0x4d, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x10, 0x10, 0x12, 0x10, 0x0a, 0x0c, 0x45, 0x4e, 0x48, 0x41, 0x4e, 0x43, 0x45, 0x44, 0x5f, 0x43, 0x50, 0x43, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x46, 0x49, 0x58, 0x45, 0x44, 0x5f, 0x43, 0x50, 0x4d, 0x10, 0x13, 0x12, - 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x11, 0x12, 0x0e, 0x0a, 0x0a, - 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x12, 0x12, 0x0e, 0x0a, 0x0a, - 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, 0x5f, 0x43, 0x50, 0x43, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, - 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, 0x5f, 0x43, 0x50, 0x4d, 0x10, 0x04, 0x12, 0x0e, 0x0a, 0x0a, - 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, 0x5f, 0x43, 0x50, 0x56, 0x10, 0x0d, 0x12, 0x18, 0x0a, 0x14, - 0x4d, 0x41, 0x58, 0x49, 0x4d, 0x49, 0x5a, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, - 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x0a, 0x12, 0x1d, 0x0a, 0x19, 0x4d, 0x41, 0x58, 0x49, 0x4d, 0x49, - 0x5a, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x56, 0x41, - 0x4c, 0x55, 0x45, 0x10, 0x0b, 0x12, 0x15, 0x0a, 0x11, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x4f, 0x4e, - 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x4f, 0x54, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, - 0x50, 0x45, 0x52, 0x43, 0x45, 0x4e, 0x54, 0x5f, 0x43, 0x50, 0x43, 0x10, 0x0c, 0x12, 0x0e, 0x0a, - 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x06, 0x12, 0x0e, 0x0a, - 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x50, 0x4d, 0x10, 0x0e, 0x12, 0x0e, 0x0a, - 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x43, 0x50, 0x56, 0x10, 0x14, 0x12, 0x1b, 0x0a, - 0x17, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x49, 0x4d, 0x50, 0x52, 0x45, 0x53, 0x53, 0x49, - 0x4f, 0x4e, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x10, 0x0f, 0x12, 0x18, 0x0a, 0x14, 0x54, 0x41, - 0x52, 0x47, 0x45, 0x54, 0x5f, 0x4f, 0x55, 0x54, 0x52, 0x41, 0x4e, 0x4b, 0x5f, 0x53, 0x48, 0x41, - 0x52, 0x45, 0x10, 0x07, 0x12, 0x0f, 0x0a, 0x0b, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, - 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, - 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, - 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x18, 0x0a, 0x14, 0x46, 0x49, 0x58, 0x45, 0x44, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x5f, 0x4f, + 0x46, 0x5f, 0x56, 0x4f, 0x49, 0x43, 0x45, 0x10, 0x16, 0x12, 0x0b, 0x0a, 0x07, 0x49, 0x4e, 0x56, + 0x41, 0x4c, 0x49, 0x44, 0x10, 0x11, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, + 0x5f, 0x43, 0x50, 0x41, 0x10, 0x12, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, + 0x5f, 0x43, 0x50, 0x43, 0x10, 0x03, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, + 0x5f, 0x43, 0x50, 0x4d, 0x10, 0x04, 0x12, 0x0e, 0x0a, 0x0a, 0x4d, 0x41, 0x4e, 0x55, 0x41, 0x4c, + 0x5f, 0x43, 0x50, 0x56, 0x10, 0x0d, 0x12, 0x18, 0x0a, 0x14, 0x4d, 0x41, 0x58, 0x49, 0x4d, 0x49, + 0x5a, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x0a, + 0x12, 0x1d, 0x0a, 0x19, 0x4d, 0x41, 0x58, 0x49, 0x4d, 0x49, 0x5a, 0x45, 0x5f, 0x43, 0x4f, 0x4e, + 0x56, 0x45, 0x52, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x0b, 0x12, + 0x15, 0x0a, 0x11, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x4f, 0x4e, 0x45, 0x5f, 0x50, 0x52, 0x4f, 0x4d, + 0x4f, 0x54, 0x45, 0x44, 0x10, 0x05, 0x12, 0x0f, 0x0a, 0x0b, 0x50, 0x45, 0x52, 0x43, 0x45, 0x4e, + 0x54, 0x5f, 0x43, 0x50, 0x43, 0x10, 0x0c, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, + 0x54, 0x5f, 0x43, 0x50, 0x41, 0x10, 0x06, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, + 0x54, 0x5f, 0x43, 0x50, 0x43, 0x10, 0x15, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, + 0x54, 0x5f, 0x43, 0x50, 0x4d, 0x10, 0x0e, 0x12, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x52, 0x47, 0x45, + 0x54, 0x5f, 0x43, 0x50, 0x56, 0x10, 0x14, 0x12, 0x1b, 0x0a, 0x17, 0x54, 0x41, 0x52, 0x47, 0x45, + 0x54, 0x5f, 0x49, 0x4d, 0x50, 0x52, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x48, 0x41, + 0x52, 0x45, 0x10, 0x0f, 0x12, 0x18, 0x0a, 0x14, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x4f, + 0x55, 0x54, 0x52, 0x41, 0x4e, 0x4b, 0x5f, 0x53, 0x48, 0x41, 0x52, 0x45, 0x10, 0x07, 0x12, 0x0f, + 0x0a, 0x0b, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 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, + 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, + 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, + 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_goTypes = []any{ - (BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 0: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (*BiddingStrategyTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum +var file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_goTypes = []any{ + (BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 0: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (*BiddingStrategyTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum } -var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -307,27 +319,27 @@ var file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_init() } -func file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_init() { - if File_google_ads_googleads_v21_enums_bidding_strategy_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_init() } +func file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_init() { + if File_google_ads_googleads_v22_enums_bidding_strategy_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_bidding_strategy_type_proto = out.File - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_bidding_strategy_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_bidding_strategy_type_proto = out.File + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_bidding_strategy_type_proto_depIdxs = nil } diff --git a/enums/billing_setup_status.pb.go b/enums/billing_setup_status.pb.go index 786bd576..f9551f91 100644 --- a/enums/billing_setup_status.pb.go +++ b/enums/billing_setup_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/billing_setup_status.proto +// source: google/ads/googleads/v22/enums/billing_setup_status.proto package enums @@ -86,11 +86,11 @@ func (x BillingSetupStatusEnum_BillingSetupStatus) String() string { } func (BillingSetupStatusEnum_BillingSetupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_billing_setup_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_billing_setup_status_proto_enumTypes[0].Descriptor() } func (BillingSetupStatusEnum_BillingSetupStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_billing_setup_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_billing_setup_status_proto_enumTypes[0] } func (x BillingSetupStatusEnum_BillingSetupStatus) Number() protoreflect.EnumNumber { @@ -99,7 +99,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_v21_enums_billing_setup_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_billing_setup_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_billing_setup_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *BillingSetupStatusEnum) String() string { func (*BillingSetupStatusEnum) ProtoMessage() {} func (x *BillingSetupStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_billing_setup_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_billing_setup_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *BillingSetupStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetupStatusEnum.ProtoReflect.Descriptor instead. func (*BillingSetupStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_billing_setup_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_billing_setup_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x89, 0x01, 0x0a, 0x16, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,42 +158,42 @@ var file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_billing_setup_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_billing_setup_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_billing_setup_status_proto_goTypes = []any{ - (BillingSetupStatusEnum_BillingSetupStatus)(0), // 0: google.ads.googleads.v21.enums.BillingSetupStatusEnum.BillingSetupStatus - (*BillingSetupStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BillingSetupStatusEnum +var file_google_ads_googleads_v22_enums_billing_setup_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_billing_setup_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_billing_setup_status_proto_goTypes = []any{ + (BillingSetupStatusEnum_BillingSetupStatus)(0), // 0: google.ads.googleads.v22.enums.BillingSetupStatusEnum.BillingSetupStatus + (*BillingSetupStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BillingSetupStatusEnum } -var file_google_ads_googleads_v21_enums_billing_setup_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_enums_billing_setup_status_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_billing_setup_status_proto_init() } -func file_google_ads_googleads_v21_enums_billing_setup_status_proto_init() { - if File_google_ads_googleads_v21_enums_billing_setup_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_billing_setup_status_proto_init() } +func file_google_ads_googleads_v22_enums_billing_setup_status_proto_init() { + if File_google_ads_googleads_v22_enums_billing_setup_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_billing_setup_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_billing_setup_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_billing_setup_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_billing_setup_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_billing_setup_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_billing_setup_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_billing_setup_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_billing_setup_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_billing_setup_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_billing_setup_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_billing_setup_status_proto = out.File - file_google_ads_googleads_v21_enums_billing_setup_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_billing_setup_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_billing_setup_status_proto = out.File + file_google_ads_googleads_v22_enums_billing_setup_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 35e6a0aa..a9ecb73b 100644 --- a/enums/brand_request_rejection_reason.pb.go +++ b/enums/brand_request_rejection_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/brand_request_rejection_reason.proto +// source: google/ads/googleads/v22/enums/brand_request_rejection_reason.proto package enums @@ -84,11 +84,11 @@ func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) String() st } func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_enumTypes[0].Descriptor() } func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_enumTypes[0] } func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) Number() pr // Deprecated: Use BrandRequestRejectionReasonEnum_BrandRequestRejectionReason.Descriptor instead. func (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *BrandRequestRejectionReasonEnum) String() string { func (*BrandRequestRejectionReasonEnum) ProtoMessage() {} func (x *BrandRequestRejectionReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *BrandRequestRejectionReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandRequestRejectionReasonEnum.ProtoReflect.Descriptor instead. func (*BrandRequestRejectionReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,42 +161,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x42, 0x72, 0x61, 0x6e, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_goTypes = []any{ - (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 0: google.ads.googleads.v21.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason - (*BrandRequestRejectionReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.BrandRequestRejectionReasonEnum +var file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_goTypes = []any{ + (BrandRequestRejectionReasonEnum_BrandRequestRejectionReason)(0), // 0: google.ads.googleads.v22.enums.BrandRequestRejectionReasonEnum.BrandRequestRejectionReason + (*BrandRequestRejectionReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.BrandRequestRejectionReasonEnum } -var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_init() } -func file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_init() { - if File_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_init() } +func file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_init() { + if File_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto = out.File - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_brand_request_rejection_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto = out.File + file_google_ads_googleads_v22_enums_brand_request_rejection_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 79a23c95..c7e9a9aa 100644 --- a/enums/brand_safety_suitability.pb.go +++ b/enums/brand_safety_suitability.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/brand_safety_suitability.proto +// source: google/ads/googleads/v22/enums/brand_safety_suitability.proto package enums @@ -100,11 +100,11 @@ func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) String() string { } func (BrandSafetySuitabilityEnum_BrandSafetySuitability) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_enumTypes[0].Descriptor() } func (BrandSafetySuitabilityEnum_BrandSafetySuitability) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_enumTypes[0] } func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) Number() protoreflect.EnumNumber { @@ -113,7 +113,7 @@ func (x BrandSafetySuitabilityEnum_BrandSafetySuitability) Number() protoreflect // Deprecated: Use BrandSafetySuitabilityEnum_BrandSafetySuitability.Descriptor instead. func (BrandSafetySuitabilityEnum_BrandSafetySuitability) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *BrandSafetySuitabilityEnum) String() string { func (*BrandSafetySuitabilityEnum) ProtoMessage() {} func (x *BrandSafetySuitabilityEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,18 +150,18 @@ func (x *BrandSafetySuitabilityEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandSafetySuitabilityEnum.ProtoReflect.Descriptor instead. func (*BrandSafetySuitabilityEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_brand_safety_suitability_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_brand_safety_suitability_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -173,42 +173,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDescData + return file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDescData } -var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_goTypes = []any{ - (BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 0: google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - (*BrandSafetySuitabilityEnum)(nil), // 1: google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum +var file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_goTypes = []any{ + (BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 0: google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + (*BrandSafetySuitabilityEnum)(nil), // 1: google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum } -var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -216,27 +216,27 @@ var file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_init() } -func file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_init() { - if File_google_ads_googleads_v21_enums_brand_safety_suitability_proto != nil { +func init() { file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_init() } +func file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_init() { + if File_google_ads_googleads_v22_enums_brand_safety_suitability_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_brand_safety_suitability_proto = out.File - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_goTypes = nil - file_google_ads_googleads_v21_enums_brand_safety_suitability_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_brand_safety_suitability_proto = out.File + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_goTypes = nil + file_google_ads_googleads_v22_enums_brand_safety_suitability_proto_depIdxs = nil } diff --git a/enums/brand_state.pb.go b/enums/brand_state.pb.go index 0380eaa8..2e9d3a4f 100644 --- a/enums/brand_state.pb.go +++ b/enums/brand_state.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/brand_state.proto +// source: google/ads/googleads/v22/enums/brand_state.proto package enums @@ -98,11 +98,11 @@ func (x BrandStateEnum_BrandState) String() string { } func (BrandStateEnum_BrandState) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_brand_state_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_brand_state_proto_enumTypes[0].Descriptor() } func (BrandStateEnum_BrandState) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_brand_state_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_brand_state_proto_enumTypes[0] } func (x BrandStateEnum_BrandState) Number() protoreflect.EnumNumber { @@ -111,7 +111,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_v21_enums_brand_state_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_brand_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_state_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *BrandStateEnum) String() string { func (*BrandStateEnum) ProtoMessage() {} func (x *BrandStateEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_brand_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_brand_state_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,17 +148,17 @@ func (x *BrandStateEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandStateEnum.ProtoReflect.Descriptor instead. func (*BrandStateEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_brand_state_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_brand_state_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_brand_state_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_brand_state_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_brand_state_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -170,41 +170,41 @@ var file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_brand_state_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_brand_state_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_brand_state_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_brand_state_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_brand_state_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_brand_state_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_brand_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_brand_state_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_brand_state_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_brand_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_state_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_brand_state_proto_rawDescData + return file_google_ads_googleads_v22_enums_brand_state_proto_rawDescData } -var file_google_ads_googleads_v21_enums_brand_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_brand_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_brand_state_proto_goTypes = []any{ - (BrandStateEnum_BrandState)(0), // 0: google.ads.googleads.v21.enums.BrandStateEnum.BrandState - (*BrandStateEnum)(nil), // 1: google.ads.googleads.v21.enums.BrandStateEnum +var file_google_ads_googleads_v22_enums_brand_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_brand_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_brand_state_proto_goTypes = []any{ + (BrandStateEnum_BrandState)(0), // 0: google.ads.googleads.v22.enums.BrandStateEnum.BrandState + (*BrandStateEnum)(nil), // 1: google.ads.googleads.v22.enums.BrandStateEnum } -var file_google_ads_googleads_v21_enums_brand_state_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -212,27 +212,27 @@ var file_google_ads_googleads_v21_enums_brand_state_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_brand_state_proto_init() } -func file_google_ads_googleads_v21_enums_brand_state_proto_init() { - if File_google_ads_googleads_v21_enums_brand_state_proto != nil { +func init() { file_google_ads_googleads_v22_enums_brand_state_proto_init() } +func file_google_ads_googleads_v22_enums_brand_state_proto_init() { + if File_google_ads_googleads_v22_enums_brand_state_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_brand_state_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_brand_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_brand_state_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_brand_state_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_brand_state_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_brand_state_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_brand_state_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_brand_state_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_brand_state_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_brand_state_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_brand_state_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_brand_state_proto = out.File - file_google_ads_googleads_v21_enums_brand_state_proto_goTypes = nil - file_google_ads_googleads_v21_enums_brand_state_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_brand_state_proto = out.File + file_google_ads_googleads_v22_enums_brand_state_proto_goTypes = nil + file_google_ads_googleads_v22_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 bd3c2cd8..6f4701ae 100644 --- a/enums/budget_campaign_association_status.pb.go +++ b/enums/budget_campaign_association_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/budget_campaign_association_status.proto +// source: google/ads/googleads/v22/enums/budget_campaign_association_status.proto package enums @@ -76,11 +76,11 @@ func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Str } func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_enumTypes[0].Descriptor() } func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_enumTypes[0] } func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) Num // Deprecated: Use BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus.Descriptor instead. func (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *BudgetCampaignAssociationStatusEnum) String() string { func (*BudgetCampaignAssociationStatusEnum) ProtoMessage() {} func (x *BudgetCampaignAssociationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,19 +127,19 @@ func (x *BudgetCampaignAssociationStatusEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use BudgetCampaignAssociationStatusEnum.ProtoReflect.Descriptor instead. func (*BudgetCampaignAssociationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_budget_campaign_association_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_budget_campaign_association_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x80, 0x01, 0x0a, 0x23, 0x42, 0x75, + 0x76, 0x32, 0x32, 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, @@ -149,43 +149,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_goTypes = []any{ - (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 0: google.ads.googleads.v21.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus - (*BudgetCampaignAssociationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BudgetCampaignAssociationStatusEnum +var file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_goTypes = []any{ + (BudgetCampaignAssociationStatusEnum_BudgetCampaignAssociationStatus)(0), // 0: google.ads.googleads.v22.enums.BudgetCampaignAssociationStatusEnum.BudgetCampaignAssociationStatus + (*BudgetCampaignAssociationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BudgetCampaignAssociationStatusEnum } -var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_init() } -func file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_init() { - if File_google_ads_googleads_v21_enums_budget_campaign_association_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_init() } +func file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_init() { + if File_google_ads_googleads_v22_enums_budget_campaign_association_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_budget_campaign_association_status_proto = out.File - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_budget_campaign_association_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_budget_campaign_association_status_proto = out.File + file_google_ads_googleads_v22_enums_budget_campaign_association_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 cfa03d62..84cfdf70 100644 --- a/enums/budget_delivery_method.pb.go +++ b/enums/budget_delivery_method.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/budget_delivery_method.proto +// source: google/ads/googleads/v22/enums/budget_delivery_method.proto package enums @@ -78,11 +78,11 @@ func (x BudgetDeliveryMethodEnum_BudgetDeliveryMethod) String() string { } func (BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_budget_delivery_method_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_budget_delivery_method_proto_enumTypes[0].Descriptor() } func (BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_budget_delivery_method_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_budget_delivery_method_proto_enumTypes[0] } func (x BudgetDeliveryMethodEnum_BudgetDeliveryMethod) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_budget_delivery_method_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_delivery_method_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *BudgetDeliveryMethodEnum) String() string { func (*BudgetDeliveryMethodEnum) ProtoMessage() {} func (x *BudgetDeliveryMethodEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_budget_delivery_method_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_delivery_method_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,18 +129,18 @@ func (x *BudgetDeliveryMethodEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetDeliveryMethodEnum.ProtoReflect.Descriptor instead. func (*BudgetDeliveryMethodEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_budget_delivery_method_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_budget_delivery_method_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDescData + return file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDescData } -var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_goTypes = []any{ - (BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 0: google.ads.googleads.v21.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod - (*BudgetDeliveryMethodEnum)(nil), // 1: google.ads.googleads.v21.enums.BudgetDeliveryMethodEnum +var file_google_ads_googleads_v22_enums_budget_delivery_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_budget_delivery_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_budget_delivery_method_proto_goTypes = []any{ + (BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 0: google.ads.googleads.v22.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod + (*BudgetDeliveryMethodEnum)(nil), // 1: google.ads.googleads.v22.enums.BudgetDeliveryMethodEnum } -var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_budget_delivery_method_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_budget_delivery_method_proto_init() } -func file_google_ads_googleads_v21_enums_budget_delivery_method_proto_init() { - if File_google_ads_googleads_v21_enums_budget_delivery_method_proto != nil { +func init() { file_google_ads_googleads_v22_enums_budget_delivery_method_proto_init() } +func file_google_ads_googleads_v22_enums_budget_delivery_method_proto_init() { + if File_google_ads_googleads_v22_enums_budget_delivery_method_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_delivery_method_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_delivery_method_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_budget_delivery_method_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_budget_delivery_method_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_budget_delivery_method_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_budget_delivery_method_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_budget_delivery_method_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_budget_delivery_method_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_budget_delivery_method_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_budget_delivery_method_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_budget_delivery_method_proto = out.File - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_goTypes = nil - file_google_ads_googleads_v21_enums_budget_delivery_method_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_budget_delivery_method_proto = out.File + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_goTypes = nil + file_google_ads_googleads_v22_enums_budget_delivery_method_proto_depIdxs = nil } diff --git a/enums/budget_period.pb.go b/enums/budget_period.pb.go index 6f0746fc..73d1dc4c 100644 --- a/enums/budget_period.pb.go +++ b/enums/budget_period.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/budget_period.proto +// source: google/ads/googleads/v22/enums/budget_period.proto package enums @@ -79,11 +79,11 @@ func (x BudgetPeriodEnum_BudgetPeriod) String() string { } func (BudgetPeriodEnum_BudgetPeriod) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_budget_period_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_budget_period_proto_enumTypes[0].Descriptor() } func (BudgetPeriodEnum_BudgetPeriod) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_budget_period_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_budget_period_proto_enumTypes[0] } func (x BudgetPeriodEnum_BudgetPeriod) Number() protoreflect.EnumNumber { @@ -92,7 +92,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_v21_enums_budget_period_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_budget_period_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_period_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *BudgetPeriodEnum) String() string { func (*BudgetPeriodEnum) ProtoMessage() {} func (x *BudgetPeriodEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_budget_period_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_period_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,17 +129,17 @@ func (x *BudgetPeriodEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetPeriodEnum.ProtoReflect.Descriptor instead. func (*BudgetPeriodEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_period_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_budget_period_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_budget_period_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_budget_period_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_budget_period_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_budget_period_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_budget_period_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_budget_period_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_budget_period_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_budget_period_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_budget_period_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_budget_period_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_budget_period_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_budget_period_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_budget_period_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_period_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_period_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_budget_period_proto_rawDescData + return file_google_ads_googleads_v22_enums_budget_period_proto_rawDescData } -var file_google_ads_googleads_v21_enums_budget_period_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_budget_period_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_budget_period_proto_goTypes = []any{ - (BudgetPeriodEnum_BudgetPeriod)(0), // 0: google.ads.googleads.v21.enums.BudgetPeriodEnum.BudgetPeriod - (*BudgetPeriodEnum)(nil), // 1: google.ads.googleads.v21.enums.BudgetPeriodEnum +var file_google_ads_googleads_v22_enums_budget_period_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_budget_period_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_budget_period_proto_goTypes = []any{ + (BudgetPeriodEnum_BudgetPeriod)(0), // 0: google.ads.googleads.v22.enums.BudgetPeriodEnum.BudgetPeriod + (*BudgetPeriodEnum)(nil), // 1: google.ads.googleads.v22.enums.BudgetPeriodEnum } -var file_google_ads_googleads_v21_enums_budget_period_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_budget_period_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_budget_period_proto_init() } -func file_google_ads_googleads_v21_enums_budget_period_proto_init() { - if File_google_ads_googleads_v21_enums_budget_period_proto != nil { +func init() { file_google_ads_googleads_v22_enums_budget_period_proto_init() } +func file_google_ads_googleads_v22_enums_budget_period_proto_init() { + if File_google_ads_googleads_v22_enums_budget_period_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_period_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_period_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_period_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_budget_period_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_budget_period_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_budget_period_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_budget_period_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_budget_period_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_budget_period_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_budget_period_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_budget_period_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_budget_period_proto = out.File - file_google_ads_googleads_v21_enums_budget_period_proto_goTypes = nil - file_google_ads_googleads_v21_enums_budget_period_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_budget_period_proto = out.File + file_google_ads_googleads_v22_enums_budget_period_proto_goTypes = nil + file_google_ads_googleads_v22_enums_budget_period_proto_depIdxs = nil } diff --git a/enums/budget_status.pb.go b/enums/budget_status.pb.go index 132a3331..9d70fadd 100644 --- a/enums/budget_status.pb.go +++ b/enums/budget_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/budget_status.proto +// source: google/ads/googleads/v22/enums/budget_status.proto package enums @@ -76,11 +76,11 @@ func (x BudgetStatusEnum_BudgetStatus) String() string { } func (BudgetStatusEnum_BudgetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_budget_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_budget_status_proto_enumTypes[0].Descriptor() } func (BudgetStatusEnum_BudgetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_budget_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_budget_status_proto_enumTypes[0] } func (x BudgetStatusEnum_BudgetStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_budget_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_budget_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *BudgetStatusEnum) String() string { func (*BudgetStatusEnum) ProtoMessage() {} func (x *BudgetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_budget_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *BudgetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetStatusEnum.ProtoReflect.Descriptor instead. func (*BudgetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_budget_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_budget_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_budget_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_budget_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc = string([]b 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x53, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_budget_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_budget_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_budget_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_budget_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_budget_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_budget_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_budget_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_budget_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_budget_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_budget_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_budget_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_budget_status_proto_goTypes = []any{ - (BudgetStatusEnum_BudgetStatus)(0), // 0: google.ads.googleads.v21.enums.BudgetStatusEnum.BudgetStatus - (*BudgetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.BudgetStatusEnum +var file_google_ads_googleads_v22_enums_budget_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_budget_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_budget_status_proto_goTypes = []any{ + (BudgetStatusEnum_BudgetStatus)(0), // 0: google.ads.googleads.v22.enums.BudgetStatusEnum.BudgetStatus + (*BudgetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.BudgetStatusEnum } -var file_google_ads_googleads_v21_enums_budget_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_budget_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_budget_status_proto_init() } -func file_google_ads_googleads_v21_enums_budget_status_proto_init() { - if File_google_ads_googleads_v21_enums_budget_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_budget_status_proto_init() } +func file_google_ads_googleads_v22_enums_budget_status_proto_init() { + if File_google_ads_googleads_v22_enums_budget_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_budget_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_budget_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_budget_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_budget_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_budget_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_budget_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_budget_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_budget_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_budget_status_proto = out.File - file_google_ads_googleads_v21_enums_budget_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_budget_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_budget_status_proto = out.File + file_google_ads_googleads_v22_enums_budget_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_budget_status_proto_depIdxs = nil } diff --git a/enums/budget_type.pb.go b/enums/budget_type.pb.go index be83ce20..e0b2723f 100644 --- a/enums/budget_type.pb.go +++ b/enums/budget_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/budget_type.proto +// source: google/ads/googleads/v22/enums/budget_type.proto package enums @@ -101,11 +101,11 @@ func (x BudgetTypeEnum_BudgetType) String() string { } func (BudgetTypeEnum_BudgetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_budget_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_budget_type_proto_enumTypes[0].Descriptor() } func (BudgetTypeEnum_BudgetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_budget_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_budget_type_proto_enumTypes[0] } func (x BudgetTypeEnum_BudgetType) Number() protoreflect.EnumNumber { @@ -114,7 +114,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_v21_enums_budget_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_budget_type_proto_rawDescGZIP(), []int{0, 0} } // Describes Budget types. @@ -126,7 +126,7 @@ type BudgetTypeEnum struct { func (x *BudgetTypeEnum) Reset() { *x = BudgetTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_budget_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +138,7 @@ func (x *BudgetTypeEnum) String() string { func (*BudgetTypeEnum) ProtoMessage() {} func (x *BudgetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_budget_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_budget_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,17 +151,17 @@ func (x *BudgetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetTypeEnum.ProtoReflect.Descriptor instead. func (*BudgetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_budget_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_budget_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_budget_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_budget_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_budget_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -172,41 +172,41 @@ var file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0f, 0x42, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_budget_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_budget_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_budget_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_budget_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_budget_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_budget_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_budget_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_budget_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_budget_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_budget_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_budget_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_budget_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_budget_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_budget_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_budget_type_proto_goTypes = []any{ - (BudgetTypeEnum_BudgetType)(0), // 0: google.ads.googleads.v21.enums.BudgetTypeEnum.BudgetType - (*BudgetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.BudgetTypeEnum +var file_google_ads_googleads_v22_enums_budget_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_budget_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_budget_type_proto_goTypes = []any{ + (BudgetTypeEnum_BudgetType)(0), // 0: google.ads.googleads.v22.enums.BudgetTypeEnum.BudgetType + (*BudgetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.BudgetTypeEnum } -var file_google_ads_googleads_v21_enums_budget_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -214,27 +214,27 @@ var file_google_ads_googleads_v21_enums_budget_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_budget_type_proto_init() } -func file_google_ads_googleads_v21_enums_budget_type_proto_init() { - if File_google_ads_googleads_v21_enums_budget_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_budget_type_proto_init() } +func file_google_ads_googleads_v22_enums_budget_type_proto_init() { + if File_google_ads_googleads_v22_enums_budget_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_budget_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_budget_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_budget_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_budget_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_budget_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_budget_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_budget_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_budget_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_budget_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_budget_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_budget_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_budget_type_proto = out.File - file_google_ads_googleads_v21_enums_budget_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_budget_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_budget_type_proto = out.File + file_google_ads_googleads_v22_enums_budget_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_budget_type_proto_depIdxs = nil } diff --git a/enums/business_message_call_to_action_type.pb.go b/enums/business_message_call_to_action_type.pb.go index 50c8962d..e3313d40 100644 --- a/enums/business_message_call_to_action_type.pb.go +++ b/enums/business_message_call_to_action_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/business_message_call_to_action_type.proto +// source: google/ads/googleads/v22/enums/business_message_call_to_action_type.proto package enums @@ -100,11 +100,11 @@ func (x BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) Str } func (BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_enumTypes[0].Descriptor() } func (BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_enumTypes[0] } func (x BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) Number() protoreflect.EnumNumber { @@ -113,7 +113,7 @@ func (x BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) Num // Deprecated: Use BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType.Descriptor instead. func (BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescGZIP(), []int{0, 0} } // Describes the type of call-to-action phrases in a business message. @@ -125,7 +125,7 @@ type BusinessMessageCallToActionTypeEnum struct { func (x *BusinessMessageCallToActionTypeEnum) Reset() { *x = BusinessMessageCallToActionTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *BusinessMessageCallToActionTypeEnum) String() string { func (*BusinessMessageCallToActionTypeEnum) ProtoMessage() {} func (x *BusinessMessageCallToActionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,19 +150,19 @@ func (x *BusinessMessageCallToActionTypeEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use BusinessMessageCallToActionTypeEnum.ProtoReflect.Descriptor instead. func (*BusinessMessageCallToActionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe1, 0x01, 0x0a, 0x23, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe1, 0x01, 0x0a, 0x23, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb9, 0x01, 0x0a, 0x1f, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, @@ -178,43 +178,43 @@ var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_pro 0x0a, 0x0b, 0x47, 0x45, 0x54, 0x5f, 0x53, 0x54, 0x41, 0x52, 0x54, 0x45, 0x44, 0x10, 0x08, 0x12, 0x0e, 0x0a, 0x0a, 0x4c, 0x45, 0x41, 0x52, 0x4e, 0x5f, 0x4d, 0x4f, 0x52, 0x45, 0x10, 0x09, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_goTypes = []any{ - (BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType)(0), // 0: google.ads.googleads.v21.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType - (*BusinessMessageCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.BusinessMessageCallToActionTypeEnum +var file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_goTypes = []any{ + (BusinessMessageCallToActionTypeEnum_BusinessMessageCallToActionType)(0), // 0: google.ads.googleads.v22.enums.BusinessMessageCallToActionTypeEnum.BusinessMessageCallToActionType + (*BusinessMessageCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.BusinessMessageCallToActionTypeEnum } -var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_business_message_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 @@ -222,27 +222,27 @@ var file_google_ads_googleads_v21_enums_business_message_call_to_action_type_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_init() } -func file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_init() { - if File_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_init() } +func file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_init() { + if File_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto = out.File - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_business_message_call_to_action_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto = out.File + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_business_message_call_to_action_type_proto_depIdxs = nil } diff --git a/enums/business_message_provider.pb.go b/enums/business_message_provider.pb.go index 2397654f..37b87219 100644 --- a/enums/business_message_provider.pb.go +++ b/enums/business_message_provider.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/business_message_provider.proto +// source: google/ads/googleads/v22/enums/business_message_provider.proto package enums @@ -72,11 +72,11 @@ func (x BusinessMessageProviderEnum_BusinessMessageProvider) String() string { } func (BusinessMessageProviderEnum_BusinessMessageProvider) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_business_message_provider_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_business_message_provider_proto_enumTypes[0].Descriptor() } func (BusinessMessageProviderEnum_BusinessMessageProvider) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_business_message_provider_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_business_message_provider_proto_enumTypes[0] } func (x BusinessMessageProviderEnum_BusinessMessageProvider) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x BusinessMessageProviderEnum_BusinessMessageProvider) Number() protorefle // Deprecated: Use BusinessMessageProviderEnum_BusinessMessageProvider.Descriptor instead. func (BusinessMessageProviderEnum_BusinessMessageProvider) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescGZIP(), []int{0, 0} } // Describes business message provider types. @@ -97,7 +97,7 @@ type BusinessMessageProviderEnum struct { func (x *BusinessMessageProviderEnum) Reset() { *x = BusinessMessageProviderEnum{} - mi := &file_google_ads_googleads_v21_enums_business_message_provider_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_business_message_provider_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *BusinessMessageProviderEnum) String() string { func (*BusinessMessageProviderEnum) ProtoMessage() {} func (x *BusinessMessageProviderEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_business_message_provider_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_business_message_provider_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *BusinessMessageProviderEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessMessageProviderEnum.ProtoReflect.Descriptor instead. func (*BusinessMessageProviderEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_business_message_provider_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_business_message_provider_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x76, 0x69, 0x64, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x64, 0x0a, 0x1b, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x45, 0x0a, 0x17, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x48, 0x41, 0x54, 0x53, 0x41, 0x50, 0x50, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x42, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc), len(file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDesc), len(file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDescData + return file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDescData } -var file_google_ads_googleads_v21_enums_business_message_provider_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_business_message_provider_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_business_message_provider_proto_goTypes = []any{ - (BusinessMessageProviderEnum_BusinessMessageProvider)(0), // 0: google.ads.googleads.v21.enums.BusinessMessageProviderEnum.BusinessMessageProvider - (*BusinessMessageProviderEnum)(nil), // 1: google.ads.googleads.v21.enums.BusinessMessageProviderEnum +var file_google_ads_googleads_v22_enums_business_message_provider_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_business_message_provider_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_business_message_provider_proto_goTypes = []any{ + (BusinessMessageProviderEnum_BusinessMessageProvider)(0), // 0: google.ads.googleads.v22.enums.BusinessMessageProviderEnum.BusinessMessageProvider + (*BusinessMessageProviderEnum)(nil), // 1: google.ads.googleads.v22.enums.BusinessMessageProviderEnum } -var file_google_ads_googleads_v21_enums_business_message_provider_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_business_message_provider_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +185,27 @@ var file_google_ads_googleads_v21_enums_business_message_provider_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_business_message_provider_proto_init() } -func file_google_ads_googleads_v21_enums_business_message_provider_proto_init() { - if File_google_ads_googleads_v21_enums_business_message_provider_proto != nil { +func init() { file_google_ads_googleads_v22_enums_business_message_provider_proto_init() } +func file_google_ads_googleads_v22_enums_business_message_provider_proto_init() { + if File_google_ads_googleads_v22_enums_business_message_provider_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc), len(file_google_ads_googleads_v21_enums_business_message_provider_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDesc), len(file_google_ads_googleads_v22_enums_business_message_provider_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_business_message_provider_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_business_message_provider_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_business_message_provider_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_business_message_provider_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_business_message_provider_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_business_message_provider_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_business_message_provider_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_business_message_provider_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_business_message_provider_proto = out.File - file_google_ads_googleads_v21_enums_business_message_provider_proto_goTypes = nil - file_google_ads_googleads_v21_enums_business_message_provider_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_business_message_provider_proto = out.File + file_google_ads_googleads_v22_enums_business_message_provider_proto_goTypes = nil + file_google_ads_googleads_v22_enums_business_message_provider_proto_depIdxs = nil } diff --git a/enums/call_conversion_reporting_state.pb.go b/enums/call_conversion_reporting_state.pb.go index f184d3ae..3cc50180 100644 --- a/enums/call_conversion_reporting_state.pb.go +++ b/enums/call_conversion_reporting_state.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/call_conversion_reporting_state.proto +// source: google/ads/googleads/v22/enums/call_conversion_reporting_state.proto package enums @@ -82,11 +82,11 @@ func (x CallConversionReportingStateEnum_CallConversionReportingState) String() } func (CallConversionReportingStateEnum_CallConversionReportingState) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_enumTypes[0].Descriptor() } func (CallConversionReportingStateEnum_CallConversionReportingState) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_enumTypes[0] } func (x CallConversionReportingStateEnum_CallConversionReportingState) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x CallConversionReportingStateEnum_CallConversionReportingState) Number() // Deprecated: Use CallConversionReportingStateEnum_CallConversionReportingState.Descriptor instead. func (CallConversionReportingStateEnum_CallConversionReportingState) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *CallConversionReportingStateEnum) String() string { func (*CallConversionReportingStateEnum) ProtoMessage() {} func (x *CallConversionReportingStateEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,18 +133,18 @@ func (x *CallConversionReportingStateEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CallConversionReportingStateEnum.ProtoReflect.Descriptor instead. func (*CallConversionReportingStateEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDescData + return file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDescData } -var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_goTypes = []any{ - (CallConversionReportingStateEnum_CallConversionReportingState)(0), // 0: google.ads.googleads.v21.enums.CallConversionReportingStateEnum.CallConversionReportingState - (*CallConversionReportingStateEnum)(nil), // 1: google.ads.googleads.v21.enums.CallConversionReportingStateEnum +var file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_goTypes = []any{ + (CallConversionReportingStateEnum_CallConversionReportingState)(0), // 0: google.ads.googleads.v22.enums.CallConversionReportingStateEnum.CallConversionReportingState + (*CallConversionReportingStateEnum)(nil), // 1: google.ads.googleads.v22.enums.CallConversionReportingStateEnum } -var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_init() } -func file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_init() { - if File_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto != nil { +func init() { file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_init() } +func file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_init() { + if File_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto = out.File - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_goTypes = nil - file_google_ads_googleads_v21_enums_call_conversion_reporting_state_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto = out.File + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_goTypes = nil + file_google_ads_googleads_v22_enums_call_conversion_reporting_state_proto_depIdxs = nil } diff --git a/enums/call_to_action_type.pb.go b/enums/call_to_action_type.pb.go index a22d5b97..979be315 100644 --- a/enums/call_to_action_type.pb.go +++ b/enums/call_to_action_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/call_to_action_type.proto +// source: google/ads/googleads/v22/enums/call_to_action_type.proto package enums @@ -136,11 +136,11 @@ func (x CallToActionTypeEnum_CallToActionType) String() string { } func (CallToActionTypeEnum_CallToActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_call_to_action_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_call_to_action_type_proto_enumTypes[0].Descriptor() } func (CallToActionTypeEnum_CallToActionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_call_to_action_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_call_to_action_type_proto_enumTypes[0] } func (x CallToActionTypeEnum_CallToActionType) Number() protoreflect.EnumNumber { @@ -149,7 +149,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_v21_enums_call_to_action_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_to_action_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173,7 +173,7 @@ func (x *CallToActionTypeEnum) String() string { func (*CallToActionTypeEnum) ProtoMessage() {} func (x *CallToActionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_to_action_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186,18 +186,18 @@ func (x *CallToActionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CallToActionTypeEnum.ProtoReflect.Descriptor instead. func (*CallToActionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_call_to_action_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_call_to_action_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc3, 0x02, 0x0a, 0x14, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -220,41 +220,41 @@ var file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, 0x61, 0x6c, 0x6c, 0x54, 0x6f, 0x41, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_call_to_action_type_proto_goTypes = []any{ - (CallToActionTypeEnum_CallToActionType)(0), // 0: google.ads.googleads.v21.enums.CallToActionTypeEnum.CallToActionType - (*CallToActionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CallToActionTypeEnum +var file_google_ads_googleads_v22_enums_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_call_to_action_type_proto_goTypes = []any{ + (CallToActionTypeEnum_CallToActionType)(0), // 0: google.ads.googleads.v22.enums.CallToActionTypeEnum.CallToActionType + (*CallToActionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CallToActionTypeEnum } -var file_google_ads_googleads_v21_enums_call_to_action_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -262,27 +262,27 @@ var file_google_ads_googleads_v21_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_v21_enums_call_to_action_type_proto_init() } -func file_google_ads_googleads_v21_enums_call_to_action_type_proto_init() { - if File_google_ads_googleads_v21_enums_call_to_action_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_call_to_action_type_proto_init() } +func file_google_ads_googleads_v22_enums_call_to_action_type_proto_init() { + if File_google_ads_googleads_v22_enums_call_to_action_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_to_action_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_to_action_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_call_to_action_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_call_to_action_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_call_to_action_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_call_to_action_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_call_to_action_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_call_to_action_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_call_to_action_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_call_to_action_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_call_to_action_type_proto = out.File - file_google_ads_googleads_v21_enums_call_to_action_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_call_to_action_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_call_to_action_type_proto = out.File + file_google_ads_googleads_v22_enums_call_to_action_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 0034b3fe..6cef20d2 100644 --- a/enums/call_tracking_display_location.pb.go +++ b/enums/call_tracking_display_location.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/call_tracking_display_location.proto +// source: google/ads/googleads/v22/enums/call_tracking_display_location.proto package enums @@ -76,11 +76,11 @@ func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) String() st } func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_enumTypes[0].Descriptor() } func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_enumTypes[0] } func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) Number() pr // Deprecated: Use CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation.Descriptor instead. func (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CallTrackingDisplayLocationEnum) String() string { func (*CallTrackingDisplayLocationEnum) ProtoMessage() {} func (x *CallTrackingDisplayLocationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CallTrackingDisplayLocationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CallTrackingDisplayLocationEnum.ProtoReflect.Descriptor instead. func (*CallTrackingDisplayLocationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_call_tracking_display_location_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_call_tracking_display_location_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,43 +147,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDescData + return file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDescData } -var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_goTypes = []any{ - (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 0: google.ads.googleads.v21.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation - (*CallTrackingDisplayLocationEnum)(nil), // 1: google.ads.googleads.v21.enums.CallTrackingDisplayLocationEnum +var file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_goTypes = []any{ + (CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 0: google.ads.googleads.v22.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation + (*CallTrackingDisplayLocationEnum)(nil), // 1: google.ads.googleads.v22.enums.CallTrackingDisplayLocationEnum } -var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_init() } -func file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_init() { - if File_google_ads_googleads_v21_enums_call_tracking_display_location_proto != nil { +func init() { file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_init() } +func file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_init() { + if File_google_ads_googleads_v22_enums_call_tracking_display_location_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_call_tracking_display_location_proto = out.File - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_goTypes = nil - file_google_ads_googleads_v21_enums_call_tracking_display_location_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_call_tracking_display_location_proto = out.File + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_goTypes = nil + file_google_ads_googleads_v22_enums_call_tracking_display_location_proto_depIdxs = nil } diff --git a/enums/call_type.pb.go b/enums/call_type.pb.go index 75e8b0bc..aa4f1fc1 100644 --- a/enums/call_type.pb.go +++ b/enums/call_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/call_type.proto +// source: google/ads/googleads/v22/enums/call_type.proto package enums @@ -76,11 +76,11 @@ func (x CallTypeEnum_CallType) String() string { } func (CallTypeEnum_CallType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_call_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_call_type_proto_enumTypes[0].Descriptor() } func (CallTypeEnum_CallType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_call_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_call_type_proto_enumTypes[0] } func (x CallTypeEnum_CallType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_call_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_call_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *CallTypeEnum) String() string { func (*CallTypeEnum) ProtoMessage() {} func (x *CallTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_call_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_call_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,17 +127,17 @@ func (x *CallTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CallTypeEnum.ProtoReflect.Descriptor instead. func (*CallTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_call_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_call_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_call_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_call_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_call_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_call_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_enums_call_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_call_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_call_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_call_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_call_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_call_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_call_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_call_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_call_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_call_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_call_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_call_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_call_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_call_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_call_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_call_type_proto_goTypes = []any{ - (CallTypeEnum_CallType)(0), // 0: google.ads.googleads.v21.enums.CallTypeEnum.CallType - (*CallTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CallTypeEnum +var file_google_ads_googleads_v22_enums_call_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_call_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_call_type_proto_goTypes = []any{ + (CallTypeEnum_CallType)(0), // 0: google.ads.googleads.v22.enums.CallTypeEnum.CallType + (*CallTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CallTypeEnum } -var file_google_ads_googleads_v21_enums_call_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_call_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_call_type_proto_init() } -func file_google_ads_googleads_v21_enums_call_type_proto_init() { - if File_google_ads_googleads_v21_enums_call_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_call_type_proto_init() } +func file_google_ads_googleads_v22_enums_call_type_proto_init() { + if File_google_ads_googleads_v22_enums_call_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_call_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_call_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_call_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_call_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_call_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_call_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_call_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_call_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_call_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_call_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_call_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_call_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_call_type_proto = out.File - file_google_ads_googleads_v21_enums_call_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_call_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_call_type_proto = out.File + file_google_ads_googleads_v22_enums_call_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_call_type_proto_depIdxs = nil } diff --git a/enums/campaign_criterion_status.pb.go b/enums/campaign_criterion_status.pb.go index 0678ea21..cb68a95f 100644 --- a/enums/campaign_criterion_status.pb.go +++ b/enums/campaign_criterion_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_criterion_status.proto +// source: google/ads/googleads/v22/enums/campaign_criterion_status.proto package enums @@ -82,11 +82,11 @@ func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) String() string { } func (CampaignCriterionStatusEnum_CampaignCriterionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_enumTypes[0].Descriptor() } func (CampaignCriterionStatusEnum_CampaignCriterionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_enumTypes[0] } func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x CampaignCriterionStatusEnum_CampaignCriterionStatus) Number() protorefle // Deprecated: Use CampaignCriterionStatusEnum_CampaignCriterionStatus.Descriptor instead. func (CampaignCriterionStatusEnum_CampaignCriterionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *CampaignCriterionStatusEnum) String() string { func (*CampaignCriterionStatusEnum) ProtoMessage() {} func (x *CampaignCriterionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *CampaignCriterionStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterionStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignCriterionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_criterion_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_criterion_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_goTypes = []any{ - (CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus - (*CampaignCriterionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignCriterionStatusEnum +var file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_goTypes = []any{ + (CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus + (*CampaignCriterionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignCriterionStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_criterion_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_criterion_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_criterion_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_criterion_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_criterion_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_campaign_criterion_status_proto_depIdxs = nil } diff --git a/enums/campaign_draft_status.pb.go b/enums/campaign_draft_status.pb.go index a4cc405b..13e0f34a 100644 --- a/enums/campaign_draft_status.pb.go +++ b/enums/campaign_draft_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_draft_status.proto +// source: google/ads/googleads/v22/enums/campaign_draft_status.proto package enums @@ -94,11 +94,11 @@ func (x CampaignDraftStatusEnum_CampaignDraftStatus) String() string { } func (CampaignDraftStatusEnum_CampaignDraftStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_draft_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_draft_status_proto_enumTypes[0].Descriptor() } func (CampaignDraftStatusEnum_CampaignDraftStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_draft_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_draft_status_proto_enumTypes[0] } func (x CampaignDraftStatusEnum_CampaignDraftStatus) Number() protoreflect.EnumNumber { @@ -107,7 +107,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_v21_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_draft_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_draft_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *CampaignDraftStatusEnum) String() string { func (*CampaignDraftStatusEnum) ProtoMessage() {} func (x *CampaignDraftStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_draft_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_draft_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,18 +144,18 @@ func (x *CampaignDraftStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraftStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignDraftStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_draft_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_draft_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_goTypes = []any{ - (CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignDraftStatusEnum.CampaignDraftStatus - (*CampaignDraftStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignDraftStatusEnum +var file_google_ads_googleads_v22_enums_campaign_draft_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_draft_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_draft_status_proto_goTypes = []any{ + (CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignDraftStatusEnum.CampaignDraftStatus + (*CampaignDraftStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignDraftStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_campaign_draft_status_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_draft_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_draft_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_draft_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_draft_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_draft_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_draft_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_draft_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_draft_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_draft_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_draft_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_draft_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_draft_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_draft_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_draft_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_draft_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_draft_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_draft_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_draft_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_draft_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_campaign_draft_status_proto_depIdxs = nil } diff --git a/enums/campaign_experiment_type.pb.go b/enums/campaign_experiment_type.pb.go index ea27713d..ac6b3684 100644 --- a/enums/campaign_experiment_type.pb.go +++ b/enums/campaign_experiment_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_experiment_type.proto +// source: google/ads/googleads/v22/enums/campaign_experiment_type.proto package enums @@ -86,11 +86,11 @@ func (x CampaignExperimentTypeEnum_CampaignExperimentType) String() string { } func (CampaignExperimentTypeEnum_CampaignExperimentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_enumTypes[0].Descriptor() } func (CampaignExperimentTypeEnum_CampaignExperimentType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_enumTypes[0] } func (x CampaignExperimentTypeEnum_CampaignExperimentType) Number() protoreflect.EnumNumber { @@ -99,7 +99,7 @@ func (x CampaignExperimentTypeEnum_CampaignExperimentType) Number() protoreflect // Deprecated: Use CampaignExperimentTypeEnum_CampaignExperimentType.Descriptor instead. func (CampaignExperimentTypeEnum_CampaignExperimentType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *CampaignExperimentTypeEnum) String() string { func (*CampaignExperimentTypeEnum) ProtoMessage() {} func (x *CampaignExperimentTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *CampaignExperimentTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignExperimentTypeEnum.ProtoReflect.Descriptor instead. func (*CampaignExperimentTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_experiment_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_experiment_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_goTypes = []any{ - (CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 0: google.ads.googleads.v21.enums.CampaignExperimentTypeEnum.CampaignExperimentType - (*CampaignExperimentTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignExperimentTypeEnum +var file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_goTypes = []any{ + (CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 0: google.ads.googleads.v22.enums.CampaignExperimentTypeEnum.CampaignExperimentType + (*CampaignExperimentTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignExperimentTypeEnum } -var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_experiment_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_experiment_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_experiment_type_proto = out.File - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_experiment_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_experiment_type_proto = out.File + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_campaign_experiment_type_proto_depIdxs = nil } diff --git a/enums/campaign_group_status.pb.go b/enums/campaign_group_status.pb.go index 0fc20693..3758fa59 100644 --- a/enums/campaign_group_status.pb.go +++ b/enums/campaign_group_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_group_status.proto +// source: google/ads/googleads/v22/enums/campaign_group_status.proto package enums @@ -76,11 +76,11 @@ func (x CampaignGroupStatusEnum_CampaignGroupStatus) String() string { } func (CampaignGroupStatusEnum_CampaignGroupStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_group_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_group_status_proto_enumTypes[0].Descriptor() } func (CampaignGroupStatusEnum_CampaignGroupStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_group_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_group_status_proto_enumTypes[0] } func (x CampaignGroupStatusEnum_CampaignGroupStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_campaign_group_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_group_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CampaignGroupStatusEnum) String() string { func (*CampaignGroupStatusEnum) ProtoMessage() {} func (x *CampaignGroupStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_group_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_group_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CampaignGroupStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignGroupStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignGroupStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_group_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_group_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x17, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_group_status_proto_goTypes = []any{ - (CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignGroupStatusEnum.CampaignGroupStatus - (*CampaignGroupStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignGroupStatusEnum +var file_google_ads_googleads_v22_enums_campaign_group_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_group_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_group_status_proto_goTypes = []any{ + (CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignGroupStatusEnum.CampaignGroupStatus + (*CampaignGroupStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignGroupStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_group_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_campaign_group_status_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_group_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_group_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_group_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_group_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_group_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_group_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_group_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_group_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_group_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_group_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_group_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_group_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_group_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_group_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_group_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_group_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_group_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_group_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_group_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_group_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_group_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 34144220..56b9ab05 100644 --- a/enums/campaign_keyword_match_type.pb.go +++ b/enums/campaign_keyword_match_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_keyword_match_type.proto +// source: google/ads/googleads/v22/enums/campaign_keyword_match_type.proto package enums @@ -72,11 +72,11 @@ func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) String() string { } func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_enumTypes[0].Descriptor() } func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_enumTypes[0] } func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) Number() protoref // Deprecated: Use CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType.Descriptor instead. func (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing keyword match type. @@ -97,7 +97,7 @@ type CampaignKeywordMatchTypeEnum struct { func (x *CampaignKeywordMatchTypeEnum) Reset() { *x = CampaignKeywordMatchTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *CampaignKeywordMatchTypeEnum) String() string { func (*CampaignKeywordMatchTypeEnum) ProtoMessage() {} func (x *CampaignKeywordMatchTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *CampaignKeywordMatchTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignKeywordMatchTypeEnum.ProtoReflect.Descriptor instead. func (*CampaignKeywordMatchTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDes 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_goTypes = []any{ - (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 0: google.ads.googleads.v21.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType - (*CampaignKeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignKeywordMatchTypeEnum +var file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_goTypes = []any{ + (CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 0: google.ads.googleads.v22.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType + (*CampaignKeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignKeywordMatchTypeEnum } -var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto = out.File - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_keyword_match_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto = out.File + file_google_ads_googleads_v22_enums_campaign_keyword_match_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 d03a9f2c..f1850a36 100644 --- a/enums/campaign_primary_status.pb.go +++ b/enums/campaign_primary_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_primary_status.proto +// source: google/ads/googleads/v22/enums/campaign_primary_status.proto package enums @@ -110,11 +110,11 @@ func (x CampaignPrimaryStatusEnum_CampaignPrimaryStatus) String() string { } func (CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_primary_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_primary_status_proto_enumTypes[0].Descriptor() } func (CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_primary_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_primary_status_proto_enumTypes[0] } func (x CampaignPrimaryStatusEnum_CampaignPrimaryStatus) Number() protoreflect.EnumNumber { @@ -123,7 +123,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_v21_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_primary_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147,7 +147,7 @@ func (x *CampaignPrimaryStatusEnum) String() string { func (*CampaignPrimaryStatusEnum) ProtoMessage() {} func (x *CampaignPrimaryStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_primary_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_primary_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160,18 +160,18 @@ func (x *CampaignPrimaryStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignPrimaryStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignPrimaryStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_primary_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_primary_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd2, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -187,42 +187,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_goTypes = []any{ - (CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus - (*CampaignPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignPrimaryStatusEnum +var file_google_ads_googleads_v22_enums_campaign_primary_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_primary_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_primary_status_proto_goTypes = []any{ + (CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus + (*CampaignPrimaryStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignPrimaryStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -230,27 +230,27 @@ var file_google_ads_googleads_v21_enums_campaign_primary_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_primary_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_primary_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_primary_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_primary_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_primary_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_primary_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_primary_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_primary_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_primary_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_primary_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_primary_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_primary_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_primary_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_primary_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_primary_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_primary_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_primary_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_primary_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_primary_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_primary_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 ad421be6..da0a4486 100644 --- a/enums/campaign_primary_status_reason.pb.go +++ b/enums/campaign_primary_status_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_primary_status_reason.proto +// source: google/ads/googleads/v22/enums/campaign_primary_status_reason.proto package enums @@ -230,11 +230,11 @@ func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) String() st } func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_enumTypes[0].Descriptor() } func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_enumTypes[0] } func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Number() protoreflect.EnumNumber { @@ -243,7 +243,7 @@ func (x CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) Number() pr // Deprecated: Use CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason.Descriptor instead. func (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible campaign primary status reasons. @@ -255,7 +255,7 @@ type CampaignPrimaryStatusReasonEnum struct { func (x *CampaignPrimaryStatusReasonEnum) Reset() { *x = CampaignPrimaryStatusReasonEnum{} - mi := &file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -267,7 +267,7 @@ func (x *CampaignPrimaryStatusReasonEnum) String() string { func (*CampaignPrimaryStatusReasonEnum) ProtoMessage() {} func (x *CampaignPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -280,18 +280,18 @@ func (x *CampaignPrimaryStatusReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignPrimaryStatusReasonEnum.ProtoReflect.Descriptor instead. func (*CampaignPrimaryStatusReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x09, 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, 0xee, 0x08, 0x0a, 0x1b, 0x43, 0x61, @@ -367,42 +367,42 @@ var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_raw 0x53, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x4c, 0x4f, 0x43, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x49, 0x4e, 0x47, 0x10, 0x27, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_goTypes = []any{ - (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 0: google.ads.googleads.v21.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason - (*CampaignPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignPrimaryStatusReasonEnum +var file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_goTypes = []any{ + (CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 0: google.ads.googleads.v22.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason + (*CampaignPrimaryStatusReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignPrimaryStatusReasonEnum } -var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -410,27 +410,27 @@ var file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto = out.File - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_primary_status_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto = out.File + file_google_ads_googleads_v22_enums_campaign_primary_status_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 e420b21d..9069ad72 100644 --- a/enums/campaign_serving_status.pb.go +++ b/enums/campaign_serving_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_serving_status.proto +// source: google/ads/googleads/v22/enums/campaign_serving_status.proto package enums @@ -90,11 +90,11 @@ func (x CampaignServingStatusEnum_CampaignServingStatus) String() string { } func (CampaignServingStatusEnum_CampaignServingStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_serving_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_serving_status_proto_enumTypes[0].Descriptor() } func (CampaignServingStatusEnum_CampaignServingStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_serving_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_serving_status_proto_enumTypes[0] } func (x CampaignServingStatusEnum_CampaignServingStatus) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_serving_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_serving_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *CampaignServingStatusEnum) String() string { func (*CampaignServingStatusEnum) ProtoMessage() {} func (x *CampaignServingStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_serving_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_serving_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *CampaignServingStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignServingStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignServingStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_serving_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_serving_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,41 +163,41 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_goTypes = []any{ - (CampaignServingStatusEnum_CampaignServingStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignServingStatusEnum.CampaignServingStatus - (*CampaignServingStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignServingStatusEnum +var file_google_ads_googleads_v22_enums_campaign_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_serving_status_proto_goTypes = []any{ + (CampaignServingStatusEnum_CampaignServingStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignServingStatusEnum.CampaignServingStatus + (*CampaignServingStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignServingStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_campaign_serving_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_serving_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_serving_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_serving_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_serving_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_serving_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_serving_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_serving_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_serving_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_serving_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_serving_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_serving_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_serving_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_serving_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_serving_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_serving_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_serving_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_serving_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_serving_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_serving_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_serving_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 acac22e0..9c9678d7 100644 --- a/enums/campaign_shared_set_status.pb.go +++ b/enums/campaign_shared_set_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_shared_set_status.proto +// source: google/ads/googleads/v22/enums/campaign_shared_set_status.proto package enums @@ -76,11 +76,11 @@ func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) String() string { } func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_enumTypes[0].Descriptor() } func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_enumTypes[0] } func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CampaignSharedSetStatusEnum_CampaignSharedSetStatus) Number() protorefle // Deprecated: Use CampaignSharedSetStatusEnum_CampaignSharedSetStatus.Descriptor instead. func (CampaignSharedSetStatusEnum_CampaignSharedSetStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CampaignSharedSetStatusEnum) String() string { func (*CampaignSharedSetStatusEnum) ProtoMessage() {} func (x *CampaignSharedSetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CampaignSharedSetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSetStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignSharedSetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_shared_set_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_shared_set_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_goTypes = []any{ - (CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus - (*CampaignSharedSetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignSharedSetStatusEnum +var file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_goTypes = []any{ + (CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus + (*CampaignSharedSetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignSharedSetStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_shared_set_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_shared_set_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_shared_set_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_shared_set_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_shared_set_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_campaign_shared_set_status_proto_depIdxs = nil } diff --git a/enums/campaign_status.pb.go b/enums/campaign_status.pb.go index 7fc9665d..52930a6b 100644 --- a/enums/campaign_status.pb.go +++ b/enums/campaign_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/campaign_status.proto +// source: google/ads/googleads/v22/enums/campaign_status.proto package enums @@ -80,11 +80,11 @@ func (x CampaignStatusEnum_CampaignStatus) String() string { } func (CampaignStatusEnum_CampaignStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_campaign_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_campaign_status_proto_enumTypes[0].Descriptor() } func (CampaignStatusEnum_CampaignStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_campaign_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_campaign_status_proto_enumTypes[0] } func (x CampaignStatusEnum_CampaignStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_campaign_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_campaign_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *CampaignStatusEnum) String() string { func (*CampaignStatusEnum) ProtoMessage() {} func (x *CampaignStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_campaign_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_campaign_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,17 +130,17 @@ func (x *CampaignStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignStatusEnum.ProtoReflect.Descriptor instead. func (*CampaignStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_campaign_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_campaign_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_campaign_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_campaign_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_campaign_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_campaign_status_proto_goTypes = []any{ - (CampaignStatusEnum_CampaignStatus)(0), // 0: google.ads.googleads.v21.enums.CampaignStatusEnum.CampaignStatus - (*CampaignStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CampaignStatusEnum +var file_google_ads_googleads_v22_enums_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_campaign_status_proto_goTypes = []any{ + (CampaignStatusEnum_CampaignStatus)(0), // 0: google.ads.googleads.v22.enums.CampaignStatusEnum.CampaignStatus + (*CampaignStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CampaignStatusEnum } -var file_google_ads_googleads_v21_enums_campaign_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_campaign_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_campaign_status_proto_init() } -func file_google_ads_googleads_v21_enums_campaign_status_proto_init() { - if File_google_ads_googleads_v21_enums_campaign_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_campaign_status_proto_init() } +func file_google_ads_googleads_v22_enums_campaign_status_proto_init() { + if File_google_ads_googleads_v22_enums_campaign_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_campaign_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_campaign_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_campaign_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_campaign_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_campaign_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_campaign_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_campaign_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_campaign_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_campaign_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_campaign_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_campaign_status_proto = out.File - file_google_ads_googleads_v21_enums_campaign_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_campaign_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_campaign_status_proto = out.File + file_google_ads_googleads_v22_enums_campaign_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_campaign_status_proto_depIdxs = nil } diff --git a/enums/chain_relationship_type.pb.go b/enums/chain_relationship_type.pb.go index dd7ff136..13b7ef89 100644 --- a/enums/chain_relationship_type.pb.go +++ b/enums/chain_relationship_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/chain_relationship_type.proto +// source: google/ads/googleads/v22/enums/chain_relationship_type.proto package enums @@ -76,11 +76,11 @@ func (x ChainRelationshipTypeEnum_ChainRelationshipType) String() string { } func (ChainRelationshipTypeEnum_ChainRelationshipType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_chain_relationship_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_chain_relationship_type_proto_enumTypes[0].Descriptor() } func (ChainRelationshipTypeEnum_ChainRelationshipType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_chain_relationship_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_chain_relationship_type_proto_enumTypes[0] } func (x ChainRelationshipTypeEnum_ChainRelationshipType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_chain_relationship_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_chain_relationship_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ChainRelationshipTypeEnum) String() string { func (*ChainRelationshipTypeEnum) ProtoMessage() {} func (x *ChainRelationshipTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_chain_relationship_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_chain_relationship_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ChainRelationshipTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChainRelationshipTypeEnum.ProtoReflect.Descriptor instead. func (*ChainRelationshipTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_chain_relationship_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_chain_relationship_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_goTypes = []any{ - (ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 0: google.ads.googleads.v21.enums.ChainRelationshipTypeEnum.ChainRelationshipType - (*ChainRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ChainRelationshipTypeEnum +var file_google_ads_googleads_v22_enums_chain_relationship_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_chain_relationship_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_chain_relationship_type_proto_goTypes = []any{ + (ChainRelationshipTypeEnum_ChainRelationshipType)(0), // 0: google.ads.googleads.v22.enums.ChainRelationshipTypeEnum.ChainRelationshipType + (*ChainRelationshipTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ChainRelationshipTypeEnum } -var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_chain_relationship_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_chain_relationship_type_proto_init() } -func file_google_ads_googleads_v21_enums_chain_relationship_type_proto_init() { - if File_google_ads_googleads_v21_enums_chain_relationship_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_chain_relationship_type_proto_init() } +func file_google_ads_googleads_v22_enums_chain_relationship_type_proto_init() { + if File_google_ads_googleads_v22_enums_chain_relationship_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_chain_relationship_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_chain_relationship_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_chain_relationship_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_chain_relationship_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_chain_relationship_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_chain_relationship_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_chain_relationship_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_chain_relationship_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_chain_relationship_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_chain_relationship_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_chain_relationship_type_proto = out.File - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_chain_relationship_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_chain_relationship_type_proto = out.File + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_chain_relationship_type_proto_depIdxs = nil } diff --git a/enums/change_client_type.pb.go b/enums/change_client_type.pb.go index 098bbeb9..cb59948e 100644 --- a/enums/change_client_type.pb.go +++ b/enums/change_client_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/change_client_type.proto +// source: google/ads/googleads/v22/enums/change_client_type.proto package enums @@ -126,11 +126,11 @@ func (x ChangeClientTypeEnum_ChangeClientType) String() string { } func (ChangeClientTypeEnum_ChangeClientType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_change_client_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_change_client_type_proto_enumTypes[0].Descriptor() } func (ChangeClientTypeEnum_ChangeClientType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_change_client_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_change_client_type_proto_enumTypes[0] } func (x ChangeClientTypeEnum_ChangeClientType) Number() protoreflect.EnumNumber { @@ -139,7 +139,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_v21_enums_change_client_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_change_client_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_client_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *ChangeClientTypeEnum) String() string { func (*ChangeClientTypeEnum) ProtoMessage() {} func (x *ChangeClientTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_change_client_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_client_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,18 +177,18 @@ func (x *ChangeClientTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeClientTypeEnum.ProtoReflect.Descriptor instead. func (*ChangeClientTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_change_client_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_change_client_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_change_client_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9a, 0x03, 0x0a, 0x14, 0x43, 0x68, + 0x76, 0x32, 0x32, 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, @@ -216,41 +216,41 @@ var file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_client_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_client_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_change_client_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_change_client_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_change_client_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_change_client_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_change_client_type_proto_goTypes = []any{ - (ChangeClientTypeEnum_ChangeClientType)(0), // 0: google.ads.googleads.v21.enums.ChangeClientTypeEnum.ChangeClientType - (*ChangeClientTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ChangeClientTypeEnum +var file_google_ads_googleads_v22_enums_change_client_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_change_client_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_change_client_type_proto_goTypes = []any{ + (ChangeClientTypeEnum_ChangeClientType)(0), // 0: google.ads.googleads.v22.enums.ChangeClientTypeEnum.ChangeClientType + (*ChangeClientTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ChangeClientTypeEnum } -var file_google_ads_googleads_v21_enums_change_client_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -258,27 +258,27 @@ var file_google_ads_googleads_v21_enums_change_client_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_change_client_type_proto_init() } -func file_google_ads_googleads_v21_enums_change_client_type_proto_init() { - if File_google_ads_googleads_v21_enums_change_client_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_change_client_type_proto_init() } +func file_google_ads_googleads_v22_enums_change_client_type_proto_init() { + if File_google_ads_googleads_v22_enums_change_client_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_client_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_client_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_client_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_change_client_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_change_client_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_change_client_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_change_client_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_change_client_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_change_client_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_change_client_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_change_client_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_change_client_type_proto = out.File - file_google_ads_googleads_v21_enums_change_client_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_change_client_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_change_client_type_proto = out.File + file_google_ads_googleads_v22_enums_change_client_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 0949426d..63aa5e51 100644 --- a/enums/change_event_resource_type.pb.go +++ b/enums/change_event_resource_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/change_event_resource_type.proto +// source: google/ads/googleads/v22/enums/change_event_resource_type.proto package enums @@ -145,11 +145,11 @@ func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) String() string { } func (ChangeEventResourceTypeEnum_ChangeEventResourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_change_event_resource_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_change_event_resource_type_proto_enumTypes[0].Descriptor() } func (ChangeEventResourceTypeEnum_ChangeEventResourceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_change_event_resource_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_change_event_resource_type_proto_enumTypes[0] } func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) Number() protoreflect.EnumNumber { @@ -158,7 +158,7 @@ func (x ChangeEventResourceTypeEnum_ChangeEventResourceType) Number() protorefle // Deprecated: Use ChangeEventResourceTypeEnum_ChangeEventResourceType.Descriptor instead. func (ChangeEventResourceTypeEnum_ChangeEventResourceType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_change_event_resource_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_event_resource_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *ChangeEventResourceTypeEnum) String() string { func (*ChangeEventResourceTypeEnum) ProtoMessage() {} func (x *ChangeEventResourceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_change_event_resource_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_event_resource_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,18 +196,18 @@ func (x *ChangeEventResourceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeEventResourceTypeEnum.ProtoReflect.Descriptor instead. func (*ChangeEventResourceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_change_event_resource_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_change_event_resource_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -237,42 +237,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x43, 0x68, 0x61, 0x6e, 0x67, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_goTypes = []any{ - (ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 0: google.ads.googleads.v21.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType - (*ChangeEventResourceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ChangeEventResourceTypeEnum +var file_google_ads_googleads_v22_enums_change_event_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_change_event_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_change_event_resource_type_proto_goTypes = []any{ + (ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 0: google.ads.googleads.v22.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType + (*ChangeEventResourceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ChangeEventResourceTypeEnum } -var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -280,27 +280,27 @@ var file_google_ads_googleads_v21_enums_change_event_resource_type_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_change_event_resource_type_proto_init() } -func file_google_ads_googleads_v21_enums_change_event_resource_type_proto_init() { - if File_google_ads_googleads_v21_enums_change_event_resource_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_change_event_resource_type_proto_init() } +func file_google_ads_googleads_v22_enums_change_event_resource_type_proto_init() { + if File_google_ads_googleads_v22_enums_change_event_resource_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_event_resource_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_event_resource_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_change_event_resource_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_change_event_resource_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_change_event_resource_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_change_event_resource_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_change_event_resource_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_change_event_resource_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_change_event_resource_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_change_event_resource_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_change_event_resource_type_proto = out.File - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_change_event_resource_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_change_event_resource_type_proto = out.File + file_google_ads_googleads_v22_enums_change_event_resource_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 9fbcc7bb..6a39c806 100644 --- a/enums/change_status_operation.pb.go +++ b/enums/change_status_operation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/change_status_operation.proto +// source: google/ads/googleads/v22/enums/change_status_operation.proto package enums @@ -81,11 +81,11 @@ func (x ChangeStatusOperationEnum_ChangeStatusOperation) String() string { } func (ChangeStatusOperationEnum_ChangeStatusOperation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_change_status_operation_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_change_status_operation_proto_enumTypes[0].Descriptor() } func (ChangeStatusOperationEnum_ChangeStatusOperation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_change_status_operation_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_change_status_operation_proto_enumTypes[0] } func (x ChangeStatusOperationEnum_ChangeStatusOperation) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_change_status_operation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_change_status_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_status_operation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ChangeStatusOperationEnum) String() string { func (*ChangeStatusOperationEnum) ProtoMessage() {} func (x *ChangeStatusOperationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_change_status_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_status_operation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ChangeStatusOperationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeStatusOperationEnum.ProtoReflect.Descriptor instead. func (*ChangeStatusOperationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_change_status_operation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_change_status_operation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDescData + return file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDescData } -var file_google_ads_googleads_v21_enums_change_status_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_change_status_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_change_status_operation_proto_goTypes = []any{ - (ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 0: google.ads.googleads.v21.enums.ChangeStatusOperationEnum.ChangeStatusOperation - (*ChangeStatusOperationEnum)(nil), // 1: google.ads.googleads.v21.enums.ChangeStatusOperationEnum +var file_google_ads_googleads_v22_enums_change_status_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_change_status_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_change_status_operation_proto_goTypes = []any{ + (ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 0: google.ads.googleads.v22.enums.ChangeStatusOperationEnum.ChangeStatusOperation + (*ChangeStatusOperationEnum)(nil), // 1: google.ads.googleads.v22.enums.ChangeStatusOperationEnum } -var file_google_ads_googleads_v21_enums_change_status_operation_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_change_status_operation_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_change_status_operation_proto_init() } -func file_google_ads_googleads_v21_enums_change_status_operation_proto_init() { - if File_google_ads_googleads_v21_enums_change_status_operation_proto != nil { +func init() { file_google_ads_googleads_v22_enums_change_status_operation_proto_init() } +func file_google_ads_googleads_v22_enums_change_status_operation_proto_init() { + if File_google_ads_googleads_v22_enums_change_status_operation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_status_operation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_status_operation_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_change_status_operation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_change_status_operation_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_change_status_operation_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_change_status_operation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_change_status_operation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_change_status_operation_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_change_status_operation_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_change_status_operation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_change_status_operation_proto = out.File - file_google_ads_googleads_v21_enums_change_status_operation_proto_goTypes = nil - file_google_ads_googleads_v21_enums_change_status_operation_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_change_status_operation_proto = out.File + file_google_ads_googleads_v22_enums_change_status_operation_proto_goTypes = nil + file_google_ads_googleads_v22_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 20ed514a..315c9863 100644 --- a/enums/change_status_resource_type.pb.go +++ b/enums/change_status_resource_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/change_status_resource_type.proto +// source: google/ads/googleads/v22/enums/change_status_resource_type.proto package enums @@ -153,11 +153,11 @@ func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) String() string { } func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_change_status_resource_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_change_status_resource_type_proto_enumTypes[0].Descriptor() } func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_change_status_resource_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_change_status_resource_type_proto_enumTypes[0] } func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Number() protoreflect.EnumNumber { @@ -166,7 +166,7 @@ func (x ChangeStatusResourceTypeEnum_ChangeStatusResourceType) Number() protoref // Deprecated: Use ChangeStatusResourceTypeEnum_ChangeStatusResourceType.Descriptor instead. func (ChangeStatusResourceTypeEnum_ChangeStatusResourceType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing supported resource types for the ChangeStatus @@ -179,7 +179,7 @@ type ChangeStatusResourceTypeEnum struct { func (x *ChangeStatusResourceTypeEnum) Reset() { *x = ChangeStatusResourceTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_change_status_resource_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_status_resource_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -191,7 +191,7 @@ func (x *ChangeStatusResourceTypeEnum) String() string { func (*ChangeStatusResourceTypeEnum) ProtoMessage() {} func (x *ChangeStatusResourceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_change_status_resource_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_change_status_resource_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -204,18 +204,18 @@ func (x *ChangeStatusResourceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeStatusResourceTypeEnum.ProtoReflect.Descriptor instead. func (*ChangeStatusResourceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_change_status_resource_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_change_status_resource_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe4, 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, 0xc3, 0x03, 0x0a, 0x18, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x53, 0x74, @@ -248,42 +248,42 @@ var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDes 0x16, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x53, 0x45, 0x54, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_goTypes = []any{ - (ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 0: google.ads.googleads.v21.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType - (*ChangeStatusResourceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ChangeStatusResourceTypeEnum +var file_google_ads_googleads_v22_enums_change_status_resource_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_change_status_resource_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_change_status_resource_type_proto_goTypes = []any{ + (ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 0: google.ads.googleads.v22.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType + (*ChangeStatusResourceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ChangeStatusResourceTypeEnum } -var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -291,27 +291,27 @@ var file_google_ads_googleads_v21_enums_change_status_resource_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_change_status_resource_type_proto_init() } -func file_google_ads_googleads_v21_enums_change_status_resource_type_proto_init() { - if File_google_ads_googleads_v21_enums_change_status_resource_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_change_status_resource_type_proto_init() } +func file_google_ads_googleads_v22_enums_change_status_resource_type_proto_init() { + if File_google_ads_googleads_v22_enums_change_status_resource_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_change_status_resource_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_change_status_resource_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_change_status_resource_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_change_status_resource_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_change_status_resource_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_change_status_resource_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_change_status_resource_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_change_status_resource_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_change_status_resource_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_change_status_resource_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_change_status_resource_type_proto = out.File - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_change_status_resource_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_change_status_resource_type_proto = out.File + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_change_status_resource_type_proto_depIdxs = nil } diff --git a/enums/click_type.pb.go b/enums/click_type.pb.go index 4dd39727..533c0c60 100644 --- a/enums/click_type.pb.go +++ b/enums/click_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/click_type.proto +// source: google/ads/googleads/v22/enums/click_type.proto package enums @@ -164,6 +164,13 @@ const ( ClickTypeEnum_VIDEO_CHANNEL_CLICK ClickTypeEnum_ClickType = 62 // Click on a related video that navigates the user to the video watch page. ClickTypeEnum_VIDEO_RELATED_VIDEOS_CLICK ClickTypeEnum_ClickType = 63 + // Click on message button that navigates the user to a third-party + // messaging app. If the app is not installed, the ad will not show on + // Android, and the button will redirect to the app install page on iOS. + ClickTypeEnum_CLICK_TO_MESSAGE_THIRD_PARTY_CLICK ClickTypeEnum_ClickType = 64 + // Click on non-button surface of message ad that navigates the user to the + // Google-hosted landing page. + ClickTypeEnum_CLICK_TO_MESSAGE_LANDING_PAGE_CLICK ClickTypeEnum_ClickType = 65 ) // Enum value maps for ClickTypeEnum_ClickType. @@ -231,6 +238,8 @@ var ( 61: "PRODUCT_ASSETS", 62: "VIDEO_CHANNEL_CLICK", 63: "VIDEO_RELATED_VIDEOS_CLICK", + 64: "CLICK_TO_MESSAGE_THIRD_PARTY_CLICK", + 65: "CLICK_TO_MESSAGE_LANDING_PAGE_CLICK", } ClickTypeEnum_ClickType_value = map[string]int32{ "UNSPECIFIED": 0, @@ -295,6 +304,8 @@ var ( "PRODUCT_ASSETS": 61, "VIDEO_CHANNEL_CLICK": 62, "VIDEO_RELATED_VIDEOS_CLICK": 63, + "CLICK_TO_MESSAGE_THIRD_PARTY_CLICK": 64, + "CLICK_TO_MESSAGE_LANDING_PAGE_CLICK": 65, } ) @@ -309,11 +320,11 @@ func (x ClickTypeEnum_ClickType) String() string { } func (ClickTypeEnum_ClickType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_click_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_click_type_proto_enumTypes[0].Descriptor() } func (ClickTypeEnum_ClickType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_click_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_click_type_proto_enumTypes[0] } func (x ClickTypeEnum_ClickType) Number() protoreflect.EnumNumber { @@ -322,7 +333,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_v21_enums_click_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_click_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enumeration of Google Ads click types. @@ -334,7 +345,7 @@ type ClickTypeEnum struct { func (x *ClickTypeEnum) Reset() { *x = ClickTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_click_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_click_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -346,7 +357,7 @@ func (x *ClickTypeEnum) String() string { func (*ClickTypeEnum) ProtoMessage() {} func (x *ClickTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_click_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_click_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -359,19 +370,19 @@ func (x *ClickTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickTypeEnum.ProtoReflect.Descriptor instead. func (*ClickTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_click_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_click_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_click_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_click_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_click_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_click_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, - 0x73, 0x22, 0xbb, 0x0d, 0x0a, 0x0d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, - 0x6e, 0x75, 0x6d, 0x22, 0xa9, 0x0d, 0x0a, 0x09, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x22, 0x8c, 0x0e, 0x0a, 0x0d, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, + 0x6e, 0x75, 0x6d, 0x22, 0xfa, 0x0d, 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, @@ -477,44 +488,49 @@ var file_google_ads_googleads_v21_enums_click_type_proto_rawDesc = string([]byte 0x53, 0x45, 0x54, 0x53, 0x10, 0x3d, 0x12, 0x17, 0x0a, 0x13, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x3e, 0x12, 0x1e, 0x0a, 0x1a, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x5f, 0x52, 0x45, 0x4c, 0x41, 0x54, 0x45, 0x44, - 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x5f, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x3f, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, - 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, - 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, - 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x5f, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x53, 0x5f, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x3f, 0x12, + 0x26, 0x0a, 0x22, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x5f, 0x54, 0x4f, 0x5f, 0x4d, 0x45, 0x53, 0x53, + 0x41, 0x47, 0x45, 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, + 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x40, 0x12, 0x27, 0x0a, 0x23, 0x43, 0x4c, 0x49, 0x43, 0x4b, + 0x5f, 0x54, 0x4f, 0x5f, 0x4d, 0x45, 0x53, 0x53, 0x41, 0x47, 0x45, 0x5f, 0x4c, 0x41, 0x4e, 0x44, + 0x49, 0x4e, 0x47, 0x5f, 0x50, 0x41, 0x47, 0x45, 0x5f, 0x43, 0x4c, 0x49, 0x43, 0x4b, 0x10, 0x41, + 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, 0x32, + 0x32, 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, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, + 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, + 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, + 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_click_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_click_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_click_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_click_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_click_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_click_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_click_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_click_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_click_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_click_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_click_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_click_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_click_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_click_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_click_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_click_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_click_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_click_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_click_type_proto_goTypes = []any{ - (ClickTypeEnum_ClickType)(0), // 0: google.ads.googleads.v21.enums.ClickTypeEnum.ClickType - (*ClickTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ClickTypeEnum +var file_google_ads_googleads_v22_enums_click_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_click_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_click_type_proto_goTypes = []any{ + (ClickTypeEnum_ClickType)(0), // 0: google.ads.googleads.v22.enums.ClickTypeEnum.ClickType + (*ClickTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ClickTypeEnum } -var file_google_ads_googleads_v21_enums_click_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -522,27 +538,27 @@ var file_google_ads_googleads_v21_enums_click_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_click_type_proto_init() } -func file_google_ads_googleads_v21_enums_click_type_proto_init() { - if File_google_ads_googleads_v21_enums_click_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_click_type_proto_init() } +func file_google_ads_googleads_v22_enums_click_type_proto_init() { + if File_google_ads_googleads_v22_enums_click_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_click_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_click_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_click_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_click_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_click_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_click_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_click_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_click_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_click_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_click_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_click_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_click_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_click_type_proto = out.File - file_google_ads_googleads_v21_enums_click_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_click_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_click_type_proto = out.File + file_google_ads_googleads_v22_enums_click_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_click_type_proto_depIdxs = nil } diff --git a/enums/combined_audience_status.pb.go b/enums/combined_audience_status.pb.go index 85cb3430..1bea29dc 100644 --- a/enums/combined_audience_status.pb.go +++ b/enums/combined_audience_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/combined_audience_status.proto +// source: google/ads/googleads/v22/enums/combined_audience_status.proto package enums @@ -77,11 +77,11 @@ func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) String() string { } func (CombinedAudienceStatusEnum_CombinedAudienceStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_combined_audience_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_combined_audience_status_proto_enumTypes[0].Descriptor() } func (CombinedAudienceStatusEnum_CombinedAudienceStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_combined_audience_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_combined_audience_status_proto_enumTypes[0] } func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x CombinedAudienceStatusEnum_CombinedAudienceStatus) Number() protoreflect // Deprecated: Use CombinedAudienceStatusEnum_CombinedAudienceStatus.Descriptor instead. func (CombinedAudienceStatusEnum_CombinedAudienceStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_combined_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_combined_audience_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *CombinedAudienceStatusEnum) String() string { func (*CombinedAudienceStatusEnum) ProtoMessage() {} func (x *CombinedAudienceStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_combined_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_combined_audience_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *CombinedAudienceStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CombinedAudienceStatusEnum.ProtoReflect.Descriptor instead. func (*CombinedAudienceStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_combined_audience_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_combined_audience_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_combined_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_combined_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_combined_audience_status_proto_goTypes = []any{ - (CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 0: google.ads.googleads.v21.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus - (*CombinedAudienceStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CombinedAudienceStatusEnum +var file_google_ads_googleads_v22_enums_combined_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_combined_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_combined_audience_status_proto_goTypes = []any{ + (CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 0: google.ads.googleads.v22.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus + (*CombinedAudienceStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CombinedAudienceStatusEnum } -var file_google_ads_googleads_v21_enums_combined_audience_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_combined_audience_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_combined_audience_status_proto_init() } -func file_google_ads_googleads_v21_enums_combined_audience_status_proto_init() { - if File_google_ads_googleads_v21_enums_combined_audience_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_combined_audience_status_proto_init() } +func file_google_ads_googleads_v22_enums_combined_audience_status_proto_init() { + if File_google_ads_googleads_v22_enums_combined_audience_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_combined_audience_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_combined_audience_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_combined_audience_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_combined_audience_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_combined_audience_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_combined_audience_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_combined_audience_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_combined_audience_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_combined_audience_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_combined_audience_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_combined_audience_status_proto = out.File - file_google_ads_googleads_v21_enums_combined_audience_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_combined_audience_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_combined_audience_status_proto = out.File + file_google_ads_googleads_v22_enums_combined_audience_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_combined_audience_status_proto_depIdxs = nil } diff --git a/enums/consent_status.pb.go b/enums/consent_status.pb.go index f5968f17..6c60b722 100644 --- a/enums/consent_status.pb.go +++ b/enums/consent_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/consent_status.proto +// source: google/ads/googleads/v22/enums/consent_status.proto package enums @@ -76,11 +76,11 @@ func (x ConsentStatusEnum_ConsentStatus) String() string { } func (ConsentStatusEnum_ConsentStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_consent_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_consent_status_proto_enumTypes[0].Descriptor() } func (ConsentStatusEnum_ConsentStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_consent_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_consent_status_proto_enumTypes[0] } func (x ConsentStatusEnum_ConsentStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_consent_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_consent_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_consent_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ConsentStatusEnum) String() string { func (*ConsentStatusEnum) ProtoMessage() {} func (x *ConsentStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_consent_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_consent_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *ConsentStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConsentStatusEnum.ProtoReflect.Descriptor instead. func (*ConsentStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_consent_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_consent_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_consent_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_consent_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_consent_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x43, 0x6f, 0x6e, 0x73, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_consent_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_consent_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_consent_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_consent_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_consent_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_consent_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_consent_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_consent_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_consent_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_consent_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_consent_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_consent_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_consent_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_consent_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_consent_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_consent_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_consent_status_proto_goTypes = []any{ - (ConsentStatusEnum_ConsentStatus)(0), // 0: google.ads.googleads.v21.enums.ConsentStatusEnum.ConsentStatus - (*ConsentStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConsentStatusEnum +var file_google_ads_googleads_v22_enums_consent_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_consent_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_consent_status_proto_goTypes = []any{ + (ConsentStatusEnum_ConsentStatus)(0), // 0: google.ads.googleads.v22.enums.ConsentStatusEnum.ConsentStatus + (*ConsentStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConsentStatusEnum } -var file_google_ads_googleads_v21_enums_consent_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_consent_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_consent_status_proto_init() } -func file_google_ads_googleads_v21_enums_consent_status_proto_init() { - if File_google_ads_googleads_v21_enums_consent_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_consent_status_proto_init() } +func file_google_ads_googleads_v22_enums_consent_status_proto_init() { + if File_google_ads_googleads_v22_enums_consent_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_consent_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_consent_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_consent_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_consent_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_consent_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_consent_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_consent_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_consent_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_consent_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_consent_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_consent_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_consent_status_proto = out.File - file_google_ads_googleads_v21_enums_consent_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_consent_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_consent_status_proto = out.File + file_google_ads_googleads_v22_enums_consent_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_consent_status_proto_depIdxs = nil } diff --git a/enums/content_label_type.pb.go b/enums/content_label_type.pb.go index fe9da2ba..1c045e8f 100644 --- a/enums/content_label_type.pb.go +++ b/enums/content_label_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/content_label_type.proto +// source: google/ads/googleads/v22/enums/content_label_type.proto package enums @@ -183,11 +183,11 @@ func (x ContentLabelTypeEnum_ContentLabelType) String() string { } func (ContentLabelTypeEnum_ContentLabelType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_content_label_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_content_label_type_proto_enumTypes[0].Descriptor() } func (ContentLabelTypeEnum_ContentLabelType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_content_label_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_content_label_type_proto_enumTypes[0] } func (x ContentLabelTypeEnum_ContentLabelType) Number() protoreflect.EnumNumber { @@ -196,7 +196,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_v21_enums_content_label_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing content label types in ContentLabel. @@ -208,7 +208,7 @@ type ContentLabelTypeEnum struct { func (x *ContentLabelTypeEnum) Reset() { *x = ContentLabelTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_content_label_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_content_label_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -220,7 +220,7 @@ func (x *ContentLabelTypeEnum) String() string { func (*ContentLabelTypeEnum) ProtoMessage() {} func (x *ContentLabelTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_content_label_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_content_label_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -233,18 +233,18 @@ func (x *ContentLabelTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentLabelTypeEnum.ProtoReflect.Descriptor instead. func (*ContentLabelTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_content_label_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_content_label_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_content_label_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xff, 0x05, 0x0a, 0x14, 0x43, 0x6f, + 0x76, 0x32, 0x32, 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, 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, @@ -294,42 +294,42 @@ var file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_content_label_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_content_label_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_content_label_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_content_label_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_content_label_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_content_label_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_content_label_type_proto_goTypes = []any{ - (ContentLabelTypeEnum_ContentLabelType)(0), // 0: google.ads.googleads.v21.enums.ContentLabelTypeEnum.ContentLabelType - (*ContentLabelTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ContentLabelTypeEnum +var file_google_ads_googleads_v22_enums_content_label_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_content_label_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_content_label_type_proto_goTypes = []any{ + (ContentLabelTypeEnum_ContentLabelType)(0), // 0: google.ads.googleads.v22.enums.ContentLabelTypeEnum.ContentLabelType + (*ContentLabelTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ContentLabelTypeEnum } -var file_google_ads_googleads_v21_enums_content_label_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -337,27 +337,27 @@ var file_google_ads_googleads_v21_enums_content_label_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_content_label_type_proto_init() } -func file_google_ads_googleads_v21_enums_content_label_type_proto_init() { - if File_google_ads_googleads_v21_enums_content_label_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_content_label_type_proto_init() } +func file_google_ads_googleads_v22_enums_content_label_type_proto_init() { + if File_google_ads_googleads_v22_enums_content_label_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_content_label_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_content_label_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_content_label_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_content_label_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_content_label_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_content_label_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_content_label_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_content_label_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_content_label_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_content_label_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_content_label_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_content_label_type_proto = out.File - file_google_ads_googleads_v21_enums_content_label_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_content_label_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_content_label_type_proto = out.File + file_google_ads_googleads_v22_enums_content_label_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_content_label_type_proto_depIdxs = nil } diff --git a/enums/conversion_action_category.pb.go b/enums/conversion_action_category.pb.go index 3c695295..a6297c5f 100644 --- a/enums/conversion_action_category.pb.go +++ b/enums/conversion_action_category.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_action_category.proto +// source: google/ads/googleads/v22/enums/conversion_action_category.proto package enums @@ -162,11 +162,11 @@ func (x ConversionActionCategoryEnum_ConversionActionCategory) String() string { } func (ConversionActionCategoryEnum_ConversionActionCategory) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_action_category_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_action_category_proto_enumTypes[0].Descriptor() } func (ConversionActionCategoryEnum_ConversionActionCategory) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_action_category_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_action_category_proto_enumTypes[0] } func (x ConversionActionCategoryEnum_ConversionActionCategory) Number() protoreflect.EnumNumber { @@ -175,7 +175,7 @@ func (x ConversionActionCategoryEnum_ConversionActionCategory) Number() protoref // Deprecated: Use ConversionActionCategoryEnum_ConversionActionCategory.Descriptor instead. func (ConversionActionCategoryEnum_ConversionActionCategory) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_action_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_category_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -200,7 +200,7 @@ func (x *ConversionActionCategoryEnum) String() string { func (*ConversionActionCategoryEnum) ProtoMessage() {} func (x *ConversionActionCategoryEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_action_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_category_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -213,18 +213,18 @@ func (x *ConversionActionCategoryEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionCategoryEnum.ProtoReflect.Descriptor instead. func (*ConversionActionCategoryEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_action_category_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_action_category_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -255,43 +255,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_action_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_category_proto_goTypes = []any{ - (ConversionActionCategoryEnum_ConversionActionCategory)(0), // 0: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - (*ConversionActionCategoryEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionActionCategoryEnum +var file_google_ads_googleads_v22_enums_conversion_action_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_category_proto_goTypes = []any{ + (ConversionActionCategoryEnum_ConversionActionCategory)(0), // 0: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + (*ConversionActionCategoryEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionActionCategoryEnum } -var file_google_ads_googleads_v21_enums_conversion_action_category_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -299,27 +299,27 @@ var file_google_ads_googleads_v21_enums_conversion_action_category_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_action_category_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_action_category_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_action_category_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_action_category_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_action_category_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_action_category_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_category_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_category_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_action_category_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_action_category_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_action_category_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_action_category_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_action_category_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_action_category_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_action_category_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_action_category_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_action_category_proto = out.File - file_google_ads_googleads_v21_enums_conversion_action_category_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_action_category_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_action_category_proto = out.File + file_google_ads_googleads_v22_enums_conversion_action_category_proto_goTypes = nil + file_google_ads_googleads_v22_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 374c48a8..7bd34cc4 100644 --- a/enums/conversion_action_counting_type.pb.go +++ b/enums/conversion_action_counting_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_action_counting_type.proto +// source: google/ads/googleads/v22/enums/conversion_action_counting_type.proto package enums @@ -77,11 +77,11 @@ func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) String() } func (ConversionActionCountingTypeEnum_ConversionActionCountingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_enumTypes[0].Descriptor() } func (ConversionActionCountingTypeEnum_ConversionActionCountingType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_enumTypes[0] } func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x ConversionActionCountingTypeEnum_ConversionActionCountingType) Number() // Deprecated: Use ConversionActionCountingTypeEnum_ConversionActionCountingType.Descriptor instead. func (ConversionActionCountingTypeEnum_ConversionActionCountingType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *ConversionActionCountingTypeEnum) String() string { func (*ConversionActionCountingTypeEnum) ProtoMessage() {} func (x *ConversionActionCountingTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *ConversionActionCountingTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionCountingTypeEnum.ProtoReflect.Descriptor instead. func (*ConversionActionCountingTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_action_counting_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_action_counting_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_goTypes = []any{ - (ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 0: google.ads.googleads.v21.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType - (*ConversionActionCountingTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionActionCountingTypeEnum +var file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_goTypes = []any{ + (ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 0: google.ads.googleads.v22.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType + (*ConversionActionCountingTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionActionCountingTypeEnum } -var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_action_counting_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_action_counting_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_action_counting_type_proto = out.File - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_action_counting_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_action_counting_type_proto = out.File + file_google_ads_googleads_v22_enums_conversion_action_counting_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 7b153110..91d36903 100644 --- a/enums/conversion_action_status.pb.go +++ b/enums/conversion_action_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_action_status.proto +// source: google/ads/googleads/v22/enums/conversion_action_status.proto package enums @@ -81,11 +81,11 @@ func (x ConversionActionStatusEnum_ConversionActionStatus) String() string { } func (ConversionActionStatusEnum_ConversionActionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_action_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_action_status_proto_enumTypes[0].Descriptor() } func (ConversionActionStatusEnum_ConversionActionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_action_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_action_status_proto_enumTypes[0] } func (x ConversionActionStatusEnum_ConversionActionStatus) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ConversionActionStatusEnum_ConversionActionStatus) Number() protoreflect // Deprecated: Use ConversionActionStatusEnum_ConversionActionStatus.Descriptor instead. func (ConversionActionStatusEnum_ConversionActionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_action_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ConversionActionStatusEnum) String() string { func (*ConversionActionStatusEnum) ProtoMessage() {} func (x *ConversionActionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_action_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ConversionActionStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionStatusEnum.ProtoReflect.Descriptor instead. func (*ConversionActionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_action_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_action_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_status_proto_goTypes = []any{ - (ConversionActionStatusEnum_ConversionActionStatus)(0), // 0: google.ads.googleads.v21.enums.ConversionActionStatusEnum.ConversionActionStatus - (*ConversionActionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionActionStatusEnum +var file_google_ads_googleads_v22_enums_conversion_action_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_status_proto_goTypes = []any{ + (ConversionActionStatusEnum_ConversionActionStatus)(0), // 0: google.ads.googleads.v22.enums.ConversionActionStatusEnum.ConversionActionStatus + (*ConversionActionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionActionStatusEnum } -var file_google_ads_googleads_v21_enums_conversion_action_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_conversion_action_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_action_status_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_action_status_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_action_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_action_status_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_action_status_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_action_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_action_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_action_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_action_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_action_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_action_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_action_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_action_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_action_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_action_status_proto = out.File - file_google_ads_googleads_v21_enums_conversion_action_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_action_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_action_status_proto = out.File + file_google_ads_googleads_v22_enums_conversion_action_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_action_status_proto_depIdxs = nil } diff --git a/enums/conversion_action_type.pb.go b/enums/conversion_action_type.pb.go index fc8a9e56..9baf9b18 100644 --- a/enums/conversion_action_type.pb.go +++ b/enums/conversion_action_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_action_type.proto +// source: google/ads/googleads/v22/enums/conversion_action_type.proto package enums @@ -124,7 +124,7 @@ const ( // replaced with an improved way to import your conversions from Salesforce. // - see https://support.google.com/google-ads/answer/14728349 // - // Deprecated: Marked as deprecated in google/ads/googleads/v21/enums/conversion_action_type.proto. + // Deprecated: Marked as deprecated in google/ads/googleads/v22/enums/conversion_action_type.proto. ConversionActionTypeEnum_SALESFORCE ConversionActionTypeEnum_ConversionActionType = 30 // Conversions imported from Search Ads 360 Floodlight data. Read only. ConversionActionTypeEnum_SEARCH_ADS_360 ConversionActionTypeEnum_ConversionActionType = 31 @@ -261,11 +261,11 @@ func (x ConversionActionTypeEnum_ConversionActionType) String() string { } func (ConversionActionTypeEnum_ConversionActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_action_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_action_type_proto_enumTypes[0].Descriptor() } func (ConversionActionTypeEnum_ConversionActionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_action_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_action_type_proto_enumTypes[0] } func (x ConversionActionTypeEnum_ConversionActionType) Number() protoreflect.EnumNumber { @@ -274,7 +274,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_v21_enums_conversion_action_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible types of a conversion action. @@ -286,7 +286,7 @@ type ConversionActionTypeEnum struct { func (x *ConversionActionTypeEnum) Reset() { *x = ConversionActionTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_conversion_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -298,7 +298,7 @@ func (x *ConversionActionTypeEnum) String() string { func (*ConversionActionTypeEnum) ProtoMessage() {} func (x *ConversionActionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_action_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -311,18 +311,18 @@ func (x *ConversionActionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionTypeEnum.ProtoReflect.Descriptor instead. func (*ConversionActionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_action_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_action_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x86, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x86, 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, 0xe9, 0x09, 0x0a, 0x14, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, @@ -405,42 +405,42 @@ var file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc = s 0x41, 0x4e, 0x41, 0x4c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_action_type_proto_goTypes = []any{ - (ConversionActionTypeEnum_ConversionActionType)(0), // 0: google.ads.googleads.v21.enums.ConversionActionTypeEnum.ConversionActionType - (*ConversionActionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionActionTypeEnum +var file_google_ads_googleads_v22_enums_conversion_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_action_type_proto_goTypes = []any{ + (ConversionActionTypeEnum_ConversionActionType)(0), // 0: google.ads.googleads.v22.enums.ConversionActionTypeEnum.ConversionActionType + (*ConversionActionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionActionTypeEnum } -var file_google_ads_googleads_v21_enums_conversion_action_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -448,27 +448,27 @@ var file_google_ads_googleads_v21_enums_conversion_action_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_action_type_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_action_type_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_action_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_action_type_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_action_type_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_action_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_action_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_action_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_action_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_action_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_action_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_action_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_action_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_action_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_action_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_action_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_action_type_proto = out.File - file_google_ads_googleads_v21_enums_conversion_action_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_action_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_action_type_proto = out.File + file_google_ads_googleads_v22_enums_conversion_action_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_action_type_proto_depIdxs = nil } diff --git a/enums/conversion_adjustment_type.pb.go b/enums/conversion_adjustment_type.pb.go index 3753bf42..f4fd60fc 100644 --- a/enums/conversion_adjustment_type.pb.go +++ b/enums/conversion_adjustment_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_adjustment_type.proto +// source: google/ads/googleads/v22/enums/conversion_adjustment_type.proto package enums @@ -83,11 +83,11 @@ func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) String() string { } func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_enumTypes[0].Descriptor() } func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_enumTypes[0] } func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Number() protoreflect.EnumNumber { @@ -96,7 +96,7 @@ func (x ConversionAdjustmentTypeEnum_ConversionAdjustmentType) Number() protoref // Deprecated: Use ConversionAdjustmentTypeEnum_ConversionAdjustmentType.Descriptor instead. func (ConversionAdjustmentTypeEnum_ConversionAdjustmentType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *ConversionAdjustmentTypeEnum) String() string { func (*ConversionAdjustmentTypeEnum) ProtoMessage() {} func (x *ConversionAdjustmentTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,18 +133,18 @@ func (x *ConversionAdjustmentTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAdjustmentTypeEnum.ProtoReflect.Descriptor instead. func (*ConversionAdjustmentTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_adjustment_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_adjustment_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_goTypes = []any{ - (ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 0: google.ads.googleads.v21.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - (*ConversionAdjustmentTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionAdjustmentTypeEnum +var file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_goTypes = []any{ + (ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 0: google.ads.googleads.v22.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + (*ConversionAdjustmentTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionAdjustmentTypeEnum } -var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_adjustment_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_adjustment_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_adjustment_type_proto = out.File - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_adjustment_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_adjustment_type_proto = out.File + file_google_ads_googleads_v22_enums_conversion_adjustment_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 790c6a89..2665b0d6 100644 --- a/enums/conversion_attribution_event_type.pb.go +++ b/enums/conversion_attribution_event_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_attribution_event_type.proto +// source: google/ads/googleads/v22/enums/conversion_attribution_event_type.proto package enums @@ -80,11 +80,11 @@ func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Strin } func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_enumTypes[0].Descriptor() } func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_enumTypes[0] } func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ConversionAttributionEventTypeEnum_ConversionAttributionEventType) Numbe // Deprecated: Use ConversionAttributionEventTypeEnum_ConversionAttributionEventType.Descriptor instead. func (ConversionAttributionEventTypeEnum_ConversionAttributionEventType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum indicating the event type the conversion is attributed to. @@ -105,7 +105,7 @@ type ConversionAttributionEventTypeEnum struct { func (x *ConversionAttributionEventTypeEnum) Reset() { *x = ConversionAttributionEventTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ConversionAttributionEventTypeEnum) String() string { func (*ConversionAttributionEventTypeEnum) ProtoMessage() {} func (x *ConversionAttributionEventTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,19 +130,19 @@ func (x *ConversionAttributionEventTypeEnum) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionAttributionEventTypeEnum.ProtoReflect.Descriptor instead. func (*ConversionAttributionEventTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 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, 0x71, 0x0a, 0x1e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, @@ -154,42 +154,42 @@ var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_ 0x12, 0x10, 0x0a, 0x0c, 0x45, 0x4e, 0x47, 0x41, 0x47, 0x45, 0x44, 0x5f, 0x56, 0x49, 0x45, 0x57, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_goTypes = []any{ - (ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 0: google.ads.googleads.v21.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType - (*ConversionAttributionEventTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionAttributionEventTypeEnum +var file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_goTypes = []any{ + (ConversionAttributionEventTypeEnum_ConversionAttributionEventType)(0), // 0: google.ads.googleads.v22.enums.ConversionAttributionEventTypeEnum.ConversionAttributionEventType + (*ConversionAttributionEventTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionAttributionEventTypeEnum } -var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -197,27 +197,27 @@ var file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto = out.File - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_attribution_event_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto = out.File + file_google_ads_googleads_v22_enums_conversion_attribution_event_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 f5dfa8d5..d415ce9d 100644 --- a/enums/conversion_custom_variable_status.pb.go +++ b/enums/conversion_custom_variable_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_custom_variable_status.proto +// source: google/ads/googleads/v22/enums/conversion_custom_variable_status.proto package enums @@ -84,11 +84,11 @@ func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Strin } func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_enumTypes[0].Descriptor() } func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_enumTypes[0] } func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) Numbe // Deprecated: Use ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus.Descriptor instead. func (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *ConversionCustomVariableStatusEnum) String() string { func (*ConversionCustomVariableStatusEnum) ProtoMessage() {} func (x *ConversionCustomVariableStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *ConversionCustomVariableStatusEnum) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionCustomVariableStatusEnum.ProtoReflect.Descriptor instead. func (*ConversionCustomVariableStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x22, 0x43, 0x6f, 0x6e, + 0x32, 0x32, 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, @@ -158,43 +158,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_goTypes = []any{ - (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 0: google.ads.googleads.v21.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus - (*ConversionCustomVariableStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionCustomVariableStatusEnum +var file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_goTypes = []any{ + (ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 0: google.ads.googleads.v22.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus + (*ConversionCustomVariableStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionCustomVariableStatusEnum } -var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto = out.File - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_custom_variable_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto = out.File + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_custom_variable_status_proto_depIdxs = nil } diff --git a/enums/conversion_customer_type.pb.go b/enums/conversion_customer_type.pb.go index 554e2db1..e173f99a 100644 --- a/enums/conversion_customer_type.pb.go +++ b/enums/conversion_customer_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_customer_type.proto +// source: google/ads/googleads/v22/enums/conversion_customer_type.proto package enums @@ -78,11 +78,11 @@ func (x ConversionCustomerTypeEnum_ConversionCustomerType) String() string { } func (ConversionCustomerTypeEnum_ConversionCustomerType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_customer_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_customer_type_proto_enumTypes[0].Descriptor() } func (ConversionCustomerTypeEnum_ConversionCustomerType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_customer_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_customer_type_proto_enumTypes[0] } func (x ConversionCustomerTypeEnum_ConversionCustomerType) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x ConversionCustomerTypeEnum_ConversionCustomerType) Number() protoreflect // Deprecated: Use ConversionCustomerTypeEnum_ConversionCustomerType.Descriptor instead. func (ConversionCustomerTypeEnum_ConversionCustomerType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enumeration of conversion customer types. @@ -103,7 +103,7 @@ type ConversionCustomerTypeEnum struct { func (x *ConversionCustomerTypeEnum) Reset() { *x = ConversionCustomerTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_conversion_customer_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_customer_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *ConversionCustomerTypeEnum) String() string { func (*ConversionCustomerTypeEnum) ProtoMessage() {} func (x *ConversionCustomerTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_customer_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_customer_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *ConversionCustomerTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionCustomerTypeEnum.ProtoReflect.Descriptor instead. func (*ConversionCustomerTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_customer_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_customer_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x1a, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4e, 0x0a, 0x16, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc = 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x07, 0x0a, 0x03, 0x4e, 0x45, 0x57, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x52, 0x45, 0x54, 0x55, 0x52, 0x4e, 0x49, 0x4e, 0x47, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_goTypes = []any{ - (ConversionCustomerTypeEnum_ConversionCustomerType)(0), // 0: google.ads.googleads.v21.enums.ConversionCustomerTypeEnum.ConversionCustomerType - (*ConversionCustomerTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionCustomerTypeEnum +var file_google_ads_googleads_v22_enums_conversion_customer_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_customer_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_customer_type_proto_goTypes = []any{ + (ConversionCustomerTypeEnum_ConversionCustomerType)(0), // 0: google.ads.googleads.v22.enums.ConversionCustomerTypeEnum.ConversionCustomerType + (*ConversionCustomerTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionCustomerTypeEnum } -var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_conversion_customer_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,27 +191,27 @@ var file_google_ads_googleads_v21_enums_conversion_customer_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_customer_type_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_customer_type_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_customer_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_customer_type_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_customer_type_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_customer_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_customer_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_customer_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_customer_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_customer_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_customer_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_customer_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_customer_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_customer_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_customer_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_customer_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_customer_type_proto = out.File - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_customer_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_customer_type_proto = out.File + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_customer_type_proto_depIdxs = nil } diff --git a/enums/conversion_environment_enum.pb.go b/enums/conversion_environment_enum.pb.go index 15c90a0e..642f81ce 100644 --- a/enums/conversion_environment_enum.pb.go +++ b/enums/conversion_environment_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_environment_enum.proto +// source: google/ads/googleads/v22/enums/conversion_environment_enum.proto package enums @@ -76,11 +76,11 @@ func (x ConversionEnvironmentEnum_ConversionEnvironment) String() string { } func (ConversionEnvironmentEnum_ConversionEnvironment) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_enumTypes[0].Descriptor() } func (ConversionEnvironmentEnum_ConversionEnvironment) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_enumTypes[0] } func (x ConversionEnvironmentEnum_ConversionEnvironment) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *ConversionEnvironmentEnum) String() string { func (*ConversionEnvironmentEnum) ProtoMessage() {} func (x *ConversionEnvironmentEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *ConversionEnvironmentEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionEnvironmentEnum.ProtoReflect.Descriptor instead. func (*ConversionEnvironmentEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_environment_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_environment_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_goTypes = []any{ - (ConversionEnvironmentEnum_ConversionEnvironment)(0), // 0: google.ads.googleads.v21.enums.ConversionEnvironmentEnum.ConversionEnvironment - (*ConversionEnvironmentEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionEnvironmentEnum +var file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_goTypes = []any{ + (ConversionEnvironmentEnum_ConversionEnvironment)(0), // 0: google.ads.googleads.v22.enums.ConversionEnvironmentEnum.ConversionEnvironment + (*ConversionEnvironmentEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionEnvironmentEnum } -var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_environment_enum_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_environment_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_environment_enum_proto = out.File - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_environment_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_environment_enum_proto = out.File + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_environment_enum_proto_depIdxs = nil } diff --git a/enums/conversion_lag_bucket.pb.go b/enums/conversion_lag_bucket.pb.go index 17b73242..ec87afcd 100644 --- a/enums/conversion_lag_bucket.pb.go +++ b/enums/conversion_lag_bucket.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_lag_bucket.proto +// source: google/ads/googleads/v22/enums/conversion_lag_bucket.proto package enums @@ -161,11 +161,11 @@ func (x ConversionLagBucketEnum_ConversionLagBucket) String() string { } func (ConversionLagBucketEnum_ConversionLagBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_enumTypes[0].Descriptor() } func (ConversionLagBucketEnum_ConversionLagBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_enumTypes[0] } func (x ConversionLagBucketEnum_ConversionLagBucket) Number() protoreflect.EnumNumber { @@ -174,7 +174,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_v21_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -199,7 +199,7 @@ func (x *ConversionLagBucketEnum) String() string { func (*ConversionLagBucketEnum) ProtoMessage() {} func (x *ConversionLagBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -212,18 +212,18 @@ func (x *ConversionLagBucketEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionLagBucketEnum.ProtoReflect.Descriptor instead. func (*ConversionLagBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_lag_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_lag_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbb, 0x04, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -261,42 +261,42 @@ var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_goTypes = []any{ - (ConversionLagBucketEnum_ConversionLagBucket)(0), // 0: google.ads.googleads.v21.enums.ConversionLagBucketEnum.ConversionLagBucket - (*ConversionLagBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionLagBucketEnum +var file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_goTypes = []any{ + (ConversionLagBucketEnum_ConversionLagBucket)(0), // 0: google.ads.googleads.v22.enums.ConversionLagBucketEnum.ConversionLagBucket + (*ConversionLagBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionLagBucketEnum } -var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -304,27 +304,27 @@ var file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_lag_bucket_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_lag_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_lag_bucket_proto = out.File - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_lag_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_lag_bucket_proto = out.File + file_google_ads_googleads_v22_enums_conversion_lag_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_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 25850573..897e105e 100644 --- a/enums/conversion_or_adjustment_lag_bucket.pb.go +++ b/enums/conversion_or_adjustment_lag_bucket.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_or_adjustment_lag_bucket.proto +// source: google/ads/googleads/v22/enums/conversion_or_adjustment_lag_bucket.proto package enums @@ -272,11 +272,11 @@ func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Str } func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0].Descriptor() } func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes[0] } func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Number() protoreflect.EnumNumber { @@ -285,7 +285,7 @@ func (x ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) Num // Deprecated: Use ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket.Descriptor instead. func (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -310,7 +310,7 @@ func (x *ConversionOrAdjustmentLagBucketEnum) String() string { func (*ConversionOrAdjustmentLagBucketEnum) ProtoMessage() {} func (x *ConversionOrAdjustmentLagBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -323,19 +323,19 @@ func (x *ConversionOrAdjustmentLagBucketEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use ConversionOrAdjustmentLagBucketEnum.ProtoReflect.Descriptor instead. func (*ConversionOrAdjustmentLagBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x0c, 0x0a, 0x23, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -438,43 +438,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = []any{ - (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 0: google.ads.googleads.v21.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket - (*ConversionOrAdjustmentLagBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionOrAdjustmentLagBucketEnum +var file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = []any{ + (ConversionOrAdjustmentLagBucketEnum_ConversionOrAdjustmentLagBucket)(0), // 0: google.ads.googleads.v22.enums.ConversionOrAdjustmentLagBucketEnum.ConversionOrAdjustmentLagBucket + (*ConversionOrAdjustmentLagBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionOrAdjustmentLagBucketEnum } -var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -482,27 +482,27 @@ var file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_prot 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto = out.File - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto = out.File + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_enums_conversion_or_adjustment_lag_bucket_proto_depIdxs = nil } diff --git a/enums/conversion_origin.pb.go b/enums/conversion_origin.pb.go index 9700e16d..3e5f3211 100644 --- a/enums/conversion_origin.pb.go +++ b/enums/conversion_origin.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_origin.proto +// source: google/ads/googleads/v22/enums/conversion_origin.proto package enums @@ -97,11 +97,11 @@ func (x ConversionOriginEnum_ConversionOrigin) String() string { } func (ConversionOriginEnum_ConversionOrigin) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_origin_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_origin_proto_enumTypes[0].Descriptor() } func (ConversionOriginEnum_ConversionOrigin) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_origin_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_origin_proto_enumTypes[0] } func (x ConversionOriginEnum_ConversionOrigin) Number() protoreflect.EnumNumber { @@ -110,7 +110,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_v21_enums_conversion_origin_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_origin_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_origin_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *ConversionOriginEnum) String() string { func (*ConversionOriginEnum) ProtoMessage() {} func (x *ConversionOriginEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_origin_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_origin_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,18 +147,18 @@ func (x *ConversionOriginEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionOriginEnum.ProtoReflect.Descriptor instead. func (*ConversionOriginEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_origin_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_origin_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14, 0x43, 0x6f, 0x6e, + 0x32, 0x32, 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, @@ -170,42 +170,42 @@ var file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc = string 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_origin_proto_goTypes = []any{ - (ConversionOriginEnum_ConversionOrigin)(0), // 0: google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin - (*ConversionOriginEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionOriginEnum +var file_google_ads_googleads_v22_enums_conversion_origin_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_origin_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_origin_proto_goTypes = []any{ + (ConversionOriginEnum_ConversionOrigin)(0), // 0: google.ads.googleads.v22.enums.ConversionOriginEnum.ConversionOrigin + (*ConversionOriginEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionOriginEnum } -var file_google_ads_googleads_v21_enums_conversion_origin_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -213,27 +213,27 @@ var file_google_ads_googleads_v21_enums_conversion_origin_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_origin_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_origin_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_origin_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_origin_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_origin_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_origin_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_origin_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_origin_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_origin_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_origin_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_origin_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_origin_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_origin_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_origin_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_origin_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_origin_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_origin_proto = out.File - file_google_ads_googleads_v21_enums_conversion_origin_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_origin_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_origin_proto = out.File + file_google_ads_googleads_v22_enums_conversion_origin_proto_goTypes = nil + file_google_ads_googleads_v22_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 2a5a9a2b..b128b660 100644 --- a/enums/conversion_tracking_status_enum.pb.go +++ b/enums/conversion_tracking_status_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_tracking_status_enum.proto +// source: google/ads/googleads/v22/enums/conversion_tracking_status_enum.proto package enums @@ -87,11 +87,11 @@ func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) String() string { } func (ConversionTrackingStatusEnum_ConversionTrackingStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_enumTypes[0].Descriptor() } func (ConversionTrackingStatusEnum_ConversionTrackingStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_enumTypes[0] } func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) Number() protoreflect.EnumNumber { @@ -100,7 +100,7 @@ func (x ConversionTrackingStatusEnum_ConversionTrackingStatus) Number() protoref // Deprecated: Use ConversionTrackingStatusEnum_ConversionTrackingStatus.Descriptor instead. func (ConversionTrackingStatusEnum_ConversionTrackingStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ConversionTrackingStatusEnum) String() string { func (*ConversionTrackingStatusEnum) ProtoMessage() {} func (x *ConversionTrackingStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *ConversionTrackingStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionTrackingStatusEnum.ProtoReflect.Descriptor instead. func (*ConversionTrackingStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -168,43 +168,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_goTypes = []any{ - (ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 0: google.ads.googleads.v21.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - (*ConversionTrackingStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionTrackingStatusEnum +var file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_goTypes = []any{ + (ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 0: google.ads.googleads.v22.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + (*ConversionTrackingStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionTrackingStatusEnum } -var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -212,27 +212,27 @@ var file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto = out.File - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_tracking_status_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto = out.File + file_google_ads_googleads_v22_enums_conversion_tracking_status_enum_proto_goTypes = nil + file_google_ads_googleads_v22_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 d4b23525..bc7ef20f 100644 --- a/enums/conversion_value_rule_primary_dimension.pb.go +++ b/enums/conversion_value_rule_primary_dimension.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_value_rule_primary_dimension.proto +// source: google/ads/googleads/v22/enums/conversion_value_rule_primary_dimension.proto package enums @@ -101,11 +101,11 @@ func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimens } func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0].Descriptor() } func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_enumTypes[0] } func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) Number() protoreflect.EnumNumber { @@ -114,7 +114,7 @@ func (x ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimens // Deprecated: Use ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension.Descriptor instead. func (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing value rule primary dimension for stats. @@ -126,7 +126,7 @@ type ConversionValueRulePrimaryDimensionEnum struct { func (x *ConversionValueRulePrimaryDimensionEnum) Reset() { *x = ConversionValueRulePrimaryDimensionEnum{} - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +138,7 @@ func (x *ConversionValueRulePrimaryDimensionEnum) String() string { func (*ConversionValueRulePrimaryDimensionEnum) ProtoMessage() {} func (x *ConversionValueRulePrimaryDimensionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,19 +151,19 @@ func (x *ConversionValueRulePrimaryDimensionEnum) ProtoReflect() protoreflect.Me // Deprecated: Use ConversionValueRulePrimaryDimensionEnum.ProtoReflect.Descriptor instead. func (*ConversionValueRulePrimaryDimensionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf6, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf6, 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, 0xca, 0x01, 0x0a, 0x23, 0x43, @@ -181,43 +181,43 @@ var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_ 0x4c, 0x54, 0x49, 0x50, 0x4c, 0x45, 0x10, 0x08, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x49, 0x4e, 0x45, 0x52, 0x41, 0x52, 0x59, 0x10, 0x09, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_goTypes = []any{ - (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 0: google.ads.googleads.v21.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension - (*ConversionValueRulePrimaryDimensionEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionValueRulePrimaryDimensionEnum +var file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_goTypes = []any{ + (ConversionValueRulePrimaryDimensionEnum_ConversionValueRulePrimaryDimension)(0), // 0: google.ads.googleads.v22.enums.ConversionValueRulePrimaryDimensionEnum.ConversionValueRulePrimaryDimension + (*ConversionValueRulePrimaryDimensionEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionValueRulePrimaryDimensionEnum } -var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -225,27 +225,27 @@ var file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto = out.File - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_value_rule_primary_dimension_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto = out.File + file_google_ads_googleads_v22_enums_conversion_value_rule_primary_dimension_proto_goTypes = nil + file_google_ads_googleads_v22_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 a67135b1..9b152dfb 100644 --- a/enums/conversion_value_rule_set_status.pb.go +++ b/enums/conversion_value_rule_set_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_value_rule_set_status.proto +// source: google/ads/googleads/v22/enums/conversion_value_rule_set_status.proto package enums @@ -81,11 +81,11 @@ func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) String() } func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_enumTypes[0].Descriptor() } func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_enumTypes[0] } func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) Number() // Deprecated: Use ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus.Descriptor instead. func (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *ConversionValueRuleSetStatusEnum) String() string { func (*ConversionValueRuleSetStatusEnum) ProtoMessage() {} func (x *ConversionValueRuleSetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,19 +132,19 @@ func (x *ConversionValueRuleSetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSetStatusEnum.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x20, 0x43, 0x6f, 0x6e, 0x76, + 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_goTypes = []any{ - (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 0: google.ads.googleads.v21.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus - (*ConversionValueRuleSetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionValueRuleSetStatusEnum +var file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_goTypes = []any{ + (ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 0: google.ads.googleads.v22.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus + (*ConversionValueRuleSetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionValueRuleSetStatusEnum } -var file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_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_v21_enums_conversion_value_rule_set_status_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto = out.File - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_value_rule_set_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto = out.File + file_google_ads_googleads_v22_enums_conversion_value_rule_set_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 2b606754..4b35b7b4 100644 --- a/enums/conversion_value_rule_status.pb.go +++ b/enums/conversion_value_rule_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/conversion_value_rule_status.proto +// source: google/ads/googleads/v22/enums/conversion_value_rule_status.proto package enums @@ -80,11 +80,11 @@ func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) String() string } func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_enumTypes[0].Descriptor() } func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_enumTypes[0] } func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ConversionValueRuleStatusEnum_ConversionValueRuleStatus) Number() protor // Deprecated: Use ConversionValueRuleStatusEnum_ConversionValueRuleStatus.Descriptor instead. func (ConversionValueRuleStatusEnum_ConversionValueRuleStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ConversionValueRuleStatusEnum) String() string { func (*ConversionValueRuleStatusEnum) ProtoMessage() {} func (x *ConversionValueRuleStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ConversionValueRuleStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleStatusEnum.ProtoReflect.Descriptor instead. func (*ConversionValueRuleStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_conversion_value_rule_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_conversion_value_rule_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_goTypes = []any{ - (ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 0: google.ads.googleads.v21.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus - (*ConversionValueRuleStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ConversionValueRuleStatusEnum +var file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_goTypes = []any{ + (ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 0: google.ads.googleads.v22.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus + (*ConversionValueRuleStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ConversionValueRuleStatusEnum } -var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_init() } -func file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_init() { - if File_google_ads_googleads_v21_enums_conversion_value_rule_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_init() } +func file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_init() { + if File_google_ads_googleads_v22_enums_conversion_value_rule_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_conversion_value_rule_status_proto = out.File - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_conversion_value_rule_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_conversion_value_rule_status_proto = out.File + file_google_ads_googleads_v22_enums_conversion_value_rule_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 d95477ad..f627b958 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 @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/converting_user_prior_engagement_type_and_ltv_bucket.proto +// source: google/ads/googleads/v22/enums/converting_user_prior_engagement_type_and_ltv_bucket.proto package enums @@ -82,11 +82,11 @@ func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEng } func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0].Descriptor() } func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes[0] } func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEng // Deprecated: Use ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket.Descriptor instead. func (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) String() string { func (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoMessage() {} func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,20 +133,20 @@ func (x *ConvertingUserPriorEngagementTypeAndLtvBucketEnum) ProtoReflect() proto // Deprecated: Use ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ProtoReflect.Descriptor instead. func (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb0, 0x01, 0x0a, 0x31, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,7 +159,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,36 +167,36 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = []any{ - (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 0: google.ads.googleads.v21.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket - (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum +var file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = []any{ + (ConvertingUserPriorEngagementTypeAndLtvBucketEnum_ConvertingUserPriorEngagementTypeAndLtvBucket)(0), // 0: google.ads.googleads.v22.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum.ConvertingUserPriorEngagementTypeAndLtvBucket + (*ConvertingUserPriorEngagementTypeAndLtvBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.ConvertingUserPriorEngagementTypeAndLtvBucketEnum } -var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,28 +205,28 @@ var file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_an } func init() { - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto != nil { +func file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto = out.File - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto = out.File + file_google_ads_googleads_v22_enums_converting_user_prior_engagement_type_and_ltv_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_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 c25ed733..46db84e8 100644 --- a/enums/criterion_category_channel_availability_mode.pb.go +++ b/enums/criterion_category_channel_availability_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/criterion_category_channel_availability_mode.proto +// source: google/ads/googleads/v22/enums/criterion_category_channel_availability_mode.proto package enums @@ -82,11 +82,11 @@ func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAva } func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_enumTypes[0].Descriptor() } func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_enumTypes[0] } func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAva // Deprecated: Use CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode.Descriptor instead. func (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *CriterionCategoryChannelAvailabilityModeEnum) String() string { func (*CriterionCategoryChannelAvailabilityModeEnum) ProtoMessage() {} func (x *CriterionCategoryChannelAvailabilityModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *CriterionCategoryChannelAvailabilityModeEnum) ProtoReflect() protorefle // Deprecated: Use CriterionCategoryChannelAvailabilityModeEnum.ProtoReflect.Descriptor instead. func (*CriterionCategoryChannelAvailabilityModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_goTypes = []any{ - (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 0: google.ads.googleads.v21.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode - (*CriterionCategoryChannelAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v21.enums.CriterionCategoryChannelAvailabilityModeEnum +var file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_goTypes = []any{ + (CriterionCategoryChannelAvailabilityModeEnum_CriterionCategoryChannelAvailabilityMode)(0), // 0: google.ads.googleads.v22.enums.CriterionCategoryChannelAvailabilityModeEnum.CriterionCategoryChannelAvailabilityMode + (*CriterionCategoryChannelAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v22.enums.CriterionCategoryChannelAvailabilityModeEnum } -var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,28 +208,28 @@ var file_google_ads_googleads_v21_enums_criterion_category_channel_availability_ } func init() { - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_init() + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_init() } -func file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_init() { - if File_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto != nil { +func file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_init() { + if File_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto = out.File - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_criterion_category_channel_availability_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto = out.File + file_google_ads_googleads_v22_enums_criterion_category_channel_availability_mode_proto_goTypes = nil + file_google_ads_googleads_v22_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 4ab865ed..2dd28766 100644 --- a/enums/criterion_category_locale_availability_mode.pb.go +++ b/enums/criterion_category_locale_availability_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/criterion_category_locale_availability_mode.proto +// source: google/ads/googleads/v22/enums/criterion_category_locale_availability_mode.proto package enums @@ -87,11 +87,11 @@ func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvail } func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_enumTypes[0].Descriptor() } func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_enumTypes[0] } func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) Number() protoreflect.EnumNumber { @@ -100,7 +100,7 @@ func (x CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvail // Deprecated: Use CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode.Descriptor instead. func (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *CriterionCategoryLocaleAvailabilityModeEnum) String() string { func (*CriterionCategoryLocaleAvailabilityModeEnum) ProtoMessage() {} func (x *CriterionCategoryLocaleAvailabilityModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *CriterionCategoryLocaleAvailabilityModeEnum) ProtoReflect() protoreflec // Deprecated: Use CriterionCategoryLocaleAvailabilityModeEnum.ProtoReflect.Descriptor instead. func (*CriterionCategoryLocaleAvailabilityModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -168,43 +168,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_goTypes = []any{ - (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 0: google.ads.googleads.v21.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode - (*CriterionCategoryLocaleAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v21.enums.CriterionCategoryLocaleAvailabilityModeEnum +var file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_goTypes = []any{ + (CriterionCategoryLocaleAvailabilityModeEnum_CriterionCategoryLocaleAvailabilityMode)(0), // 0: google.ads.googleads.v22.enums.CriterionCategoryLocaleAvailabilityModeEnum.CriterionCategoryLocaleAvailabilityMode + (*CriterionCategoryLocaleAvailabilityModeEnum)(nil), // 1: google.ads.googleads.v22.enums.CriterionCategoryLocaleAvailabilityModeEnum } -var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -213,28 +213,28 @@ var file_google_ads_googleads_v21_enums_criterion_category_locale_availability_m } func init() { - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_init() + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_init() } -func file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_init() { - if File_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto != nil { +func file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_init() { + if File_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto = out.File - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_criterion_category_locale_availability_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto = out.File + file_google_ads_googleads_v22_enums_criterion_category_locale_availability_mode_proto_goTypes = nil + file_google_ads_googleads_v22_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 bcebf96c..4b7cf79c 100644 --- a/enums/criterion_system_serving_status.pb.go +++ b/enums/criterion_system_serving_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/criterion_system_serving_status.proto +// source: google/ads/googleads/v22/enums/criterion_system_serving_status.proto package enums @@ -76,11 +76,11 @@ func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) String() } func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_enumTypes[0].Descriptor() } func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_enumTypes[0] } func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CriterionSystemServingStatusEnum_CriterionSystemServingStatus) Number() // Deprecated: Use CriterionSystemServingStatusEnum_CriterionSystemServingStatus.Descriptor instead. func (CriterionSystemServingStatusEnum_CriterionSystemServingStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CriterionSystemServingStatusEnum) String() string { func (*CriterionSystemServingStatusEnum) ProtoMessage() {} func (x *CriterionSystemServingStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CriterionSystemServingStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionSystemServingStatusEnum.ProtoReflect.Descriptor instead. func (*CriterionSystemServingStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_criterion_system_serving_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_criterion_system_serving_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_goTypes = []any{ - (CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 0: google.ads.googleads.v21.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus - (*CriterionSystemServingStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CriterionSystemServingStatusEnum +var file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_goTypes = []any{ + (CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 0: google.ads.googleads.v22.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus + (*CriterionSystemServingStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CriterionSystemServingStatusEnum } -var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_init() } -func file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_init() { - if File_google_ads_googleads_v21_enums_criterion_system_serving_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_init() } +func file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_init() { + if File_google_ads_googleads_v22_enums_criterion_system_serving_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_criterion_system_serving_status_proto = out.File - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_criterion_system_serving_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_criterion_system_serving_status_proto = out.File + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_criterion_system_serving_status_proto_depIdxs = nil } diff --git a/enums/criterion_type.pb.go b/enums/criterion_type.pb.go index f4ed6cca..37fb5423 100644 --- a/enums/criterion_type.pb.go +++ b/enums/criterion_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/criterion_type.proto +// source: google/ads/googleads/v22/enums/criterion_type.proto package enums @@ -240,11 +240,11 @@ func (x CriterionTypeEnum_CriterionType) String() string { } func (CriterionTypeEnum_CriterionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_criterion_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_criterion_type_proto_enumTypes[0].Descriptor() } func (CriterionTypeEnum_CriterionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_criterion_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_criterion_type_proto_enumTypes[0] } func (x CriterionTypeEnum_CriterionType) Number() protoreflect.EnumNumber { @@ -253,7 +253,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_v21_enums_criterion_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescGZIP(), []int{0, 0} } // The possible types of a criterion. @@ -265,7 +265,7 @@ type CriterionTypeEnum struct { func (x *CriterionTypeEnum) Reset() { *x = CriterionTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_criterion_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -277,7 +277,7 @@ func (x *CriterionTypeEnum) String() string { func (*CriterionTypeEnum) ProtoMessage() {} func (x *CriterionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_criterion_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_criterion_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -290,17 +290,17 @@ func (x *CriterionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionTypeEnum.ProtoReflect.Descriptor instead. func (*CriterionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_criterion_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_criterion_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_criterion_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc7, 0x06, 0x0a, 0x11, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb1, 0x06, 0x0a, 0x0d, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, @@ -355,42 +355,42 @@ var file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc = string([] 0x45, 0x4f, 0x5f, 0x4c, 0x49, 0x4e, 0x45, 0x55, 0x50, 0x10, 0x2b, 0x12, 0x12, 0x0a, 0x0e, 0x50, 0x4c, 0x41, 0x43, 0x45, 0x4d, 0x45, 0x4e, 0x54, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0x2c, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_criterion_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_criterion_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_criterion_type_proto_goTypes = []any{ - (CriterionTypeEnum_CriterionType)(0), // 0: google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - (*CriterionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CriterionTypeEnum +var file_google_ads_googleads_v22_enums_criterion_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_criterion_type_proto_goTypes = []any{ + (CriterionTypeEnum_CriterionType)(0), // 0: google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + (*CriterionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CriterionTypeEnum } -var file_google_ads_googleads_v21_enums_criterion_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -398,27 +398,27 @@ var file_google_ads_googleads_v21_enums_criterion_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_criterion_type_proto_init() } -func file_google_ads_googleads_v21_enums_criterion_type_proto_init() { - if File_google_ads_googleads_v21_enums_criterion_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_criterion_type_proto_init() } +func file_google_ads_googleads_v22_enums_criterion_type_proto_init() { + if File_google_ads_googleads_v22_enums_criterion_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_criterion_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_criterion_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_criterion_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_criterion_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_criterion_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_criterion_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_criterion_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_criterion_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_criterion_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_criterion_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_criterion_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_criterion_type_proto = out.File - file_google_ads_googleads_v21_enums_criterion_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_criterion_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_criterion_type_proto = out.File + file_google_ads_googleads_v22_enums_criterion_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 caa5fef3..5aa9b98c 100644 --- a/enums/custom_audience_member_type.pb.go +++ b/enums/custom_audience_member_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_audience_member_type.proto +// source: google/ads/googleads/v22/enums/custom_audience_member_type.proto package enums @@ -84,11 +84,11 @@ func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) String() string { } func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_enumTypes[0].Descriptor() } func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_enumTypes[0] } func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x CustomAudienceMemberTypeEnum_CustomAudienceMemberType) Number() protoref // Deprecated: Use CustomAudienceMemberTypeEnum_CustomAudienceMemberType.Descriptor instead. func (CustomAudienceMemberTypeEnum_CustomAudienceMemberType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *CustomAudienceMemberTypeEnum) String() string { func (*CustomAudienceMemberTypeEnum) ProtoMessage() {} func (x *CustomAudienceMemberTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *CustomAudienceMemberTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceMemberTypeEnum.ProtoReflect.Descriptor instead. func (*CustomAudienceMemberTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_audience_member_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_audience_member_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x41, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_goTypes = []any{ - (CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 0: google.ads.googleads.v21.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType - (*CustomAudienceMemberTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomAudienceMemberTypeEnum +var file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_goTypes = []any{ + (CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 0: google.ads.googleads.v22.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType + (*CustomAudienceMemberTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomAudienceMemberTypeEnum } -var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_init() } -func file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_init() { - if File_google_ads_googleads_v21_enums_custom_audience_member_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_init() } +func file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_init() { + if File_google_ads_googleads_v22_enums_custom_audience_member_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_audience_member_type_proto = out.File - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_audience_member_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_audience_member_type_proto = out.File + file_google_ads_googleads_v22_enums_custom_audience_member_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 24007a53..d6776eea 100644 --- a/enums/custom_audience_status.pb.go +++ b/enums/custom_audience_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_audience_status.proto +// source: google/ads/googleads/v22/enums/custom_audience_status.proto package enums @@ -77,11 +77,11 @@ func (x CustomAudienceStatusEnum_CustomAudienceStatus) String() string { } func (CustomAudienceStatusEnum_CustomAudienceStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_audience_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_audience_status_proto_enumTypes[0].Descriptor() } func (CustomAudienceStatusEnum_CustomAudienceStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_audience_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_audience_status_proto_enumTypes[0] } func (x CustomAudienceStatusEnum_CustomAudienceStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_custom_audience_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *CustomAudienceStatusEnum) String() string { func (*CustomAudienceStatusEnum) ProtoMessage() {} func (x *CustomAudienceStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_audience_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *CustomAudienceStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceStatusEnum.ProtoReflect.Descriptor instead. func (*CustomAudienceStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_audience_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_audience_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_status_proto_goTypes = []any{ - (CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 0: google.ads.googleads.v21.enums.CustomAudienceStatusEnum.CustomAudienceStatus - (*CustomAudienceStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomAudienceStatusEnum +var file_google_ads_googleads_v22_enums_custom_audience_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_status_proto_goTypes = []any{ + (CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 0: google.ads.googleads.v22.enums.CustomAudienceStatusEnum.CustomAudienceStatus + (*CustomAudienceStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomAudienceStatusEnum } -var file_google_ads_googleads_v21_enums_custom_audience_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_custom_audience_status_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_audience_status_proto_init() } -func file_google_ads_googleads_v21_enums_custom_audience_status_proto_init() { - if File_google_ads_googleads_v21_enums_custom_audience_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_audience_status_proto_init() } +func file_google_ads_googleads_v22_enums_custom_audience_status_proto_init() { + if File_google_ads_googleads_v22_enums_custom_audience_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_audience_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_audience_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_audience_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_audience_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_audience_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_audience_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_audience_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_audience_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_audience_status_proto = out.File - file_google_ads_googleads_v21_enums_custom_audience_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_audience_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_audience_status_proto = out.File + file_google_ads_googleads_v22_enums_custom_audience_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_custom_audience_status_proto_depIdxs = nil } diff --git a/enums/custom_audience_type.pb.go b/enums/custom_audience_type.pb.go index 745bc3b0..0772ada3 100644 --- a/enums/custom_audience_type.pb.go +++ b/enums/custom_audience_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_audience_type.proto +// source: google/ads/googleads/v22/enums/custom_audience_type.proto package enums @@ -86,11 +86,11 @@ func (x CustomAudienceTypeEnum_CustomAudienceType) String() string { } func (CustomAudienceTypeEnum_CustomAudienceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_audience_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_audience_type_proto_enumTypes[0].Descriptor() } func (CustomAudienceTypeEnum_CustomAudienceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_audience_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_audience_type_proto_enumTypes[0] } func (x CustomAudienceTypeEnum_CustomAudienceType) Number() protoreflect.EnumNumber { @@ -99,7 +99,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_v21_enums_custom_audience_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_audience_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *CustomAudienceTypeEnum) String() string { func (*CustomAudienceTypeEnum) ProtoMessage() {} func (x *CustomAudienceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_audience_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_audience_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *CustomAudienceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceTypeEnum.ProtoReflect.Descriptor instead. func (*CustomAudienceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_audience_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_audience_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x16, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,41 +158,41 @@ var file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_audience_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_audience_type_proto_goTypes = []any{ - (CustomAudienceTypeEnum_CustomAudienceType)(0), // 0: google.ads.googleads.v21.enums.CustomAudienceTypeEnum.CustomAudienceType - (*CustomAudienceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomAudienceTypeEnum +var file_google_ads_googleads_v22_enums_custom_audience_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_audience_type_proto_goTypes = []any{ + (CustomAudienceTypeEnum_CustomAudienceType)(0), // 0: google.ads.googleads.v22.enums.CustomAudienceTypeEnum.CustomAudienceType + (*CustomAudienceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomAudienceTypeEnum } -var file_google_ads_googleads_v21_enums_custom_audience_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_custom_audience_type_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_audience_type_proto_init() } -func file_google_ads_googleads_v21_enums_custom_audience_type_proto_init() { - if File_google_ads_googleads_v21_enums_custom_audience_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_audience_type_proto_init() } +func file_google_ads_googleads_v22_enums_custom_audience_type_proto_init() { + if File_google_ads_googleads_v22_enums_custom_audience_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_audience_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_audience_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_audience_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_audience_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_audience_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_audience_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_audience_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_audience_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_audience_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_audience_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_audience_type_proto = out.File - file_google_ads_googleads_v21_enums_custom_audience_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_audience_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_audience_type_proto = out.File + file_google_ads_googleads_v22_enums_custom_audience_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 dbd2a82e..e607a18e 100644 --- a/enums/custom_conversion_goal_status.pb.go +++ b/enums/custom_conversion_goal_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_conversion_goal_status.proto +// source: google/ads/googleads/v22/enums/custom_conversion_goal_status.proto package enums @@ -76,11 +76,11 @@ func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) String() stri } func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_enumTypes[0].Descriptor() } func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_enumTypes[0] } func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CustomConversionGoalStatusEnum_CustomConversionGoalStatus) Number() prot // Deprecated: Use CustomConversionGoalStatusEnum_CustomConversionGoalStatus.Descriptor instead. func (CustomConversionGoalStatusEnum_CustomConversionGoalStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CustomConversionGoalStatusEnum) String() string { func (*CustomConversionGoalStatusEnum) ProtoMessage() {} func (x *CustomConversionGoalStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CustomConversionGoalStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoalStatusEnum.ProtoReflect.Descriptor instead. func (*CustomConversionGoalStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_goTypes = []any{ - (CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 0: google.ads.googleads.v21.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus - (*CustomConversionGoalStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomConversionGoalStatusEnum +var file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_goTypes = []any{ + (CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 0: google.ads.googleads.v22.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus + (*CustomConversionGoalStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomConversionGoalStatusEnum } -var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_init() } -func file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_init() { - if File_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_init() } +func file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_init() { + if File_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto = out.File - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_conversion_goal_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto = out.File + file_google_ads_googleads_v22_enums_custom_conversion_goal_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 658112c0..34207580 100644 --- a/enums/custom_interest_member_type.pb.go +++ b/enums/custom_interest_member_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_interest_member_type.proto +// source: google/ads/googleads/v22/enums/custom_interest_member_type.proto package enums @@ -76,11 +76,11 @@ func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) String() string { } func (CustomInterestMemberTypeEnum_CustomInterestMemberType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_enumTypes[0].Descriptor() } func (CustomInterestMemberTypeEnum_CustomInterestMemberType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_enumTypes[0] } func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CustomInterestMemberTypeEnum_CustomInterestMemberType) Number() protoref // Deprecated: Use CustomInterestMemberTypeEnum_CustomInterestMemberType.Descriptor instead. func (CustomInterestMemberTypeEnum_CustomInterestMemberType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CustomInterestMemberTypeEnum) String() string { func (*CustomInterestMemberTypeEnum) ProtoMessage() {} func (x *CustomInterestMemberTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CustomInterestMemberTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestMemberTypeEnum.ProtoReflect.Descriptor instead. func (*CustomInterestMemberTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_interest_member_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_interest_member_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_goTypes = []any{ - (CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 0: google.ads.googleads.v21.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType - (*CustomInterestMemberTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomInterestMemberTypeEnum +var file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_goTypes = []any{ + (CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 0: google.ads.googleads.v22.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType + (*CustomInterestMemberTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomInterestMemberTypeEnum } -var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_init() } -func file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_init() { - if File_google_ads_googleads_v21_enums_custom_interest_member_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_init() } +func file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_init() { + if File_google_ads_googleads_v22_enums_custom_interest_member_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_interest_member_type_proto = out.File - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_interest_member_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_interest_member_type_proto = out.File + file_google_ads_googleads_v22_enums_custom_interest_member_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 0e70730d..4b006448 100644 --- a/enums/custom_interest_status.pb.go +++ b/enums/custom_interest_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_interest_status.proto +// source: google/ads/googleads/v22/enums/custom_interest_status.proto package enums @@ -77,11 +77,11 @@ func (x CustomInterestStatusEnum_CustomInterestStatus) String() string { } func (CustomInterestStatusEnum_CustomInterestStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_interest_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_interest_status_proto_enumTypes[0].Descriptor() } func (CustomInterestStatusEnum_CustomInterestStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_interest_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_interest_status_proto_enumTypes[0] } func (x CustomInterestStatusEnum_CustomInterestStatus) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_custom_interest_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_interest_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *CustomInterestStatusEnum) String() string { func (*CustomInterestStatusEnum) ProtoMessage() {} func (x *CustomInterestStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_interest_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *CustomInterestStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestStatusEnum.ProtoReflect.Descriptor instead. func (*CustomInterestStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_interest_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_interest_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_interest_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_status_proto_goTypes = []any{ - (CustomInterestStatusEnum_CustomInterestStatus)(0), // 0: google.ads.googleads.v21.enums.CustomInterestStatusEnum.CustomInterestStatus - (*CustomInterestStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomInterestStatusEnum +var file_google_ads_googleads_v22_enums_custom_interest_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_status_proto_goTypes = []any{ + (CustomInterestStatusEnum_CustomInterestStatus)(0), // 0: google.ads.googleads.v22.enums.CustomInterestStatusEnum.CustomInterestStatus + (*CustomInterestStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomInterestStatusEnum } -var file_google_ads_googleads_v21_enums_custom_interest_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_custom_interest_status_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_interest_status_proto_init() } -func file_google_ads_googleads_v21_enums_custom_interest_status_proto_init() { - if File_google_ads_googleads_v21_enums_custom_interest_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_interest_status_proto_init() } +func file_google_ads_googleads_v22_enums_custom_interest_status_proto_init() { + if File_google_ads_googleads_v22_enums_custom_interest_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_interest_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_interest_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_interest_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_interest_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_interest_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_interest_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_interest_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_interest_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_interest_status_proto = out.File - file_google_ads_googleads_v21_enums_custom_interest_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_interest_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_interest_status_proto = out.File + file_google_ads_googleads_v22_enums_custom_interest_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_custom_interest_status_proto_depIdxs = nil } diff --git a/enums/custom_interest_type.pb.go b/enums/custom_interest_type.pb.go index a392e77f..a9895217 100644 --- a/enums/custom_interest_type.pb.go +++ b/enums/custom_interest_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/custom_interest_type.proto +// source: google/ads/googleads/v22/enums/custom_interest_type.proto package enums @@ -76,11 +76,11 @@ func (x CustomInterestTypeEnum_CustomInterestType) String() string { } func (CustomInterestTypeEnum_CustomInterestType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_custom_interest_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_custom_interest_type_proto_enumTypes[0].Descriptor() } func (CustomInterestTypeEnum_CustomInterestType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_custom_interest_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_custom_interest_type_proto_enumTypes[0] } func (x CustomInterestTypeEnum_CustomInterestType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_custom_interest_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_custom_interest_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CustomInterestTypeEnum) String() string { func (*CustomInterestTypeEnum) ProtoMessage() {} func (x *CustomInterestTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_custom_interest_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_custom_interest_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CustomInterestTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestTypeEnum.ProtoReflect.Descriptor instead. func (*CustomInterestTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_custom_interest_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_custom_interest_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x74, 0x0a, 0x16, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc = str 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_custom_interest_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_custom_interest_type_proto_goTypes = []any{ - (CustomInterestTypeEnum_CustomInterestType)(0), // 0: google.ads.googleads.v21.enums.CustomInterestTypeEnum.CustomInterestType - (*CustomInterestTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomInterestTypeEnum +var file_google_ads_googleads_v22_enums_custom_interest_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_custom_interest_type_proto_goTypes = []any{ + (CustomInterestTypeEnum_CustomInterestType)(0), // 0: google.ads.googleads.v22.enums.CustomInterestTypeEnum.CustomInterestType + (*CustomInterestTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomInterestTypeEnum } -var file_google_ads_googleads_v21_enums_custom_interest_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_custom_interest_type_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_custom_interest_type_proto_init() } -func file_google_ads_googleads_v21_enums_custom_interest_type_proto_init() { - if File_google_ads_googleads_v21_enums_custom_interest_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_custom_interest_type_proto_init() } +func file_google_ads_googleads_v22_enums_custom_interest_type_proto_init() { + if File_google_ads_googleads_v22_enums_custom_interest_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_custom_interest_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_custom_interest_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_custom_interest_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_custom_interest_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_custom_interest_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_custom_interest_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_custom_interest_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_custom_interest_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_custom_interest_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_custom_interest_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_custom_interest_type_proto = out.File - file_google_ads_googleads_v21_enums_custom_interest_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_custom_interest_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_custom_interest_type_proto = out.File + file_google_ads_googleads_v22_enums_custom_interest_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_custom_interest_type_proto_depIdxs = nil } diff --git a/enums/customer_acquisition_optimization_mode.pb.go b/enums/customer_acquisition_optimization_mode.pb.go index 0a264410..817e213e 100644 --- a/enums/customer_acquisition_optimization_mode.pb.go +++ b/enums/customer_acquisition_optimization_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customer_acquisition_optimization_mode.proto +// source: google/ads/googleads/v22/enums/customer_acquisition_optimization_mode.proto package enums @@ -82,11 +82,11 @@ func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationM } func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_enumTypes[0].Descriptor() } func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_enumTypes[0] } func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationM // Deprecated: Use CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode.Descriptor instead. func (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *CustomerAcquisitionOptimizationModeEnum) String() string { func (*CustomerAcquisitionOptimizationModeEnum) ProtoMessage() {} func (x *CustomerAcquisitionOptimizationModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,19 +133,19 @@ func (x *CustomerAcquisitionOptimizationModeEnum) ProtoReflect() protoreflect.Me // Deprecated: Use CustomerAcquisitionOptimizationModeEnum.ProtoReflect.Descriptor instead. func (*CustomerAcquisitionOptimizationModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc1, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_goTypes = []any{ - (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 0: google.ads.googleads.v21.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode - (*CustomerAcquisitionOptimizationModeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomerAcquisitionOptimizationModeEnum +var file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_goTypes = []any{ + (CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 0: google.ads.googleads.v22.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode + (*CustomerAcquisitionOptimizationModeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomerAcquisitionOptimizationModeEnum } -var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_p 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_init() } -func file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_init() { - if File_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_init() } +func file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_init() { + if File_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto = out.File - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customer_acquisition_optimization_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto = out.File + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_goTypes = nil + file_google_ads_googleads_v22_enums_customer_acquisition_optimization_mode_proto_depIdxs = nil } diff --git a/enums/customer_lifecycle_optimization_mode.pb.go b/enums/customer_lifecycle_optimization_mode.pb.go new file mode 100644 index 00000000..d8ff66a3 --- /dev/null +++ b/enums/customer_lifecycle_optimization_mode.pb.go @@ -0,0 +1,221 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/enums/customer_lifecycle_optimization_mode.proto + +package enums + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// Possible customer acquisition goal optimization modes. +type CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode int32 + +const ( + // Not specified. + CustomerLifecycleOptimizationModeEnum_UNSPECIFIED CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode = 0 + // Used for return value only. Represents value unknown in this version. + CustomerLifecycleOptimizationModeEnum_UNKNOWN CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode = 1 + // The mode is used when the campaign optimizes for all customers, which is + // the default value. + CustomerLifecycleOptimizationModeEnum_TARGET_ALL CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode = 2 + // This mode configures the campaign to target only customers who have + // previously interacted but are now lapsed or disengaged. + CustomerLifecycleOptimizationModeEnum_TARGET_SPECIFIC CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode = 3 +) + +// Enum value maps for CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode. +var ( + CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 2: "TARGET_ALL", + 3: "TARGET_SPECIFIC", + } + CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "TARGET_ALL": 2, + "TARGET_SPECIFIC": 3, + } +) + +func (x CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) Enum() *CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode { + p := new(CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) + *p = x + return p +} + +func (x CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_enumTypes[0].Descriptor() +} + +func (CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_enumTypes[0] +} + +func (x CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode.Descriptor instead. +func (CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing possible customer lifecycle optimization modes. +type CustomerLifecycleOptimizationModeEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CustomerLifecycleOptimizationModeEnum) Reset() { + *x = CustomerLifecycleOptimizationModeEnum{} + mi := &file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CustomerLifecycleOptimizationModeEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CustomerLifecycleOptimizationModeEnum) ProtoMessage() {} + +func (x *CustomerLifecycleOptimizationModeEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CustomerLifecycleOptimizationModeEnum.ProtoReflect.Descriptor instead. +func (*CustomerLifecycleOptimizationModeEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x66, 0x65, 0x63, 0x79, + 0x63, 0x6c, 0x65, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x25, + 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, + 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, + 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x66, 0x0a, 0x21, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x72, 0x4c, 0x69, 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, + 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x6f, 0x64, 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, 0x0e, 0x0a, 0x0a, 0x54, 0x41, 0x52, 0x47, + 0x45, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x10, 0x02, 0x12, 0x13, 0x0a, 0x0f, 0x54, 0x41, 0x52, 0x47, + 0x45, 0x54, 0x5f, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x43, 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, 0x32, 0x32, 0x2e, 0x65, + 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x4c, 0x69, + 0x66, 0x65, 0x63, 0x79, 0x63, 0x6c, 0x65, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDescData +} + +var file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_goTypes = []any{ + (CustomerLifecycleOptimizationModeEnum_CustomerLifecycleOptimizationMode)(0), // 0: google.ads.googleads.v22.enums.CustomerLifecycleOptimizationModeEnum.CustomerLifecycleOptimizationMode + (*CustomerLifecycleOptimizationModeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomerLifecycleOptimizationModeEnum +} +var file_google_ads_googleads_v22_enums_customer_lifecycle_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 + 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_v22_enums_customer_lifecycle_optimization_mode_proto_init() } +func file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_init() { + if File_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto = out.File + file_google_ads_googleads_v22_enums_customer_lifecycle_optimization_mode_proto_goTypes = nil + file_google_ads_googleads_v22_enums_customer_lifecycle_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 f3db4e70..77559cc8 100644 --- a/enums/customer_match_upload_key_type.pb.go +++ b/enums/customer_match_upload_key_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customer_match_upload_key_type.proto +// source: google/ads/googleads/v22/enums/customer_match_upload_key_type.proto package enums @@ -82,11 +82,11 @@ func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) String() stri } func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_enumTypes[0].Descriptor() } func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_enumTypes[0] } func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) Number() prot // Deprecated: Use CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType.Descriptor instead. func (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *CustomerMatchUploadKeyTypeEnum) String() string { func (*CustomerMatchUploadKeyTypeEnum) ProtoMessage() {} func (x *CustomerMatchUploadKeyTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *CustomerMatchUploadKeyTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerMatchUploadKeyTypeEnum.ProtoReflect.Descriptor instead. func (*CustomerMatchUploadKeyTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -155,43 +155,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_goTypes = []any{ - (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 0: google.ads.googleads.v21.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType - (*CustomerMatchUploadKeyTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomerMatchUploadKeyTypeEnum +var file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_goTypes = []any{ + (CustomerMatchUploadKeyTypeEnum_CustomerMatchUploadKeyType)(0), // 0: google.ads.googleads.v22.enums.CustomerMatchUploadKeyTypeEnum.CustomerMatchUploadKeyType + (*CustomerMatchUploadKeyTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomerMatchUploadKeyTypeEnum } -var file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_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_v21_enums_customer_match_upload_key_type_proto_init() } -func file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_init() { - if File_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_init() } +func file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_init() { + if File_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto = out.File - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customer_match_upload_key_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto = out.File + file_google_ads_googleads_v22_enums_customer_match_upload_key_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 28a0cb84..d283b6fa 100644 --- a/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go +++ b/enums/customer_pay_per_conversion_eligibility_failure_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customer_pay_per_conversion_eligibility_failure_reason.proto +// source: google/ads/googleads/v22/enums/customer_pay_per_conversion_eligibility_failure_reason.proto package enums @@ -98,11 +98,11 @@ func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConve } func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0].Descriptor() } func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes[0] } func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) Number() protoreflect.EnumNumber { @@ -111,7 +111,7 @@ func (x CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConve // Deprecated: Use CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason.Descriptor instead. func (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) String() string { func (*CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoMessage() {} func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,20 +149,20 @@ func (x *CustomerPayPerConversionEligibilityFailureReasonEnum) ProtoReflect() pr // Deprecated: Use CustomerPayPerConversionEligibilityFailureReasonEnum.ProtoReflect.Descriptor instead. func (*CustomerPayPerConversionEligibilityFailureReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd1, 0x02, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -186,43 +186,43 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x35, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = []any{ - (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 0: google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason - (*CustomerPayPerConversionEligibilityFailureReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonEnum +var file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = []any{ + (CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 0: google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason + (*CustomerPayPerConversionEligibilityFailureReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonEnum } -var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -231,28 +231,28 @@ var file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_ } func init() { - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() } -func file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() { - if File_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto != nil { +func file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_init() { + if File_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto = out.File - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto = out.File + file_google_ads_googleads_v22_enums_customer_pay_per_conversion_eligibility_failure_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 3ee45bb9..fe7dd17f 100644 --- a/enums/customer_status.pb.go +++ b/enums/customer_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customer_status.proto +// source: google/ads/googleads/v22/enums/customer_status.proto package enums @@ -88,11 +88,11 @@ func (x CustomerStatusEnum_CustomerStatus) String() string { } func (CustomerStatusEnum_CustomerStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customer_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customer_status_proto_enumTypes[0].Descriptor() } func (CustomerStatusEnum_CustomerStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customer_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customer_status_proto_enumTypes[0] } func (x CustomerStatusEnum_CustomerStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_customer_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customer_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *CustomerStatusEnum) String() string { func (*CustomerStatusEnum) ProtoMessage() {} func (x *CustomerStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customer_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customer_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,17 +138,17 @@ func (x *CustomerStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerStatusEnum.ProtoReflect.Descriptor instead. func (*CustomerStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customer_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customer_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customer_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customer_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customer_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,41 +159,41 @@ var file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customer_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customer_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customer_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customer_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customer_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customer_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customer_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customer_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customer_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customer_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customer_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_customer_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customer_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customer_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customer_status_proto_goTypes = []any{ - (CustomerStatusEnum_CustomerStatus)(0), // 0: google.ads.googleads.v21.enums.CustomerStatusEnum.CustomerStatus - (*CustomerStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomerStatusEnum +var file_google_ads_googleads_v22_enums_customer_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customer_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customer_status_proto_goTypes = []any{ + (CustomerStatusEnum_CustomerStatus)(0), // 0: google.ads.googleads.v22.enums.CustomerStatusEnum.CustomerStatus + (*CustomerStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomerStatusEnum } -var file_google_ads_googleads_v21_enums_customer_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_enums_customer_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_customer_status_proto_init() } -func file_google_ads_googleads_v21_enums_customer_status_proto_init() { - if File_google_ads_googleads_v21_enums_customer_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customer_status_proto_init() } +func file_google_ads_googleads_v22_enums_customer_status_proto_init() { + if File_google_ads_googleads_v22_enums_customer_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customer_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customer_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customer_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customer_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customer_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customer_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customer_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customer_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customer_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customer_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customer_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customer_status_proto = out.File - file_google_ads_googleads_v21_enums_customer_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customer_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customer_status_proto = out.File + file_google_ads_googleads_v22_enums_customer_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_customer_status_proto_depIdxs = nil } diff --git a/enums/customizer_attribute_status.pb.go b/enums/customizer_attribute_status.pb.go index 5d922644..707e83ee 100644 --- a/enums/customizer_attribute_status.pb.go +++ b/enums/customizer_attribute_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customizer_attribute_status.proto +// source: google/ads/googleads/v22/enums/customizer_attribute_status.proto package enums @@ -76,11 +76,11 @@ func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) String() string } func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_enumTypes[0].Descriptor() } func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_enumTypes[0] } func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CustomizerAttributeStatusEnum_CustomizerAttributeStatus) Number() protor // Deprecated: Use CustomizerAttributeStatusEnum_CustomizerAttributeStatus.Descriptor instead. func (CustomizerAttributeStatusEnum_CustomizerAttributeStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CustomizerAttributeStatusEnum) String() string { func (*CustomizerAttributeStatusEnum) ProtoMessage() {} func (x *CustomizerAttributeStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CustomizerAttributeStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttributeStatusEnum.ProtoReflect.Descriptor instead. func (*CustomizerAttributeStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customizer_attribute_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customizer_attribute_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_goTypes = []any{ - (CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 0: google.ads.googleads.v21.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus - (*CustomizerAttributeStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomizerAttributeStatusEnum +var file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_goTypes = []any{ + (CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 0: google.ads.googleads.v22.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus + (*CustomizerAttributeStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomizerAttributeStatusEnum } -var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_init() } -func file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_init() { - if File_google_ads_googleads_v21_enums_customizer_attribute_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_init() } +func file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_init() { + if File_google_ads_googleads_v22_enums_customizer_attribute_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customizer_attribute_status_proto = out.File - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customizer_attribute_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customizer_attribute_status_proto = out.File + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_customizer_attribute_status_proto_depIdxs = nil } diff --git a/enums/customizer_attribute_type.pb.go b/enums/customizer_attribute_type.pb.go index 04b572bf..5538f116 100644 --- a/enums/customizer_attribute_type.pb.go +++ b/enums/customizer_attribute_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customizer_attribute_type.proto +// source: google/ads/googleads/v22/enums/customizer_attribute_type.proto package enums @@ -84,11 +84,11 @@ func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) String() string { } func (CustomizerAttributeTypeEnum_CustomizerAttributeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_enumTypes[0].Descriptor() } func (CustomizerAttributeTypeEnum_CustomizerAttributeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_enumTypes[0] } func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x CustomizerAttributeTypeEnum_CustomizerAttributeType) Number() protorefle // Deprecated: Use CustomizerAttributeTypeEnum_CustomizerAttributeType.Descriptor instead. func (CustomizerAttributeTypeEnum_CustomizerAttributeType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *CustomizerAttributeTypeEnum) String() string { func (*CustomizerAttributeTypeEnum) ProtoMessage() {} func (x *CustomizerAttributeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *CustomizerAttributeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttributeTypeEnum.ProtoReflect.Descriptor instead. func (*CustomizerAttributeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customizer_attribute_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customizer_attribute_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_goTypes = []any{ - (CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 0: google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType - (*CustomizerAttributeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum +var file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_goTypes = []any{ + (CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 0: google.ads.googleads.v22.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType + (*CustomizerAttributeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomizerAttributeTypeEnum } -var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_init() } -func file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_init() { - if File_google_ads_googleads_v21_enums_customizer_attribute_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_init() } +func file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_init() { + if File_google_ads_googleads_v22_enums_customizer_attribute_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customizer_attribute_type_proto = out.File - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customizer_attribute_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customizer_attribute_type_proto = out.File + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_customizer_attribute_type_proto_depIdxs = nil } diff --git a/enums/customizer_value_status.pb.go b/enums/customizer_value_status.pb.go index ecb5ffa0..7af10b49 100644 --- a/enums/customizer_value_status.pb.go +++ b/enums/customizer_value_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/customizer_value_status.proto +// source: google/ads/googleads/v22/enums/customizer_value_status.proto package enums @@ -76,11 +76,11 @@ func (x CustomizerValueStatusEnum_CustomizerValueStatus) String() string { } func (CustomizerValueStatusEnum_CustomizerValueStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_customizer_value_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_customizer_value_status_proto_enumTypes[0].Descriptor() } func (CustomizerValueStatusEnum_CustomizerValueStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_customizer_value_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_customizer_value_status_proto_enumTypes[0] } func (x CustomizerValueStatusEnum_CustomizerValueStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_customizer_value_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_customizer_value_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_value_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CustomizerValueStatusEnum) String() string { func (*CustomizerValueStatusEnum) ProtoMessage() {} func (x *CustomizerValueStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_customizer_value_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_customizer_value_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CustomizerValueStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerValueStatusEnum.ProtoReflect.Descriptor instead. func (*CustomizerValueStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_customizer_value_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_customizer_value_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_customizer_value_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_value_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_customizer_value_status_proto_goTypes = []any{ - (CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 0: google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*CustomizerValueStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.CustomizerValueStatusEnum +var file_google_ads_googleads_v22_enums_customizer_value_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_value_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_customizer_value_status_proto_goTypes = []any{ + (CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 0: google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*CustomizerValueStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.CustomizerValueStatusEnum } -var file_google_ads_googleads_v21_enums_customizer_value_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_customizer_value_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_customizer_value_status_proto_init() } -func file_google_ads_googleads_v21_enums_customizer_value_status_proto_init() { - if File_google_ads_googleads_v21_enums_customizer_value_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_customizer_value_status_proto_init() } +func file_google_ads_googleads_v22_enums_customizer_value_status_proto_init() { + if File_google_ads_googleads_v22_enums_customizer_value_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_customizer_value_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_customizer_value_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_customizer_value_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_customizer_value_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_customizer_value_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_customizer_value_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_customizer_value_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_customizer_value_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_customizer_value_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_customizer_value_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_customizer_value_status_proto = out.File - file_google_ads_googleads_v21_enums_customizer_value_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_customizer_value_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_customizer_value_status_proto = out.File + file_google_ads_googleads_v22_enums_customizer_value_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 f33afeff..1e181e58 100644 --- a/enums/data_driven_model_status.pb.go +++ b/enums/data_driven_model_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/data_driven_model_status.proto +// source: google/ads/googleads/v22/enums/data_driven_model_status.proto package enums @@ -90,11 +90,11 @@ func (x DataDrivenModelStatusEnum_DataDrivenModelStatus) String() string { } func (DataDrivenModelStatusEnum_DataDrivenModelStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_data_driven_model_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_data_driven_model_status_proto_enumTypes[0].Descriptor() } func (DataDrivenModelStatusEnum_DataDrivenModelStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_data_driven_model_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_data_driven_model_status_proto_enumTypes[0] } func (x DataDrivenModelStatusEnum_DataDrivenModelStatus) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_data_driven_model_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_driven_model_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *DataDrivenModelStatusEnum) String() string { func (*DataDrivenModelStatusEnum) ProtoMessage() {} func (x *DataDrivenModelStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_data_driven_model_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_driven_model_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *DataDrivenModelStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DataDrivenModelStatusEnum.ProtoReflect.Descriptor instead. func (*DataDrivenModelStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_data_driven_model_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_data_driven_model_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,41 +163,41 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x44, 0x61, 0x74, 0x61, 0x44, 0x72, 0x69, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_goTypes = []any{ - (DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 0: google.ads.googleads.v21.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus - (*DataDrivenModelStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.DataDrivenModelStatusEnum +var file_google_ads_googleads_v22_enums_data_driven_model_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_data_driven_model_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_data_driven_model_status_proto_goTypes = []any{ + (DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 0: google.ads.googleads.v22.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus + (*DataDrivenModelStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.DataDrivenModelStatusEnum } -var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_data_driven_model_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_data_driven_model_status_proto_init() } -func file_google_ads_googleads_v21_enums_data_driven_model_status_proto_init() { - if File_google_ads_googleads_v21_enums_data_driven_model_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_data_driven_model_status_proto_init() } +func file_google_ads_googleads_v22_enums_data_driven_model_status_proto_init() { + if File_google_ads_googleads_v22_enums_data_driven_model_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_driven_model_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_driven_model_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_data_driven_model_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_data_driven_model_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_data_driven_model_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_data_driven_model_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_data_driven_model_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_data_driven_model_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_data_driven_model_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_data_driven_model_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_data_driven_model_status_proto = out.File - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_data_driven_model_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_data_driven_model_status_proto = out.File + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_data_driven_model_status_proto_depIdxs = nil } diff --git a/enums/data_link_status.pb.go b/enums/data_link_status.pb.go index 80c6f602..6606cdc2 100644 --- a/enums/data_link_status.pb.go +++ b/enums/data_link_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/data_link_status.proto +// source: google/ads/googleads/v22/enums/data_link_status.proto package enums @@ -94,11 +94,11 @@ func (x DataLinkStatusEnum_DataLinkStatus) String() string { } func (DataLinkStatusEnum_DataLinkStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_data_link_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_data_link_status_proto_enumTypes[0].Descriptor() } func (DataLinkStatusEnum_DataLinkStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_data_link_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_data_link_status_proto_enumTypes[0] } func (x DataLinkStatusEnum_DataLinkStatus) Number() protoreflect.EnumNumber { @@ -107,7 +107,7 @@ func (x DataLinkStatusEnum_DataLinkStatus) Number() protoreflect.EnumNumber { // Deprecated: Use DataLinkStatusEnum_DataLinkStatus.Descriptor instead. func (DataLinkStatusEnum_DataLinkStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing different types of data links. @@ -119,7 +119,7 @@ type DataLinkStatusEnum struct { func (x *DataLinkStatusEnum) Reset() { *x = DataLinkStatusEnum{} - mi := &file_google_ads_googleads_v21_enums_data_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_link_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *DataLinkStatusEnum) String() string { func (*DataLinkStatusEnum) ProtoMessage() {} func (x *DataLinkStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_data_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_link_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,18 +144,18 @@ func (x *DataLinkStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DataLinkStatusEnum.ProtoReflect.Descriptor instead. func (*DataLinkStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_data_link_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_data_link_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_data_link_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 0x01, 0x0a, 0x12, 0x44, 0x61, 0x74, 0x61, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 0x01, 0x0a, 0x12, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x89, 0x01, 0x0a, 0x0e, 0x44, 0x61, 0x74, 0x61, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc = string( 0x0b, 0x0a, 0x07, 0x52, 0x45, 0x56, 0x4f, 0x4b, 0x45, 0x44, 0x10, 0x06, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x45, 0x4a, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x07, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x44, 0x61, 0x74, 0x61, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_link_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_data_link_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_data_link_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_data_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_data_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_data_link_status_proto_goTypes = []any{ - (DataLinkStatusEnum_DataLinkStatus)(0), // 0: google.ads.googleads.v21.enums.DataLinkStatusEnum.DataLinkStatus - (*DataLinkStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.DataLinkStatusEnum +var file_google_ads_googleads_v22_enums_data_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_data_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_data_link_status_proto_goTypes = []any{ + (DataLinkStatusEnum_DataLinkStatus)(0), // 0: google.ads.googleads.v22.enums.DataLinkStatusEnum.DataLinkStatus + (*DataLinkStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.DataLinkStatusEnum } -var file_google_ads_googleads_v21_enums_data_link_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_data_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_data_link_status_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_data_link_status_proto_init() } -func file_google_ads_googleads_v21_enums_data_link_status_proto_init() { - if File_google_ads_googleads_v21_enums_data_link_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_data_link_status_proto_init() } +func file_google_ads_googleads_v22_enums_data_link_status_proto_init() { + if File_google_ads_googleads_v22_enums_data_link_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_link_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_link_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_data_link_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_data_link_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_data_link_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_data_link_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_data_link_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_data_link_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_data_link_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_data_link_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_data_link_status_proto = out.File - file_google_ads_googleads_v21_enums_data_link_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_data_link_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_data_link_status_proto = out.File + file_google_ads_googleads_v22_enums_data_link_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_data_link_status_proto_depIdxs = nil } diff --git a/enums/data_link_type.pb.go b/enums/data_link_type.pb.go index a0b7b2e7..d5c23897 100644 --- a/enums/data_link_type.pb.go +++ b/enums/data_link_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/data_link_type.proto +// source: google/ads/googleads/v22/enums/data_link_type.proto package enums @@ -72,11 +72,11 @@ func (x DataLinkTypeEnum_DataLinkType) String() string { } func (DataLinkTypeEnum_DataLinkType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_data_link_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_data_link_type_proto_enumTypes[0].Descriptor() } func (DataLinkTypeEnum_DataLinkType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_data_link_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_data_link_type_proto_enumTypes[0] } func (x DataLinkTypeEnum_DataLinkType) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x DataLinkTypeEnum_DataLinkType) Number() protoreflect.EnumNumber { // Deprecated: Use DataLinkTypeEnum_DataLinkType.Descriptor instead. func (DataLinkTypeEnum_DataLinkType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing different types of data links. @@ -97,7 +97,7 @@ type DataLinkTypeEnum struct { func (x *DataLinkTypeEnum) Reset() { *x = DataLinkTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_data_link_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_link_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *DataLinkTypeEnum) String() string { func (*DataLinkTypeEnum) ProtoMessage() {} func (x *DataLinkTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_data_link_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_data_link_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *DataLinkTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DataLinkTypeEnum.ProtoReflect.Descriptor instead. func (*DataLinkTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_data_link_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_data_link_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_data_link_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x4b, 0x0a, 0x10, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x37, 0x0a, 0x0c, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, @@ -140,41 +140,41 @@ var file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc = string([] 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x09, 0x0a, 0x05, 0x56, 0x49, 0x44, 0x45, 0x4f, 0x10, 0x02, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x44, 0x61, 0x74, 0x61, 0x4c, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_link_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_link_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_data_link_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_data_link_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_data_link_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_data_link_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_data_link_type_proto_goTypes = []any{ - (DataLinkTypeEnum_DataLinkType)(0), // 0: google.ads.googleads.v21.enums.DataLinkTypeEnum.DataLinkType - (*DataLinkTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.DataLinkTypeEnum +var file_google_ads_googleads_v22_enums_data_link_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_data_link_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_data_link_type_proto_goTypes = []any{ + (DataLinkTypeEnum_DataLinkType)(0), // 0: google.ads.googleads.v22.enums.DataLinkTypeEnum.DataLinkType + (*DataLinkTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.DataLinkTypeEnum } -var file_google_ads_googleads_v21_enums_data_link_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_data_link_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_enums_data_link_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_data_link_type_proto_init() } -func file_google_ads_googleads_v21_enums_data_link_type_proto_init() { - if File_google_ads_googleads_v21_enums_data_link_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_data_link_type_proto_init() } +func file_google_ads_googleads_v22_enums_data_link_type_proto_init() { + if File_google_ads_googleads_v22_enums_data_link_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_data_link_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_data_link_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_data_link_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_data_link_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_data_link_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_data_link_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_data_link_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_data_link_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_data_link_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_data_link_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_data_link_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_data_link_type_proto = out.File - file_google_ads_googleads_v21_enums_data_link_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_data_link_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_data_link_type_proto = out.File + file_google_ads_googleads_v22_enums_data_link_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_data_link_type_proto_depIdxs = nil } diff --git a/enums/day_of_week.pb.go b/enums/day_of_week.pb.go index bd449be7..cb0cc043 100644 --- a/enums/day_of_week.pb.go +++ b/enums/day_of_week.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/day_of_week.proto +// source: google/ads/googleads/v22/enums/day_of_week.proto package enums @@ -96,11 +96,11 @@ func (x DayOfWeekEnum_DayOfWeek) String() string { } func (DayOfWeekEnum_DayOfWeek) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_day_of_week_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_day_of_week_proto_enumTypes[0].Descriptor() } func (DayOfWeekEnum_DayOfWeek) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_day_of_week_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_day_of_week_proto_enumTypes[0] } func (x DayOfWeekEnum_DayOfWeek) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_day_of_week_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_day_of_week_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_day_of_week_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *DayOfWeekEnum) String() string { func (*DayOfWeekEnum) ProtoMessage() {} func (x *DayOfWeekEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_day_of_week_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_day_of_week_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,17 +146,17 @@ func (x *DayOfWeekEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DayOfWeekEnum.ProtoReflect.Descriptor instead. func (*DayOfWeekEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_day_of_week_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_day_of_week_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_day_of_week_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -168,41 +168,41 @@ var file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc), len(file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_day_of_week_proto_rawDesc), len(file_google_ads_googleads_v22_enums_day_of_week_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_day_of_week_proto_rawDescData + return file_google_ads_googleads_v22_enums_day_of_week_proto_rawDescData } -var file_google_ads_googleads_v21_enums_day_of_week_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_day_of_week_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_day_of_week_proto_goTypes = []any{ - (DayOfWeekEnum_DayOfWeek)(0), // 0: google.ads.googleads.v21.enums.DayOfWeekEnum.DayOfWeek - (*DayOfWeekEnum)(nil), // 1: google.ads.googleads.v21.enums.DayOfWeekEnum +var file_google_ads_googleads_v22_enums_day_of_week_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_day_of_week_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_day_of_week_proto_goTypes = []any{ + (DayOfWeekEnum_DayOfWeek)(0), // 0: google.ads.googleads.v22.enums.DayOfWeekEnum.DayOfWeek + (*DayOfWeekEnum)(nil), // 1: google.ads.googleads.v22.enums.DayOfWeekEnum } -var file_google_ads_googleads_v21_enums_day_of_week_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_day_of_week_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_day_of_week_proto_init() } -func file_google_ads_googleads_v21_enums_day_of_week_proto_init() { - if File_google_ads_googleads_v21_enums_day_of_week_proto != nil { +func init() { file_google_ads_googleads_v22_enums_day_of_week_proto_init() } +func file_google_ads_googleads_v22_enums_day_of_week_proto_init() { + if File_google_ads_googleads_v22_enums_day_of_week_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc), len(file_google_ads_googleads_v21_enums_day_of_week_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_day_of_week_proto_rawDesc), len(file_google_ads_googleads_v22_enums_day_of_week_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_day_of_week_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_day_of_week_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_day_of_week_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_day_of_week_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_day_of_week_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_day_of_week_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_day_of_week_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_day_of_week_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_day_of_week_proto = out.File - file_google_ads_googleads_v21_enums_day_of_week_proto_goTypes = nil - file_google_ads_googleads_v21_enums_day_of_week_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_day_of_week_proto = out.File + file_google_ads_googleads_v22_enums_day_of_week_proto_goTypes = nil + file_google_ads_googleads_v22_enums_day_of_week_proto_depIdxs = nil } diff --git a/enums/demand_gen_channel_config.pb.go b/enums/demand_gen_channel_config.pb.go index 71f1dd73..dd166b2e 100644 --- a/enums/demand_gen_channel_config.pb.go +++ b/enums/demand_gen_channel_config.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/demand_gen_channel_config.proto +// source: google/ads/googleads/v22/enums/demand_gen_channel_config.proto package enums @@ -80,11 +80,11 @@ func (x DemandGenChannelConfigEnum_DemandGenChannelConfig) String() string { } func (DemandGenChannelConfigEnum_DemandGenChannelConfig) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_enumTypes[0].Descriptor() } func (DemandGenChannelConfigEnum_DemandGenChannelConfig) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_enumTypes[0] } func (x DemandGenChannelConfigEnum_DemandGenChannelConfig) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x DemandGenChannelConfigEnum_DemandGenChannelConfig) Number() protoreflect // Deprecated: Use DemandGenChannelConfigEnum_DemandGenChannelConfig.Descriptor instead. func (DemandGenChannelConfigEnum_DemandGenChannelConfig) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescGZIP(), []int{0, 0} } // Container for the channel config enum. @@ -105,7 +105,7 @@ type DemandGenChannelConfigEnum struct { func (x *DemandGenChannelConfigEnum) Reset() { *x = DemandGenChannelConfigEnum{} - mi := &file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *DemandGenChannelConfigEnum) String() string { func (*DemandGenChannelConfigEnum) ProtoMessage() {} func (x *DemandGenChannelConfigEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *DemandGenChannelConfigEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenChannelConfigEnum.ProtoReflect.Descriptor instead. func (*DemandGenChannelConfigEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_demand_gen_channel_config_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_demand_gen_channel_config_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x1a, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x63, 0x0a, 0x16, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc 0x11, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x45, 0x44, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x53, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x44, 0x65, 0x6d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc), len(file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDesc), len(file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDescData + return file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDescData } -var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_goTypes = []any{ - (DemandGenChannelConfigEnum_DemandGenChannelConfig)(0), // 0: google.ads.googleads.v21.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig - (*DemandGenChannelConfigEnum)(nil), // 1: google.ads.googleads.v21.enums.DemandGenChannelConfigEnum +var file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_goTypes = []any{ + (DemandGenChannelConfigEnum_DemandGenChannelConfig)(0), // 0: google.ads.googleads.v22.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig + (*DemandGenChannelConfigEnum)(nil), // 1: google.ads.googleads.v22.enums.DemandGenChannelConfigEnum } -var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +195,27 @@ var file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_init() } -func file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_init() { - if File_google_ads_googleads_v21_enums_demand_gen_channel_config_proto != nil { +func init() { file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_init() } +func file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_init() { + if File_google_ads_googleads_v22_enums_demand_gen_channel_config_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc), len(file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDesc), len(file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_demand_gen_channel_config_proto = out.File - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_goTypes = nil - file_google_ads_googleads_v21_enums_demand_gen_channel_config_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_demand_gen_channel_config_proto = out.File + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_goTypes = nil + file_google_ads_googleads_v22_enums_demand_gen_channel_config_proto_depIdxs = nil } diff --git a/enums/demand_gen_channel_strategy.pb.go b/enums/demand_gen_channel_strategy.pb.go index 68cebc7b..636e4c16 100644 --- a/enums/demand_gen_channel_strategy.pb.go +++ b/enums/demand_gen_channel_strategy.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/demand_gen_channel_strategy.proto +// source: google/ads/googleads/v22/enums/demand_gen_channel_strategy.proto package enums @@ -78,11 +78,11 @@ func (x DemandGenChannelStrategyEnum_DemandGenChannelStrategy) String() string { } func (DemandGenChannelStrategyEnum_DemandGenChannelStrategy) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_enumTypes[0].Descriptor() } func (DemandGenChannelStrategyEnum_DemandGenChannelStrategy) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_enumTypes[0] } func (x DemandGenChannelStrategyEnum_DemandGenChannelStrategy) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x DemandGenChannelStrategyEnum_DemandGenChannelStrategy) Number() protoref // Deprecated: Use DemandGenChannelStrategyEnum_DemandGenChannelStrategy.Descriptor instead. func (DemandGenChannelStrategyEnum_DemandGenChannelStrategy) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescGZIP(), []int{0, 0} } // Container for the channel strategy enum. @@ -103,7 +103,7 @@ type DemandGenChannelStrategyEnum struct { func (x *DemandGenChannelStrategyEnum) Reset() { *x = DemandGenChannelStrategyEnum{} - mi := &file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *DemandGenChannelStrategyEnum) String() string { func (*DemandGenChannelStrategyEnum) ProtoMessage() {} func (x *DemandGenChannelStrategyEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *DemandGenChannelStrategyEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DemandGenChannelStrategyEnum.ProtoReflect.Descriptor instead. func (*DemandGenChannelStrategyEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x1c, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x6f, 0x0a, 0x18, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDes 0x5f, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x45, 0x44, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x44, 0x65, 0x6d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDescData + return file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDescData } -var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_goTypes = []any{ - (DemandGenChannelStrategyEnum_DemandGenChannelStrategy)(0), // 0: google.ads.googleads.v21.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy - (*DemandGenChannelStrategyEnum)(nil), // 1: google.ads.googleads.v21.enums.DemandGenChannelStrategyEnum +var file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_goTypes = []any{ + (DemandGenChannelStrategyEnum_DemandGenChannelStrategy)(0), // 0: google.ads.googleads.v22.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy + (*DemandGenChannelStrategyEnum)(nil), // 1: google.ads.googleads.v22.enums.DemandGenChannelStrategyEnum } -var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +194,27 @@ var file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_init() } -func file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_init() { - if File_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto != nil { +func init() { file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_init() } +func file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_init() { + if File_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto = out.File - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_goTypes = nil - file_google_ads_googleads_v21_enums_demand_gen_channel_strategy_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto = out.File + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_goTypes = nil + file_google_ads_googleads_v22_enums_demand_gen_channel_strategy_proto_depIdxs = nil } diff --git a/enums/device.pb.go b/enums/device.pb.go index 07dd4362..c51409fb 100644 --- a/enums/device.pb.go +++ b/enums/device.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/device.proto +// source: google/ads/googleads/v22/enums/device.proto package enums @@ -88,11 +88,11 @@ func (x DeviceEnum_Device) String() string { } func (DeviceEnum_Device) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_device_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_device_proto_enumTypes[0].Descriptor() } func (DeviceEnum_Device) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_device_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_device_proto_enumTypes[0] } func (x DeviceEnum_Device) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_device_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_device_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_device_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *DeviceEnum) String() string { func (*DeviceEnum) ProtoMessage() {} func (x *DeviceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_device_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_device_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,17 +138,17 @@ func (x *DeviceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DeviceEnum.ProtoReflect.Descriptor instead. func (*DeviceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_device_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_device_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_device_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_device_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_device_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_device_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x76, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,41 +158,41 @@ var file_google_ads_googleads_v21_enums_device_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0b, 0x44, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_device_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_device_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_device_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_device_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_device_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_device_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_device_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_device_proto_rawDesc), len(file_google_ads_googleads_v21_enums_device_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_device_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_device_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_device_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_device_proto_rawDesc), len(file_google_ads_googleads_v22_enums_device_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_device_proto_rawDescData + return file_google_ads_googleads_v22_enums_device_proto_rawDescData } -var file_google_ads_googleads_v21_enums_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_device_proto_goTypes = []any{ - (DeviceEnum_Device)(0), // 0: google.ads.googleads.v21.enums.DeviceEnum.Device - (*DeviceEnum)(nil), // 1: google.ads.googleads.v21.enums.DeviceEnum +var file_google_ads_googleads_v22_enums_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_device_proto_goTypes = []any{ + (DeviceEnum_Device)(0), // 0: google.ads.googleads.v22.enums.DeviceEnum.Device + (*DeviceEnum)(nil), // 1: google.ads.googleads.v22.enums.DeviceEnum } -var file_google_ads_googleads_v21_enums_device_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_device_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_device_proto_init() } -func file_google_ads_googleads_v21_enums_device_proto_init() { - if File_google_ads_googleads_v21_enums_device_proto != nil { +func init() { file_google_ads_googleads_v22_enums_device_proto_init() } +func file_google_ads_googleads_v22_enums_device_proto_init() { + if File_google_ads_googleads_v22_enums_device_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_device_proto_rawDesc), len(file_google_ads_googleads_v21_enums_device_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_device_proto_rawDesc), len(file_google_ads_googleads_v22_enums_device_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_device_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_device_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_device_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_device_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_device_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_device_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_device_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_device_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_device_proto = out.File - file_google_ads_googleads_v21_enums_device_proto_goTypes = nil - file_google_ads_googleads_v21_enums_device_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_device_proto = out.File + file_google_ads_googleads_v22_enums_device_proto_goTypes = nil + file_google_ads_googleads_v22_enums_device_proto_depIdxs = nil } diff --git a/enums/display_ad_format_setting.pb.go b/enums/display_ad_format_setting.pb.go index a15f5d63..9c692f28 100644 --- a/enums/display_ad_format_setting.pb.go +++ b/enums/display_ad_format_setting.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/display_ad_format_setting.proto +// source: google/ads/googleads/v22/enums/display_ad_format_setting.proto package enums @@ -81,11 +81,11 @@ func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) String() string { } func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_enumTypes[0].Descriptor() } func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_enumTypes[0] } func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x DisplayAdFormatSettingEnum_DisplayAdFormatSetting) Number() protoreflect // Deprecated: Use DisplayAdFormatSettingEnum_DisplayAdFormatSetting.Descriptor instead. func (DisplayAdFormatSettingEnum_DisplayAdFormatSetting) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *DisplayAdFormatSettingEnum) String() string { func (*DisplayAdFormatSettingEnum) ProtoMessage() {} func (x *DisplayAdFormatSettingEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *DisplayAdFormatSettingEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayAdFormatSettingEnum.ProtoReflect.Descriptor instead. func (*DisplayAdFormatSettingEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_display_ad_format_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_display_ad_format_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x44, 0x69, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDesc), len(file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDesc), len(file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDescData + return file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDescData } -var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_goTypes = []any{ - (DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 0: google.ads.googleads.v21.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting - (*DisplayAdFormatSettingEnum)(nil), // 1: google.ads.googleads.v21.enums.DisplayAdFormatSettingEnum +var file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_goTypes = []any{ + (DisplayAdFormatSettingEnum_DisplayAdFormatSetting)(0), // 0: google.ads.googleads.v22.enums.DisplayAdFormatSettingEnum.DisplayAdFormatSetting + (*DisplayAdFormatSettingEnum)(nil), // 1: google.ads.googleads.v22.enums.DisplayAdFormatSettingEnum } -var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_init() } -func file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_init() { - if File_google_ads_googleads_v21_enums_display_ad_format_setting_proto != nil { +func init() { file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_init() } +func file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_init() { + if File_google_ads_googleads_v22_enums_display_ad_format_setting_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDesc), len(file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDesc), len(file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_display_ad_format_setting_proto = out.File - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_goTypes = nil - file_google_ads_googleads_v21_enums_display_ad_format_setting_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_display_ad_format_setting_proto = out.File + file_google_ads_googleads_v22_enums_display_ad_format_setting_proto_goTypes = nil + file_google_ads_googleads_v22_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 15f9aac9..68c250be 100644 --- a/enums/display_upload_product_type.pb.go +++ b/enums/display_upload_product_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/display_upload_product_type.proto +// source: google/ads/googleads/v22/enums/display_upload_product_type.proto package enums @@ -127,11 +127,11 @@ func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) String() string { } func (DisplayUploadProductTypeEnum_DisplayUploadProductType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_display_upload_product_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_display_upload_product_type_proto_enumTypes[0].Descriptor() } func (DisplayUploadProductTypeEnum_DisplayUploadProductType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_display_upload_product_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_display_upload_product_type_proto_enumTypes[0] } func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) Number() protoreflect.EnumNumber { @@ -140,7 +140,7 @@ func (x DisplayUploadProductTypeEnum_DisplayUploadProductType) Number() protoref // Deprecated: Use DisplayUploadProductTypeEnum_DisplayUploadProductType.Descriptor instead. func (DisplayUploadProductTypeEnum_DisplayUploadProductType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_display_upload_product_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_display_upload_product_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *DisplayUploadProductTypeEnum) String() string { func (*DisplayUploadProductTypeEnum) ProtoMessage() {} func (x *DisplayUploadProductTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_display_upload_product_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_display_upload_product_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,18 +181,18 @@ func (x *DisplayUploadProductTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayUploadProductTypeEnum.ProtoReflect.Descriptor instead. func (*DisplayUploadProductTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_display_upload_product_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_display_upload_product_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -219,42 +219,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_goTypes = []any{ - (DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 0: google.ads.googleads.v21.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType - (*DisplayUploadProductTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.DisplayUploadProductTypeEnum +var file_google_ads_googleads_v22_enums_display_upload_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_display_upload_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_display_upload_product_type_proto_goTypes = []any{ + (DisplayUploadProductTypeEnum_DisplayUploadProductType)(0), // 0: google.ads.googleads.v22.enums.DisplayUploadProductTypeEnum.DisplayUploadProductType + (*DisplayUploadProductTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.DisplayUploadProductTypeEnum } -var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -262,27 +262,27 @@ var file_google_ads_googleads_v21_enums_display_upload_product_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_display_upload_product_type_proto_init() } -func file_google_ads_googleads_v21_enums_display_upload_product_type_proto_init() { - if File_google_ads_googleads_v21_enums_display_upload_product_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_display_upload_product_type_proto_init() } +func file_google_ads_googleads_v22_enums_display_upload_product_type_proto_init() { + if File_google_ads_googleads_v22_enums_display_upload_product_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_display_upload_product_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_display_upload_product_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_display_upload_product_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_display_upload_product_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_display_upload_product_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_display_upload_product_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_display_upload_product_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_display_upload_product_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_display_upload_product_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_display_upload_product_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_display_upload_product_type_proto = out.File - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_display_upload_product_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_display_upload_product_type_proto = out.File + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_display_upload_product_type_proto_depIdxs = nil } diff --git a/enums/distance_bucket.pb.go b/enums/distance_bucket.pb.go index 15f55bea..f1897559 100644 --- a/enums/distance_bucket.pb.go +++ b/enums/distance_bucket.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/distance_bucket.proto +// source: google/ads/googleads/v22/enums/distance_bucket.proto package enums @@ -177,11 +177,11 @@ func (x DistanceBucketEnum_DistanceBucket) String() string { } func (DistanceBucketEnum_DistanceBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_distance_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_distance_bucket_proto_enumTypes[0].Descriptor() } func (DistanceBucketEnum_DistanceBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_distance_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_distance_bucket_proto_enumTypes[0] } func (x DistanceBucketEnum_DistanceBucket) Number() protoreflect.EnumNumber { @@ -190,7 +190,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_v21_enums_distance_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_distance_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_distance_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +215,7 @@ func (x *DistanceBucketEnum) String() string { func (*DistanceBucketEnum) ProtoMessage() {} func (x *DistanceBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_distance_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_distance_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -228,17 +228,17 @@ func (x *DistanceBucketEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DistanceBucketEnum.ProtoReflect.Descriptor instead. func (*DistanceBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_distance_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_distance_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -276,41 +276,41 @@ var file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x44, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_distance_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_distance_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_distance_bucket_proto_goTypes = []any{ - (DistanceBucketEnum_DistanceBucket)(0), // 0: google.ads.googleads.v21.enums.DistanceBucketEnum.DistanceBucket - (*DistanceBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.DistanceBucketEnum +var file_google_ads_googleads_v22_enums_distance_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_distance_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_distance_bucket_proto_goTypes = []any{ + (DistanceBucketEnum_DistanceBucket)(0), // 0: google.ads.googleads.v22.enums.DistanceBucketEnum.DistanceBucket + (*DistanceBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.DistanceBucketEnum } -var file_google_ads_googleads_v21_enums_distance_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -318,27 +318,27 @@ var file_google_ads_googleads_v21_enums_distance_bucket_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_distance_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_distance_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_distance_bucket_proto != nil { +func init() { file_google_ads_googleads_v22_enums_distance_bucket_proto_init() } +func file_google_ads_googleads_v22_enums_distance_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_distance_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_distance_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_distance_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_distance_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_distance_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_distance_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_distance_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_distance_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_distance_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_distance_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_distance_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_distance_bucket_proto = out.File - file_google_ads_googleads_v21_enums_distance_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_distance_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_distance_bucket_proto = out.File + file_google_ads_googleads_v22_enums_distance_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_enums_distance_bucket_proto_depIdxs = nil } diff --git a/enums/eu_political_advertising_status.pb.go b/enums/eu_political_advertising_status.pb.go index 6d6ed7c7..f3977d05 100644 --- a/enums/eu_political_advertising_status.pb.go +++ b/enums/eu_political_advertising_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/eu_political_advertising_status.proto +// source: google/ads/googleads/v22/enums/eu_political_advertising_status.proto package enums @@ -79,11 +79,11 @@ func (x EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) String() } func (EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_enumTypes[0].Descriptor() } func (EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_enumTypes[0] } func (x EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) Number() protoreflect.EnumNumber { @@ -92,7 +92,7 @@ func (x EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) Number() // Deprecated: Use EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus.Descriptor instead. func (EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing whether or not the campaign contains political @@ -105,7 +105,7 @@ type EuPoliticalAdvertisingStatusEnum struct { func (x *EuPoliticalAdvertisingStatusEnum) Reset() { *x = EuPoliticalAdvertisingStatusEnum{} - mi := &file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *EuPoliticalAdvertisingStatusEnum) String() string { func (*EuPoliticalAdvertisingStatusEnum) ProtoMessage() {} func (x *EuPoliticalAdvertisingStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *EuPoliticalAdvertisingStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use EuPoliticalAdvertisingStatusEnum.ProtoReflect.Descriptor instead. func (*EuPoliticalAdvertisingStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_eu_political_advertising_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_eu_political_advertising_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x75, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb7, 0x01, 0x0a, 0x20, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x92, 0x01, 0x0a, 0x1c, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_ra 0x41, 0x4c, 0x5f, 0x41, 0x44, 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_goTypes = []any{ - (EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus)(0), // 0: google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus - (*EuPoliticalAdvertisingStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum +var file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_goTypes = []any{ + (EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus)(0), // 0: google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus + (*EuPoliticalAdvertisingStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum } -var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_eu_political_advertising_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,27 +199,27 @@ var file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_init() } -func file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_init() { - if File_google_ads_googleads_v21_enums_eu_political_advertising_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_init() } +func file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_init() { + if File_google_ads_googleads_v22_enums_eu_political_advertising_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_eu_political_advertising_status_proto = out.File - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_eu_political_advertising_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_eu_political_advertising_status_proto = out.File + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_eu_political_advertising_status_proto_depIdxs = nil } diff --git a/enums/experiment_metric.pb.go b/enums/experiment_metric.pb.go index 01e982cf..ee8fbc3e 100644 --- a/enums/experiment_metric.pb.go +++ b/enums/experiment_metric.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/experiment_metric.proto +// source: google/ads/googleads/v22/enums/experiment_metric.proto package enums @@ -120,11 +120,11 @@ func (x ExperimentMetricEnum_ExperimentMetric) String() string { } func (ExperimentMetricEnum_ExperimentMetric) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_experiment_metric_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_experiment_metric_proto_enumTypes[0].Descriptor() } func (ExperimentMetricEnum_ExperimentMetric) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_experiment_metric_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_experiment_metric_proto_enumTypes[0] } func (x ExperimentMetricEnum_ExperimentMetric) Number() protoreflect.EnumNumber { @@ -133,7 +133,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_v21_enums_experiment_metric_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_experiment_metric_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_metric_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *ExperimentMetricEnum) String() string { func (*ExperimentMetricEnum) ProtoMessage() {} func (x *ExperimentMetricEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_experiment_metric_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_metric_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,18 +170,18 @@ func (x *ExperimentMetricEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentMetricEnum.ProtoReflect.Descriptor instead. func (*ExperimentMetricEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_experiment_metric_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_experiment_metric_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdf, 0x02, 0x0a, 0x14, 0x45, 0x78, 0x70, + 0x32, 0x32, 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, @@ -205,42 +205,42 @@ var file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDescData + return file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDescData } -var file_google_ads_googleads_v21_enums_experiment_metric_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_metric_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_metric_proto_goTypes = []any{ - (ExperimentMetricEnum_ExperimentMetric)(0), // 0: google.ads.googleads.v21.enums.ExperimentMetricEnum.ExperimentMetric - (*ExperimentMetricEnum)(nil), // 1: google.ads.googleads.v21.enums.ExperimentMetricEnum +var file_google_ads_googleads_v22_enums_experiment_metric_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_metric_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_metric_proto_goTypes = []any{ + (ExperimentMetricEnum_ExperimentMetric)(0), // 0: google.ads.googleads.v22.enums.ExperimentMetricEnum.ExperimentMetric + (*ExperimentMetricEnum)(nil), // 1: google.ads.googleads.v22.enums.ExperimentMetricEnum } -var file_google_ads_googleads_v21_enums_experiment_metric_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -248,27 +248,27 @@ var file_google_ads_googleads_v21_enums_experiment_metric_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_experiment_metric_proto_init() } -func file_google_ads_googleads_v21_enums_experiment_metric_proto_init() { - if File_google_ads_googleads_v21_enums_experiment_metric_proto != nil { +func init() { file_google_ads_googleads_v22_enums_experiment_metric_proto_init() } +func file_google_ads_googleads_v22_enums_experiment_metric_proto_init() { + if File_google_ads_googleads_v22_enums_experiment_metric_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_metric_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_metric_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_experiment_metric_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_experiment_metric_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_experiment_metric_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_experiment_metric_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_experiment_metric_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_experiment_metric_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_experiment_metric_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_experiment_metric_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_experiment_metric_proto = out.File - file_google_ads_googleads_v21_enums_experiment_metric_proto_goTypes = nil - file_google_ads_googleads_v21_enums_experiment_metric_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_experiment_metric_proto = out.File + file_google_ads_googleads_v22_enums_experiment_metric_proto_goTypes = nil + file_google_ads_googleads_v22_enums_experiment_metric_proto_depIdxs = nil } diff --git a/enums/experiment_metric_direction.pb.go b/enums/experiment_metric_direction.pb.go index 5c4ae02f..b985669f 100644 --- a/enums/experiment_metric_direction.pb.go +++ b/enums/experiment_metric_direction.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/experiment_metric_direction.proto +// source: google/ads/googleads/v22/enums/experiment_metric_direction.proto package enums @@ -90,11 +90,11 @@ func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) String() string } func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_enumTypes[0].Descriptor() } func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_enumTypes[0] } func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) Number() protoreflect.EnumNumber { @@ -103,7 +103,7 @@ func (x ExperimentMetricDirectionEnum_ExperimentMetricDirection) Number() protor // Deprecated: Use ExperimentMetricDirectionEnum_ExperimentMetricDirection.Descriptor instead. func (ExperimentMetricDirectionEnum_ExperimentMetricDirection) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *ExperimentMetricDirectionEnum) String() string { func (*ExperimentMetricDirectionEnum) ProtoMessage() {} func (x *ExperimentMetricDirectionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *ExperimentMetricDirectionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentMetricDirectionEnum.ProtoReflect.Descriptor instead. func (*ExperimentMetricDirectionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_experiment_metric_direction_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_experiment_metric_direction_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -166,42 +166,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDescData + return file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDescData } -var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_goTypes = []any{ - (ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 0: google.ads.googleads.v21.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection - (*ExperimentMetricDirectionEnum)(nil), // 1: google.ads.googleads.v21.enums.ExperimentMetricDirectionEnum +var file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_goTypes = []any{ + (ExperimentMetricDirectionEnum_ExperimentMetricDirection)(0), // 0: google.ads.googleads.v22.enums.ExperimentMetricDirectionEnum.ExperimentMetricDirection + (*ExperimentMetricDirectionEnum)(nil), // 1: google.ads.googleads.v22.enums.ExperimentMetricDirectionEnum } -var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_init() } -func file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_init() { - if File_google_ads_googleads_v21_enums_experiment_metric_direction_proto != nil { +func init() { file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_init() } +func file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_init() { + if File_google_ads_googleads_v22_enums_experiment_metric_direction_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_experiment_metric_direction_proto = out.File - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_goTypes = nil - file_google_ads_googleads_v21_enums_experiment_metric_direction_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_experiment_metric_direction_proto = out.File + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_goTypes = nil + file_google_ads_googleads_v22_enums_experiment_metric_direction_proto_depIdxs = nil } diff --git a/enums/experiment_status.pb.go b/enums/experiment_status.pb.go index 43b5d547..8520e449 100644 --- a/enums/experiment_status.pb.go +++ b/enums/experiment_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/experiment_status.proto +// source: google/ads/googleads/v22/enums/experiment_status.proto package enums @@ -98,11 +98,11 @@ func (x ExperimentStatusEnum_ExperimentStatus) String() string { } func (ExperimentStatusEnum_ExperimentStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_experiment_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_experiment_status_proto_enumTypes[0].Descriptor() } func (ExperimentStatusEnum_ExperimentStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_experiment_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_experiment_status_proto_enumTypes[0] } func (x ExperimentStatusEnum_ExperimentStatus) Number() protoreflect.EnumNumber { @@ -111,7 +111,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_v21_enums_experiment_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_experiment_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *ExperimentStatusEnum) String() string { func (*ExperimentStatusEnum) ProtoMessage() {} func (x *ExperimentStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_experiment_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,18 +148,18 @@ func (x *ExperimentStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentStatusEnum.ProtoReflect.Descriptor instead. func (*ExperimentStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_experiment_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_experiment_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_experiment_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa6, 0x01, 0x0a, 0x14, 0x45, 0x78, 0x70, + 0x32, 0x32, 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, @@ -172,41 +172,41 @@ var file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc = string 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_experiment_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_experiment_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_experiment_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_status_proto_goTypes = []any{ - (ExperimentStatusEnum_ExperimentStatus)(0), // 0: google.ads.googleads.v21.enums.ExperimentStatusEnum.ExperimentStatus - (*ExperimentStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ExperimentStatusEnum +var file_google_ads_googleads_v22_enums_experiment_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_status_proto_goTypes = []any{ + (ExperimentStatusEnum_ExperimentStatus)(0), // 0: google.ads.googleads.v22.enums.ExperimentStatusEnum.ExperimentStatus + (*ExperimentStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ExperimentStatusEnum } -var file_google_ads_googleads_v21_enums_experiment_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -214,27 +214,27 @@ var file_google_ads_googleads_v21_enums_experiment_status_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_experiment_status_proto_init() } -func file_google_ads_googleads_v21_enums_experiment_status_proto_init() { - if File_google_ads_googleads_v21_enums_experiment_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_experiment_status_proto_init() } +func file_google_ads_googleads_v22_enums_experiment_status_proto_init() { + if File_google_ads_googleads_v22_enums_experiment_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_experiment_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_experiment_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_experiment_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_experiment_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_experiment_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_experiment_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_experiment_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_experiment_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_experiment_status_proto = out.File - file_google_ads_googleads_v21_enums_experiment_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_experiment_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_experiment_status_proto = out.File + file_google_ads_googleads_v22_enums_experiment_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_experiment_status_proto_depIdxs = nil } diff --git a/enums/experiment_type.pb.go b/enums/experiment_type.pb.go index 236247dd..b9e5a50e 100644 --- a/enums/experiment_type.pb.go +++ b/enums/experiment_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/experiment_type.proto +// source: google/ads/googleads/v22/enums/experiment_type.proto package enums @@ -108,11 +108,11 @@ func (x ExperimentTypeEnum_ExperimentType) String() string { } func (ExperimentTypeEnum_ExperimentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_experiment_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_experiment_type_proto_enumTypes[0].Descriptor() } func (ExperimentTypeEnum_ExperimentType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_experiment_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_experiment_type_proto_enumTypes[0] } func (x ExperimentTypeEnum_ExperimentType) Number() protoreflect.EnumNumber { @@ -121,7 +121,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_v21_enums_experiment_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_experiment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *ExperimentTypeEnum) String() string { func (*ExperimentTypeEnum) ProtoMessage() {} func (x *ExperimentTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_experiment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_experiment_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,17 +158,17 @@ func (x *ExperimentTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentTypeEnum.ProtoReflect.Descriptor instead. func (*ExperimentTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_experiment_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_experiment_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_experiment_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -192,41 +192,41 @@ var file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x45, 0x78, 0x70, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_experiment_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_experiment_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_experiment_type_proto_goTypes = []any{ - (ExperimentTypeEnum_ExperimentType)(0), // 0: google.ads.googleads.v21.enums.ExperimentTypeEnum.ExperimentType - (*ExperimentTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ExperimentTypeEnum +var file_google_ads_googleads_v22_enums_experiment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_experiment_type_proto_goTypes = []any{ + (ExperimentTypeEnum_ExperimentType)(0), // 0: google.ads.googleads.v22.enums.ExperimentTypeEnum.ExperimentType + (*ExperimentTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ExperimentTypeEnum } -var file_google_ads_googleads_v21_enums_experiment_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -234,27 +234,27 @@ var file_google_ads_googleads_v21_enums_experiment_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_experiment_type_proto_init() } -func file_google_ads_googleads_v21_enums_experiment_type_proto_init() { - if File_google_ads_googleads_v21_enums_experiment_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_experiment_type_proto_init() } +func file_google_ads_googleads_v22_enums_experiment_type_proto_init() { + if File_google_ads_googleads_v22_enums_experiment_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_experiment_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_experiment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_experiment_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_experiment_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_experiment_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_experiment_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_experiment_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_experiment_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_experiment_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_experiment_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_experiment_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_experiment_type_proto = out.File - file_google_ads_googleads_v21_enums_experiment_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_experiment_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_experiment_type_proto = out.File + file_google_ads_googleads_v22_enums_experiment_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_experiment_type_proto_depIdxs = nil } diff --git a/enums/external_conversion_source.pb.go b/enums/external_conversion_source.pb.go index 8a22fa30..df82e926 100644 --- a/enums/external_conversion_source.pb.go +++ b/enums/external_conversion_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/external_conversion_source.proto +// source: google/ads/googleads/v22/enums/external_conversion_source.proto package enums @@ -208,11 +208,11 @@ func (x ExternalConversionSourceEnum_ExternalConversionSource) String() string { } func (ExternalConversionSourceEnum_ExternalConversionSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_external_conversion_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_external_conversion_source_proto_enumTypes[0].Descriptor() } func (ExternalConversionSourceEnum_ExternalConversionSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_external_conversion_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_external_conversion_source_proto_enumTypes[0] } func (x ExternalConversionSourceEnum_ExternalConversionSource) Number() protoreflect.EnumNumber { @@ -221,7 +221,7 @@ func (x ExternalConversionSourceEnum_ExternalConversionSource) Number() protoref // Deprecated: Use ExternalConversionSourceEnum_ExternalConversionSource.Descriptor instead. func (ExternalConversionSourceEnum_ExternalConversionSource) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_external_conversion_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_external_conversion_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -246,7 +246,7 @@ func (x *ExternalConversionSourceEnum) String() string { func (*ExternalConversionSourceEnum) ProtoMessage() {} func (x *ExternalConversionSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_external_conversion_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_external_conversion_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -259,18 +259,18 @@ func (x *ExternalConversionSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalConversionSourceEnum.ProtoReflect.Descriptor instead. func (*ExternalConversionSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_external_conversion_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_external_conversion_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -316,42 +316,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x45, 0x78, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_external_conversion_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_external_conversion_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_external_conversion_source_proto_goTypes = []any{ - (ExternalConversionSourceEnum_ExternalConversionSource)(0), // 0: google.ads.googleads.v21.enums.ExternalConversionSourceEnum.ExternalConversionSource - (*ExternalConversionSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.ExternalConversionSourceEnum +var file_google_ads_googleads_v22_enums_external_conversion_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_external_conversion_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_external_conversion_source_proto_goTypes = []any{ + (ExternalConversionSourceEnum_ExternalConversionSource)(0), // 0: google.ads.googleads.v22.enums.ExternalConversionSourceEnum.ExternalConversionSource + (*ExternalConversionSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.ExternalConversionSourceEnum } -var file_google_ads_googleads_v21_enums_external_conversion_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -359,27 +359,27 @@ var file_google_ads_googleads_v21_enums_external_conversion_source_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_external_conversion_source_proto_init() } -func file_google_ads_googleads_v21_enums_external_conversion_source_proto_init() { - if File_google_ads_googleads_v21_enums_external_conversion_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_external_conversion_source_proto_init() } +func file_google_ads_googleads_v22_enums_external_conversion_source_proto_init() { + if File_google_ads_googleads_v22_enums_external_conversion_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_external_conversion_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_external_conversion_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_external_conversion_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_external_conversion_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_external_conversion_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_external_conversion_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_external_conversion_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_external_conversion_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_external_conversion_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_external_conversion_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_external_conversion_source_proto = out.File - file_google_ads_googleads_v21_enums_external_conversion_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_external_conversion_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_external_conversion_source_proto = out.File + file_google_ads_googleads_v22_enums_external_conversion_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_external_conversion_source_proto_depIdxs = nil } diff --git a/enums/fixed_cpm_goal.pb.go b/enums/fixed_cpm_goal.pb.go index eafadff9..4dc88b9d 100644 --- a/enums/fixed_cpm_goal.pb.go +++ b/enums/fixed_cpm_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/fixed_cpm_goal.proto +// source: google/ads/googleads/v22/enums/fixed_cpm_goal.proto package enums @@ -78,11 +78,11 @@ func (x FixedCpmGoalEnum_FixedCpmGoal) String() string { } func (FixedCpmGoalEnum_FixedCpmGoal) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_enumTypes[0].Descriptor() } func (FixedCpmGoalEnum_FixedCpmGoal) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_enumTypes[0] } func (x FixedCpmGoalEnum_FixedCpmGoal) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x FixedCpmGoalEnum_FixedCpmGoal) Number() protoreflect.EnumNumber { // Deprecated: Use FixedCpmGoalEnum_FixedCpmGoal.Descriptor instead. func (FixedCpmGoalEnum_FixedCpmGoal) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescGZIP(), []int{0, 0} } // Container for describing the goal of the Fixed CPM bidding strategy. @@ -103,7 +103,7 @@ type FixedCpmGoalEnum struct { func (x *FixedCpmGoalEnum) Reset() { *x = FixedCpmGoalEnum{} - mi := &file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *FixedCpmGoalEnum) String() string { func (*FixedCpmGoalEnum) ProtoMessage() {} func (x *FixedCpmGoalEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,17 +128,17 @@ func (x *FixedCpmGoalEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FixedCpmGoalEnum.ProtoReflect.Descriptor instead. func (*FixedCpmGoalEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_fixed_cpm_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_fixed_cpm_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x61, 0x0a, 0x10, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x4d, 0x0a, 0x0c, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x47, 0x6f, 0x61, 0x6c, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc = string([] 0x10, 0x02, 0x12, 0x14, 0x0a, 0x10, 0x54, 0x41, 0x52, 0x47, 0x45, 0x54, 0x5f, 0x46, 0x52, 0x45, 0x51, 0x55, 0x45, 0x4e, 0x43, 0x59, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x11, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDescData + return file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDescData } -var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_goTypes = []any{ - (FixedCpmGoalEnum_FixedCpmGoal)(0), // 0: google.ads.googleads.v21.enums.FixedCpmGoalEnum.FixedCpmGoal - (*FixedCpmGoalEnum)(nil), // 1: google.ads.googleads.v21.enums.FixedCpmGoalEnum +var file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_goTypes = []any{ + (FixedCpmGoalEnum_FixedCpmGoal)(0), // 0: google.ads.googleads.v22.enums.FixedCpmGoalEnum.FixedCpmGoal + (*FixedCpmGoalEnum)(nil), // 1: google.ads.googleads.v22.enums.FixedCpmGoalEnum } -var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_fixed_cpm_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_init() } -func file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_init() { - if File_google_ads_googleads_v21_enums_fixed_cpm_goal_proto != nil { +func init() { file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_init() } +func file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_init() { + if File_google_ads_googleads_v22_enums_fixed_cpm_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_fixed_cpm_goal_proto = out.File - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_goTypes = nil - file_google_ads_googleads_v21_enums_fixed_cpm_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_fixed_cpm_goal_proto = out.File + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_goTypes = nil + file_google_ads_googleads_v22_enums_fixed_cpm_goal_proto_depIdxs = nil } diff --git a/enums/fixed_cpm_target_frequency_time_unit.pb.go b/enums/fixed_cpm_target_frequency_time_unit.pb.go index 0c1db584..5ae822df 100644 --- a/enums/fixed_cpm_target_frequency_time_unit.pb.go +++ b/enums/fixed_cpm_target_frequency_time_unit.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/fixed_cpm_target_frequency_time_unit.proto +// source: google/ads/googleads/v22/enums/fixed_cpm_target_frequency_time_unit.proto package enums @@ -73,11 +73,11 @@ func (x FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) Str } func (FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes[0].Descriptor() } func (FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes[0] } func (x FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) Number() protoreflect.EnumNumber { @@ -86,7 +86,7 @@ func (x FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) Num // Deprecated: Use FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit.Descriptor instead. func (FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing bidding goal target frequency time units. @@ -98,7 +98,7 @@ type FixedCpmTargetFrequencyTimeUnitEnum struct { func (x *FixedCpmTargetFrequencyTimeUnitEnum) Reset() { *x = FixedCpmTargetFrequencyTimeUnitEnum{} - mi := &file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *FixedCpmTargetFrequencyTimeUnitEnum) String() string { func (*FixedCpmTargetFrequencyTimeUnitEnum) ProtoMessage() {} func (x *FixedCpmTargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,19 +123,19 @@ func (x *FixedCpmTargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use FixedCpmTargetFrequencyTimeUnitEnum.ProtoReflect.Descriptor instead. func (*FixedCpmTargetFrequencyTimeUnitEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x23, 0x46, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x23, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 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, 0x4c, 0x0a, 0x1f, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x54, 0x61, @@ -145,42 +145,42 @@ var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_pro 0x4e, 0x10, 0x01, 0x12, 0x0b, 0x0a, 0x07, 0x4d, 0x4f, 0x4e, 0x54, 0x48, 0x4c, 0x59, 0x10, 0x02, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData + return file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDescData } -var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes = []any{ - (FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v21.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit - (*FixedCpmTargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v21.enums.FixedCpmTargetFrequencyTimeUnitEnum +var file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes = []any{ + (FixedCpmTargetFrequencyTimeUnitEnum_FixedCpmTargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v22.enums.FixedCpmTargetFrequencyTimeUnitEnum.FixedCpmTargetFrequencyTimeUnit + (*FixedCpmTargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v22.enums.FixedCpmTargetFrequencyTimeUnitEnum } -var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_fixed_cpm_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_init() } -func file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_init() { - if File_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto != nil { +func init() { file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_init() } +func file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_init() { + if File_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto = out.File - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes = nil - file_google_ads_googleads_v21_enums_fixed_cpm_target_frequency_time_unit_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto = out.File + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_goTypes = nil + file_google_ads_googleads_v22_enums_fixed_cpm_target_frequency_time_unit_proto_depIdxs = nil } diff --git a/enums/frequency_cap_event_type.pb.go b/enums/frequency_cap_event_type.pb.go index a9269729..b3adf187 100644 --- a/enums/frequency_cap_event_type.pb.go +++ b/enums/frequency_cap_event_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/frequency_cap_event_type.proto +// source: google/ads/googleads/v22/enums/frequency_cap_event_type.proto package enums @@ -76,11 +76,11 @@ func (x FrequencyCapEventTypeEnum_FrequencyCapEventType) String() string { } func (FrequencyCapEventTypeEnum_FrequencyCapEventType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_enumTypes[0].Descriptor() } func (FrequencyCapEventTypeEnum_FrequencyCapEventType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_enumTypes[0] } func (x FrequencyCapEventTypeEnum_FrequencyCapEventType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *FrequencyCapEventTypeEnum) String() string { func (*FrequencyCapEventTypeEnum) ProtoMessage() {} func (x *FrequencyCapEventTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *FrequencyCapEventTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCapEventTypeEnum.ProtoReflect.Descriptor instead. func (*FrequencyCapEventTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_frequency_cap_event_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_frequency_cap_event_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x46, 0x72, 0x65, 0x71, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_goTypes = []any{ - (FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 0: google.ads.googleads.v21.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType - (*FrequencyCapEventTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.FrequencyCapEventTypeEnum +var file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_goTypes = []any{ + (FrequencyCapEventTypeEnum_FrequencyCapEventType)(0), // 0: google.ads.googleads.v22.enums.FrequencyCapEventTypeEnum.FrequencyCapEventType + (*FrequencyCapEventTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.FrequencyCapEventTypeEnum } -var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_init() } -func file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_init() { - if File_google_ads_googleads_v21_enums_frequency_cap_event_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_init() } +func file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_init() { + if File_google_ads_googleads_v22_enums_frequency_cap_event_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_frequency_cap_event_type_proto = out.File - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_frequency_cap_event_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_frequency_cap_event_type_proto = out.File + file_google_ads_googleads_v22_enums_frequency_cap_event_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 e9a946df..b9d0b76e 100644 --- a/enums/frequency_cap_level.pb.go +++ b/enums/frequency_cap_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/frequency_cap_level.proto +// source: google/ads/googleads/v22/enums/frequency_cap_level.proto package enums @@ -81,11 +81,11 @@ func (x FrequencyCapLevelEnum_FrequencyCapLevel) String() string { } func (FrequencyCapLevelEnum_FrequencyCapLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_frequency_cap_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_frequency_cap_level_proto_enumTypes[0].Descriptor() } func (FrequencyCapLevelEnum_FrequencyCapLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_frequency_cap_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_frequency_cap_level_proto_enumTypes[0] } func (x FrequencyCapLevelEnum_FrequencyCapLevel) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_frequency_cap_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *FrequencyCapLevelEnum) String() string { func (*FrequencyCapLevelEnum) ProtoMessage() {} func (x *FrequencyCapLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_frequency_cap_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *FrequencyCapLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCapLevelEnum.ProtoReflect.Descriptor instead. func (*FrequencyCapLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_frequency_cap_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_frequency_cap_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x15, 0x46, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,41 +152,41 @@ var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x46, 0x72, 0x65, 0x71, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_goTypes = []any{ - (FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 0: google.ads.googleads.v21.enums.FrequencyCapLevelEnum.FrequencyCapLevel - (*FrequencyCapLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.FrequencyCapLevelEnum +var file_google_ads_googleads_v22_enums_frequency_cap_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_level_proto_goTypes = []any{ + (FrequencyCapLevelEnum_FrequencyCapLevel)(0), // 0: google.ads.googleads.v22.enums.FrequencyCapLevelEnum.FrequencyCapLevel + (*FrequencyCapLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.FrequencyCapLevelEnum } -var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_frequency_cap_level_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_frequency_cap_level_proto_init() } -func file_google_ads_googleads_v21_enums_frequency_cap_level_proto_init() { - if File_google_ads_googleads_v21_enums_frequency_cap_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_frequency_cap_level_proto_init() } +func file_google_ads_googleads_v22_enums_frequency_cap_level_proto_init() { + if File_google_ads_googleads_v22_enums_frequency_cap_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_frequency_cap_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_frequency_cap_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_frequency_cap_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_frequency_cap_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_frequency_cap_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_frequency_cap_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_frequency_cap_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_frequency_cap_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_frequency_cap_level_proto = out.File - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_frequency_cap_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_frequency_cap_level_proto = out.File + file_google_ads_googleads_v22_enums_frequency_cap_level_proto_goTypes = nil + file_google_ads_googleads_v22_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 65e8424f..f11c109c 100644 --- a/enums/frequency_cap_time_unit.pb.go +++ b/enums/frequency_cap_time_unit.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/frequency_cap_time_unit.proto +// source: google/ads/googleads/v22/enums/frequency_cap_time_unit.proto package enums @@ -80,11 +80,11 @@ func (x FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) String() string { } func (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_enumTypes[0].Descriptor() } func (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_enumTypes[0] } func (x FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *FrequencyCapTimeUnitEnum) String() string { func (*FrequencyCapTimeUnitEnum) ProtoMessage() {} func (x *FrequencyCapTimeUnitEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *FrequencyCapTimeUnitEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCapTimeUnitEnum.ProtoReflect.Descriptor instead. func (*FrequencyCapTimeUnitEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDescData + return file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDescData } -var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_goTypes = []any{ - (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 0: google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit - (*FrequencyCapTimeUnitEnum)(nil), // 1: google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum +var file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_goTypes = []any{ + (FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 0: google.ads.googleads.v22.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit + (*FrequencyCapTimeUnitEnum)(nil), // 1: google.ads.googleads.v22.enums.FrequencyCapTimeUnitEnum } -var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_init() } -func file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_init() { - if File_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto != nil { +func init() { file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_init() } +func file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_init() { + if File_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto = out.File - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_goTypes = nil - file_google_ads_googleads_v21_enums_frequency_cap_time_unit_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto = out.File + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_goTypes = nil + file_google_ads_googleads_v22_enums_frequency_cap_time_unit_proto_depIdxs = nil } diff --git a/enums/gender_type.pb.go b/enums/gender_type.pb.go index 28c13c2b..8c93ffe6 100644 --- a/enums/gender_type.pb.go +++ b/enums/gender_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/gender_type.proto +// source: google/ads/googleads/v22/enums/gender_type.proto package enums @@ -80,11 +80,11 @@ func (x GenderTypeEnum_GenderType) String() string { } func (GenderTypeEnum_GenderType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_gender_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_gender_type_proto_enumTypes[0].Descriptor() } func (GenderTypeEnum_GenderType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_gender_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_gender_type_proto_enumTypes[0] } func (x GenderTypeEnum_GenderType) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_gender_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_gender_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_gender_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *GenderTypeEnum) String() string { func (*GenderTypeEnum) ProtoMessage() {} func (x *GenderTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_gender_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_gender_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,17 +130,17 @@ func (x *GenderTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GenderTypeEnum.ProtoReflect.Descriptor instead. func (*GenderTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_gender_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_gender_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_gender_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_gender_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_gender_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,41 +149,41 @@ var file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_gender_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_gender_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_gender_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_gender_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_gender_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_gender_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_gender_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_gender_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_gender_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_gender_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_gender_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_gender_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_gender_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_gender_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_gender_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_gender_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_gender_type_proto_goTypes = []any{ - (GenderTypeEnum_GenderType)(0), // 0: google.ads.googleads.v21.enums.GenderTypeEnum.GenderType - (*GenderTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.GenderTypeEnum +var file_google_ads_googleads_v22_enums_gender_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_gender_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_gender_type_proto_goTypes = []any{ + (GenderTypeEnum_GenderType)(0), // 0: google.ads.googleads.v22.enums.GenderTypeEnum.GenderType + (*GenderTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.GenderTypeEnum } -var file_google_ads_googleads_v21_enums_gender_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_gender_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_gender_type_proto_init() } -func file_google_ads_googleads_v21_enums_gender_type_proto_init() { - if File_google_ads_googleads_v21_enums_gender_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_gender_type_proto_init() } +func file_google_ads_googleads_v22_enums_gender_type_proto_init() { + if File_google_ads_googleads_v22_enums_gender_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_gender_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_gender_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_gender_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_gender_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_gender_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_gender_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_gender_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_gender_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_gender_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_gender_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_gender_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_gender_type_proto = out.File - file_google_ads_googleads_v21_enums_gender_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_gender_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_gender_type_proto = out.File + file_google_ads_googleads_v22_enums_gender_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 3c6017bf..c680185d 100644 --- a/enums/geo_target_constant_status.pb.go +++ b/enums/geo_target_constant_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/geo_target_constant_status.proto +// source: google/ads/googleads/v22/enums/geo_target_constant_status.proto package enums @@ -78,11 +78,11 @@ func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) String() string { } func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_enumTypes[0].Descriptor() } func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_enumTypes[0] } func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x GeoTargetConstantStatusEnum_GeoTargetConstantStatus) Number() protorefle // Deprecated: Use GeoTargetConstantStatusEnum_GeoTargetConstantStatus.Descriptor instead. func (GeoTargetConstantStatusEnum_GeoTargetConstantStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *GeoTargetConstantStatusEnum) String() string { func (*GeoTargetConstantStatusEnum) ProtoMessage() {} func (x *GeoTargetConstantStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *GeoTargetConstantStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetConstantStatusEnum.ProtoReflect.Descriptor instead. func (*GeoTargetConstantStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_geo_target_constant_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_geo_target_constant_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_goTypes = []any{ - (GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 0: google.ads.googleads.v21.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus - (*GeoTargetConstantStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.GeoTargetConstantStatusEnum +var file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_goTypes = []any{ + (GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 0: google.ads.googleads.v22.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus + (*GeoTargetConstantStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.GeoTargetConstantStatusEnum } -var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_init() } -func file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_init() { - if File_google_ads_googleads_v21_enums_geo_target_constant_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_init() } +func file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_init() { + if File_google_ads_googleads_v22_enums_geo_target_constant_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_geo_target_constant_status_proto = out.File - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_geo_target_constant_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_geo_target_constant_status_proto = out.File + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_geo_target_constant_status_proto_depIdxs = nil } diff --git a/enums/geo_targeting_type.pb.go b/enums/geo_targeting_type.pb.go index 0bb3c7d4..3732e85a 100644 --- a/enums/geo_targeting_type.pb.go +++ b/enums/geo_targeting_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/geo_targeting_type.proto +// source: google/ads/googleads/v22/enums/geo_targeting_type.proto package enums @@ -76,11 +76,11 @@ func (x GeoTargetingTypeEnum_GeoTargetingType) String() string { } func (GeoTargetingTypeEnum_GeoTargetingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_geo_targeting_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_geo_targeting_type_proto_enumTypes[0].Descriptor() } func (GeoTargetingTypeEnum_GeoTargetingType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_geo_targeting_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_geo_targeting_type_proto_enumTypes[0] } func (x GeoTargetingTypeEnum_GeoTargetingType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_geo_targeting_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_geo_targeting_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *GeoTargetingTypeEnum) String() string { func (*GeoTargetingTypeEnum) ProtoMessage() {} func (x *GeoTargetingTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_geo_targeting_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_geo_targeting_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *GeoTargetingTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetingTypeEnum.ProtoReflect.Descriptor instead. func (*GeoTargetingTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_geo_targeting_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_geo_targeting_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x78, 0x0a, 0x14, 0x47, 0x65, 0x6f, + 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x47, 0x65, 0x6f, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_goTypes = []any{ - (GeoTargetingTypeEnum_GeoTargetingType)(0), // 0: google.ads.googleads.v21.enums.GeoTargetingTypeEnum.GeoTargetingType - (*GeoTargetingTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.GeoTargetingTypeEnum +var file_google_ads_googleads_v22_enums_geo_targeting_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_geo_targeting_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_geo_targeting_type_proto_goTypes = []any{ + (GeoTargetingTypeEnum_GeoTargetingType)(0), // 0: google.ads.googleads.v22.enums.GeoTargetingTypeEnum.GeoTargetingType + (*GeoTargetingTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.GeoTargetingTypeEnum } -var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_geo_targeting_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_geo_targeting_type_proto_init() } -func file_google_ads_googleads_v21_enums_geo_targeting_type_proto_init() { - if File_google_ads_googleads_v21_enums_geo_targeting_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_geo_targeting_type_proto_init() } +func file_google_ads_googleads_v22_enums_geo_targeting_type_proto_init() { + if File_google_ads_googleads_v22_enums_geo_targeting_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_geo_targeting_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_geo_targeting_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_geo_targeting_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_geo_targeting_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_geo_targeting_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_geo_targeting_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_geo_targeting_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_geo_targeting_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_geo_targeting_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_geo_targeting_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_geo_targeting_type_proto = out.File - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_geo_targeting_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_geo_targeting_type_proto = out.File + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_geo_targeting_type_proto_depIdxs = nil } diff --git a/enums/goal_config_level.pb.go b/enums/goal_config_level.pb.go index 754e1831..f3b95e8e 100644 --- a/enums/goal_config_level.pb.go +++ b/enums/goal_config_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/goal_config_level.proto +// source: google/ads/googleads/v22/enums/goal_config_level.proto package enums @@ -78,11 +78,11 @@ func (x GoalConfigLevelEnum_GoalConfigLevel) String() string { } func (GoalConfigLevelEnum_GoalConfigLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_goal_config_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_goal_config_level_proto_enumTypes[0].Descriptor() } func (GoalConfigLevelEnum_GoalConfigLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_goal_config_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_goal_config_level_proto_enumTypes[0] } func (x GoalConfigLevelEnum_GoalConfigLevel) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_goal_config_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_goal_config_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_goal_config_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *GoalConfigLevelEnum) String() string { func (*GoalConfigLevelEnum) ProtoMessage() {} func (x *GoalConfigLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_goal_config_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_goal_config_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *GoalConfigLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GoalConfigLevelEnum.ProtoReflect.Descriptor instead. func (*GoalConfigLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_goal_config_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_goal_config_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x62, 0x0a, 0x13, 0x47, 0x6f, 0x61, 0x6c, + 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_goal_config_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_goal_config_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_goal_config_level_proto_goTypes = []any{ - (GoalConfigLevelEnum_GoalConfigLevel)(0), // 0: google.ads.googleads.v21.enums.GoalConfigLevelEnum.GoalConfigLevel - (*GoalConfigLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.GoalConfigLevelEnum +var file_google_ads_googleads_v22_enums_goal_config_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_goal_config_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_goal_config_level_proto_goTypes = []any{ + (GoalConfigLevelEnum_GoalConfigLevel)(0), // 0: google.ads.googleads.v22.enums.GoalConfigLevelEnum.GoalConfigLevel + (*GoalConfigLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.GoalConfigLevelEnum } -var file_google_ads_googleads_v21_enums_goal_config_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_goal_config_level_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_goal_config_level_proto_init() } -func file_google_ads_googleads_v21_enums_goal_config_level_proto_init() { - if File_google_ads_googleads_v21_enums_goal_config_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_goal_config_level_proto_init() } +func file_google_ads_googleads_v22_enums_goal_config_level_proto_init() { + if File_google_ads_googleads_v22_enums_goal_config_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_goal_config_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_config_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_goal_config_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_goal_config_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_goal_config_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_goal_config_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_goal_config_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_goal_config_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_goal_config_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_goal_config_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_goal_config_level_proto = out.File - file_google_ads_googleads_v21_enums_goal_config_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_goal_config_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_goal_config_level_proto = out.File + file_google_ads_googleads_v22_enums_goal_config_level_proto_goTypes = nil + file_google_ads_googleads_v22_enums_goal_config_level_proto_depIdxs = nil } diff --git a/enums/goal_optimization_eligibility.pb.go b/enums/goal_optimization_eligibility.pb.go new file mode 100644 index 00000000..46565776 --- /dev/null +++ b/enums/goal_optimization_eligibility.pb.go @@ -0,0 +1,217 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/enums/goal_optimization_eligibility.proto + +package enums + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// The possible goal optimization eligibility. +type GoalOptimizationEligibilityEnum_GoalOptimizationEligibility int32 + +const ( + // The goal optimization status has not been specified. + GoalOptimizationEligibilityEnum_UNSPECIFIED GoalOptimizationEligibilityEnum_GoalOptimizationEligibility = 0 + // The goal optimization status is not known in this version. + GoalOptimizationEligibilityEnum_UNKNOWN GoalOptimizationEligibilityEnum_GoalOptimizationEligibility = 1 + // The goal is eligible for campaign optimization. + GoalOptimizationEligibilityEnum_ELIGIBLE GoalOptimizationEligibilityEnum_GoalOptimizationEligibility = 2 + // The goal is not eligible for campaign optimization. + GoalOptimizationEligibilityEnum_INELIGIBLE GoalOptimizationEligibilityEnum_GoalOptimizationEligibility = 3 +) + +// Enum value maps for GoalOptimizationEligibilityEnum_GoalOptimizationEligibility. +var ( + GoalOptimizationEligibilityEnum_GoalOptimizationEligibility_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 2: "ELIGIBLE", + 3: "INELIGIBLE", + } + GoalOptimizationEligibilityEnum_GoalOptimizationEligibility_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "ELIGIBLE": 2, + "INELIGIBLE": 3, + } +) + +func (x GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) Enum() *GoalOptimizationEligibilityEnum_GoalOptimizationEligibility { + p := new(GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) + *p = x + return p +} + +func (x GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_enumTypes[0].Descriptor() +} + +func (GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_enumTypes[0] +} + +func (x GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use GoalOptimizationEligibilityEnum_GoalOptimizationEligibility.Descriptor instead. +func (GoalOptimizationEligibilityEnum_GoalOptimizationEligibility) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing possible goal optimization eligibility. +type GoalOptimizationEligibilityEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalOptimizationEligibilityEnum) Reset() { + *x = GoalOptimizationEligibilityEnum{} + mi := &file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalOptimizationEligibilityEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalOptimizationEligibilityEnum) ProtoMessage() {} + +func (x *GoalOptimizationEligibilityEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalOptimizationEligibilityEnum.ProtoReflect.Descriptor instead. +func (*GoalOptimizationEligibilityEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 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, 0x32, 0x32, 0x2e, 0x65, + 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7c, 0x0a, 0x1f, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x74, 0x69, + 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, + 0x69, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x59, 0x0a, 0x1b, 0x47, 0x6f, 0x61, 0x6c, 0x4f, + 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, + 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, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, + 0x10, 0x02, 0x12, 0x0e, 0x0a, 0x0a, 0x49, 0x4e, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x47, 0x6f, 0x61, 0x6c, 0x4f, + 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, + 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDescData +} + +var file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_goTypes = []any{ + (GoalOptimizationEligibilityEnum_GoalOptimizationEligibility)(0), // 0: google.ads.googleads.v22.enums.GoalOptimizationEligibilityEnum.GoalOptimizationEligibility + (*GoalOptimizationEligibilityEnum)(nil), // 1: google.ads.googleads.v22.enums.GoalOptimizationEligibilityEnum +} +var file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_depIdxs = []int32{ + 0, // [0:0] is the sub-list for method 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_v22_enums_goal_optimization_eligibility_proto_init() } +func file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_init() { + if File_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto = out.File + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_goTypes = nil + file_google_ads_googleads_v22_enums_goal_optimization_eligibility_proto_depIdxs = nil +} diff --git a/enums/goal_type.pb.go b/enums/goal_type.pb.go new file mode 100644 index 00000000..3576d24e --- /dev/null +++ b/enums/goal_type.pb.go @@ -0,0 +1,210 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/enums/goal_type.proto + +package enums + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// The possible value of goal types. +type GoalTypeEnum_GoalType int32 + +const ( + // Not specified. + GoalTypeEnum_UNSPECIFIED GoalTypeEnum_GoalType = 0 + // Used for return value only. Represents value unknown in this version. + GoalTypeEnum_UNKNOWN GoalTypeEnum_GoalType = 1 + // Retention goal, which allows advertisers to optimize campaigns to win + // back lapsed customers. + // (https://support.google.com/google-ads/answer/14792043?hl=en) + GoalTypeEnum_CUSTOMER_RETENTION GoalTypeEnum_GoalType = 3 +) + +// Enum value maps for GoalTypeEnum_GoalType. +var ( + GoalTypeEnum_GoalType_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 3: "CUSTOMER_RETENTION", + } + GoalTypeEnum_GoalType_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "CUSTOMER_RETENTION": 3, + } +) + +func (x GoalTypeEnum_GoalType) Enum() *GoalTypeEnum_GoalType { + p := new(GoalTypeEnum_GoalType) + *p = x + return p +} + +func (x GoalTypeEnum_GoalType) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (GoalTypeEnum_GoalType) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_enums_goal_type_proto_enumTypes[0].Descriptor() +} + +func (GoalTypeEnum_GoalType) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_enums_goal_type_proto_enumTypes[0] +} + +func (x GoalTypeEnum_GoalType) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use GoalTypeEnum_GoalType.Descriptor instead. +func (GoalTypeEnum_GoalType) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_goal_type_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing goal types. +type GoalTypeEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalTypeEnum) Reset() { + *x = GoalTypeEnum{} + mi := &file_google_ads_googleads_v22_enums_goal_type_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalTypeEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalTypeEnum) ProtoMessage() {} + +func (x *GoalTypeEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_enums_goal_type_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalTypeEnum.ProtoReflect.Descriptor instead. +func (*GoalTypeEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_goal_type_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_enums_goal_type_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_enums_goal_type_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x22, 0x50, 0x0a, 0x0c, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, + 0x22, 0x40, 0x0a, 0x08, 0x47, 0x6f, 0x61, 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, 0x16, 0x0a, 0x12, 0x43, 0x55, + 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x52, 0x45, 0x54, 0x45, 0x4e, 0x54, 0x49, 0x4f, 0x4e, + 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, + 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, + 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_enums_goal_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_goal_type_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_enums_goal_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_goal_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_type_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_enums_goal_type_proto_rawDescData +} + +var file_google_ads_googleads_v22_enums_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_goal_type_proto_goTypes = []any{ + (GoalTypeEnum_GoalType)(0), // 0: google.ads.googleads.v22.enums.GoalTypeEnum.GoalType + (*GoalTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.GoalTypeEnum +} +var file_google_ads_googleads_v22_enums_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 + 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_v22_enums_goal_type_proto_init() } +func file_google_ads_googleads_v22_enums_goal_type_proto_init() { + if File_google_ads_googleads_v22_enums_goal_type_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_goal_type_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_enums_goal_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_goal_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_goal_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_goal_type_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_enums_goal_type_proto = out.File + file_google_ads_googleads_v22_enums_goal_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_goal_type_proto_depIdxs = nil +} diff --git a/enums/google_ads_field_category.pb.go b/enums/google_ads_field_category.pb.go index 437d80de..e6c2293d 100644 --- a/enums/google_ads_field_category.pb.go +++ b/enums/google_ads_field_category.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/google_ads_field_category.proto +// source: google/ads/googleads/v22/enums/google_ads_field_category.proto package enums @@ -88,11 +88,11 @@ func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) String() string { } func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_google_ads_field_category_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_google_ads_field_category_proto_enumTypes[0].Descriptor() } func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_google_ads_field_category_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_google_ads_field_category_proto_enumTypes[0] } func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) Number() protoreflect // Deprecated: Use GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory.Descriptor instead. func (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_google_ads_field_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_ads_field_category_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *GoogleAdsFieldCategoryEnum) String() string { func (*GoogleAdsFieldCategoryEnum) ProtoMessage() {} func (x *GoogleAdsFieldCategoryEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_google_ads_field_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_ads_field_category_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *GoogleAdsFieldCategoryEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsFieldCategoryEnum.ProtoReflect.Descriptor instead. func (*GoogleAdsFieldCategoryEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_google_ads_field_category_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_google_ads_field_category_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,42 +161,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDescData + return file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDescData } -var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_goTypes = []any{ - (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 0: google.ads.googleads.v21.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory - (*GoogleAdsFieldCategoryEnum)(nil), // 1: google.ads.googleads.v21.enums.GoogleAdsFieldCategoryEnum +var file_google_ads_googleads_v22_enums_google_ads_field_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_google_ads_field_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_google_ads_field_category_proto_goTypes = []any{ + (GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 0: google.ads.googleads.v22.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory + (*GoogleAdsFieldCategoryEnum)(nil), // 1: google.ads.googleads.v22.enums.GoogleAdsFieldCategoryEnum } -var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_google_ads_field_category_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_google_ads_field_category_proto_init() } -func file_google_ads_googleads_v21_enums_google_ads_field_category_proto_init() { - if File_google_ads_googleads_v21_enums_google_ads_field_category_proto != nil { +func init() { file_google_ads_googleads_v22_enums_google_ads_field_category_proto_init() } +func file_google_ads_googleads_v22_enums_google_ads_field_category_proto_init() { + if File_google_ads_googleads_v22_enums_google_ads_field_category_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_ads_field_category_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_ads_field_category_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_google_ads_field_category_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_google_ads_field_category_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_google_ads_field_category_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_google_ads_field_category_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_google_ads_field_category_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_google_ads_field_category_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_google_ads_field_category_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_google_ads_field_category_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_google_ads_field_category_proto = out.File - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_goTypes = nil - file_google_ads_googleads_v21_enums_google_ads_field_category_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_google_ads_field_category_proto = out.File + file_google_ads_googleads_v22_enums_google_ads_field_category_proto_goTypes = nil + file_google_ads_googleads_v22_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 81676d7a..c2451482 100644 --- a/enums/google_ads_field_data_type.pb.go +++ b/enums/google_ads_field_data_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/google_ads_field_data_type.proto +// source: google/ads/googleads/v22/enums/google_ads_field_data_type.proto package enums @@ -137,11 +137,11 @@ func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) String() string { } func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_enumTypes[0].Descriptor() } func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_enumTypes[0] } func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Number() protoreflect.EnumNumber { @@ -150,7 +150,7 @@ func (x GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) Number() protoreflect // Deprecated: Use GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType.Descriptor instead. func (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -174,7 +174,7 @@ func (x *GoogleAdsFieldDataTypeEnum) String() string { func (*GoogleAdsFieldDataTypeEnum) ProtoMessage() {} func (x *GoogleAdsFieldDataTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -187,18 +187,18 @@ func (x *GoogleAdsFieldDataTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsFieldDataTypeEnum.ProtoReflect.Descriptor instead. func (*GoogleAdsFieldDataTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_google_ads_field_data_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_google_ads_field_data_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -214,42 +214,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_goTypes = []any{ - (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 0: google.ads.googleads.v21.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType - (*GoogleAdsFieldDataTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.GoogleAdsFieldDataTypeEnum +var file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_goTypes = []any{ + (GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 0: google.ads.googleads.v22.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType + (*GoogleAdsFieldDataTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.GoogleAdsFieldDataTypeEnum } -var file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -257,27 +257,27 @@ var file_google_ads_googleads_v21_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_v21_enums_google_ads_field_data_type_proto_init() } -func file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_init() { - if File_google_ads_googleads_v21_enums_google_ads_field_data_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_init() } +func file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_init() { + if File_google_ads_googleads_v22_enums_google_ads_field_data_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_google_ads_field_data_type_proto = out.File - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_google_ads_field_data_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_google_ads_field_data_type_proto = out.File + file_google_ads_googleads_v22_enums_google_ads_field_data_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 ef95d1dc..c5f8c695 100644 --- a/enums/google_voice_call_status.pb.go +++ b/enums/google_voice_call_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/google_voice_call_status.proto +// source: google/ads/googleads/v22/enums/google_voice_call_status.proto package enums @@ -76,11 +76,11 @@ func (x GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) String() string { } func (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_google_voice_call_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_google_voice_call_status_proto_enumTypes[0].Descriptor() } func (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_google_voice_call_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_google_voice_call_status_proto_enumTypes[0] } func (x GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_google_voice_call_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_voice_call_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *GoogleVoiceCallStatusEnum) String() string { func (*GoogleVoiceCallStatusEnum) ProtoMessage() {} func (x *GoogleVoiceCallStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_google_voice_call_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_google_voice_call_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *GoogleVoiceCallStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleVoiceCallStatusEnum.ProtoReflect.Descriptor instead. func (*GoogleVoiceCallStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_google_voice_call_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_google_voice_call_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_goTypes = []any{ - (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 0: google.ads.googleads.v21.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus - (*GoogleVoiceCallStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.GoogleVoiceCallStatusEnum +var file_google_ads_googleads_v22_enums_google_voice_call_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_google_voice_call_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_google_voice_call_status_proto_goTypes = []any{ + (GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 0: google.ads.googleads.v22.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus + (*GoogleVoiceCallStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.GoogleVoiceCallStatusEnum } -var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_google_voice_call_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_google_voice_call_status_proto_init() } -func file_google_ads_googleads_v21_enums_google_voice_call_status_proto_init() { - if File_google_ads_googleads_v21_enums_google_voice_call_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_google_voice_call_status_proto_init() } +func file_google_ads_googleads_v22_enums_google_voice_call_status_proto_init() { + if File_google_ads_googleads_v22_enums_google_voice_call_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_google_voice_call_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_google_voice_call_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_google_voice_call_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_google_voice_call_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_google_voice_call_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_google_voice_call_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_google_voice_call_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_google_voice_call_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_google_voice_call_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_google_voice_call_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_google_voice_call_status_proto = out.File - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_google_voice_call_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_google_voice_call_status_proto = out.File + file_google_ads_googleads_v22_enums_google_voice_call_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 d9730bb4..154bd84b 100644 --- a/enums/hotel_asset_suggestion_status.pb.go +++ b/enums/hotel_asset_suggestion_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/hotel_asset_suggestion_status.proto +// source: google/ads/googleads/v22/enums/hotel_asset_suggestion_status.proto package enums @@ -80,11 +80,11 @@ func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) String() stri } func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_enumTypes[0].Descriptor() } func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_enumTypes[0] } func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) Number() prot // Deprecated: Use HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus.Descriptor instead. func (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *HotelAssetSuggestionStatusEnum) String() string { func (*HotelAssetSuggestionStatusEnum) ProtoMessage() {} func (x *HotelAssetSuggestionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *HotelAssetSuggestionStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelAssetSuggestionStatusEnum.ProtoReflect.Descriptor instead. func (*HotelAssetSuggestionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_goTypes = []any{ - (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 0: google.ads.googleads.v21.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus - (*HotelAssetSuggestionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.HotelAssetSuggestionStatusEnum +var file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_goTypes = []any{ + (HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 0: google.ads.googleads.v22.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus + (*HotelAssetSuggestionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.HotelAssetSuggestionStatusEnum } -var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_init() } -func file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_init() { - if File_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_init() } +func file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_init() { + if File_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto = out.File - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_hotel_asset_suggestion_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto = out.File + file_google_ads_googleads_v22_enums_hotel_asset_suggestion_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 514e456e..7f57ab9a 100644 --- a/enums/hotel_date_selection_type.pb.go +++ b/enums/hotel_date_selection_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/hotel_date_selection_type.proto +// source: google/ads/googleads/v22/enums/hotel_date_selection_type.proto package enums @@ -76,11 +76,11 @@ func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) String() string { } func (HotelDateSelectionTypeEnum_HotelDateSelectionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_enumTypes[0].Descriptor() } func (HotelDateSelectionTypeEnum_HotelDateSelectionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_enumTypes[0] } func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x HotelDateSelectionTypeEnum_HotelDateSelectionType) Number() protoreflect // Deprecated: Use HotelDateSelectionTypeEnum_HotelDateSelectionType.Descriptor instead. func (HotelDateSelectionTypeEnum_HotelDateSelectionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *HotelDateSelectionTypeEnum) String() string { func (*HotelDateSelectionTypeEnum) ProtoMessage() {} func (x *HotelDateSelectionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *HotelDateSelectionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelDateSelectionTypeEnum.ProtoReflect.Descriptor instead. func (*HotelDateSelectionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_hotel_date_selection_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_hotel_date_selection_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x44, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_goTypes = []any{ - (HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 0: google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType - (*HotelDateSelectionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.HotelDateSelectionTypeEnum +var file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_goTypes = []any{ + (HotelDateSelectionTypeEnum_HotelDateSelectionType)(0), // 0: google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum.HotelDateSelectionType + (*HotelDateSelectionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.HotelDateSelectionTypeEnum } -var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_init() } -func file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_init() { - if File_google_ads_googleads_v21_enums_hotel_date_selection_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_init() } +func file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_init() { + if File_google_ads_googleads_v22_enums_hotel_date_selection_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_hotel_date_selection_type_proto = out.File - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_hotel_date_selection_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_hotel_date_selection_type_proto = out.File + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_hotel_date_selection_type_proto_depIdxs = nil } diff --git a/enums/hotel_price_bucket.pb.go b/enums/hotel_price_bucket.pb.go index d1c7cf6d..0b8c3472 100644 --- a/enums/hotel_price_bucket.pb.go +++ b/enums/hotel_price_bucket.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/hotel_price_bucket.proto +// source: google/ads/googleads/v22/enums/hotel_price_bucket.proto package enums @@ -87,11 +87,11 @@ func (x HotelPriceBucketEnum_HotelPriceBucket) String() string { } func (HotelPriceBucketEnum_HotelPriceBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_enumTypes[0].Descriptor() } func (HotelPriceBucketEnum_HotelPriceBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_enumTypes[0] } func (x HotelPriceBucketEnum_HotelPriceBucket) Number() protoreflect.EnumNumber { @@ -100,7 +100,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_v21_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *HotelPriceBucketEnum) String() string { func (*HotelPriceBucketEnum) ProtoMessage() {} func (x *HotelPriceBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,18 +137,18 @@ func (x *HotelPriceBucketEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelPriceBucketEnum.ProtoReflect.Descriptor instead. func (*HotelPriceBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_hotel_price_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_hotel_price_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x01, 0x0a, 0x14, 0x48, 0x6f, + 0x76, 0x32, 0x32, 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, @@ -160,41 +160,41 @@ var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x50, 0x72, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_goTypes = []any{ - (HotelPriceBucketEnum_HotelPriceBucket)(0), // 0: google.ads.googleads.v21.enums.HotelPriceBucketEnum.HotelPriceBucket - (*HotelPriceBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.HotelPriceBucketEnum +var file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_goTypes = []any{ + (HotelPriceBucketEnum_HotelPriceBucket)(0), // 0: google.ads.googleads.v22.enums.HotelPriceBucketEnum.HotelPriceBucket + (*HotelPriceBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.HotelPriceBucketEnum } -var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_hotel_price_bucket_proto != nil { +func init() { file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_init() } +func file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_hotel_price_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_hotel_price_bucket_proto = out.File - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_hotel_price_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_hotel_price_bucket_proto = out.File + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_enums_hotel_price_bucket_proto_depIdxs = nil } diff --git a/enums/hotel_rate_type.pb.go b/enums/hotel_rate_type.pb.go index c3864a9b..708b4541 100644 --- a/enums/hotel_rate_type.pb.go +++ b/enums/hotel_rate_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/hotel_rate_type.proto +// source: google/ads/googleads/v22/enums/hotel_rate_type.proto package enums @@ -90,11 +90,11 @@ func (x HotelRateTypeEnum_HotelRateType) String() string { } func (HotelRateTypeEnum_HotelRateType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_hotel_rate_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_hotel_rate_type_proto_enumTypes[0].Descriptor() } func (HotelRateTypeEnum_HotelRateType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_hotel_rate_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_hotel_rate_type_proto_enumTypes[0] } func (x HotelRateTypeEnum_HotelRateType) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_hotel_rate_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_rate_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *HotelRateTypeEnum) String() string { func (*HotelRateTypeEnum) ProtoMessage() {} func (x *HotelRateTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_hotel_rate_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_rate_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,17 +140,17 @@ func (x *HotelRateTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelRateTypeEnum.ProtoReflect.Descriptor instead. func (*HotelRateTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_hotel_rate_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_hotel_rate_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,41 +162,41 @@ var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x48, 0x6f, 0x74, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_goTypes = []any{ - (HotelRateTypeEnum_HotelRateType)(0), // 0: google.ads.googleads.v21.enums.HotelRateTypeEnum.HotelRateType - (*HotelRateTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.HotelRateTypeEnum +var file_google_ads_googleads_v22_enums_hotel_rate_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_rate_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_rate_type_proto_goTypes = []any{ + (HotelRateTypeEnum_HotelRateType)(0), // 0: google.ads.googleads.v22.enums.HotelRateTypeEnum.HotelRateType + (*HotelRateTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.HotelRateTypeEnum } -var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_hotel_rate_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_hotel_rate_type_proto_init() } -func file_google_ads_googleads_v21_enums_hotel_rate_type_proto_init() { - if File_google_ads_googleads_v21_enums_hotel_rate_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_hotel_rate_type_proto_init() } +func file_google_ads_googleads_v22_enums_hotel_rate_type_proto_init() { + if File_google_ads_googleads_v22_enums_hotel_rate_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_rate_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_rate_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_hotel_rate_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_hotel_rate_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_hotel_rate_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_hotel_rate_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_hotel_rate_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_hotel_rate_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_hotel_rate_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_hotel_rate_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_hotel_rate_type_proto = out.File - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_hotel_rate_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_hotel_rate_type_proto = out.File + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_hotel_rate_type_proto_depIdxs = nil } diff --git a/enums/hotel_reconciliation_status.pb.go b/enums/hotel_reconciliation_status.pb.go index a151aa1a..4fc48c9c 100644 --- a/enums/hotel_reconciliation_status.pb.go +++ b/enums/hotel_reconciliation_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/hotel_reconciliation_status.proto +// source: google/ads/googleads/v22/enums/hotel_reconciliation_status.proto package enums @@ -90,11 +90,11 @@ func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) String() string } func (HotelReconciliationStatusEnum_HotelReconciliationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_enumTypes[0].Descriptor() } func (HotelReconciliationStatusEnum_HotelReconciliationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_enumTypes[0] } func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) Number() protoreflect.EnumNumber { @@ -103,7 +103,7 @@ func (x HotelReconciliationStatusEnum_HotelReconciliationStatus) Number() protor // Deprecated: Use HotelReconciliationStatusEnum_HotelReconciliationStatus.Descriptor instead. func (HotelReconciliationStatusEnum_HotelReconciliationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *HotelReconciliationStatusEnum) String() string { func (*HotelReconciliationStatusEnum) ProtoMessage() {} func (x *HotelReconciliationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *HotelReconciliationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelReconciliationStatusEnum.ProtoReflect.Descriptor instead. func (*HotelReconciliationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,42 +165,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x48, 0x6f, 0x74, 0x65, 0x6c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_goTypes = []any{ - (HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 0: google.ads.googleads.v21.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus - (*HotelReconciliationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.HotelReconciliationStatusEnum +var file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_goTypes = []any{ + (HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 0: google.ads.googleads.v22.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus + (*HotelReconciliationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.HotelReconciliationStatusEnum } -var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_init() } -func file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_init() { - if File_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_init() } +func file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_init() { + if File_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto = out.File - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_hotel_reconciliation_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto = out.File + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_hotel_reconciliation_status_proto_depIdxs = nil } diff --git a/enums/identity_verification_program.pb.go b/enums/identity_verification_program.pb.go index aecbc72a..924854ae 100644 --- a/enums/identity_verification_program.pb.go +++ b/enums/identity_verification_program.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/identity_verification_program.proto +// source: google/ads/googleads/v22/enums/identity_verification_program.proto package enums @@ -72,11 +72,11 @@ func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) String() st } func (IdentityVerificationProgramEnum_IdentityVerificationProgram) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_identity_verification_program_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_identity_verification_program_proto_enumTypes[0].Descriptor() } func (IdentityVerificationProgramEnum_IdentityVerificationProgram) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_identity_verification_program_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_identity_verification_program_proto_enumTypes[0] } func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x IdentityVerificationProgramEnum_IdentityVerificationProgram) Number() pr // Deprecated: Use IdentityVerificationProgramEnum_IdentityVerificationProgram.Descriptor instead. func (IdentityVerificationProgramEnum_IdentityVerificationProgram) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_identity_verification_program_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_identity_verification_program_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *IdentityVerificationProgramEnum) String() string { func (*IdentityVerificationProgramEnum) ProtoMessage() {} func (x *IdentityVerificationProgramEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_identity_verification_program_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_identity_verification_program_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *IdentityVerificationProgramEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationProgramEnum.ProtoReflect.Descriptor instead. func (*IdentityVerificationProgramEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_identity_verification_program_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_identity_verification_program_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDesc), len(file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDesc), len(file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDescData + return file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDescData } -var file_google_ads_googleads_v21_enums_identity_verification_program_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_identity_verification_program_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_identity_verification_program_proto_goTypes = []any{ - (IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 0: google.ads.googleads.v21.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - (*IdentityVerificationProgramEnum)(nil), // 1: google.ads.googleads.v21.enums.IdentityVerificationProgramEnum +var file_google_ads_googleads_v22_enums_identity_verification_program_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_identity_verification_program_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_identity_verification_program_proto_goTypes = []any{ + (IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 0: google.ads.googleads.v22.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + (*IdentityVerificationProgramEnum)(nil), // 1: google.ads.googleads.v22.enums.IdentityVerificationProgramEnum } -var file_google_ads_googleads_v21_enums_identity_verification_program_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_identity_verification_program_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_identity_verification_program_proto_init() } -func file_google_ads_googleads_v21_enums_identity_verification_program_proto_init() { - if File_google_ads_googleads_v21_enums_identity_verification_program_proto != nil { +func init() { file_google_ads_googleads_v22_enums_identity_verification_program_proto_init() } +func file_google_ads_googleads_v22_enums_identity_verification_program_proto_init() { + if File_google_ads_googleads_v22_enums_identity_verification_program_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDesc), len(file_google_ads_googleads_v21_enums_identity_verification_program_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDesc), len(file_google_ads_googleads_v22_enums_identity_verification_program_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_identity_verification_program_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_identity_verification_program_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_identity_verification_program_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_identity_verification_program_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_identity_verification_program_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_identity_verification_program_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_identity_verification_program_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_identity_verification_program_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_identity_verification_program_proto = out.File - file_google_ads_googleads_v21_enums_identity_verification_program_proto_goTypes = nil - file_google_ads_googleads_v21_enums_identity_verification_program_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_identity_verification_program_proto = out.File + file_google_ads_googleads_v22_enums_identity_verification_program_proto_goTypes = nil + file_google_ads_googleads_v22_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 7a90d64d..8e813601 100644 --- a/enums/identity_verification_program_status.pb.go +++ b/enums/identity_verification_program_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/identity_verification_program_status.proto +// source: google/ads/googleads/v22/enums/identity_verification_program_status.proto package enums @@ -84,11 +84,11 @@ func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) } func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_enumTypes[0].Descriptor() } func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_enumTypes[0] } func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) // Deprecated: Use IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus.Descriptor instead. func (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *IdentityVerificationProgramStatusEnum) String() string { func (*IdentityVerificationProgramStatusEnum) ProtoMessage() {} func (x *IdentityVerificationProgramStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,19 +134,19 @@ func (x *IdentityVerificationProgramStatusEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use IdentityVerificationProgramStatusEnum.ProtoReflect.Descriptor instead. func (*IdentityVerificationProgramStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_identity_verification_program_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_identity_verification_program_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x25, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_goTypes = []any{ - (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 0: google.ads.googleads.v21.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus - (*IdentityVerificationProgramStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.IdentityVerificationProgramStatusEnum +var file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_goTypes = []any{ + (IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 0: google.ads.googleads.v22.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus + (*IdentityVerificationProgramStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.IdentityVerificationProgramStatusEnum } -var file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_enums_identity_verification_program_status_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_init() } -func file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_init() { - if File_google_ads_googleads_v21_enums_identity_verification_program_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_init() } +func file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_init() { + if File_google_ads_googleads_v22_enums_identity_verification_program_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_identity_verification_program_status_proto = out.File - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_identity_verification_program_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_identity_verification_program_status_proto = out.File + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_identity_verification_program_status_proto_depIdxs = nil } diff --git a/enums/income_range_type.pb.go b/enums/income_range_type.pb.go index eb0a5714..ddcf0c96 100644 --- a/enums/income_range_type.pb.go +++ b/enums/income_range_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/income_range_type.proto +// source: google/ads/googleads/v22/enums/income_range_type.proto package enums @@ -96,11 +96,11 @@ func (x IncomeRangeTypeEnum_IncomeRangeType) String() string { } func (IncomeRangeTypeEnum_IncomeRangeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_income_range_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_income_range_type_proto_enumTypes[0].Descriptor() } func (IncomeRangeTypeEnum_IncomeRangeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_income_range_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_income_range_type_proto_enumTypes[0] } func (x IncomeRangeTypeEnum_IncomeRangeType) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_income_range_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_income_range_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_income_range_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *IncomeRangeTypeEnum) String() string { func (*IncomeRangeTypeEnum) ProtoMessage() {} func (x *IncomeRangeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_income_range_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_income_range_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,18 +146,18 @@ func (x *IncomeRangeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use IncomeRangeTypeEnum.ProtoReflect.Descriptor instead. func (*IncomeRangeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_income_range_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_income_range_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_income_range_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x02, 0x0a, 0x13, 0x49, 0x6e, 0x63, + 0x32, 0x32, 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, @@ -175,42 +175,42 @@ var file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_income_range_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_income_range_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_income_range_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_income_range_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_income_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_income_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_income_range_type_proto_goTypes = []any{ - (IncomeRangeTypeEnum_IncomeRangeType)(0), // 0: google.ads.googleads.v21.enums.IncomeRangeTypeEnum.IncomeRangeType - (*IncomeRangeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.IncomeRangeTypeEnum +var file_google_ads_googleads_v22_enums_income_range_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_income_range_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_income_range_type_proto_goTypes = []any{ + (IncomeRangeTypeEnum_IncomeRangeType)(0), // 0: google.ads.googleads.v22.enums.IncomeRangeTypeEnum.IncomeRangeType + (*IncomeRangeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.IncomeRangeTypeEnum } -var file_google_ads_googleads_v21_enums_income_range_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -218,27 +218,27 @@ var file_google_ads_googleads_v21_enums_income_range_type_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_income_range_type_proto_init() } -func file_google_ads_googleads_v21_enums_income_range_type_proto_init() { - if File_google_ads_googleads_v21_enums_income_range_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_income_range_type_proto_init() } +func file_google_ads_googleads_v22_enums_income_range_type_proto_init() { + if File_google_ads_googleads_v22_enums_income_range_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_income_range_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_income_range_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_income_range_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_income_range_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_income_range_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_income_range_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_income_range_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_income_range_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_income_range_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_income_range_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_income_range_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_income_range_type_proto = out.File - file_google_ads_googleads_v21_enums_income_range_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_income_range_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_income_range_type_proto = out.File + file_google_ads_googleads_v22_enums_income_range_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_income_range_type_proto_depIdxs = nil } diff --git a/enums/insights_knowledge_graph_entity_capabilities.pb.go b/enums/insights_knowledge_graph_entity_capabilities.pb.go index e3705b59..8e75013b 100644 --- a/enums/insights_knowledge_graph_entity_capabilities.pb.go +++ b/enums/insights_knowledge_graph_entity_capabilities.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/insights_knowledge_graph_entity_capabilities.proto +// source: google/ads/googleads/v22/enums/insights_knowledge_graph_entity_capabilities.proto package enums @@ -78,11 +78,11 @@ func (x InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntit } func (InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes[0].Descriptor() } func (InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes[0] } func (x InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntit // Deprecated: Use InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities.Descriptor instead. func (InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the capabilities of an entity related to @@ -104,7 +104,7 @@ type InsightsKnowledgeGraphEntityCapabilitiesEnum struct { func (x *InsightsKnowledgeGraphEntityCapabilitiesEnum) Reset() { *x = InsightsKnowledgeGraphEntityCapabilitiesEnum{} - mi := &file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *InsightsKnowledgeGraphEntityCapabilitiesEnum) String() string { func (*InsightsKnowledgeGraphEntityCapabilitiesEnum) ProtoMessage() {} func (x *InsightsKnowledgeGraphEntityCapabilitiesEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,19 +129,19 @@ func (x *InsightsKnowledgeGraphEntityCapabilitiesEnum) ProtoReflect() protorefle // Deprecated: Use InsightsKnowledgeGraphEntityCapabilitiesEnum.ProtoReflect.Descriptor instead. func (*InsightsKnowledgeGraphEntityCapabilitiesEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x5f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x2c, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 0x73, @@ -155,43 +155,43 @@ var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabili 0x11, 0x43, 0x52, 0x45, 0x41, 0x54, 0x4f, 0x52, 0x5f, 0x41, 0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45, 0x10, 0x03, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2d, 0x49, 0x6e, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x47, 0x72, 0x61, 0x70, 0x68, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x43, 0x61, 0x70, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x69, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc), len(file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc), len(file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData + return file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDescData } -var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes = []any{ - (InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities)(0), // 0: google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities - (*InsightsKnowledgeGraphEntityCapabilitiesEnum)(nil), // 1: google.ads.googleads.v21.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum +var file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes = []any{ + (InsightsKnowledgeGraphEntityCapabilitiesEnum_InsightsKnowledgeGraphEntityCapabilities)(0), // 0: google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum.InsightsKnowledgeGraphEntityCapabilities + (*InsightsKnowledgeGraphEntityCapabilitiesEnum)(nil), // 1: google.ads.googleads.v22.enums.InsightsKnowledgeGraphEntityCapabilitiesEnum } -var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +200,28 @@ var file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabili } func init() { - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_init() + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_init() } -func file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_init() { - if File_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto != nil { +func file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_init() { + if File_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc), len(file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc), len(file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto = out.File - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes = nil - file_google_ads_googleads_v21_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto = out.File + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_goTypes = nil + file_google_ads_googleads_v22_enums_insights_knowledge_graph_entity_capabilities_proto_depIdxs = nil } diff --git a/enums/insights_trend.pb.go b/enums/insights_trend.pb.go index ee4ea9ad..3730e77c 100644 --- a/enums/insights_trend.pb.go +++ b/enums/insights_trend.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/insights_trend.proto +// source: google/ads/googleads/v22/enums/insights_trend.proto package enums @@ -84,11 +84,11 @@ func (x InsightsTrendEnum_InsightsTrend) String() string { } func (InsightsTrendEnum_InsightsTrend) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_insights_trend_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_insights_trend_proto_enumTypes[0].Descriptor() } func (InsightsTrendEnum_InsightsTrend) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_insights_trend_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_insights_trend_proto_enumTypes[0] } func (x InsightsTrendEnum_InsightsTrend) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x InsightsTrendEnum_InsightsTrend) Number() protoreflect.EnumNumber { // Deprecated: Use InsightsTrendEnum_InsightsTrend.Descriptor instead. func (InsightsTrendEnum_InsightsTrend) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing a trend. @@ -109,7 +109,7 @@ type InsightsTrendEnum struct { func (x *InsightsTrendEnum) Reset() { *x = InsightsTrendEnum{} - mi := &file_google_ads_googleads_v21_enums_insights_trend_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_insights_trend_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *InsightsTrendEnum) String() string { func (*InsightsTrendEnum) ProtoMessage() {} func (x *InsightsTrendEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_insights_trend_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_insights_trend_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,17 +134,17 @@ func (x *InsightsTrendEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsTrendEnum.ProtoReflect.Descriptor instead. func (*InsightsTrendEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_insights_trend_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_insights_trend_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_insights_trend_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x74, 0x72, 0x65, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7a, 0x0a, 0x11, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x65, 0x0a, 0x0d, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x12, 0x0f, 0x0a, 0x0b, 0x55, @@ -155,41 +155,41 @@ var file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc = string([] 0x10, 0x04, 0x12, 0x0d, 0x0a, 0x09, 0x44, 0x45, 0x43, 0x4c, 0x49, 0x4e, 0x49, 0x4e, 0x47, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc), len(file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_insights_trend_proto_rawDesc), len(file_google_ads_googleads_v22_enums_insights_trend_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_insights_trend_proto_rawDescData + return file_google_ads_googleads_v22_enums_insights_trend_proto_rawDescData } -var file_google_ads_googleads_v21_enums_insights_trend_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_insights_trend_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_insights_trend_proto_goTypes = []any{ - (InsightsTrendEnum_InsightsTrend)(0), // 0: google.ads.googleads.v21.enums.InsightsTrendEnum.InsightsTrend - (*InsightsTrendEnum)(nil), // 1: google.ads.googleads.v21.enums.InsightsTrendEnum +var file_google_ads_googleads_v22_enums_insights_trend_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_insights_trend_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_insights_trend_proto_goTypes = []any{ + (InsightsTrendEnum_InsightsTrend)(0), // 0: google.ads.googleads.v22.enums.InsightsTrendEnum.InsightsTrend + (*InsightsTrendEnum)(nil), // 1: google.ads.googleads.v22.enums.InsightsTrendEnum } -var file_google_ads_googleads_v21_enums_insights_trend_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_insights_trend_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +197,27 @@ var file_google_ads_googleads_v21_enums_insights_trend_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_insights_trend_proto_init() } -func file_google_ads_googleads_v21_enums_insights_trend_proto_init() { - if File_google_ads_googleads_v21_enums_insights_trend_proto != nil { +func init() { file_google_ads_googleads_v22_enums_insights_trend_proto_init() } +func file_google_ads_googleads_v22_enums_insights_trend_proto_init() { + if File_google_ads_googleads_v22_enums_insights_trend_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc), len(file_google_ads_googleads_v21_enums_insights_trend_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_insights_trend_proto_rawDesc), len(file_google_ads_googleads_v22_enums_insights_trend_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_insights_trend_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_insights_trend_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_insights_trend_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_insights_trend_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_insights_trend_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_insights_trend_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_insights_trend_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_insights_trend_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_insights_trend_proto = out.File - file_google_ads_googleads_v21_enums_insights_trend_proto_goTypes = nil - file_google_ads_googleads_v21_enums_insights_trend_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_insights_trend_proto = out.File + file_google_ads_googleads_v22_enums_insights_trend_proto_goTypes = nil + file_google_ads_googleads_v22_enums_insights_trend_proto_depIdxs = nil } diff --git a/enums/interaction_event_type.pb.go b/enums/interaction_event_type.pb.go index 735329a2..1d5c7adf 100644 --- a/enums/interaction_event_type.pb.go +++ b/enums/interaction_event_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/interaction_event_type.proto +// source: google/ads/googleads/v22/enums/interaction_event_type.proto package enums @@ -90,11 +90,11 @@ func (x InteractionEventTypeEnum_InteractionEventType) String() string { } func (InteractionEventTypeEnum_InteractionEventType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_interaction_event_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_interaction_event_type_proto_enumTypes[0].Descriptor() } func (InteractionEventTypeEnum_InteractionEventType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_interaction_event_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_interaction_event_type_proto_enumTypes[0] } func (x InteractionEventTypeEnum_InteractionEventType) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_enums_interaction_event_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_interaction_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_interaction_event_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *InteractionEventTypeEnum) String() string { func (*InteractionEventTypeEnum) ProtoMessage() {} func (x *InteractionEventTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_interaction_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_interaction_event_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *InteractionEventTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InteractionEventTypeEnum.ProtoReflect.Descriptor instead. func (*InteractionEventTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_interaction_event_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_interaction_event_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,42 +162,42 @@ var file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x49, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_interaction_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_interaction_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_interaction_event_type_proto_goTypes = []any{ - (InteractionEventTypeEnum_InteractionEventType)(0), // 0: google.ads.googleads.v21.enums.InteractionEventTypeEnum.InteractionEventType - (*InteractionEventTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.InteractionEventTypeEnum +var file_google_ads_googleads_v22_enums_interaction_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_interaction_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_interaction_event_type_proto_goTypes = []any{ + (InteractionEventTypeEnum_InteractionEventType)(0), // 0: google.ads.googleads.v22.enums.InteractionEventTypeEnum.InteractionEventType + (*InteractionEventTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.InteractionEventTypeEnum } -var file_google_ads_googleads_v21_enums_interaction_event_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_interaction_event_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_interaction_event_type_proto_init() } -func file_google_ads_googleads_v21_enums_interaction_event_type_proto_init() { - if File_google_ads_googleads_v21_enums_interaction_event_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_interaction_event_type_proto_init() } +func file_google_ads_googleads_v22_enums_interaction_event_type_proto_init() { + if File_google_ads_googleads_v22_enums_interaction_event_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_interaction_event_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_interaction_event_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_interaction_event_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_interaction_event_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_interaction_event_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_interaction_event_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_interaction_event_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_interaction_event_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_interaction_event_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_interaction_event_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_interaction_event_type_proto = out.File - file_google_ads_googleads_v21_enums_interaction_event_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_interaction_event_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_interaction_event_type_proto = out.File + file_google_ads_googleads_v22_enums_interaction_event_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_interaction_event_type_proto_depIdxs = nil } diff --git a/enums/interaction_type.pb.go b/enums/interaction_type.pb.go index 2696026c..36247ad0 100644 --- a/enums/interaction_type.pb.go +++ b/enums/interaction_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/interaction_type.proto +// source: google/ads/googleads/v22/enums/interaction_type.proto package enums @@ -72,11 +72,11 @@ func (x InteractionTypeEnum_InteractionType) String() string { } func (InteractionTypeEnum_InteractionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_interaction_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_interaction_type_proto_enumTypes[0].Descriptor() } func (InteractionTypeEnum_InteractionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_interaction_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_interaction_type_proto_enumTypes[0] } func (x InteractionTypeEnum_InteractionType) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_enums_interaction_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_interaction_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *InteractionTypeEnum) String() string { func (*InteractionTypeEnum) ProtoMessage() {} func (x *InteractionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_interaction_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,60 +122,60 @@ func (x *InteractionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InteractionTypeEnum.ProtoReflect.Descriptor instead. func (*InteractionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_interaction_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_interaction_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_interaction_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_interaction_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x52, 0x0a, 0x13, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_interaction_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_interaction_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_interaction_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_interaction_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_interaction_type_proto_goTypes = []any{ - (InteractionTypeEnum_InteractionType)(0), // 0: google.ads.googleads.v21.enums.InteractionTypeEnum.InteractionType - (*InteractionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.InteractionTypeEnum +var file_google_ads_googleads_v22_enums_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_interaction_type_proto_goTypes = []any{ + (InteractionTypeEnum_InteractionType)(0), // 0: google.ads.googleads.v22.enums.InteractionTypeEnum.InteractionType + (*InteractionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.InteractionTypeEnum } -var file_google_ads_googleads_v21_enums_interaction_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_enums_interaction_type_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_interaction_type_proto_init() } -func file_google_ads_googleads_v21_enums_interaction_type_proto_init() { - if File_google_ads_googleads_v21_enums_interaction_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_interaction_type_proto_init() } +func file_google_ads_googleads_v22_enums_interaction_type_proto_init() { + if File_google_ads_googleads_v22_enums_interaction_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_interaction_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_interaction_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_interaction_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_interaction_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_interaction_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_interaction_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_interaction_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_interaction_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_interaction_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_interaction_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_interaction_type_proto = out.File - file_google_ads_googleads_v21_enums_interaction_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_interaction_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_interaction_type_proto = out.File + file_google_ads_googleads_v22_enums_interaction_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_interaction_type_proto_depIdxs = nil } diff --git a/enums/invoice_type.pb.go b/enums/invoice_type.pb.go index 65409560..2c504f9e 100644 --- a/enums/invoice_type.pb.go +++ b/enums/invoice_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/invoice_type.proto +// source: google/ads/googleads/v22/enums/invoice_type.proto package enums @@ -76,11 +76,11 @@ func (x InvoiceTypeEnum_InvoiceType) String() string { } func (InvoiceTypeEnum_InvoiceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_invoice_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_invoice_type_proto_enumTypes[0].Descriptor() } func (InvoiceTypeEnum_InvoiceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_invoice_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_invoice_type_proto_enumTypes[0] } func (x InvoiceTypeEnum_InvoiceType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_invoice_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_invoice_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_invoice_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *InvoiceTypeEnum) String() string { func (*InvoiceTypeEnum) ProtoMessage() {} func (x *InvoiceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_invoice_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_invoice_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *InvoiceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InvoiceTypeEnum.ProtoReflect.Descriptor instead. func (*InvoiceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_invoice_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_invoice_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_invoice_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x49, 0x6e, 0x76, 0x6f, 0x69, 0x63, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_invoice_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_invoice_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_invoice_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_invoice_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_invoice_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_invoice_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_invoice_type_proto_goTypes = []any{ - (InvoiceTypeEnum_InvoiceType)(0), // 0: google.ads.googleads.v21.enums.InvoiceTypeEnum.InvoiceType - (*InvoiceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.InvoiceTypeEnum +var file_google_ads_googleads_v22_enums_invoice_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_invoice_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_invoice_type_proto_goTypes = []any{ + (InvoiceTypeEnum_InvoiceType)(0), // 0: google.ads.googleads.v22.enums.InvoiceTypeEnum.InvoiceType + (*InvoiceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.InvoiceTypeEnum } -var file_google_ads_googleads_v21_enums_invoice_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_invoice_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_invoice_type_proto_init() } -func file_google_ads_googleads_v21_enums_invoice_type_proto_init() { - if File_google_ads_googleads_v21_enums_invoice_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_invoice_type_proto_init() } +func file_google_ads_googleads_v22_enums_invoice_type_proto_init() { + if File_google_ads_googleads_v22_enums_invoice_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_invoice_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_invoice_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_invoice_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_invoice_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_invoice_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_invoice_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_invoice_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_invoice_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_invoice_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_invoice_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_invoice_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_invoice_type_proto = out.File - file_google_ads_googleads_v21_enums_invoice_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_invoice_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_invoice_type_proto = out.File + file_google_ads_googleads_v22_enums_invoice_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_invoice_type_proto_depIdxs = nil } diff --git a/enums/keyword_match_type.pb.go b/enums/keyword_match_type.pb.go index ea86c652..dc36885c 100644 --- a/enums/keyword_match_type.pb.go +++ b/enums/keyword_match_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_match_type.proto +// source: google/ads/googleads/v22/enums/keyword_match_type.proto package enums @@ -80,11 +80,11 @@ func (x KeywordMatchTypeEnum_KeywordMatchType) String() string { } func (KeywordMatchTypeEnum_KeywordMatchType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_match_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_match_type_proto_enumTypes[0].Descriptor() } func (KeywordMatchTypeEnum_KeywordMatchType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_match_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_match_type_proto_enumTypes[0] } func (x KeywordMatchTypeEnum_KeywordMatchType) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_keyword_match_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_match_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *KeywordMatchTypeEnum) String() string { func (*KeywordMatchTypeEnum) ProtoMessage() {} func (x *KeywordMatchTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_match_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *KeywordMatchTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordMatchTypeEnum.ProtoReflect.Descriptor instead. func (*KeywordMatchTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_match_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_match_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6a, 0x0a, 0x14, 0x4b, 0x65, 0x79, + 0x76, 0x32, 0x32, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x4b, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_match_type_proto_goTypes = []any{ - (KeywordMatchTypeEnum_KeywordMatchType)(0), // 0: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - (*KeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordMatchTypeEnum +var file_google_ads_googleads_v22_enums_keyword_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_match_type_proto_goTypes = []any{ + (KeywordMatchTypeEnum_KeywordMatchType)(0), // 0: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + (*KeywordMatchTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordMatchTypeEnum } -var file_google_ads_googleads_v21_enums_keyword_match_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_keyword_match_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_match_type_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_match_type_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_match_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_match_type_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_match_type_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_match_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_match_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_match_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_match_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_match_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_match_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_match_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_match_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_match_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_match_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_match_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_match_type_proto = out.File - file_google_ads_googleads_v21_enums_keyword_match_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_match_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_match_type_proto = out.File + file_google_ads_googleads_v22_enums_keyword_match_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 e1ee66e5..57e26896 100644 --- a/enums/keyword_plan_aggregate_metric_type.pb.go +++ b/enums/keyword_plan_aggregate_metric_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_aggregate_metric_type.proto +// source: google/ads/googleads/v22/enums/keyword_plan_aggregate_metric_type.proto package enums @@ -72,11 +72,11 @@ func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Strin } func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0].Descriptor() } func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_enumTypes[0] } func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) Numbe // Deprecated: Use KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType.Descriptor instead. func (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *KeywordPlanAggregateMetricTypeEnum) String() string { func (*KeywordPlanAggregateMetricTypeEnum) ProtoMessage() {} func (x *KeywordPlanAggregateMetricTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,19 +122,19 @@ func (x *KeywordPlanAggregateMetricTypeEnum) ProtoReflect() protoreflect.Message // Deprecated: Use KeywordPlanAggregateMetricTypeEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanAggregateMetricTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x70, 0x0a, 0x22, 0x4b, 0x65, 0x79, + 0x76, 0x32, 0x32, 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, @@ -143,43 +143,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_goTypes = []any{ - (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType - (*KeywordPlanAggregateMetricTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanAggregateMetricTypeEnum +var file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_goTypes = []any{ + (KeywordPlanAggregateMetricTypeEnum_KeywordPlanAggregateMetricType)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanAggregateMetricTypeEnum.KeywordPlanAggregateMetricType + (*KeywordPlanAggregateMetricTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanAggregateMetricTypeEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_aggregate_metric_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_aggregate_metric_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 d583a522..84a634ca 100644 --- a/enums/keyword_plan_competition_level.pb.go +++ b/enums/keyword_plan_competition_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_competition_level.proto +// source: google/ads/googleads/v22/enums/keyword_plan_competition_level.proto package enums @@ -80,11 +80,11 @@ func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) String() st } func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_enumTypes[0].Descriptor() } func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_enumTypes[0] } func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) Number() pr // Deprecated: Use KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel.Descriptor instead. func (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *KeywordPlanCompetitionLevelEnum) String() string { func (*KeywordPlanCompetitionLevelEnum) ProtoMessage() {} func (x *KeywordPlanCompetitionLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *KeywordPlanCompetitionLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCompetitionLevelEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanCompetitionLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_goTypes = []any{ - (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel - (*KeywordPlanCompetitionLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanCompetitionLevelEnum +var file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_goTypes = []any{ + (KeywordPlanCompetitionLevelEnum_KeywordPlanCompetitionLevel)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanCompetitionLevelEnum.KeywordPlanCompetitionLevel + (*KeywordPlanCompetitionLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanCompetitionLevelEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_competition_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_competition_level_proto_goTypes = nil + file_google_ads_googleads_v22_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 ac966f9b..b2804fc8 100644 --- a/enums/keyword_plan_concept_group_type.pb.go +++ b/enums/keyword_plan_concept_group_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_concept_group_type.proto +// source: google/ads/googleads/v22/enums/keyword_plan_concept_group_type.proto package enums @@ -85,11 +85,11 @@ func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) String() st } func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_enumTypes[0].Descriptor() } func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_enumTypes[0] } func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) Number() pr // Deprecated: Use KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType.Descriptor instead. func (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *KeywordPlanConceptGroupTypeEnum) String() string { func (*KeywordPlanConceptGroupTypeEnum) ProtoMessage() {} func (x *KeywordPlanConceptGroupTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *KeywordPlanConceptGroupTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanConceptGroupTypeEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanConceptGroupTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,42 +158,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x4b, 0x65, 0x79, 0x77, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_goTypes = []any{ - (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType - (*KeywordPlanConceptGroupTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanConceptGroupTypeEnum +var file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_goTypes = []any{ + (KeywordPlanConceptGroupTypeEnum_KeywordPlanConceptGroupType)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanConceptGroupTypeEnum.KeywordPlanConceptGroupType + (*KeywordPlanConceptGroupTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanConceptGroupTypeEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_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_v21_enums_keyword_plan_concept_group_type_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_concept_group_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_concept_group_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 d33b7b8b..9dd75361 100644 --- a/enums/keyword_plan_forecast_interval.pb.go +++ b/enums/keyword_plan_forecast_interval.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_forecast_interval.proto +// source: google/ads/googleads/v22/enums/keyword_plan_forecast_interval.proto package enums @@ -83,11 +83,11 @@ func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) String() st } func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_enumTypes[0].Descriptor() } func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_enumTypes[0] } func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Number() protoreflect.EnumNumber { @@ -96,7 +96,7 @@ func (x KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) Number() pr // Deprecated: Use KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval.Descriptor instead. func (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *KeywordPlanForecastIntervalEnum) String() string { func (*KeywordPlanForecastIntervalEnum) ProtoMessage() {} func (x *KeywordPlanForecastIntervalEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,18 +133,18 @@ func (x *KeywordPlanForecastIntervalEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanForecastIntervalEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanForecastIntervalEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_goTypes = []any{ - (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval - (*KeywordPlanForecastIntervalEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanForecastIntervalEnum +var file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_goTypes = []any{ + (KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval + (*KeywordPlanForecastIntervalEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanForecastIntervalEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_forecast_interval_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_forecast_interval_proto_goTypes = nil + file_google_ads_googleads_v22_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 45797cf6..681eaae9 100644 --- a/enums/keyword_plan_keyword_annotation.pb.go +++ b/enums/keyword_plan_keyword_annotation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_keyword_annotation.proto +// source: google/ads/googleads/v22/enums/keyword_plan_keyword_annotation.proto package enums @@ -72,11 +72,11 @@ func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) String() } func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_enumTypes[0].Descriptor() } func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_enumTypes[0] } func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) Number() // Deprecated: Use KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation.Descriptor instead. func (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *KeywordPlanKeywordAnnotationEnum) String() string { func (*KeywordPlanKeywordAnnotationEnum) ProtoMessage() {} func (x *KeywordPlanKeywordAnnotationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *KeywordPlanKeywordAnnotationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanKeywordAnnotationEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanKeywordAnnotationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,43 +143,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_goTypes = []any{ - (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation - (*KeywordPlanKeywordAnnotationEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanKeywordAnnotationEnum +var file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_goTypes = []any{ + (KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation + (*KeywordPlanKeywordAnnotationEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanKeywordAnnotationEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_keyword_annotation_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_keyword_annotation_proto_goTypes = nil + file_google_ads_googleads_v22_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 3d67090f..f1e4b36b 100644 --- a/enums/keyword_plan_network.pb.go +++ b/enums/keyword_plan_network.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/keyword_plan_network.proto +// source: google/ads/googleads/v22/enums/keyword_plan_network.proto package enums @@ -76,11 +76,11 @@ func (x KeywordPlanNetworkEnum_KeywordPlanNetwork) String() string { } func (KeywordPlanNetworkEnum_KeywordPlanNetwork) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_keyword_plan_network_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_keyword_plan_network_proto_enumTypes[0].Descriptor() } func (KeywordPlanNetworkEnum_KeywordPlanNetwork) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_keyword_plan_network_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_keyword_plan_network_proto_enumTypes[0] } func (x KeywordPlanNetworkEnum_KeywordPlanNetwork) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_keyword_plan_network_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_network_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *KeywordPlanNetworkEnum) String() string { func (*KeywordPlanNetworkEnum) ProtoMessage() {} func (x *KeywordPlanNetworkEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_keyword_plan_network_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_keyword_plan_network_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *KeywordPlanNetworkEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanNetworkEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanNetworkEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_keyword_plan_network_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_keyword_plan_network_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x4b, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDescData + return file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDescData } -var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_goTypes = []any{ - (KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 0: google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - (*KeywordPlanNetworkEnum)(nil), // 1: google.ads.googleads.v21.enums.KeywordPlanNetworkEnum +var file_google_ads_googleads_v22_enums_keyword_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_keyword_plan_network_proto_goTypes = []any{ + (KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 0: google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + (*KeywordPlanNetworkEnum)(nil), // 1: google.ads.googleads.v22.enums.KeywordPlanNetworkEnum } -var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_keyword_plan_network_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_keyword_plan_network_proto_init() } -func file_google_ads_googleads_v21_enums_keyword_plan_network_proto_init() { - if File_google_ads_googleads_v21_enums_keyword_plan_network_proto != nil { +func init() { file_google_ads_googleads_v22_enums_keyword_plan_network_proto_init() } +func file_google_ads_googleads_v22_enums_keyword_plan_network_proto_init() { + if File_google_ads_googleads_v22_enums_keyword_plan_network_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc), len(file_google_ads_googleads_v21_enums_keyword_plan_network_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDesc), len(file_google_ads_googleads_v22_enums_keyword_plan_network_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_keyword_plan_network_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_keyword_plan_network_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_keyword_plan_network_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_keyword_plan_network_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_keyword_plan_network_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_keyword_plan_network_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_keyword_plan_network_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_keyword_plan_network_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_keyword_plan_network_proto = out.File - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_goTypes = nil - file_google_ads_googleads_v21_enums_keyword_plan_network_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_keyword_plan_network_proto = out.File + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_goTypes = nil + file_google_ads_googleads_v22_enums_keyword_plan_network_proto_depIdxs = nil } diff --git a/enums/label_status.pb.go b/enums/label_status.pb.go index b5015ab5..3be65d6a 100644 --- a/enums/label_status.pb.go +++ b/enums/label_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/label_status.proto +// source: google/ads/googleads/v22/enums/label_status.proto package enums @@ -76,11 +76,11 @@ func (x LabelStatusEnum_LabelStatus) String() string { } func (LabelStatusEnum_LabelStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_label_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_label_status_proto_enumTypes[0].Descriptor() } func (LabelStatusEnum_LabelStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_label_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_label_status_proto_enumTypes[0] } func (x LabelStatusEnum_LabelStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_label_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_label_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_label_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LabelStatusEnum) String() string { func (*LabelStatusEnum) ProtoMessage() {} func (x *LabelStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_label_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_label_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *LabelStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LabelStatusEnum.ProtoReflect.Descriptor instead. func (*LabelStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_label_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_label_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_label_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_label_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_label_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_label_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_enums_label_status_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_label_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_label_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_label_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_label_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_label_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_label_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_label_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_label_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_label_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_label_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_label_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_label_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_label_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_label_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_label_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_label_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_label_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_label_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_label_status_proto_goTypes = []any{ - (LabelStatusEnum_LabelStatus)(0), // 0: google.ads.googleads.v21.enums.LabelStatusEnum.LabelStatus - (*LabelStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.LabelStatusEnum +var file_google_ads_googleads_v22_enums_label_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_label_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_label_status_proto_goTypes = []any{ + (LabelStatusEnum_LabelStatus)(0), // 0: google.ads.googleads.v22.enums.LabelStatusEnum.LabelStatus + (*LabelStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.LabelStatusEnum } -var file_google_ads_googleads_v21_enums_label_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_label_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_label_status_proto_init() } -func file_google_ads_googleads_v21_enums_label_status_proto_init() { - if File_google_ads_googleads_v21_enums_label_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_label_status_proto_init() } +func file_google_ads_googleads_v22_enums_label_status_proto_init() { + if File_google_ads_googleads_v22_enums_label_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_label_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_label_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_label_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_label_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_label_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_label_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_label_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_label_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_label_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_label_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_label_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_label_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_label_status_proto = out.File - file_google_ads_googleads_v21_enums_label_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_label_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_label_status_proto = out.File + file_google_ads_googleads_v22_enums_label_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_label_status_proto_depIdxs = nil } diff --git a/enums/landing_page_source.pb.go b/enums/landing_page_source.pb.go index 88ec96e5..b38a1275 100644 --- a/enums/landing_page_source.pb.go +++ b/enums/landing_page_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/landing_page_source.proto +// source: google/ads/googleads/v22/enums/landing_page_source.proto package enums @@ -78,11 +78,11 @@ func (x LandingPageSourceEnum_LandingPageSource) String() string { } func (LandingPageSourceEnum_LandingPageSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_landing_page_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_landing_page_source_proto_enumTypes[0].Descriptor() } func (LandingPageSourceEnum_LandingPageSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_landing_page_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_landing_page_source_proto_enumTypes[0] } func (x LandingPageSourceEnum_LandingPageSource) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x LandingPageSourceEnum_LandingPageSource) Number() protoreflect.EnumNumbe // Deprecated: Use LandingPageSourceEnum_LandingPageSource.Descriptor instead. func (LandingPageSourceEnum_LandingPageSource) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the source of a landing page in the landing @@ -104,7 +104,7 @@ type LandingPageSourceEnum struct { func (x *LandingPageSourceEnum) Reset() { *x = LandingPageSourceEnum{} - mi := &file_google_ads_googleads_v21_enums_landing_page_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_landing_page_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *LandingPageSourceEnum) String() string { func (*LandingPageSourceEnum) ProtoMessage() {} func (x *LandingPageSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_landing_page_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_landing_page_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,18 +129,18 @@ func (x *LandingPageSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LandingPageSourceEnum.ProtoReflect.Descriptor instead. func (*LandingPageSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_landing_page_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_landing_page_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x15, 0x4c, 0x61, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x15, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x50, 0x0a, 0x11, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, @@ -149,41 +149,41 @@ var file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc = stri 0x49, 0x53, 0x45, 0x52, 0x10, 0x02, 0x12, 0x0d, 0x0a, 0x09, 0x41, 0x55, 0x54, 0x4f, 0x4d, 0x41, 0x54, 0x49, 0x43, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x4c, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x4c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x50, 0x61, 0x67, 0x65, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_landing_page_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_landing_page_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_landing_page_source_proto_goTypes = []any{ - (LandingPageSourceEnum_LandingPageSource)(0), // 0: google.ads.googleads.v21.enums.LandingPageSourceEnum.LandingPageSource - (*LandingPageSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.LandingPageSourceEnum +var file_google_ads_googleads_v22_enums_landing_page_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_landing_page_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_landing_page_source_proto_goTypes = []any{ + (LandingPageSourceEnum_LandingPageSource)(0), // 0: google.ads.googleads.v22.enums.LandingPageSourceEnum.LandingPageSource + (*LandingPageSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.LandingPageSourceEnum } -var file_google_ads_googleads_v21_enums_landing_page_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_landing_page_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_landing_page_source_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_landing_page_source_proto_init() } -func file_google_ads_googleads_v21_enums_landing_page_source_proto_init() { - if File_google_ads_googleads_v21_enums_landing_page_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_landing_page_source_proto_init() } +func file_google_ads_googleads_v22_enums_landing_page_source_proto_init() { + if File_google_ads_googleads_v22_enums_landing_page_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_landing_page_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_landing_page_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_landing_page_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_landing_page_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_landing_page_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_landing_page_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_landing_page_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_landing_page_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_landing_page_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_landing_page_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_landing_page_source_proto = out.File - file_google_ads_googleads_v21_enums_landing_page_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_landing_page_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_landing_page_source_proto = out.File + file_google_ads_googleads_v22_enums_landing_page_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_landing_page_source_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 effc6bfd..4718553b 100644 --- a/enums/lead_form_call_to_action_type.pb.go +++ b/enums/lead_form_call_to_action_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/lead_form_call_to_action_type.proto +// source: google/ads/googleads/v22/enums/lead_form_call_to_action_type.proto package enums @@ -124,11 +124,11 @@ func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) String() string { } func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_enumTypes[0].Descriptor() } func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_enumTypes[0] } func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Number() protoreflect.EnumNumber { @@ -137,7 +137,7 @@ func (x LeadFormCallToActionTypeEnum_LeadFormCallToActionType) Number() protoref // Deprecated: Use LeadFormCallToActionTypeEnum_LeadFormCallToActionType.Descriptor instead. func (LeadFormCallToActionTypeEnum_LeadFormCallToActionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *LeadFormCallToActionTypeEnum) String() string { func (*LeadFormCallToActionTypeEnum) ProtoMessage() {} func (x *LeadFormCallToActionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,18 +174,18 @@ func (x *LeadFormCallToActionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormCallToActionTypeEnum.ProtoReflect.Descriptor instead. func (*LeadFormCallToActionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -207,42 +207,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x65, 0x61, 0x64, 0x46, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_goTypes = []any{ - (LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 0: google.ads.googleads.v21.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType - (*LeadFormCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LeadFormCallToActionTypeEnum +var file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_goTypes = []any{ + (LeadFormCallToActionTypeEnum_LeadFormCallToActionType)(0), // 0: google.ads.googleads.v22.enums.LeadFormCallToActionTypeEnum.LeadFormCallToActionType + (*LeadFormCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LeadFormCallToActionTypeEnum } -var file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -250,27 +250,27 @@ var file_google_ads_googleads_v21_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_v21_enums_lead_form_call_to_action_type_proto_init() } -func file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_init() { - if File_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_init() } +func file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_init() { + if File_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto = out.File - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_lead_form_call_to_action_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto = out.File + file_google_ads_googleads_v22_enums_lead_form_call_to_action_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 6dc17dd2..1ce55069 100644 --- a/enums/lead_form_desired_intent.pb.go +++ b/enums/lead_form_desired_intent.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/lead_form_desired_intent.proto +// source: google/ads/googleads/v22/enums/lead_form_desired_intent.proto package enums @@ -76,11 +76,11 @@ func (x LeadFormDesiredIntentEnum_LeadFormDesiredIntent) String() string { } func (LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_enumTypes[0].Descriptor() } func (LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_enumTypes[0] } func (x LeadFormDesiredIntentEnum_LeadFormDesiredIntent) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LeadFormDesiredIntentEnum) String() string { func (*LeadFormDesiredIntentEnum) ProtoMessage() {} func (x *LeadFormDesiredIntentEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LeadFormDesiredIntentEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormDesiredIntentEnum.ProtoReflect.Descriptor instead. func (*LeadFormDesiredIntentEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_lead_form_desired_intent_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_lead_form_desired_intent_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x65, 0x61, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDescData + return file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDescData } -var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_goTypes = []any{ - (LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 0: google.ads.googleads.v21.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent - (*LeadFormDesiredIntentEnum)(nil), // 1: google.ads.googleads.v21.enums.LeadFormDesiredIntentEnum +var file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_goTypes = []any{ + (LeadFormDesiredIntentEnum_LeadFormDesiredIntent)(0), // 0: google.ads.googleads.v22.enums.LeadFormDesiredIntentEnum.LeadFormDesiredIntent + (*LeadFormDesiredIntentEnum)(nil), // 1: google.ads.googleads.v22.enums.LeadFormDesiredIntentEnum } -var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_init() } -func file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_init() { - if File_google_ads_googleads_v21_enums_lead_form_desired_intent_proto != nil { +func init() { file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_init() } +func file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_init() { + if File_google_ads_googleads_v22_enums_lead_form_desired_intent_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_lead_form_desired_intent_proto = out.File - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_goTypes = nil - file_google_ads_googleads_v21_enums_lead_form_desired_intent_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_lead_form_desired_intent_proto = out.File + file_google_ads_googleads_v22_enums_lead_form_desired_intent_proto_goTypes = nil + file_google_ads_googleads_v22_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 00e95ef8..76278b29 100644 --- a/enums/lead_form_field_user_input_type.pb.go +++ b/enums/lead_form_field_user_input_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/lead_form_field_user_input_type.proto +// source: google/ads/googleads/v22/enums/lead_form_field_user_input_type.proto package enums @@ -821,11 +821,11 @@ func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) String() stri } func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_enumTypes[0].Descriptor() } func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_enumTypes[0] } func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Number() protoreflect.EnumNumber { @@ -834,7 +834,7 @@ func (x LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) Number() prot // Deprecated: Use LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType.Descriptor instead. func (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -858,7 +858,7 @@ func (x *LeadFormFieldUserInputTypeEnum) String() string { func (*LeadFormFieldUserInputTypeEnum) ProtoMessage() {} func (x *LeadFormFieldUserInputTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -871,18 +871,18 @@ func (x *LeadFormFieldUserInputTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormFieldUserInputTypeEnum.ProtoReflect.Descriptor instead. func (*LeadFormFieldUserInputTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1042,42 +1042,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_goTypes = []any{ - (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 0: google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType - (*LeadFormFieldUserInputTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum +var file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_goTypes = []any{ + (LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 0: google.ads.googleads.v22.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType + (*LeadFormFieldUserInputTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LeadFormFieldUserInputTypeEnum } -var file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -1085,27 +1085,27 @@ var file_google_ads_googleads_v21_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_v21_enums_lead_form_field_user_input_type_proto_init() } -func file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_init() { - if File_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_init() } +func file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_init() { + if File_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto = out.File - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_lead_form_field_user_input_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto = out.File + file_google_ads_googleads_v22_enums_lead_form_field_user_input_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 a062749d..8b8c1887 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 @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/lead_form_post_submit_call_to_action_type.proto +// source: google/ads/googleads/v22/enums/lead_form_post_submit_call_to_action_type.proto package enums @@ -85,11 +85,11 @@ func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionTyp } func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0].Descriptor() } func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes[0] } func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionTyp // Deprecated: Use LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType.Descriptor instead. func (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *LeadFormPostSubmitCallToActionTypeEnum) String() string { func (*LeadFormPostSubmitCallToActionTypeEnum) ProtoMessage() {} func (x *LeadFormPostSubmitCallToActionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *LeadFormPostSubmitCallToActionTypeEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use LeadFormPostSubmitCallToActionTypeEnum.ProtoReflect.Descriptor instead. func (*LeadFormPostSubmitCallToActionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,43 +160,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = []any{ - (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 0: google.ads.googleads.v21.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType - (*LeadFormPostSubmitCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LeadFormPostSubmitCallToActionTypeEnum +var file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = []any{ + (LeadFormPostSubmitCallToActionTypeEnum_LeadFormPostSubmitCallToActionType)(0), // 0: google.ads.googleads.v22.enums.LeadFormPostSubmitCallToActionTypeEnum.LeadFormPostSubmitCallToActionType + (*LeadFormPostSubmitCallToActionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LeadFormPostSubmitCallToActionTypeEnum } -var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,28 +205,28 @@ var file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_typ } func init() { - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_init() + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_init() } -func file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_init() { - if File_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto != nil { +func file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_init() { + if File_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto = out.File - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_lead_form_post_submit_call_to_action_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto = out.File + file_google_ads_googleads_v22_enums_lead_form_post_submit_call_to_action_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 3514d9d9..f7877c28 100644 --- a/enums/legacy_app_install_ad_app_store.pb.go +++ b/enums/legacy_app_install_ad_app_store.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/legacy_app_install_ad_app_store.proto +// source: google/ads/googleads/v22/enums/legacy_app_install_ad_app_store.proto package enums @@ -88,11 +88,11 @@ func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) String() stri } func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_enumTypes[0].Descriptor() } func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_enumTypes[0] } func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) Number() prot // Deprecated: Use LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore.Descriptor instead. func (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *LegacyAppInstallAdAppStoreEnum) String() string { func (*LegacyAppInstallAdAppStoreEnum) ProtoMessage() {} func (x *LegacyAppInstallAdAppStoreEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *LegacyAppInstallAdAppStoreEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LegacyAppInstallAdAppStoreEnum.ProtoReflect.Descriptor instead. func (*LegacyAppInstallAdAppStoreEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -164,42 +164,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDesc), len(file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDesc), len(file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDescData + return file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDescData } -var file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_goTypes = []any{ - (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 0: google.ads.googleads.v21.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore - (*LegacyAppInstallAdAppStoreEnum)(nil), // 1: google.ads.googleads.v21.enums.LegacyAppInstallAdAppStoreEnum +var file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_goTypes = []any{ + (LegacyAppInstallAdAppStoreEnum_LegacyAppInstallAdAppStore)(0), // 0: google.ads.googleads.v22.enums.LegacyAppInstallAdAppStoreEnum.LegacyAppInstallAdAppStore + (*LegacyAppInstallAdAppStoreEnum)(nil), // 1: google.ads.googleads.v22.enums.LegacyAppInstallAdAppStoreEnum } -var file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_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_v21_enums_legacy_app_install_ad_app_store_proto_init() } -func file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_init() { - if File_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto != nil { +func init() { file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_init() } +func file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_init() { + if File_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDesc), len(file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDesc), len(file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto = out.File - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_goTypes = nil - file_google_ads_googleads_v21_enums_legacy_app_install_ad_app_store_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto = out.File + file_google_ads_googleads_v22_enums_legacy_app_install_ad_app_store_proto_goTypes = nil + file_google_ads_googleads_v22_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 936e2994..074c15dc 100644 --- a/enums/linked_account_type.pb.go +++ b/enums/linked_account_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/linked_account_type.proto +// source: google/ads/googleads/v22/enums/linked_account_type.proto package enums @@ -73,11 +73,11 @@ func (x LinkedAccountTypeEnum_LinkedAccountType) String() string { } func (LinkedAccountTypeEnum_LinkedAccountType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_linked_account_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_linked_account_type_proto_enumTypes[0].Descriptor() } func (LinkedAccountTypeEnum_LinkedAccountType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_linked_account_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_linked_account_type_proto_enumTypes[0] } func (x LinkedAccountTypeEnum_LinkedAccountType) Number() protoreflect.EnumNumber { @@ -86,7 +86,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_v21_enums_linked_account_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_linked_account_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_linked_account_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *LinkedAccountTypeEnum) String() string { func (*LinkedAccountTypeEnum) ProtoMessage() {} func (x *LinkedAccountTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_linked_account_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_linked_account_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *LinkedAccountTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedAccountTypeEnum.ProtoReflect.Descriptor instead. func (*LinkedAccountTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_linked_account_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_linked_account_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x69, 0x0a, 0x15, 0x4c, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,41 +143,41 @@ var file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x4c, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_linked_account_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_linked_account_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_linked_account_type_proto_goTypes = []any{ - (LinkedAccountTypeEnum_LinkedAccountType)(0), // 0: google.ads.googleads.v21.enums.LinkedAccountTypeEnum.LinkedAccountType - (*LinkedAccountTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LinkedAccountTypeEnum +var file_google_ads_googleads_v22_enums_linked_account_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_linked_account_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_linked_account_type_proto_goTypes = []any{ + (LinkedAccountTypeEnum_LinkedAccountType)(0), // 0: google.ads.googleads.v22.enums.LinkedAccountTypeEnum.LinkedAccountType + (*LinkedAccountTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LinkedAccountTypeEnum } -var file_google_ads_googleads_v21_enums_linked_account_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_enums_linked_account_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_linked_account_type_proto_init() } -func file_google_ads_googleads_v21_enums_linked_account_type_proto_init() { - if File_google_ads_googleads_v21_enums_linked_account_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_linked_account_type_proto_init() } +func file_google_ads_googleads_v22_enums_linked_account_type_proto_init() { + if File_google_ads_googleads_v22_enums_linked_account_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_linked_account_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_linked_account_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_linked_account_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_linked_account_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_linked_account_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_linked_account_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_linked_account_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_linked_account_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_linked_account_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_linked_account_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_linked_account_type_proto = out.File - file_google_ads_googleads_v21_enums_linked_account_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_linked_account_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_linked_account_type_proto = out.File + file_google_ads_googleads_v22_enums_linked_account_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_linked_account_type_proto_depIdxs = nil } diff --git a/enums/linked_product_type.pb.go b/enums/linked_product_type.pb.go index 5aad70c3..01bf93ee 100644 --- a/enums/linked_product_type.pb.go +++ b/enums/linked_product_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/linked_product_type.proto +// source: google/ads/googleads/v22/enums/linked_product_type.proto package enums @@ -89,11 +89,11 @@ func (x LinkedProductTypeEnum_LinkedProductType) String() string { } func (LinkedProductTypeEnum_LinkedProductType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_linked_product_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_linked_product_type_proto_enumTypes[0].Descriptor() } func (LinkedProductTypeEnum_LinkedProductType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_linked_product_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_linked_product_type_proto_enumTypes[0] } func (x LinkedProductTypeEnum_LinkedProductType) Number() protoreflect.EnumNumber { @@ -102,7 +102,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_v21_enums_linked_product_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_linked_product_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_linked_product_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *LinkedProductTypeEnum) String() string { func (*LinkedProductTypeEnum) ProtoMessage() {} func (x *LinkedProductTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_linked_product_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_linked_product_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *LinkedProductTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LinkedProductTypeEnum.ProtoReflect.Descriptor instead. func (*LinkedProductTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_linked_product_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_linked_product_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x15, 0x4c, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,42 +163,42 @@ var file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_linked_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_linked_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_linked_product_type_proto_goTypes = []any{ - (LinkedProductTypeEnum_LinkedProductType)(0), // 0: google.ads.googleads.v21.enums.LinkedProductTypeEnum.LinkedProductType - (*LinkedProductTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LinkedProductTypeEnum +var file_google_ads_googleads_v22_enums_linked_product_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_linked_product_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_linked_product_type_proto_goTypes = []any{ + (LinkedProductTypeEnum_LinkedProductType)(0), // 0: google.ads.googleads.v22.enums.LinkedProductTypeEnum.LinkedProductType + (*LinkedProductTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LinkedProductTypeEnum } -var file_google_ads_googleads_v21_enums_linked_product_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -206,27 +206,27 @@ var file_google_ads_googleads_v21_enums_linked_product_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_linked_product_type_proto_init() } -func file_google_ads_googleads_v21_enums_linked_product_type_proto_init() { - if File_google_ads_googleads_v21_enums_linked_product_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_linked_product_type_proto_init() } +func file_google_ads_googleads_v22_enums_linked_product_type_proto_init() { + if File_google_ads_googleads_v22_enums_linked_product_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_linked_product_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_linked_product_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_linked_product_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_linked_product_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_linked_product_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_linked_product_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_linked_product_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_linked_product_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_linked_product_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_linked_product_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_linked_product_type_proto = out.File - file_google_ads_googleads_v21_enums_linked_product_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_linked_product_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_linked_product_type_proto = out.File + file_google_ads_googleads_v22_enums_linked_product_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 f67f6719..8da3206a 100644 --- a/enums/listing_group_filter_custom_attribute_index.pb.go +++ b/enums/listing_group_filter_custom_attribute_index.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_custom_attribute_index.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_custom_attribute_index.proto package enums @@ -88,11 +88,11 @@ func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttri } func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_enumTypes[0] } func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttri // Deprecated: Use ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex.Descriptor instead. func (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *ListingGroupFilterCustomAttributeIndexEnum) String() string { func (*ListingGroupFilterCustomAttributeIndexEnum) ProtoMessage() {} func (x *ListingGroupFilterCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *ListingGroupFilterCustomAttributeIndexEnum) ProtoReflect() protoreflect // Deprecated: Use ListingGroupFilterCustomAttributeIndexEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterCustomAttributeIndexEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,43 +165,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_goTypes = []any{ - (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex - (*ListingGroupFilterCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterCustomAttributeIndexEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_goTypes = []any{ + (ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex + (*ListingGroupFilterCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterCustomAttributeIndexEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,28 +210,28 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_in } func init() { - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_init() + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto != nil { +func file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_custom_attribute_index_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_custom_attribute_index_proto_goTypes = nil + file_google_ads_googleads_v22_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 c93fa349..3fc3978f 100644 --- a/enums/listing_group_filter_listing_source.pb.go +++ b/enums/listing_group_filter_listing_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_listing_source.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_listing_source.proto package enums @@ -78,11 +78,11 @@ func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Str } func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_enumTypes[0] } func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) Num // Deprecated: Use ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource.Descriptor instead. func (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *ListingGroupFilterListingSourceEnum) String() string { func (*ListingGroupFilterListingSourceEnum) ProtoMessage() {} func (x *ListingGroupFilterListingSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,19 +129,19 @@ func (x *ListingGroupFilterListingSourceEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use ListingGroupFilterListingSourceEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterListingSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x23, 0x4c, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,43 +151,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_goTypes = []any{ - (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource - (*ListingGroupFilterListingSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterListingSourceEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_goTypes = []any{ + (ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource + (*ListingGroupFilterListingSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterListingSourceEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_prot 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_listing_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_listing_source_proto_goTypes = nil + file_google_ads_googleads_v22_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 2cb643a2..016d8ed6 100644 --- a/enums/listing_group_filter_product_category_level.pb.go +++ b/enums/listing_group_filter_product_category_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_product_category_level.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_product_category_level.proto package enums @@ -88,11 +88,11 @@ func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCate } func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_enumTypes[0] } func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCate // Deprecated: Use ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel.Descriptor instead. func (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *ListingGroupFilterProductCategoryLevelEnum) String() string { func (*ListingGroupFilterProductCategoryLevelEnum) ProtoMessage() {} func (x *ListingGroupFilterProductCategoryLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *ListingGroupFilterProductCategoryLevelEnum) ProtoReflect() protoreflect // Deprecated: Use ListingGroupFilterProductCategoryLevelEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterProductCategoryLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,43 +165,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_goTypes = []any{ - (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel - (*ListingGroupFilterProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterProductCategoryLevelEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_goTypes = []any{ + (ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel + (*ListingGroupFilterProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterProductCategoryLevelEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,28 +210,28 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_product_category_le } func init() { - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_init() + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto != nil { +func file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_product_category_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_product_category_level_proto_goTypes = nil + file_google_ads_googleads_v22_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 bcfa5d8c..472c2df9 100644 --- a/enums/listing_group_filter_product_channel.pb.go +++ b/enums/listing_group_filter_product_channel.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_product_channel.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_product_channel.proto package enums @@ -76,11 +76,11 @@ func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) S } func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_enumTypes[0] } func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) N // Deprecated: Use ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel.Descriptor instead. func (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ListingGroupFilterProductChannelEnum) String() string { func (*ListingGroupFilterProductChannelEnum) ProtoMessage() {} func (x *ListingGroupFilterProductChannelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,19 +126,19 @@ func (x *ListingGroupFilterProductChannelEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use ListingGroupFilterProductChannelEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterProductChannelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x24, 0x4c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,43 +148,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_goTypes = []any{ - (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel - (*ListingGroupFilterProductChannelEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterProductChannelEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_goTypes = []any{ + (ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel + (*ListingGroupFilterProductChannelEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterProductChannelEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_product_channel_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_product_channel_proto_goTypes = nil + file_google_ads_googleads_v22_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 3ccf95a2..133a80f5 100644 --- a/enums/listing_group_filter_product_condition.pb.go +++ b/enums/listing_group_filter_product_condition.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_product_condition.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_product_condition.proto package enums @@ -80,11 +80,11 @@ func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductConditio } func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_enumTypes[0] } func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ListingGroupFilterProductConditionEnum_ListingGroupFilterProductConditio // Deprecated: Use ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition.Descriptor instead. func (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ListingGroupFilterProductConditionEnum) String() string { func (*ListingGroupFilterProductConditionEnum) ProtoMessage() {} func (x *ListingGroupFilterProductConditionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,19 +130,19 @@ func (x *ListingGroupFilterProductConditionEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use ListingGroupFilterProductConditionEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterProductConditionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x90, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -154,42 +154,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_goTypes = []any{ - (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition - (*ListingGroupFilterProductConditionEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterProductConditionEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_goTypes = []any{ + (ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition + (*ListingGroupFilterProductConditionEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterProductConditionEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -197,27 +197,27 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_p 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_product_condition_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_product_condition_proto_goTypes = nil + file_google_ads_googleads_v22_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 d571bacd..297ac9b4 100644 --- a/enums/listing_group_filter_product_type_level.pb.go +++ b/enums/listing_group_filter_product_type_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_product_type_level.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_product_type_level.proto package enums @@ -88,11 +88,11 @@ func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLeve } func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_enumTypes[0] } func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLeve // Deprecated: Use ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel.Descriptor instead. func (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ListingGroupFilterProductTypeLevelEnum) String() string { func (*ListingGroupFilterProductTypeLevelEnum) ProtoMessage() {} func (x *ListingGroupFilterProductTypeLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,19 +138,19 @@ func (x *ListingGroupFilterProductTypeLevelEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use ListingGroupFilterProductTypeLevelEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterProductTypeLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa8, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_goTypes = []any{ - (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel - (*ListingGroupFilterProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterProductTypeLevelEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_goTypes = []any{ + (ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel + (*ListingGroupFilterProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterProductTypeLevelEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_product_type_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_product_type_level_proto_goTypes = nil + file_google_ads_googleads_v22_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 57e27f43..4e9615bd 100644 --- a/enums/listing_group_filter_type_enum.pb.go +++ b/enums/listing_group_filter_type_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_filter_type_enum.proto +// source: google/ads/googleads/v22/enums/listing_group_filter_type_enum.proto package enums @@ -80,11 +80,11 @@ func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) String() string { } func (ListingGroupFilterTypeEnum_ListingGroupFilterType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_enumTypes[0].Descriptor() } func (ListingGroupFilterTypeEnum_ListingGroupFilterType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_enumTypes[0] } func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ListingGroupFilterTypeEnum_ListingGroupFilterType) Number() protoreflect // Deprecated: Use ListingGroupFilterTypeEnum_ListingGroupFilterType.Descriptor instead. func (ListingGroupFilterTypeEnum_ListingGroupFilterType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ListingGroupFilterTypeEnum) String() string { func (*ListingGroupFilterTypeEnum) ProtoMessage() {} func (x *ListingGroupFilterTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ListingGroupFilterTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupFilterTypeEnum.ProtoReflect.Descriptor instead. func (*ListingGroupFilterTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x4c, 0x69, 0x73, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_goTypes = []any{ - (ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 0: google.ads.googleads.v21.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType - (*ListingGroupFilterTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupFilterTypeEnum +var file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_goTypes = []any{ + (ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 0: google.ads.googleads.v22.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType + (*ListingGroupFilterTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupFilterTypeEnum } -var file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_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_v21_enums_listing_group_filter_type_enum_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_filter_type_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_filter_type_enum_proto_goTypes = nil + file_google_ads_googleads_v22_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 80a3695e..f44bab83 100644 --- a/enums/listing_group_type.pb.go +++ b/enums/listing_group_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_group_type.proto +// source: google/ads/googleads/v22/enums/listing_group_type.proto package enums @@ -78,11 +78,11 @@ func (x ListingGroupTypeEnum_ListingGroupType) String() string { } func (ListingGroupTypeEnum_ListingGroupType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_group_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_group_type_proto_enumTypes[0].Descriptor() } func (ListingGroupTypeEnum_ListingGroupType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_group_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_group_type_proto_enumTypes[0] } func (x ListingGroupTypeEnum_ListingGroupType) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_listing_group_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *ListingGroupTypeEnum) String() string { func (*ListingGroupTypeEnum) ProtoMessage() {} func (x *ListingGroupTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_group_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_group_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *ListingGroupTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupTypeEnum.ProtoReflect.Descriptor instead. func (*ListingGroupTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_group_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_group_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x63, 0x0a, 0x14, 0x4c, 0x69, 0x73, + 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_group_type_proto_goTypes = []any{ - (ListingGroupTypeEnum_ListingGroupType)(0), // 0: google.ads.googleads.v21.enums.ListingGroupTypeEnum.ListingGroupType - (*ListingGroupTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingGroupTypeEnum +var file_google_ads_googleads_v22_enums_listing_group_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_group_type_proto_goTypes = []any{ + (ListingGroupTypeEnum_ListingGroupType)(0), // 0: google.ads.googleads.v22.enums.ListingGroupTypeEnum.ListingGroupType + (*ListingGroupTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingGroupTypeEnum } -var file_google_ads_googleads_v21_enums_listing_group_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_listing_group_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_group_type_proto_init() } -func file_google_ads_googleads_v21_enums_listing_group_type_proto_init() { - if File_google_ads_googleads_v21_enums_listing_group_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_group_type_proto_init() } +func file_google_ads_googleads_v22_enums_listing_group_type_proto_init() { + if File_google_ads_googleads_v22_enums_listing_group_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_group_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_group_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_group_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_group_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_group_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_group_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_group_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_group_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_group_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_group_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_group_type_proto = out.File - file_google_ads_googleads_v21_enums_listing_group_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_group_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_group_type_proto = out.File + file_google_ads_googleads_v22_enums_listing_group_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_listing_group_type_proto_depIdxs = nil } diff --git a/enums/listing_type.pb.go b/enums/listing_type.pb.go index 79aa7ae0..4c3c5866 100644 --- a/enums/listing_type.pb.go +++ b/enums/listing_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/listing_type.proto +// source: google/ads/googleads/v22/enums/listing_type.proto package enums @@ -72,11 +72,11 @@ func (x ListingTypeEnum_ListingType) String() string { } func (ListingTypeEnum_ListingType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_listing_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_listing_type_proto_enumTypes[0].Descriptor() } func (ListingTypeEnum_ListingType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_listing_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_listing_type_proto_enumTypes[0] } func (x ListingTypeEnum_ListingType) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_enums_listing_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_listing_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *ListingTypeEnum) String() string { func (*ListingTypeEnum) ProtoMessage() {} func (x *ListingTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_listing_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_listing_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *ListingTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingTypeEnum.ProtoReflect.Descriptor instead. func (*ListingTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_listing_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_listing_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_listing_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_listing_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_listing_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -140,41 +140,41 @@ var file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_listing_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_listing_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_listing_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_listing_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_listing_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_listing_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_listing_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_listing_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_listing_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_listing_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_listing_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_listing_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_listing_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_listing_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_listing_type_proto_goTypes = []any{ - (ListingTypeEnum_ListingType)(0), // 0: google.ads.googleads.v21.enums.ListingTypeEnum.ListingType - (*ListingTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ListingTypeEnum +var file_google_ads_googleads_v22_enums_listing_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_listing_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_listing_type_proto_goTypes = []any{ + (ListingTypeEnum_ListingType)(0), // 0: google.ads.googleads.v22.enums.ListingTypeEnum.ListingType + (*ListingTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ListingTypeEnum } -var file_google_ads_googleads_v21_enums_listing_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_enums_listing_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_listing_type_proto_init() } -func file_google_ads_googleads_v21_enums_listing_type_proto_init() { - if File_google_ads_googleads_v21_enums_listing_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_listing_type_proto_init() } +func file_google_ads_googleads_v22_enums_listing_type_proto_init() { + if File_google_ads_googleads_v22_enums_listing_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_listing_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_listing_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_listing_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_listing_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_listing_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_listing_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_listing_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_listing_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_listing_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_listing_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_listing_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_listing_type_proto = out.File - file_google_ads_googleads_v21_enums_listing_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_listing_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_listing_type_proto = out.File + file_google_ads_googleads_v22_enums_listing_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_listing_type_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 55f800bb..ed33bbc3 100644 --- a/enums/local_services_business_registration_check_rejection_reason.pb.go +++ b/enums/local_services_business_registration_check_rejection_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_business_registration_check_rejection_reason.proto +// source: google/ads/googleads/v22/enums/local_services_business_registration_check_rejection_reason.proto package enums @@ -106,11 +106,11 @@ func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesB } func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0].Descriptor() } func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes[0] } func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) Number() protoreflect.EnumNumber { @@ -119,7 +119,7 @@ func (x LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesB // Deprecated: Use LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason.Descriptor instead. func (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144,7 +144,7 @@ func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) String() str func (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoMessage() {} func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157,20 +157,20 @@ func (x *LocalServicesBusinessRegistrationCheckRejectionReasonEnum) ProtoReflect // Deprecated: Use LocalServicesBusinessRegistrationCheckRejectionReasonEnum.ProtoReflect.Descriptor instead. func (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -196,7 +196,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x3a, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -204,36 +204,36 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = []any{ - (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 0: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason - (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum +var file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = []any{ + (LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 0: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason + (*LocalServicesBusinessRegistrationCheckRejectionReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum } -var file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -242,28 +242,28 @@ var file_google_ads_googleads_v21_enums_local_services_business_registration_che } func init() { - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_init() + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto = out.File - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_business_registration_check_rejection_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto = out.File + file_google_ads_googleads_v22_enums_local_services_business_registration_check_rejection_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 c18e9178..e599e362 100644 --- a/enums/local_services_business_registration_type.pb.go +++ b/enums/local_services_business_registration_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_business_registration_type.proto +// source: google/ads/googleads/v22/enums/local_services_business_registration_type.proto package enums @@ -77,11 +77,11 @@ func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrat } func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_enumTypes[0].Descriptor() } func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_enumTypes[0] } func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrat // Deprecated: Use LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType.Descriptor instead. func (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *LocalServicesBusinessRegistrationTypeEnum) String() string { func (*LocalServicesBusinessRegistrationTypeEnum) ProtoMessage() {} func (x *LocalServicesBusinessRegistrationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,19 +128,19 @@ func (x *LocalServicesBusinessRegistrationTypeEnum) ProtoReflect() protoreflect. // Deprecated: Use LocalServicesBusinessRegistrationTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesBusinessRegistrationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_business_registration_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_business_registration_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,43 +151,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_goTypes = []any{ - (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType - (*LocalServicesBusinessRegistrationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationTypeEnum +var file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_goTypes = []any{ + (LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType + (*LocalServicesBusinessRegistrationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,28 +196,28 @@ var file_google_ads_googleads_v21_enums_local_services_business_registration_typ } func init() { - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_init() + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_business_registration_type_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_business_registration_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_business_registration_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_business_registration_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_business_registration_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_business_registration_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 e4d36ae7..df63ef3a 100644 --- a/enums/local_services_conversation_type.pb.go +++ b/enums/local_services_conversation_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_conversation_type.proto +// source: google/ads/googleads/v22/enums/local_services_conversation_type.proto package enums @@ -96,11 +96,11 @@ func (x LocalServicesLeadConversationTypeEnum_ConversationType) String() string } func (LocalServicesLeadConversationTypeEnum_ConversationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadConversationTypeEnum_ConversationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_enumTypes[0] } func (x LocalServicesLeadConversationTypeEnum_ConversationType) Number() protoreflect.EnumNumber { @@ -109,7 +109,7 @@ func (x LocalServicesLeadConversationTypeEnum_ConversationType) Number() protore // Deprecated: Use LocalServicesLeadConversationTypeEnum_ConversationType.Descriptor instead. func (LocalServicesLeadConversationTypeEnum_ConversationType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible types of lead conversation. @@ -121,7 +121,7 @@ type LocalServicesLeadConversationTypeEnum struct { func (x *LocalServicesLeadConversationTypeEnum) Reset() { *x = LocalServicesLeadConversationTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *LocalServicesLeadConversationTypeEnum) String() string { func (*LocalServicesLeadConversationTypeEnum) ProtoMessage() {} func (x *LocalServicesLeadConversationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,19 +146,19 @@ func (x *LocalServicesLeadConversationTypeEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use LocalServicesLeadConversationTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadConversationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_conversation_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_conversation_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb3, 0x01, 0x0a, 0x25, 0x4c, 0x6f, 0x63, 0x61, + 0x32, 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, 0x89, 0x01, 0x0a, 0x10, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x61, 0x74, 0x69, @@ -171,43 +171,43 @@ var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_r 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_goTypes = []any{ - (LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadConversationTypeEnum.ConversationType - (*LocalServicesLeadConversationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadConversationTypeEnum +var file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_goTypes = []any{ + (LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadConversationTypeEnum.ConversationType + (*LocalServicesLeadConversationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadConversationTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_conversation_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_conversation_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_conversation_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_conversation_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_conversation_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_conversation_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 84430c42..03a06731 100644 --- a/enums/local_services_employee_status.pb.go +++ b/enums/local_services_employee_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_employee_status.proto +// source: google/ads/googleads/v22/enums/local_services_employee_status.proto package enums @@ -76,11 +76,11 @@ func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) String() st } func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_employee_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_employee_status_proto_enumTypes[0].Descriptor() } func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_employee_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_employee_status_proto_enumTypes[0] } func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) Number() pr // Deprecated: Use LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus.Descriptor instead. func (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_employee_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_employee_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LocalServicesEmployeeStatusEnum) String() string { func (*LocalServicesEmployeeStatusEnum) ProtoMessage() {} func (x *LocalServicesEmployeeStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_employee_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_employee_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LocalServicesEmployeeStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesEmployeeStatusEnum.ProtoReflect.Descriptor instead. func (*LocalServicesEmployeeStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_employee_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_employee_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,43 +147,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_goTypes = []any{ - (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 0: google.ads.googleads.v21.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus - (*LocalServicesEmployeeStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesEmployeeStatusEnum +var file_google_ads_googleads_v22_enums_local_services_employee_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_employee_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_employee_status_proto_goTypes = []any{ + (LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 0: google.ads.googleads.v22.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus + (*LocalServicesEmployeeStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesEmployeeStatusEnum } -var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_local_services_employee_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_employee_status_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_employee_status_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_employee_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_employee_status_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_employee_status_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_employee_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_employee_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_employee_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_employee_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_employee_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_employee_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_employee_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_employee_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_employee_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_employee_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_employee_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_employee_status_proto = out.File - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_employee_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_employee_status_proto = out.File + file_google_ads_googleads_v22_enums_local_services_employee_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 df91411d..618ec7b6 100644 --- a/enums/local_services_employee_type.pb.go +++ b/enums/local_services_employee_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_employee_type.proto +// source: google/ads/googleads/v22/enums/local_services_employee_type.proto package enums @@ -76,11 +76,11 @@ func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) String() string } func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_employee_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_employee_type_proto_enumTypes[0].Descriptor() } func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_employee_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_employee_type_proto_enumTypes[0] } func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) Number() protor // Deprecated: Use LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType.Descriptor instead. func (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_employee_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_employee_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LocalServicesEmployeeTypeEnum) String() string { func (*LocalServicesEmployeeTypeEnum) ProtoMessage() {} func (x *LocalServicesEmployeeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_employee_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_employee_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LocalServicesEmployeeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesEmployeeTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesEmployeeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_employee_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_employee_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_goTypes = []any{ - (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType - (*LocalServicesEmployeeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesEmployeeTypeEnum +var file_google_ads_googleads_v22_enums_local_services_employee_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_employee_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_employee_type_proto_goTypes = []any{ + (LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType + (*LocalServicesEmployeeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesEmployeeTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_local_services_employee_type_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_employee_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_employee_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_employee_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_employee_type_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_employee_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_employee_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_employee_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_employee_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_employee_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_employee_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_employee_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_employee_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_employee_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_employee_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_employee_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_employee_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_employee_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_employee_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_employee_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_employee_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 91483f6c..194b7a56 100644 --- a/enums/local_services_insurance_rejection_reason.pb.go +++ b/enums/local_services_insurance_rejection_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_insurance_rejection_reason.proto +// source: google/ads/googleads/v22/enums/local_services_insurance_rejection_reason.proto package enums @@ -128,11 +128,11 @@ func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectio } func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_enumTypes[0].Descriptor() } func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_enumTypes[0] } func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) Number() protoreflect.EnumNumber { @@ -141,7 +141,7 @@ func (x LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectio // Deprecated: Use LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason.Descriptor instead. func (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -166,7 +166,7 @@ func (x *LocalServicesInsuranceRejectionReasonEnum) String() string { func (*LocalServicesInsuranceRejectionReasonEnum) ProtoMessage() {} func (x *LocalServicesInsuranceRejectionReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -179,19 +179,19 @@ func (x *LocalServicesInsuranceRejectionReasonEnum) ProtoReflect() protoreflect. // Deprecated: Use LocalServicesInsuranceRejectionReasonEnum.ProtoReflect.Descriptor instead. func (*LocalServicesInsuranceRejectionReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -221,43 +221,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4c, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_goTypes = []any{ - (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 0: google.ads.googleads.v21.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason - (*LocalServicesInsuranceRejectionReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesInsuranceRejectionReasonEnum +var file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_goTypes = []any{ + (LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 0: google.ads.googleads.v22.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason + (*LocalServicesInsuranceRejectionReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesInsuranceRejectionReasonEnum } -var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -266,28 +266,28 @@ var file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reaso } func init() { - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_init() + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto = out.File - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_insurance_rejection_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto = out.File + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_insurance_rejection_reason_proto_depIdxs = nil } diff --git a/enums/local_services_lead_credit_issuance_decision.pb.go b/enums/local_services_lead_credit_issuance_decision.pb.go index b945c033..c3f84912 100644 --- a/enums/local_services_lead_credit_issuance_decision.pb.go +++ b/enums/local_services_lead_credit_issuance_decision.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_credit_issuance_decision.proto +// source: google/ads/googleads/v22/enums/local_services_lead_credit_issuance_decision.proto package enums @@ -88,11 +88,11 @@ func (x LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) Stri } func (LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_enumTypes[0] } func (x LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) Numb // Deprecated: Use LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision.Descriptor instead. func (LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible credit issuance decisions for a lead. @@ -113,7 +113,7 @@ type LocalServicesLeadCreditIssuanceDecisionEnum struct { func (x *LocalServicesLeadCreditIssuanceDecisionEnum) Reset() { *x = LocalServicesLeadCreditIssuanceDecisionEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *LocalServicesLeadCreditIssuanceDecisionEnum) String() string { func (*LocalServicesLeadCreditIssuanceDecisionEnum) ProtoMessage() {} func (x *LocalServicesLeadCreditIssuanceDecisionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,19 +138,19 @@ func (x *LocalServicesLeadCreditIssuanceDecisionEnum) ProtoReflect() protoreflec // Deprecated: Use LocalServicesLeadCreditIssuanceDecisionEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadCreditIssuanceDecisionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x69, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x63, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd8, 0x01, 0x0a, 0x2b, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x49, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x63, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x45, @@ -166,43 +166,43 @@ var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_deci 0x53, 0x48, 0x4f, 0x4c, 0x44, 0x10, 0x04, 0x12, 0x15, 0x0a, 0x11, 0x46, 0x41, 0x49, 0x4c, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x43, 0x72, 0x65, 0x64, 0x69, 0x74, 0x49, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x63, 0x69, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_goTypes = []any{ - (LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision - (*LocalServicesLeadCreditIssuanceDecisionEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadCreditIssuanceDecisionEnum +var file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_goTypes = []any{ + (LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision + (*LocalServicesLeadCreditIssuanceDecisionEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadCreditIssuanceDecisionEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +211,28 @@ var file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_deci } func init() { - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_init() + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_credit_issuance_decision_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_lead_credit_issuance_decision_proto_depIdxs = nil } diff --git a/enums/local_services_lead_credit_state.pb.go b/enums/local_services_lead_credit_state.pb.go index 7b40db90..56f0bcf4 100644 --- a/enums/local_services_lead_credit_state.pb.go +++ b/enums/local_services_lead_credit_state.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_credit_state.proto +// source: google/ads/googleads/v22/enums/local_services_lead_credit_state.proto package enums @@ -77,11 +77,11 @@ func (x LocalServicesCreditStateEnum_CreditState) String() string { } func (LocalServicesCreditStateEnum_CreditState) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_enumTypes[0].Descriptor() } func (LocalServicesCreditStateEnum_CreditState) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_enumTypes[0] } func (x LocalServicesCreditStateEnum_CreditState) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible credit states of a lead. @@ -102,7 +102,7 @@ type LocalServicesCreditStateEnum struct { func (x *LocalServicesCreditStateEnum) Reset() { *x = LocalServicesCreditStateEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_enums_local_services_lead_credit_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_msgTypes[0] if 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_v21_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x66, 0x0a, 0x1c, 0x4c, 0x6f, 0x63, 0x61, 0x6c, + 0x32, 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_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_goTypes = []any{ - (LocalServicesCreditStateEnum_CreditState)(0), // 0: google.ads.googleads.v21.enums.LocalServicesCreditStateEnum.CreditState - (*LocalServicesCreditStateEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesCreditStateEnum +var file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_goTypes = []any{ + (LocalServicesCreditStateEnum_CreditState)(0), // 0: google.ads.googleads.v22.enums.LocalServicesCreditStateEnum.CreditState + (*LocalServicesCreditStateEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesCreditStateEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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,27 +191,27 @@ var file_google_ads_googleads_v21_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_v21_enums_local_services_lead_credit_state_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_credit_state_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_credit_state_proto_goTypes = nil + file_google_ads_googleads_v22_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 217e8846..d9819b6f 100644 --- a/enums/local_services_lead_status.pb.go +++ b/enums/local_services_lead_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_status.proto +// source: google/ads/googleads/v22/enums/local_services_lead_status.proto package enums @@ -100,11 +100,11 @@ func (x LocalServicesLeadStatusEnum_LeadStatus) String() string { } func (LocalServicesLeadStatusEnum_LeadStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_status_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadStatusEnum_LeadStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_status_proto_enumTypes[0] } func (x LocalServicesLeadStatusEnum_LeadStatus) Number() protoreflect.EnumNumber { @@ -113,7 +113,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_v21_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *LocalServicesLeadStatusEnum) String() string { func (*LocalServicesLeadStatusEnum) ProtoMessage() {} func (x *LocalServicesLeadStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,18 +150,18 @@ func (x *LocalServicesLeadStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesLeadStatusEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -175,42 +175,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_goTypes = []any{ - (LocalServicesLeadStatusEnum_LeadStatus)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadStatusEnum.LeadStatus - (*LocalServicesLeadStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadStatusEnum +var file_google_ads_googleads_v22_enums_local_services_lead_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_status_proto_goTypes = []any{ + (LocalServicesLeadStatusEnum_LeadStatus)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadStatusEnum.LeadStatus + (*LocalServicesLeadStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadStatusEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -218,27 +218,27 @@ var file_google_ads_googleads_v21_enums_local_services_lead_status_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_lead_status_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_status_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_lead_status_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_lead_status_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_status_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_status_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_lead_status_proto_depIdxs = nil } diff --git a/enums/local_services_lead_survey_answer.pb.go b/enums/local_services_lead_survey_answer.pb.go index 8efdcc45..56c085a4 100644 --- a/enums/local_services_lead_survey_answer.pb.go +++ b/enums/local_services_lead_survey_answer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_survey_answer.proto +// source: google/ads/googleads/v22/enums/local_services_lead_survey_answer.proto package enums @@ -88,11 +88,11 @@ func (x LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) String() string { } func (LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_enumTypes[0] } func (x LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) Number() protoreflect.En // Deprecated: Use LocalServicesLeadSurveyAnswerEnum_SurveyAnswer.Descriptor instead. func (LocalServicesLeadSurveyAnswerEnum_SurveyAnswer) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible survey answers for a lead. @@ -113,7 +113,7 @@ type LocalServicesLeadSurveyAnswerEnum struct { func (x *LocalServicesLeadSurveyAnswerEnum) Reset() { *x = LocalServicesLeadSurveyAnswerEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *LocalServicesLeadSurveyAnswerEnum) String() string { func (*LocalServicesLeadSurveyAnswerEnum) ProtoMessage() {} func (x *LocalServicesLeadSurveyAnswerEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,19 +138,19 @@ func (x *LocalServicesLeadSurveyAnswerEnum) ProtoReflect() protoreflect.Message // Deprecated: Use LocalServicesLeadSurveyAnswerEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadSurveyAnswerEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x61, 0x6e, 0x73, 0x77, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xab, 0x01, 0x0a, 0x21, 0x4c, 0x6f, 0x63, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xab, 0x01, 0x0a, 0x21, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x85, 0x01, 0x0a, 0x0c, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, @@ -163,42 +163,42 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_ 0x15, 0x0a, 0x11, 0x56, 0x45, 0x52, 0x59, 0x5f, 0x44, 0x49, 0x53, 0x53, 0x41, 0x54, 0x49, 0x53, 0x46, 0x49, 0x45, 0x44, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x4c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_goTypes = []any{ - (LocalServicesLeadSurveyAnswerEnum_SurveyAnswer)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer - (*LocalServicesLeadSurveyAnswerEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadSurveyAnswerEnum +var file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_goTypes = []any{ + (LocalServicesLeadSurveyAnswerEnum_SurveyAnswer)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer + (*LocalServicesLeadSurveyAnswerEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadSurveyAnswerEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +206,27 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_survey_answer_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_lead_survey_answer_proto_depIdxs = nil } diff --git a/enums/local_services_lead_survey_dissatisfied_reason.pb.go b/enums/local_services_lead_survey_dissatisfied_reason.pb.go index 674c05c2..2c4e5373 100644 --- a/enums/local_services_lead_survey_dissatisfied_reason.pb.go +++ b/enums/local_services_lead_survey_dissatisfied_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_survey_dissatisfied_reason.proto +// source: google/ads/googleads/v22/enums/local_services_lead_survey_dissatisfied_reason.proto package enums @@ -98,11 +98,11 @@ func (x LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) } func (LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes[0] } func (x LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) Number() protoreflect.EnumNumber { @@ -111,7 +111,7 @@ func (x LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) // Deprecated: Use LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason.Descriptor instead. func (LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible survey dissatisfied reasons for a @@ -124,7 +124,7 @@ type LocalServicesLeadSurveyDissatisfiedReasonEnum struct { func (x *LocalServicesLeadSurveyDissatisfiedReasonEnum) Reset() { *x = LocalServicesLeadSurveyDissatisfiedReasonEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *LocalServicesLeadSurveyDissatisfiedReasonEnum) String() string { func (*LocalServicesLeadSurveyDissatisfiedReasonEnum) ProtoMessage() {} func (x *LocalServicesLeadSurveyDissatisfiedReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,19 +149,19 @@ func (x *LocalServicesLeadSurveyDissatisfiedReasonEnum) ProtoReflect() protorefl // Deprecated: Use LocalServicesLeadSurveyDissatisfiedReasonEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadSurveyDissatisfiedReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x64, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf4, 0x01, 0x0a, 0x2d, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x44, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x52, 0x65, 0x61, @@ -179,43 +179,43 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_ 0x55, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x45, 0x10, 0x07, 0x12, 0x10, 0x0a, 0x0c, 0x53, 0x4f, 0x4c, 0x49, 0x43, 0x49, 0x54, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x08, 0x42, 0x88, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x44, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes = []any{ - (LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason - (*LocalServicesLeadSurveyDissatisfiedReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum +var file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes = []any{ + (LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason + (*LocalServicesLeadSurveyDissatisfiedReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_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 @@ -224,28 +224,28 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_ } func init() { - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_init() + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_survey_dissatisfied_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_lead_survey_dissatisfied_reason_proto_depIdxs = nil } diff --git a/enums/local_services_lead_survey_satisfied_reason.pb.go b/enums/local_services_lead_survey_satisfied_reason.pb.go index 6aae98f6..632bdd87 100644 --- a/enums/local_services_lead_survey_satisfied_reason.pb.go +++ b/enums/local_services_lead_survey_satisfied_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_survey_satisfied_reason.proto +// source: google/ads/googleads/v22/enums/local_services_lead_survey_satisfied_reason.proto package enums @@ -88,11 +88,11 @@ func (x LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) String } func (LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes[0] } func (x LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) Number // Deprecated: Use LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason.Descriptor instead. func (LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible survey satisfied reasons for a lead. @@ -113,7 +113,7 @@ type LocalServicesLeadSurveySatisfiedReasonEnum struct { func (x *LocalServicesLeadSurveySatisfiedReasonEnum) Reset() { *x = LocalServicesLeadSurveySatisfiedReasonEnum{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *LocalServicesLeadSurveySatisfiedReasonEnum) String() string { func (*LocalServicesLeadSurveySatisfiedReasonEnum) ProtoMessage() {} func (x *LocalServicesLeadSurveySatisfiedReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,19 +138,19 @@ func (x *LocalServicesLeadSurveySatisfiedReasonEnum) ProtoReflect() protoreflect // Deprecated: Use LocalServicesLeadSurveySatisfiedReasonEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadSurveySatisfiedReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xde, 0x01, 0x0a, 0x2a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x53, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, @@ -167,43 +167,43 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_rea 0x49, 0x47, 0x48, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x53, 0x45, 0x52, 0x56, 0x49, 0x43, 0x45, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c, 0x6f, 0x63, 0x61, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2b, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x53, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_goTypes = []any{ - (LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason - (*LocalServicesLeadSurveySatisfiedReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadSurveySatisfiedReasonEnum +var file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_goTypes = []any{ + (LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason + (*LocalServicesLeadSurveySatisfiedReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadSurveySatisfiedReasonEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_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 @@ -212,28 +212,28 @@ var file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_rea } func init() { - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_init() + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_survey_satisfied_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_lead_survey_satisfied_reason_proto_depIdxs = nil } diff --git a/enums/local_services_lead_type.pb.go b/enums/local_services_lead_type.pb.go index 76ef2162..5fa72f56 100644 --- a/enums/local_services_lead_type.pb.go +++ b/enums/local_services_lead_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_lead_type.proto +// source: google/ads/googleads/v22/enums/local_services_lead_type.proto package enums @@ -80,11 +80,11 @@ func (x LocalServicesLeadTypeEnum_LeadType) String() string { } func (LocalServicesLeadTypeEnum_LeadType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_lead_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_lead_type_proto_enumTypes[0].Descriptor() } func (LocalServicesLeadTypeEnum_LeadType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_lead_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_lead_type_proto_enumTypes[0] } func (x LocalServicesLeadTypeEnum_LeadType) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_lead_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *LocalServicesLeadTypeEnum) String() string { func (*LocalServicesLeadTypeEnum) ProtoMessage() {} func (x *LocalServicesLeadTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_lead_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_lead_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *LocalServicesLeadTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesLeadTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLeadTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_lead_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_lead_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,41 +151,41 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_goTypes = []any{ - (LocalServicesLeadTypeEnum_LeadType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLeadTypeEnum.LeadType - (*LocalServicesLeadTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLeadTypeEnum +var file_google_ads_googleads_v22_enums_local_services_lead_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_lead_type_proto_goTypes = []any{ + (LocalServicesLeadTypeEnum_LeadType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLeadTypeEnum.LeadType + (*LocalServicesLeadTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLeadTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_local_services_lead_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_lead_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_lead_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_lead_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_lead_type_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_lead_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_lead_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_lead_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_lead_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_lead_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_lead_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_lead_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_lead_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_lead_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_lead_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_lead_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_lead_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_lead_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_lead_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_lead_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_lead_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 bb754995..02f5e589 100644 --- a/enums/local_services_license_rejection_reason.pb.go +++ b/enums/local_services_license_rejection_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_license_rejection_reason.proto +// source: google/ads/googleads/v22/enums/local_services_license_rejection_reason.proto package enums @@ -97,11 +97,11 @@ func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionRea } func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_enumTypes[0].Descriptor() } func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_enumTypes[0] } func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) Number() protoreflect.EnumNumber { @@ -110,7 +110,7 @@ func (x LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionRea // Deprecated: Use LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason.Descriptor instead. func (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *LocalServicesLicenseRejectionReasonEnum) String() string { func (*LocalServicesLicenseRejectionReasonEnum) ProtoMessage() {} func (x *LocalServicesLicenseRejectionReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,19 +148,19 @@ func (x *LocalServicesLicenseRejectionReasonEnum) ProtoReflect() protoreflect.Me // Deprecated: Use LocalServicesLicenseRejectionReasonEnum.ProtoReflect.Descriptor instead. func (*LocalServicesLicenseRejectionReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -178,43 +178,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x28, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_goTypes = []any{ - (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 0: google.ads.googleads.v21.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason - (*LocalServicesLicenseRejectionReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesLicenseRejectionReasonEnum +var file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_goTypes = []any{ + (LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 0: google.ads.googleads.v22.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason + (*LocalServicesLicenseRejectionReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesLicenseRejectionReasonEnum } -var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -222,27 +222,27 @@ var file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto = out.File - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_license_rejection_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto = out.File + file_google_ads_googleads_v22_enums_local_services_license_rejection_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 8a6c10fd..e756732d 100644 --- a/enums/local_services_participant_type.pb.go +++ b/enums/local_services_participant_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_participant_type.proto +// source: google/ads/googleads/v22/enums/local_services_participant_type.proto package enums @@ -76,11 +76,11 @@ func (x LocalServicesParticipantTypeEnum_ParticipantType) String() string { } func (LocalServicesParticipantTypeEnum_ParticipantType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_participant_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_participant_type_proto_enumTypes[0].Descriptor() } func (LocalServicesParticipantTypeEnum_ParticipantType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_participant_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_participant_type_proto_enumTypes[0] } func (x LocalServicesParticipantTypeEnum_ParticipantType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x LocalServicesParticipantTypeEnum_ParticipantType) Number() protoreflect. // Deprecated: Use LocalServicesParticipantTypeEnum_ParticipantType.Descriptor instead. func (LocalServicesParticipantTypeEnum_ParticipantType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_participant_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_participant_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *LocalServicesParticipantTypeEnum) String() string { func (*LocalServicesParticipantTypeEnum) ProtoMessage() {} func (x *LocalServicesParticipantTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_participant_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_participant_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *LocalServicesParticipantTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesParticipantTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesParticipantTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_participant_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_participant_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_goTypes = []any{ - (LocalServicesParticipantTypeEnum_ParticipantType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesParticipantTypeEnum.ParticipantType - (*LocalServicesParticipantTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesParticipantTypeEnum +var file_google_ads_googleads_v22_enums_local_services_participant_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_participant_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_participant_type_proto_goTypes = []any{ + (LocalServicesParticipantTypeEnum_ParticipantType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesParticipantTypeEnum.ParticipantType + (*LocalServicesParticipantTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesParticipantTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_local_services_participant_type_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_participant_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_participant_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_participant_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_participant_type_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_participant_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_participant_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_participant_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_participant_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_participant_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_participant_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_participant_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_participant_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_participant_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_participant_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_participant_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_participant_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_participant_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_participant_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_participant_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_participant_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 1ba5f1c3..f6d00778 100644 --- a/enums/local_services_verification_artifact_status.pb.go +++ b/enums/local_services_verification_artifact_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_verification_artifact_status.proto +// source: google/ads/googleads/v22/enums/local_services_verification_artifact_status.proto package enums @@ -88,11 +88,11 @@ func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArt } func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_enumTypes[0].Descriptor() } func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_enumTypes[0] } func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArt // Deprecated: Use LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus.Descriptor instead. func (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *LocalServicesVerificationArtifactStatusEnum) String() string { func (*LocalServicesVerificationArtifactStatusEnum) ProtoMessage() {} func (x *LocalServicesVerificationArtifactStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *LocalServicesVerificationArtifactStatusEnum) ProtoReflect() protoreflec // Deprecated: Use LocalServicesVerificationArtifactStatusEnum.ProtoReflect.Descriptor instead. func (*LocalServicesVerificationArtifactStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -166,43 +166,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x4c, 0x6f, 0x63, 0x61, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_goTypes = []any{ - (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 0: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus - (*LocalServicesVerificationArtifactStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactStatusEnum +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_goTypes = []any{ + (LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 0: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus + (*LocalServicesVerificationArtifactStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactStatusEnum } -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,28 +211,28 @@ var file_google_ads_googleads_v21_enums_local_services_verification_artifact_sta } func init() { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_init() + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto = out.File - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_verification_artifact_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto = out.File + file_google_ads_googleads_v22_enums_local_services_verification_artifact_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 2c71a983..5606c045 100644 --- a/enums/local_services_verification_artifact_type.pb.go +++ b/enums/local_services_verification_artifact_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_verification_artifact_type.proto +// source: google/ads/googleads/v22/enums/local_services_verification_artifact_type.proto package enums @@ -84,11 +84,11 @@ func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtif } func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_enumTypes[0].Descriptor() } func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_enumTypes[0] } func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtif // Deprecated: Use LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType.Descriptor instead. func (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *LocalServicesVerificationArtifactTypeEnum) String() string { func (*LocalServicesVerificationArtifactTypeEnum) ProtoMessage() {} func (x *LocalServicesVerificationArtifactTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *LocalServicesVerificationArtifactTypeEnum) ProtoReflect() protoreflect. // Deprecated: Use LocalServicesVerificationArtifactTypeEnum.ProtoReflect.Descriptor instead. func (*LocalServicesVerificationArtifactTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,43 +162,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_goTypes = []any{ - (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 0: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType - (*LocalServicesVerificationArtifactTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactTypeEnum +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_goTypes = []any{ + (LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 0: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType + (*LocalServicesVerificationArtifactTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactTypeEnum } -var file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,28 +207,28 @@ var file_google_ads_googleads_v21_enums_local_services_verification_artifact_typ } func init() { - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_init() + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto != nil { +func file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto = out.File - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_verification_artifact_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto = out.File + file_google_ads_googleads_v22_enums_local_services_verification_artifact_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 28fa3a1c..e86fd626 100644 --- a/enums/local_services_verification_status.pb.go +++ b/enums/local_services_verification_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/local_services_verification_status.proto +// source: google/ads/googleads/v22/enums/local_services_verification_status.proto package enums @@ -97,11 +97,11 @@ func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Str } func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_local_services_verification_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_local_services_verification_status_proto_enumTypes[0].Descriptor() } func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_local_services_verification_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_local_services_verification_status_proto_enumTypes[0] } func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Number() protoreflect.EnumNumber { @@ -110,7 +110,7 @@ func (x LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) Num // Deprecated: Use LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus.Descriptor instead. func (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_local_services_verification_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *LocalServicesVerificationStatusEnum) String() string { func (*LocalServicesVerificationStatusEnum) ProtoMessage() {} func (x *LocalServicesVerificationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_local_services_verification_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_local_services_verification_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,19 +148,19 @@ func (x *LocalServicesVerificationStatusEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use LocalServicesVerificationStatusEnum.ProtoReflect.Descriptor instead. func (*LocalServicesVerificationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_local_services_verification_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_local_services_verification_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe8, 0x01, 0x0a, 0x23, 0x4c, 0x6f, + 0x76, 0x32, 0x32, 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, @@ -177,42 +177,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_local_services_verification_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_local_services_verification_status_proto_goTypes = []any{ - (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 0: google.ads.googleads.v21.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus - (*LocalServicesVerificationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.LocalServicesVerificationStatusEnum +var file_google_ads_googleads_v22_enums_local_services_verification_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_local_services_verification_status_proto_goTypes = []any{ + (LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 0: google.ads.googleads.v22.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + (*LocalServicesVerificationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.LocalServicesVerificationStatusEnum } -var file_google_ads_googleads_v21_enums_local_services_verification_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -220,27 +220,27 @@ var file_google_ads_googleads_v21_enums_local_services_verification_status_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_local_services_verification_status_proto_init() } -func file_google_ads_googleads_v21_enums_local_services_verification_status_proto_init() { - if File_google_ads_googleads_v21_enums_local_services_verification_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_local_services_verification_status_proto_init() } +func file_google_ads_googleads_v22_enums_local_services_verification_status_proto_init() { + if File_google_ads_googleads_v22_enums_local_services_verification_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_local_services_verification_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_local_services_verification_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_local_services_verification_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_local_services_verification_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_local_services_verification_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_local_services_verification_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_local_services_verification_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_local_services_verification_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_local_services_verification_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_local_services_verification_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_local_services_verification_status_proto = out.File - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_local_services_verification_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_local_services_verification_status_proto = out.File + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_local_services_verification_status_proto_depIdxs = nil } diff --git a/enums/location_group_radius_units.pb.go b/enums/location_group_radius_units.pb.go index 98047c84..5b25ac67 100644 --- a/enums/location_group_radius_units.pb.go +++ b/enums/location_group_radius_units.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/location_group_radius_units.proto +// source: google/ads/googleads/v22/enums/location_group_radius_units.proto package enums @@ -80,11 +80,11 @@ func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) String() string { } func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_location_group_radius_units_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_location_group_radius_units_proto_enumTypes[0].Descriptor() } func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_location_group_radius_units_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_location_group_radius_units_proto_enumTypes[0] } func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) Number() protoref // Deprecated: Use LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits.Descriptor instead. func (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_location_group_radius_units_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_group_radius_units_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *LocationGroupRadiusUnitsEnum) String() string { func (*LocationGroupRadiusUnitsEnum) ProtoMessage() {} func (x *LocationGroupRadiusUnitsEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_location_group_radius_units_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_group_radius_units_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *LocationGroupRadiusUnitsEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationGroupRadiusUnitsEnum.ProtoReflect.Descriptor instead. func (*LocationGroupRadiusUnitsEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_location_group_radius_units_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_location_group_radius_units_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4c, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDescData + return file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDescData } -var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_goTypes = []any{ - (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 0: google.ads.googleads.v21.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits - (*LocationGroupRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v21.enums.LocationGroupRadiusUnitsEnum +var file_google_ads_googleads_v22_enums_location_group_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_location_group_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_location_group_radius_units_proto_goTypes = []any{ + (LocationGroupRadiusUnitsEnum_LocationGroupRadiusUnits)(0), // 0: google.ads.googleads.v22.enums.LocationGroupRadiusUnitsEnum.LocationGroupRadiusUnits + (*LocationGroupRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v22.enums.LocationGroupRadiusUnitsEnum } -var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_location_group_radius_units_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_location_group_radius_units_proto_init() } -func file_google_ads_googleads_v21_enums_location_group_radius_units_proto_init() { - if File_google_ads_googleads_v21_enums_location_group_radius_units_proto != nil { +func init() { file_google_ads_googleads_v22_enums_location_group_radius_units_proto_init() } +func file_google_ads_googleads_v22_enums_location_group_radius_units_proto_init() { + if File_google_ads_googleads_v22_enums_location_group_radius_units_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_group_radius_units_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_group_radius_units_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_location_group_radius_units_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_location_group_radius_units_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_location_group_radius_units_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_location_group_radius_units_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_location_group_radius_units_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_location_group_radius_units_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_location_group_radius_units_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_location_group_radius_units_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_location_group_radius_units_proto = out.File - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_goTypes = nil - file_google_ads_googleads_v21_enums_location_group_radius_units_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_location_group_radius_units_proto = out.File + file_google_ads_googleads_v22_enums_location_group_radius_units_proto_goTypes = nil + file_google_ads_googleads_v22_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 b6e25f3a..9385162d 100644 --- a/enums/location_ownership_type.pb.go +++ b/enums/location_ownership_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/location_ownership_type.proto +// source: google/ads/googleads/v22/enums/location_ownership_type.proto package enums @@ -76,11 +76,11 @@ func (x LocationOwnershipTypeEnum_LocationOwnershipType) String() string { } func (LocationOwnershipTypeEnum_LocationOwnershipType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_location_ownership_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_location_ownership_type_proto_enumTypes[0].Descriptor() } func (LocationOwnershipTypeEnum_LocationOwnershipType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_location_ownership_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_location_ownership_type_proto_enumTypes[0] } func (x LocationOwnershipTypeEnum_LocationOwnershipType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_location_ownership_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_location_ownership_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_ownership_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LocationOwnershipTypeEnum) String() string { func (*LocationOwnershipTypeEnum) ProtoMessage() {} func (x *LocationOwnershipTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_location_ownership_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_ownership_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LocationOwnershipTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationOwnershipTypeEnum.ProtoReflect.Descriptor instead. func (*LocationOwnershipTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_location_ownership_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_location_ownership_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x75, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x4c, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_location_ownership_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_location_ownership_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_location_ownership_type_proto_goTypes = []any{ - (LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 0: google.ads.googleads.v21.enums.LocationOwnershipTypeEnum.LocationOwnershipType - (*LocationOwnershipTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocationOwnershipTypeEnum +var file_google_ads_googleads_v22_enums_location_ownership_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_location_ownership_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_location_ownership_type_proto_goTypes = []any{ + (LocationOwnershipTypeEnum_LocationOwnershipType)(0), // 0: google.ads.googleads.v22.enums.LocationOwnershipTypeEnum.LocationOwnershipType + (*LocationOwnershipTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocationOwnershipTypeEnum } -var file_google_ads_googleads_v21_enums_location_ownership_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_location_ownership_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_location_ownership_type_proto_init() } -func file_google_ads_googleads_v21_enums_location_ownership_type_proto_init() { - if File_google_ads_googleads_v21_enums_location_ownership_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_location_ownership_type_proto_init() } +func file_google_ads_googleads_v22_enums_location_ownership_type_proto_init() { + if File_google_ads_googleads_v22_enums_location_ownership_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_ownership_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_ownership_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_location_ownership_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_location_ownership_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_location_ownership_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_location_ownership_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_location_ownership_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_location_ownership_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_location_ownership_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_location_ownership_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_location_ownership_type_proto = out.File - file_google_ads_googleads_v21_enums_location_ownership_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_location_ownership_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_location_ownership_type_proto = out.File + file_google_ads_googleads_v22_enums_location_ownership_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_location_ownership_type_proto_depIdxs = nil } diff --git a/enums/location_source_type.pb.go b/enums/location_source_type.pb.go index 78c4f151..1771e40a 100644 --- a/enums/location_source_type.pb.go +++ b/enums/location_source_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/location_source_type.proto +// source: google/ads/googleads/v22/enums/location_source_type.proto package enums @@ -76,11 +76,11 @@ func (x LocationSourceTypeEnum_LocationSourceType) String() string { } func (LocationSourceTypeEnum_LocationSourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_location_source_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_location_source_type_proto_enumTypes[0].Descriptor() } func (LocationSourceTypeEnum_LocationSourceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_location_source_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_location_source_type_proto_enumTypes[0] } func (x LocationSourceTypeEnum_LocationSourceType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_location_source_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_location_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_source_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LocationSourceTypeEnum) String() string { func (*LocationSourceTypeEnum) ProtoMessage() {} func (x *LocationSourceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_location_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_source_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LocationSourceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationSourceTypeEnum.ProtoReflect.Descriptor instead. func (*LocationSourceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_location_source_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_location_source_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_location_source_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, 0x16, 0x4c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_source_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_location_source_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_location_source_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_location_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_location_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_location_source_type_proto_goTypes = []any{ - (LocationSourceTypeEnum_LocationSourceType)(0), // 0: google.ads.googleads.v21.enums.LocationSourceTypeEnum.LocationSourceType - (*LocationSourceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocationSourceTypeEnum +var file_google_ads_googleads_v22_enums_location_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_location_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_location_source_type_proto_goTypes = []any{ + (LocationSourceTypeEnum_LocationSourceType)(0), // 0: google.ads.googleads.v22.enums.LocationSourceTypeEnum.LocationSourceType + (*LocationSourceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocationSourceTypeEnum } -var file_google_ads_googleads_v21_enums_location_source_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_location_source_type_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_location_source_type_proto_init() } -func file_google_ads_googleads_v21_enums_location_source_type_proto_init() { - if File_google_ads_googleads_v21_enums_location_source_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_location_source_type_proto_init() } +func file_google_ads_googleads_v22_enums_location_source_type_proto_init() { + if File_google_ads_googleads_v22_enums_location_source_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_source_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_source_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_location_source_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_location_source_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_location_source_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_location_source_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_location_source_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_location_source_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_location_source_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_location_source_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_location_source_type_proto = out.File - file_google_ads_googleads_v21_enums_location_source_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_location_source_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_location_source_type_proto = out.File + file_google_ads_googleads_v22_enums_location_source_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 6e3f8cd4..f770aa79 100644 --- a/enums/location_string_filter_type.pb.go +++ b/enums/location_string_filter_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/location_string_filter_type.proto +// source: google/ads/googleads/v22/enums/location_string_filter_type.proto package enums @@ -72,11 +72,11 @@ func (x LocationStringFilterTypeEnum_LocationStringFilterType) String() string { } func (LocationStringFilterTypeEnum_LocationStringFilterType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_location_string_filter_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_location_string_filter_type_proto_enumTypes[0].Descriptor() } func (LocationStringFilterTypeEnum_LocationStringFilterType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_location_string_filter_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_location_string_filter_type_proto_enumTypes[0] } func (x LocationStringFilterTypeEnum_LocationStringFilterType) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x LocationStringFilterTypeEnum_LocationStringFilterType) Number() protoref // Deprecated: Use LocationStringFilterTypeEnum_LocationStringFilterType.Descriptor instead. func (LocationStringFilterTypeEnum_LocationStringFilterType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_location_string_filter_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_string_filter_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *LocationStringFilterTypeEnum) String() string { func (*LocationStringFilterTypeEnum) ProtoMessage() {} func (x *LocationStringFilterTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_location_string_filter_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_location_string_filter_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *LocationStringFilterTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationStringFilterTypeEnum.ProtoReflect.Descriptor instead. func (*LocationStringFilterTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_location_string_filter_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_location_string_filter_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_goTypes = []any{ - (LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 0: google.ads.googleads.v21.enums.LocationStringFilterTypeEnum.LocationStringFilterType - (*LocationStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.LocationStringFilterTypeEnum +var file_google_ads_googleads_v22_enums_location_string_filter_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_location_string_filter_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_location_string_filter_type_proto_goTypes = []any{ + (LocationStringFilterTypeEnum_LocationStringFilterType)(0), // 0: google.ads.googleads.v22.enums.LocationStringFilterTypeEnum.LocationStringFilterType + (*LocationStringFilterTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.LocationStringFilterTypeEnum } -var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_enums_location_string_filter_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_location_string_filter_type_proto_init() } -func file_google_ads_googleads_v21_enums_location_string_filter_type_proto_init() { - if File_google_ads_googleads_v21_enums_location_string_filter_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_location_string_filter_type_proto_init() } +func file_google_ads_googleads_v22_enums_location_string_filter_type_proto_init() { + if File_google_ads_googleads_v22_enums_location_string_filter_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_location_string_filter_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_location_string_filter_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_location_string_filter_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_location_string_filter_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_location_string_filter_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_location_string_filter_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_location_string_filter_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_location_string_filter_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_location_string_filter_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_location_string_filter_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_location_string_filter_type_proto = out.File - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_location_string_filter_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_location_string_filter_type_proto = out.File + file_google_ads_googleads_v22_enums_location_string_filter_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 f7332042..3ac33d45 100644 --- a/enums/lookalike_expansion_level.pb.go +++ b/enums/lookalike_expansion_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/lookalike_expansion_level.proto +// source: google/ads/googleads/v22/enums/lookalike_expansion_level.proto package enums @@ -82,11 +82,11 @@ func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) String() string { } func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_enumTypes[0].Descriptor() } func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_enumTypes[0] } func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x LookalikeExpansionLevelEnum_LookalikeExpansionLevel) Number() protorefle // Deprecated: Use LookalikeExpansionLevelEnum_LookalikeExpansionLevel.Descriptor instead. func (LookalikeExpansionLevelEnum_LookalikeExpansionLevel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *LookalikeExpansionLevelEnum) String() string { func (*LookalikeExpansionLevelEnum) ProtoMessage() {} func (x *LookalikeExpansionLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *LookalikeExpansionLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LookalikeExpansionLevelEnum.ProtoReflect.Descriptor instead. func (*LookalikeExpansionLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_lookalike_expansion_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_lookalike_expansion_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_goTypes = []any{ - (LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 0: google.ads.googleads.v21.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel - (*LookalikeExpansionLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.LookalikeExpansionLevelEnum +var file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_goTypes = []any{ + (LookalikeExpansionLevelEnum_LookalikeExpansionLevel)(0), // 0: google.ads.googleads.v22.enums.LookalikeExpansionLevelEnum.LookalikeExpansionLevel + (*LookalikeExpansionLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.LookalikeExpansionLevelEnum } -var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_init() } -func file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_init() { - if File_google_ads_googleads_v21_enums_lookalike_expansion_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_init() } +func file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_init() { + if File_google_ads_googleads_v22_enums_lookalike_expansion_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_lookalike_expansion_level_proto = out.File - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_lookalike_expansion_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_lookalike_expansion_level_proto = out.File + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_goTypes = nil + file_google_ads_googleads_v22_enums_lookalike_expansion_level_proto_depIdxs = nil } diff --git a/enums/manager_link_status.pb.go b/enums/manager_link_status.pb.go index 7a7978a7..dde10368 100644 --- a/enums/manager_link_status.pb.go +++ b/enums/manager_link_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/manager_link_status.proto +// source: google/ads/googleads/v22/enums/manager_link_status.proto package enums @@ -90,11 +90,11 @@ func (x ManagerLinkStatusEnum_ManagerLinkStatus) String() string { } func (ManagerLinkStatusEnum_ManagerLinkStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_manager_link_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_manager_link_status_proto_enumTypes[0].Descriptor() } func (ManagerLinkStatusEnum_ManagerLinkStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_manager_link_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_manager_link_status_proto_enumTypes[0] } func (x ManagerLinkStatusEnum_ManagerLinkStatus) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_enums_manager_link_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_manager_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_manager_link_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *ManagerLinkStatusEnum) String() string { func (*ManagerLinkStatusEnum) ProtoMessage() {} func (x *ManagerLinkStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_manager_link_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_manager_link_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *ManagerLinkStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagerLinkStatusEnum.ProtoReflect.Descriptor instead. func (*ManagerLinkStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_manager_link_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_manager_link_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01, 0x0a, 0x15, 0x4d, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,42 +162,42 @@ var file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_manager_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_manager_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_manager_link_status_proto_goTypes = []any{ - (ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 0: google.ads.googleads.v21.enums.ManagerLinkStatusEnum.ManagerLinkStatus - (*ManagerLinkStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ManagerLinkStatusEnum +var file_google_ads_googleads_v22_enums_manager_link_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_manager_link_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_manager_link_status_proto_goTypes = []any{ + (ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 0: google.ads.googleads.v22.enums.ManagerLinkStatusEnum.ManagerLinkStatus + (*ManagerLinkStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ManagerLinkStatusEnum } -var file_google_ads_googleads_v21_enums_manager_link_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_manager_link_status_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_manager_link_status_proto_init() } -func file_google_ads_googleads_v21_enums_manager_link_status_proto_init() { - if File_google_ads_googleads_v21_enums_manager_link_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_manager_link_status_proto_init() } +func file_google_ads_googleads_v22_enums_manager_link_status_proto_init() { + if File_google_ads_googleads_v22_enums_manager_link_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_manager_link_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_manager_link_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_manager_link_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_manager_link_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_manager_link_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_manager_link_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_manager_link_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_manager_link_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_manager_link_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_manager_link_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_manager_link_status_proto = out.File - file_google_ads_googleads_v21_enums_manager_link_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_manager_link_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_manager_link_status_proto = out.File + file_google_ads_googleads_v22_enums_manager_link_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_manager_link_status_proto_depIdxs = nil } diff --git a/enums/match_type.pb.go b/enums/match_type.pb.go index 8d3b77c4..180171e9 100644 --- a/enums/match_type.pb.go +++ b/enums/match_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/match_type.proto +// source: google/ads/googleads/v22/enums/match_type.proto package enums @@ -84,11 +84,11 @@ func (x MatchTypeEnum_MatchType) String() string { } func (MatchTypeEnum_MatchType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_match_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_match_type_proto_enumTypes[0].Descriptor() } func (MatchTypeEnum_MatchType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_match_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_match_type_proto_enumTypes[0] } func (x MatchTypeEnum_MatchType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x MatchTypeEnum_MatchType) Number() protoreflect.EnumNumber { // Deprecated: Use MatchTypeEnum_MatchType.Descriptor instead. func (MatchTypeEnum_MatchType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_match_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_match_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing match types for a keyword triggering an ad. @@ -109,7 +109,7 @@ type MatchTypeEnum struct { func (x *MatchTypeEnum) Reset() { *x = MatchTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_match_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *MatchTypeEnum) String() string { func (*MatchTypeEnum) ProtoMessage() {} func (x *MatchTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_match_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,17 +134,17 @@ func (x *MatchTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MatchTypeEnum.ProtoReflect.Descriptor instead. func (*MatchTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_match_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_match_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_match_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_match_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_match_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_match_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x0d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x57, 0x0a, 0x09, 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, @@ -153,41 +153,41 @@ var file_google_ads_googleads_v21_enums_match_type_proto_rawDesc = string([]byte 0x54, 0x10, 0x03, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x48, 0x52, 0x41, 0x53, 0x45, 0x10, 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x41, 0x49, 0x5f, 0x4d, 0x41, 0x58, 0x10, 0x05, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_match_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_match_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_match_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_match_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_match_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_match_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_match_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_match_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_match_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_match_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_match_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_match_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_match_type_proto_goTypes = []any{ - (MatchTypeEnum_MatchType)(0), // 0: google.ads.googleads.v21.enums.MatchTypeEnum.MatchType - (*MatchTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.MatchTypeEnum +var file_google_ads_googleads_v22_enums_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_match_type_proto_goTypes = []any{ + (MatchTypeEnum_MatchType)(0), // 0: google.ads.googleads.v22.enums.MatchTypeEnum.MatchType + (*MatchTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.MatchTypeEnum } -var file_google_ads_googleads_v21_enums_match_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_match_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_match_type_proto_init() } -func file_google_ads_googleads_v21_enums_match_type_proto_init() { - if File_google_ads_googleads_v21_enums_match_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_match_type_proto_init() } +func file_google_ads_googleads_v22_enums_match_type_proto_init() { + if File_google_ads_googleads_v22_enums_match_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_match_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_match_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_match_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_match_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_match_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_match_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_match_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_match_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_match_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_match_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_match_type_proto = out.File - file_google_ads_googleads_v21_enums_match_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_match_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_match_type_proto = out.File + file_google_ads_googleads_v22_enums_match_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_match_type_proto_depIdxs = nil } diff --git a/enums/media_type.pb.go b/enums/media_type.pb.go index a32aa850..c82d77d4 100644 --- a/enums/media_type.pb.go +++ b/enums/media_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/media_type.proto +// source: google/ads/googleads/v22/enums/media_type.proto package enums @@ -94,11 +94,11 @@ func (x MediaTypeEnum_MediaType) String() string { } func (MediaTypeEnum_MediaType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_media_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_media_type_proto_enumTypes[0].Descriptor() } func (MediaTypeEnum_MediaType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_media_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_media_type_proto_enumTypes[0] } func (x MediaTypeEnum_MediaType) Number() protoreflect.EnumNumber { @@ -107,7 +107,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_v21_enums_media_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_media_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_media_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *MediaTypeEnum) String() string { func (*MediaTypeEnum) ProtoMessage() {} func (x *MediaTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_media_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_media_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,17 +144,17 @@ func (x *MediaTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaTypeEnum.ProtoReflect.Descriptor instead. func (*MediaTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_media_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_media_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_media_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_media_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_media_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_media_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,42 +165,42 @@ var file_google_ads_googleads_v21_enums_media_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_media_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_media_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_media_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_media_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_media_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_media_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_media_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_media_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_media_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_media_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_media_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_media_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_media_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_media_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_media_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_media_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_media_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_media_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_media_type_proto_goTypes = []any{ - (MediaTypeEnum_MediaType)(0), // 0: google.ads.googleads.v21.enums.MediaTypeEnum.MediaType - (*MediaTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.MediaTypeEnum +var file_google_ads_googleads_v22_enums_media_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_media_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_media_type_proto_goTypes = []any{ + (MediaTypeEnum_MediaType)(0), // 0: google.ads.googleads.v22.enums.MediaTypeEnum.MediaType + (*MediaTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.MediaTypeEnum } -var file_google_ads_googleads_v21_enums_media_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_enums_media_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_media_type_proto_init() } -func file_google_ads_googleads_v21_enums_media_type_proto_init() { - if File_google_ads_googleads_v21_enums_media_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_media_type_proto_init() } +func file_google_ads_googleads_v22_enums_media_type_proto_init() { + if File_google_ads_googleads_v22_enums_media_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_media_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_media_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_media_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_media_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_media_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_media_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_media_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_media_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_media_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_media_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_media_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_media_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_media_type_proto = out.File - file_google_ads_googleads_v21_enums_media_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_media_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_media_type_proto = out.File + file_google_ads_googleads_v22_enums_media_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_media_type_proto_depIdxs = nil } diff --git a/enums/mime_type.pb.go b/enums/mime_type.pb.go index a1c388ea..3b066e3f 100644 --- a/enums/mime_type.pb.go +++ b/enums/mime_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/mime_type.proto +// source: google/ads/googleads/v22/enums/mime_type.proto package enums @@ -118,11 +118,11 @@ func (x MimeTypeEnum_MimeType) String() string { } func (MimeTypeEnum_MimeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_mime_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_mime_type_proto_enumTypes[0].Descriptor() } func (MimeTypeEnum_MimeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_mime_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_mime_type_proto_enumTypes[0] } func (x MimeTypeEnum_MimeType) Number() protoreflect.EnumNumber { @@ -131,7 +131,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_v21_enums_mime_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_mime_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mime_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *MimeTypeEnum) String() string { func (*MimeTypeEnum) ProtoMessage() {} func (x *MimeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_mime_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mime_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,17 +168,17 @@ func (x *MimeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MimeTypeEnum.ProtoReflect.Descriptor instead. func (*MimeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_mime_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_mime_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_mime_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_mime_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_mime_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -194,42 +194,42 @@ var file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_mime_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_mime_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_mime_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_mime_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_mime_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_mime_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_mime_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_mime_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_mime_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_mime_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mime_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mime_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_mime_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_mime_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_mime_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_mime_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_mime_type_proto_goTypes = []any{ - (MimeTypeEnum_MimeType)(0), // 0: google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - (*MimeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.MimeTypeEnum +var file_google_ads_googleads_v22_enums_mime_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_mime_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_mime_type_proto_goTypes = []any{ + (MimeTypeEnum_MimeType)(0), // 0: google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + (*MimeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.MimeTypeEnum } -var file_google_ads_googleads_v21_enums_mime_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -237,27 +237,27 @@ var file_google_ads_googleads_v21_enums_mime_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_mime_type_proto_init() } -func file_google_ads_googleads_v21_enums_mime_type_proto_init() { - if File_google_ads_googleads_v21_enums_mime_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_mime_type_proto_init() } +func file_google_ads_googleads_v22_enums_mime_type_proto_init() { + if File_google_ads_googleads_v22_enums_mime_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mime_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mime_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mime_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_mime_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_mime_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_mime_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_mime_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_mime_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_mime_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_mime_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_mime_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_mime_type_proto = out.File - file_google_ads_googleads_v21_enums_mime_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_mime_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_mime_type_proto = out.File + file_google_ads_googleads_v22_enums_mime_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_mime_type_proto_depIdxs = nil } diff --git a/enums/minute_of_hour.pb.go b/enums/minute_of_hour.pb.go index def21873..5a4f84b3 100644 --- a/enums/minute_of_hour.pb.go +++ b/enums/minute_of_hour.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/minute_of_hour.proto +// source: google/ads/googleads/v22/enums/minute_of_hour.proto package enums @@ -84,11 +84,11 @@ func (x MinuteOfHourEnum_MinuteOfHour) String() string { } func (MinuteOfHourEnum_MinuteOfHour) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_minute_of_hour_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_minute_of_hour_proto_enumTypes[0].Descriptor() } func (MinuteOfHourEnum_MinuteOfHour) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_minute_of_hour_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_minute_of_hour_proto_enumTypes[0] } func (x MinuteOfHourEnum_MinuteOfHour) Number() protoreflect.EnumNumber { @@ -97,7 +97,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_v21_enums_minute_of_hour_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_minute_of_hour_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_minute_of_hour_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *MinuteOfHourEnum) String() string { func (*MinuteOfHourEnum) ProtoMessage() {} func (x *MinuteOfHourEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_minute_of_hour_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_minute_of_hour_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,17 +134,17 @@ func (x *MinuteOfHourEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MinuteOfHourEnum.ProtoReflect.Descriptor instead. func (*MinuteOfHourEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_minute_of_hour_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_minute_of_hour_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -154,41 +154,41 @@ var file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc), len(file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDesc), len(file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDescData + return file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDescData } -var file_google_ads_googleads_v21_enums_minute_of_hour_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_minute_of_hour_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_minute_of_hour_proto_goTypes = []any{ - (MinuteOfHourEnum_MinuteOfHour)(0), // 0: google.ads.googleads.v21.enums.MinuteOfHourEnum.MinuteOfHour - (*MinuteOfHourEnum)(nil), // 1: google.ads.googleads.v21.enums.MinuteOfHourEnum +var file_google_ads_googleads_v22_enums_minute_of_hour_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_minute_of_hour_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_minute_of_hour_proto_goTypes = []any{ + (MinuteOfHourEnum_MinuteOfHour)(0), // 0: google.ads.googleads.v22.enums.MinuteOfHourEnum.MinuteOfHour + (*MinuteOfHourEnum)(nil), // 1: google.ads.googleads.v22.enums.MinuteOfHourEnum } -var file_google_ads_googleads_v21_enums_minute_of_hour_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_minute_of_hour_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_minute_of_hour_proto_init() } -func file_google_ads_googleads_v21_enums_minute_of_hour_proto_init() { - if File_google_ads_googleads_v21_enums_minute_of_hour_proto != nil { +func init() { file_google_ads_googleads_v22_enums_minute_of_hour_proto_init() } +func file_google_ads_googleads_v22_enums_minute_of_hour_proto_init() { + if File_google_ads_googleads_v22_enums_minute_of_hour_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc), len(file_google_ads_googleads_v21_enums_minute_of_hour_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDesc), len(file_google_ads_googleads_v22_enums_minute_of_hour_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_minute_of_hour_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_minute_of_hour_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_minute_of_hour_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_minute_of_hour_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_minute_of_hour_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_minute_of_hour_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_minute_of_hour_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_minute_of_hour_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_minute_of_hour_proto = out.File - file_google_ads_googleads_v21_enums_minute_of_hour_proto_goTypes = nil - file_google_ads_googleads_v21_enums_minute_of_hour_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_minute_of_hour_proto = out.File + file_google_ads_googleads_v22_enums_minute_of_hour_proto_goTypes = nil + file_google_ads_googleads_v22_enums_minute_of_hour_proto_depIdxs = nil } diff --git a/enums/mobile_app_vendor.pb.go b/enums/mobile_app_vendor.pb.go index 21c50389..1808097c 100644 --- a/enums/mobile_app_vendor.pb.go +++ b/enums/mobile_app_vendor.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/mobile_app_vendor.proto +// source: google/ads/googleads/v22/enums/mobile_app_vendor.proto package enums @@ -76,11 +76,11 @@ func (x MobileAppVendorEnum_MobileAppVendor) String() string { } func (MobileAppVendorEnum_MobileAppVendor) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_enumTypes[0].Descriptor() } func (MobileAppVendorEnum_MobileAppVendor) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_enumTypes[0] } func (x MobileAppVendorEnum_MobileAppVendor) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *MobileAppVendorEnum) String() string { func (*MobileAppVendorEnum) ProtoMessage() {} func (x *MobileAppVendorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *MobileAppVendorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileAppVendorEnum.ProtoReflect.Descriptor instead. func (*MobileAppVendorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_mobile_app_vendor_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_mobile_app_vendor_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x13, 0x4d, 0x6f, 0x62, 0x69, + 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDescData + return file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDescData } -var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_goTypes = []any{ - (MobileAppVendorEnum_MobileAppVendor)(0), // 0: google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor - (*MobileAppVendorEnum)(nil), // 1: google.ads.googleads.v21.enums.MobileAppVendorEnum +var file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_goTypes = []any{ + (MobileAppVendorEnum_MobileAppVendor)(0), // 0: google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor + (*MobileAppVendorEnum)(nil), // 1: google.ads.googleads.v22.enums.MobileAppVendorEnum } -var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_init() } -func file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_init() { - if File_google_ads_googleads_v21_enums_mobile_app_vendor_proto != nil { +func init() { file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_init() } +func file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_init() { + if File_google_ads_googleads_v22_enums_mobile_app_vendor_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_mobile_app_vendor_proto = out.File - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_goTypes = nil - file_google_ads_googleads_v21_enums_mobile_app_vendor_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_mobile_app_vendor_proto = out.File + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_goTypes = nil + file_google_ads_googleads_v22_enums_mobile_app_vendor_proto_depIdxs = nil } diff --git a/enums/mobile_device_type.pb.go b/enums/mobile_device_type.pb.go index 30a15965..8e81749e 100644 --- a/enums/mobile_device_type.pb.go +++ b/enums/mobile_device_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/mobile_device_type.proto +// source: google/ads/googleads/v22/enums/mobile_device_type.proto package enums @@ -76,11 +76,11 @@ func (x MobileDeviceTypeEnum_MobileDeviceType) String() string { } func (MobileDeviceTypeEnum_MobileDeviceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_mobile_device_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_mobile_device_type_proto_enumTypes[0].Descriptor() } func (MobileDeviceTypeEnum_MobileDeviceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_mobile_device_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_mobile_device_type_proto_enumTypes[0] } func (x MobileDeviceTypeEnum_MobileDeviceType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_mobile_device_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_mobile_device_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mobile_device_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *MobileDeviceTypeEnum) String() string { func (*MobileDeviceTypeEnum) ProtoMessage() {} func (x *MobileDeviceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_mobile_device_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_mobile_device_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *MobileDeviceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileDeviceTypeEnum.ProtoReflect.Descriptor instead. func (*MobileDeviceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_mobile_device_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_mobile_device_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x14, 0x4d, 0x6f, 0x62, + 0x76, 0x32, 0x32, 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, @@ -145,42 +145,42 @@ var file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_mobile_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_mobile_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_mobile_device_type_proto_goTypes = []any{ - (MobileDeviceTypeEnum_MobileDeviceType)(0), // 0: google.ads.googleads.v21.enums.MobileDeviceTypeEnum.MobileDeviceType - (*MobileDeviceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.MobileDeviceTypeEnum +var file_google_ads_googleads_v22_enums_mobile_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_mobile_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_mobile_device_type_proto_goTypes = []any{ + (MobileDeviceTypeEnum_MobileDeviceType)(0), // 0: google.ads.googleads.v22.enums.MobileDeviceTypeEnum.MobileDeviceType + (*MobileDeviceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.MobileDeviceTypeEnum } -var file_google_ads_googleads_v21_enums_mobile_device_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_mobile_device_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_mobile_device_type_proto_init() } -func file_google_ads_googleads_v21_enums_mobile_device_type_proto_init() { - if File_google_ads_googleads_v21_enums_mobile_device_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_mobile_device_type_proto_init() } +func file_google_ads_googleads_v22_enums_mobile_device_type_proto_init() { + if File_google_ads_googleads_v22_enums_mobile_device_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_mobile_device_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_mobile_device_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_mobile_device_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_mobile_device_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_mobile_device_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_mobile_device_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_mobile_device_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_mobile_device_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_mobile_device_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_mobile_device_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_mobile_device_type_proto = out.File - file_google_ads_googleads_v21_enums_mobile_device_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_mobile_device_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_mobile_device_type_proto = out.File + file_google_ads_googleads_v22_enums_mobile_device_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_mobile_device_type_proto_depIdxs = nil } diff --git a/enums/month_of_year.pb.go b/enums/month_of_year.pb.go index 3031f8c1..24557f5b 100644 --- a/enums/month_of_year.pb.go +++ b/enums/month_of_year.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/month_of_year.proto +// source: google/ads/googleads/v22/enums/month_of_year.proto package enums @@ -116,11 +116,11 @@ func (x MonthOfYearEnum_MonthOfYear) String() string { } func (MonthOfYearEnum_MonthOfYear) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_month_of_year_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_month_of_year_proto_enumTypes[0].Descriptor() } func (MonthOfYearEnum_MonthOfYear) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_month_of_year_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_month_of_year_proto_enumTypes[0] } func (x MonthOfYearEnum_MonthOfYear) Number() protoreflect.EnumNumber { @@ -129,7 +129,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_v21_enums_month_of_year_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_month_of_year_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_month_of_year_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -153,7 +153,7 @@ func (x *MonthOfYearEnum) String() string { func (*MonthOfYearEnum) ProtoMessage() {} func (x *MonthOfYearEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_month_of_year_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_month_of_year_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -166,17 +166,17 @@ func (x *MonthOfYearEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MonthOfYearEnum.ProtoReflect.Descriptor instead. func (*MonthOfYearEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_month_of_year_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_month_of_year_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_month_of_year_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -192,41 +192,41 @@ var file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc), len(file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_month_of_year_proto_rawDesc), len(file_google_ads_googleads_v22_enums_month_of_year_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_month_of_year_proto_rawDescData + return file_google_ads_googleads_v22_enums_month_of_year_proto_rawDescData } -var file_google_ads_googleads_v21_enums_month_of_year_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_month_of_year_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_month_of_year_proto_goTypes = []any{ - (MonthOfYearEnum_MonthOfYear)(0), // 0: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - (*MonthOfYearEnum)(nil), // 1: google.ads.googleads.v21.enums.MonthOfYearEnum +var file_google_ads_googleads_v22_enums_month_of_year_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_month_of_year_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_month_of_year_proto_goTypes = []any{ + (MonthOfYearEnum_MonthOfYear)(0), // 0: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + (*MonthOfYearEnum)(nil), // 1: google.ads.googleads.v22.enums.MonthOfYearEnum } -var file_google_ads_googleads_v21_enums_month_of_year_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -234,27 +234,27 @@ var file_google_ads_googleads_v21_enums_month_of_year_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_month_of_year_proto_init() } -func file_google_ads_googleads_v21_enums_month_of_year_proto_init() { - if File_google_ads_googleads_v21_enums_month_of_year_proto != nil { +func init() { file_google_ads_googleads_v22_enums_month_of_year_proto_init() } +func file_google_ads_googleads_v22_enums_month_of_year_proto_init() { + if File_google_ads_googleads_v22_enums_month_of_year_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc), len(file_google_ads_googleads_v21_enums_month_of_year_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_month_of_year_proto_rawDesc), len(file_google_ads_googleads_v22_enums_month_of_year_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_month_of_year_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_month_of_year_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_month_of_year_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_month_of_year_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_month_of_year_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_month_of_year_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_month_of_year_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_month_of_year_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_month_of_year_proto = out.File - file_google_ads_googleads_v21_enums_month_of_year_proto_goTypes = nil - file_google_ads_googleads_v21_enums_month_of_year_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_month_of_year_proto = out.File + file_google_ads_googleads_v22_enums_month_of_year_proto_goTypes = nil + file_google_ads_googleads_v22_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 65f145ae..32bec803 100644 --- a/enums/negative_geo_target_type.pb.go +++ b/enums/negative_geo_target_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/negative_geo_target_type.proto +// source: google/ads/googleads/v22/enums/negative_geo_target_type.proto package enums @@ -78,11 +78,11 @@ func (x NegativeGeoTargetTypeEnum_NegativeGeoTargetType) String() string { } func (NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_enumTypes[0].Descriptor() } func (NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_enumTypes[0] } func (x NegativeGeoTargetTypeEnum_NegativeGeoTargetType) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *NegativeGeoTargetTypeEnum) String() string { func (*NegativeGeoTargetTypeEnum) ProtoMessage() {} func (x *NegativeGeoTargetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *NegativeGeoTargetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NegativeGeoTargetTypeEnum.ProtoReflect.Descriptor instead. func (*NegativeGeoTargetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_negative_geo_target_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_negative_geo_target_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_goTypes = []any{ - (NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 0: google.ads.googleads.v21.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType - (*NegativeGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.NegativeGeoTargetTypeEnum +var file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_goTypes = []any{ + (NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 0: google.ads.googleads.v22.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType + (*NegativeGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.NegativeGeoTargetTypeEnum } -var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_init() } -func file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_init() { - if File_google_ads_googleads_v21_enums_negative_geo_target_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_init() } +func file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_init() { + if File_google_ads_googleads_v22_enums_negative_geo_target_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_negative_geo_target_type_proto = out.File - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_negative_geo_target_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_negative_geo_target_type_proto = out.File + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_negative_geo_target_type_proto_depIdxs = nil } diff --git a/enums/non_skippable_max_duration.pb.go b/enums/non_skippable_max_duration.pb.go index bb7914ba..1adc6333 100644 --- a/enums/non_skippable_max_duration.pb.go +++ b/enums/non_skippable_max_duration.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/non_skippable_max_duration.proto +// source: google/ads/googleads/v22/enums/non_skippable_max_duration.proto package enums @@ -81,11 +81,11 @@ func (x NonSkippableMaxDurationEnum_NonSkippableMaxDuration) String() string { } func (NonSkippableMaxDurationEnum_NonSkippableMaxDuration) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_enumTypes[0].Descriptor() } func (NonSkippableMaxDurationEnum_NonSkippableMaxDuration) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_enumTypes[0] } func (x NonSkippableMaxDurationEnum_NonSkippableMaxDuration) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x NonSkippableMaxDurationEnum_NonSkippableMaxDuration) Number() protorefle // Deprecated: Use NonSkippableMaxDurationEnum_NonSkippableMaxDuration.Descriptor instead. func (NonSkippableMaxDurationEnum_NonSkippableMaxDuration) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the allowed maximum duration values for videos @@ -107,7 +107,7 @@ type NonSkippableMaxDurationEnum struct { func (x *NonSkippableMaxDurationEnum) Reset() { *x = NonSkippableMaxDurationEnum{} - mi := &file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *NonSkippableMaxDurationEnum) String() string { func (*NonSkippableMaxDurationEnum) ProtoMessage() {} func (x *NonSkippableMaxDurationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *NonSkippableMaxDurationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NonSkippableMaxDurationEnum.ProtoReflect.Descriptor instead. func (*NonSkippableMaxDurationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_non_skippable_max_duration_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_non_skippable_max_duration_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x64, 0x75, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xba, 0x01, 0x0a, 0x1b, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9a, 0x01, 0x0a, 0x17, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc 0x0a, 0x1a, 0x4d, 0x41, 0x58, 0x5f, 0x44, 0x55, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x53, 0x49, 0x58, 0x54, 0x59, 0x5f, 0x53, 0x45, 0x43, 0x4f, 0x4e, 0x44, 0x53, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x75, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDescData + return file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDescData } -var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_goTypes = []any{ - (NonSkippableMaxDurationEnum_NonSkippableMaxDuration)(0), // 0: google.ads.googleads.v21.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration - (*NonSkippableMaxDurationEnum)(nil), // 1: google.ads.googleads.v21.enums.NonSkippableMaxDurationEnum +var file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_goTypes = []any{ + (NonSkippableMaxDurationEnum_NonSkippableMaxDuration)(0), // 0: google.ads.googleads.v22.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration + (*NonSkippableMaxDurationEnum)(nil), // 1: google.ads.googleads.v22.enums.NonSkippableMaxDurationEnum } -var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +200,27 @@ var file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_init() } -func file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_init() { - if File_google_ads_googleads_v21_enums_non_skippable_max_duration_proto != nil { +func init() { file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_init() } +func file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_init() { + if File_google_ads_googleads_v22_enums_non_skippable_max_duration_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_non_skippable_max_duration_proto = out.File - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_goTypes = nil - file_google_ads_googleads_v21_enums_non_skippable_max_duration_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_non_skippable_max_duration_proto = out.File + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_goTypes = nil + file_google_ads_googleads_v22_enums_non_skippable_max_duration_proto_depIdxs = nil } diff --git a/enums/non_skippable_min_duration.pb.go b/enums/non_skippable_min_duration.pb.go index 1bed0430..33702f92 100644 --- a/enums/non_skippable_min_duration.pb.go +++ b/enums/non_skippable_min_duration.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/non_skippable_min_duration.proto +// source: google/ads/googleads/v22/enums/non_skippable_min_duration.proto package enums @@ -85,11 +85,11 @@ func (x NonSkippableMinDurationEnum_NonSkippableMinDuration) String() string { } func (NonSkippableMinDurationEnum_NonSkippableMinDuration) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_enumTypes[0].Descriptor() } func (NonSkippableMinDurationEnum_NonSkippableMinDuration) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_enumTypes[0] } func (x NonSkippableMinDurationEnum_NonSkippableMinDuration) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x NonSkippableMinDurationEnum_NonSkippableMinDuration) Number() protorefle // Deprecated: Use NonSkippableMinDurationEnum_NonSkippableMinDuration.Descriptor instead. func (NonSkippableMinDurationEnum_NonSkippableMinDuration) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the allowed minimum duration values for videos @@ -111,7 +111,7 @@ type NonSkippableMinDurationEnum struct { func (x *NonSkippableMinDurationEnum) Reset() { *x = NonSkippableMinDurationEnum{} - mi := &file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *NonSkippableMinDurationEnum) String() string { func (*NonSkippableMinDurationEnum) ProtoMessage() {} func (x *NonSkippableMinDurationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *NonSkippableMinDurationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NonSkippableMinDurationEnum.ProtoReflect.Descriptor instead. func (*NonSkippableMinDurationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_non_skippable_min_duration_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_non_skippable_min_duration_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x5f, 0x64, 0x75, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xdd, 0x01, 0x0a, 0x1b, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xbd, 0x01, 0x0a, 0x17, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, @@ -164,42 +164,42 @@ var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc 0x52, 0x54, 0x59, 0x5f, 0x4f, 0x4e, 0x45, 0x5f, 0x53, 0x45, 0x43, 0x4f, 0x4e, 0x44, 0x53, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x69, 0x6e, 0x44, 0x75, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDescData + return file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDescData } -var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_goTypes = []any{ - (NonSkippableMinDurationEnum_NonSkippableMinDuration)(0), // 0: google.ads.googleads.v21.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration - (*NonSkippableMinDurationEnum)(nil), // 1: google.ads.googleads.v21.enums.NonSkippableMinDurationEnum +var file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_goTypes = []any{ + (NonSkippableMinDurationEnum_NonSkippableMinDuration)(0), // 0: google.ads.googleads.v22.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration + (*NonSkippableMinDurationEnum)(nil), // 1: google.ads.googleads.v22.enums.NonSkippableMinDurationEnum } -var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +207,27 @@ var file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_init() } -func file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_init() { - if File_google_ads_googleads_v21_enums_non_skippable_min_duration_proto != nil { +func init() { file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_init() } +func file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_init() { + if File_google_ads_googleads_v22_enums_non_skippable_min_duration_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_non_skippable_min_duration_proto = out.File - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_goTypes = nil - file_google_ads_googleads_v21_enums_non_skippable_min_duration_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_non_skippable_min_duration_proto = out.File + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_goTypes = nil + file_google_ads_googleads_v22_enums_non_skippable_min_duration_proto_depIdxs = nil } diff --git a/enums/offline_conversion_diagnostic_status_enum.pb.go b/enums/offline_conversion_diagnostic_status_enum.pb.go index 68b994f7..9371a884 100644 --- a/enums/offline_conversion_diagnostic_status_enum.pb.go +++ b/enums/offline_conversion_diagnostic_status_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_conversion_diagnostic_status_enum.proto +// source: google/ads/googleads/v22/enums/offline_conversion_diagnostic_status_enum.proto package enums @@ -88,11 +88,11 @@ func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) } func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0].Descriptor() } func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes[0] } func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) // Deprecated: Use OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus.Descriptor instead. func (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *OfflineConversionDiagnosticStatusEnum) String() string { func (*OfflineConversionDiagnosticStatusEnum) ProtoMessage() {} func (x *OfflineConversionDiagnosticStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,19 +138,19 @@ func (x *OfflineConversionDiagnosticStatusEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use OfflineConversionDiagnosticStatusEnum.ProtoReflect.Descriptor instead. func (*OfflineConversionDiagnosticStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -164,43 +164,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x4f, 0x66, 0x66, 0x6c, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = []any{ - (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 0: google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - (*OfflineConversionDiagnosticStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum +var file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = []any{ + (OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 0: google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + (*OfflineConversionDiagnosticStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum } -var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -209,28 +209,28 @@ var file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enu } func init() { - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_init() + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_init() } -func file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_init() { - if File_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto != nil { +func file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_init() { + if File_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto = out.File - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_conversion_diagnostic_status_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto = out.File + file_google_ads_googleads_v22_enums_offline_conversion_diagnostic_status_enum_proto_goTypes = nil + file_google_ads_googleads_v22_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 5b563bb7..965a5145 100644 --- a/enums/offline_event_upload_client_enum.pb.go +++ b/enums/offline_event_upload_client_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_event_upload_client_enum.proto +// source: google/ads/googleads/v22/enums/offline_event_upload_client_enum.proto package enums @@ -81,11 +81,11 @@ func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) String() string { } func (OfflineEventUploadClientEnum_OfflineEventUploadClient) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_enumTypes[0].Descriptor() } func (OfflineEventUploadClientEnum_OfflineEventUploadClient) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_enumTypes[0] } func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x OfflineEventUploadClientEnum_OfflineEventUploadClient) Number() protoref // Deprecated: Use OfflineEventUploadClientEnum_OfflineEventUploadClient.Descriptor instead. func (OfflineEventUploadClientEnum_OfflineEventUploadClient) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *OfflineEventUploadClientEnum) String() string { func (*OfflineEventUploadClientEnum) ProtoMessage() {} func (x *OfflineEventUploadClientEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,19 +131,19 @@ func (x *OfflineEventUploadClientEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineEventUploadClientEnum.ProtoReflect.Descriptor instead. func (*OfflineEventUploadClientEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9f, 0x01, 0x0a, 0x1c, 0x4f, 0x66, 0x66, 0x6c, + 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_goTypes = []any{ - (OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 0: google.ads.googleads.v21.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - (*OfflineEventUploadClientEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineEventUploadClientEnum +var file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_goTypes = []any{ + (OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 0: google.ads.googleads.v22.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + (*OfflineEventUploadClientEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineEventUploadClientEnum } -var file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_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_v21_enums_offline_event_upload_client_enum_proto_init() } -func file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_init() { - if File_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto != nil { +func init() { file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_init() } +func file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_init() { + if File_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto = out.File - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_event_upload_client_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto = out.File + file_google_ads_googleads_v22_enums_offline_event_upload_client_enum_proto_goTypes = nil + file_google_ads_googleads_v22_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 4ba85d59..23b6acf3 100644 --- a/enums/offline_user_data_job_failure_reason.pb.go +++ b/enums/offline_user_data_job_failure_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_user_data_job_failure_reason.proto +// source: google/ads/googleads/v22/enums/offline_user_data_job_failure_reason.proto package enums @@ -95,11 +95,11 @@ func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Str } func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_enumTypes[0].Descriptor() } func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_enumTypes[0] } func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Number() protoreflect.EnumNumber { @@ -108,7 +108,7 @@ func (x OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) Num // Deprecated: Use OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason.Descriptor instead. func (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *OfflineUserDataJobFailureReasonEnum) String() string { func (*OfflineUserDataJobFailureReasonEnum) ProtoMessage() {} func (x *OfflineUserDataJobFailureReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,19 +146,19 @@ func (x *OfflineUserDataJobFailureReasonEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use OfflineUserDataJobFailureReasonEnum.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobFailureReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x96, 0x02, 0x0a, 0x23, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -178,42 +178,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x24, 0x4f, 0x66, 0x66, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_goTypes = []any{ - (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 0: google.ads.googleads.v21.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason - (*OfflineUserDataJobFailureReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineUserDataJobFailureReasonEnum +var file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_goTypes = []any{ + (OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 0: google.ads.googleads.v22.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason + (*OfflineUserDataJobFailureReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineUserDataJobFailureReasonEnum } -var file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_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_v21_enums_offline_user_data_job_failure_reason_proto_init() } -func file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_init() { - if File_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_init() } +func file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_init() { + if File_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto = out.File - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_user_data_job_failure_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto = out.File + file_google_ads_googleads_v22_enums_offline_user_data_job_failure_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 df5f341b..ecba3468 100644 --- a/enums/offline_user_data_job_match_rate_range.pb.go +++ b/enums/offline_user_data_job_match_rate_range.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_user_data_job_match_rate_range.proto +// source: google/ads/googleads/v22/enums/offline_user_data_job_match_rate_range.proto package enums @@ -105,11 +105,11 @@ func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) S } func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0].Descriptor() } func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_enumTypes[0] } func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) Number() protoreflect.EnumNumber { @@ -118,7 +118,7 @@ func (x OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) N // Deprecated: Use OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange.Descriptor instead. func (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143,7 +143,7 @@ func (x *OfflineUserDataJobMatchRateRangeEnum) String() string { func (*OfflineUserDataJobMatchRateRangeEnum) ProtoMessage() {} func (x *OfflineUserDataJobMatchRateRangeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156,19 +156,19 @@ func (x *OfflineUserDataJobMatchRateRangeEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use OfflineUserDataJobMatchRateRangeEnum.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobMatchRateRangeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd8, 0x02, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -192,43 +192,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_goTypes = []any{ - (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 0: google.ads.googleads.v21.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange - (*OfflineUserDataJobMatchRateRangeEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineUserDataJobMatchRateRangeEnum +var file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_goTypes = []any{ + (OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 0: google.ads.googleads.v22.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange + (*OfflineUserDataJobMatchRateRangeEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineUserDataJobMatchRateRangeEnum } -var file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -236,27 +236,27 @@ var file_google_ads_googleads_v21_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_v21_enums_offline_user_data_job_match_rate_range_proto_init() } -func file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_init() { - if File_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto != nil { +func init() { file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_init() } +func file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_init() { + if File_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto = out.File - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_user_data_job_match_rate_range_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto = out.File + file_google_ads_googleads_v22_enums_offline_user_data_job_match_rate_range_proto_goTypes = nil + file_google_ads_googleads_v22_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 5855b1c2..e3951b8d 100644 --- a/enums/offline_user_data_job_status.pb.go +++ b/enums/offline_user_data_job_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_user_data_job_status.proto +// source: google/ads/googleads/v22/enums/offline_user_data_job_status.proto package enums @@ -84,11 +84,11 @@ func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) String() string { } func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_enumTypes[0].Descriptor() } func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_enumTypes[0] } func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) Number() protoref // Deprecated: Use OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus.Descriptor instead. func (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *OfflineUserDataJobStatusEnum) String() string { func (*OfflineUserDataJobStatusEnum) ProtoMessage() {} func (x *OfflineUserDataJobStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *OfflineUserDataJobStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobStatusEnum.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_user_data_job_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_user_data_job_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_goTypes = []any{ - (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 0: google.ads.googleads.v21.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus - (*OfflineUserDataJobStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineUserDataJobStatusEnum +var file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_goTypes = []any{ + (OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 0: google.ads.googleads.v22.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus + (*OfflineUserDataJobStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineUserDataJobStatusEnum } -var file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_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_v21_enums_offline_user_data_job_status_proto_init() } -func file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_init() { - if File_google_ads_googleads_v21_enums_offline_user_data_job_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_init() } +func file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_init() { + if File_google_ads_googleads_v22_enums_offline_user_data_job_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_user_data_job_status_proto = out.File - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_user_data_job_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_user_data_job_status_proto = out.File + file_google_ads_googleads_v22_enums_offline_user_data_job_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 c30de432..f30bcc03 100644 --- a/enums/offline_user_data_job_type.pb.go +++ b/enums/offline_user_data_job_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/offline_user_data_job_type.proto +// source: google/ads/googleads/v22/enums/offline_user_data_job_type.proto package enums @@ -84,11 +84,11 @@ func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) String() string { } func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_enumTypes[0].Descriptor() } func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_enumTypes[0] } func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x OfflineUserDataJobTypeEnum_OfflineUserDataJobType) Number() protoreflect // Deprecated: Use OfflineUserDataJobTypeEnum_OfflineUserDataJobType.Descriptor instead. func (OfflineUserDataJobTypeEnum_OfflineUserDataJobType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *OfflineUserDataJobTypeEnum) String() string { func (*OfflineUserDataJobTypeEnum) ProtoMessage() {} func (x *OfflineUserDataJobTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *OfflineUserDataJobTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobTypeEnum.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_offline_user_data_job_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_offline_user_data_job_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,42 +162,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x4f, 0x66, 0x66, 0x6c, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_goTypes = []any{ - (OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 0: google.ads.googleads.v21.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType - (*OfflineUserDataJobTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.OfflineUserDataJobTypeEnum +var file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_goTypes = []any{ + (OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 0: google.ads.googleads.v22.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType + (*OfflineUserDataJobTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.OfflineUserDataJobTypeEnum } -var file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_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_v21_enums_offline_user_data_job_type_proto_init() } -func file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_init() { - if File_google_ads_googleads_v21_enums_offline_user_data_job_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_init() } +func file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_init() { + if File_google_ads_googleads_v22_enums_offline_user_data_job_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_offline_user_data_job_type_proto = out.File - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_offline_user_data_job_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_offline_user_data_job_type_proto = out.File + file_google_ads_googleads_v22_enums_offline_user_data_job_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 d1119bf8..3fed9664 100644 --- a/enums/operating_system_version_operator_type.pb.go +++ b/enums/operating_system_version_operator_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/operating_system_version_operator_type.proto +// source: google/ads/googleads/v22/enums/operating_system_version_operator_type.proto package enums @@ -76,11 +76,11 @@ func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorTyp } func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_enumTypes[0].Descriptor() } func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_enumTypes[0] } func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorTyp // Deprecated: Use OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType.Descriptor instead. func (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *OperatingSystemVersionOperatorTypeEnum) String() string { func (*OperatingSystemVersionOperatorTypeEnum) ProtoMessage() {} func (x *OperatingSystemVersionOperatorTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,19 +126,19 @@ func (x *OperatingSystemVersionOperatorTypeEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use OperatingSystemVersionOperatorTypeEnum.ProtoReflect.Descriptor instead. func (*OperatingSystemVersionOperatorTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,43 +150,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_goTypes = []any{ - (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 0: google.ads.googleads.v21.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType - (*OperatingSystemVersionOperatorTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.OperatingSystemVersionOperatorTypeEnum +var file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_goTypes = []any{ + (OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 0: google.ads.googleads.v22.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType + (*OperatingSystemVersionOperatorTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.OperatingSystemVersionOperatorTypeEnum } -var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_operating_system_version_operator_type_p 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_init() } -func file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_init() { - if File_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_init() } +func file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_init() { + if File_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto = out.File - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_operating_system_version_operator_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto = out.File + file_google_ads_googleads_v22_enums_operating_system_version_operator_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 204d0ef7..1d994aee 100644 --- a/enums/optimization_goal_type.pb.go +++ b/enums/optimization_goal_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/optimization_goal_type.proto +// source: google/ads/googleads/v22/enums/optimization_goal_type.proto package enums @@ -85,11 +85,11 @@ func (x OptimizationGoalTypeEnum_OptimizationGoalType) String() string { } func (OptimizationGoalTypeEnum_OptimizationGoalType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_optimization_goal_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_optimization_goal_type_proto_enumTypes[0].Descriptor() } func (OptimizationGoalTypeEnum_OptimizationGoalType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_optimization_goal_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_optimization_goal_type_proto_enumTypes[0] } func (x OptimizationGoalTypeEnum_OptimizationGoalType) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_optimization_goal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_optimization_goal_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *OptimizationGoalTypeEnum) String() string { func (*OptimizationGoalTypeEnum) ProtoMessage() {} func (x *OptimizationGoalTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_optimization_goal_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_optimization_goal_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *OptimizationGoalTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OptimizationGoalTypeEnum.ProtoReflect.Descriptor instead. func (*OptimizationGoalTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_optimization_goal_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_optimization_goal_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,42 +158,42 @@ var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x4f, 0x70, 0x74, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_goTypes = []any{ - (OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 0: google.ads.googleads.v21.enums.OptimizationGoalTypeEnum.OptimizationGoalType - (*OptimizationGoalTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.OptimizationGoalTypeEnum +var file_google_ads_googleads_v22_enums_optimization_goal_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_optimization_goal_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_optimization_goal_type_proto_goTypes = []any{ + (OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 0: google.ads.googleads.v22.enums.OptimizationGoalTypeEnum.OptimizationGoalType + (*OptimizationGoalTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.OptimizationGoalTypeEnum } -var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_enums_optimization_goal_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_optimization_goal_type_proto_init() } -func file_google_ads_googleads_v21_enums_optimization_goal_type_proto_init() { - if File_google_ads_googleads_v21_enums_optimization_goal_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_optimization_goal_type_proto_init() } +func file_google_ads_googleads_v22_enums_optimization_goal_type_proto_init() { + if File_google_ads_googleads_v22_enums_optimization_goal_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_optimization_goal_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_optimization_goal_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_optimization_goal_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_optimization_goal_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_optimization_goal_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_optimization_goal_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_optimization_goal_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_optimization_goal_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_optimization_goal_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_optimization_goal_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_optimization_goal_type_proto = out.File - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_optimization_goal_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_optimization_goal_type_proto = out.File + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_optimization_goal_type_proto_depIdxs = nil } diff --git a/enums/parental_status_type.pb.go b/enums/parental_status_type.pb.go index 09b87787..016e89e7 100644 --- a/enums/parental_status_type.pb.go +++ b/enums/parental_status_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/parental_status_type.proto +// source: google/ads/googleads/v22/enums/parental_status_type.proto package enums @@ -80,11 +80,11 @@ func (x ParentalStatusTypeEnum_ParentalStatusType) String() string { } func (ParentalStatusTypeEnum_ParentalStatusType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_parental_status_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_parental_status_type_proto_enumTypes[0].Descriptor() } func (ParentalStatusTypeEnum_ParentalStatusType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_parental_status_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_parental_status_type_proto_enumTypes[0] } func (x ParentalStatusTypeEnum_ParentalStatusType) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_parental_status_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_parental_status_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_parental_status_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ParentalStatusTypeEnum) String() string { func (*ParentalStatusTypeEnum) ProtoMessage() {} func (x *ParentalStatusTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_parental_status_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_parental_status_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ParentalStatusTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ParentalStatusTypeEnum.ProtoReflect.Descriptor instead. func (*ParentalStatusTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_parental_status_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_parental_status_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x50, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_parental_status_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_parental_status_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_parental_status_type_proto_goTypes = []any{ - (ParentalStatusTypeEnum_ParentalStatusType)(0), // 0: google.ads.googleads.v21.enums.ParentalStatusTypeEnum.ParentalStatusType - (*ParentalStatusTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ParentalStatusTypeEnum +var file_google_ads_googleads_v22_enums_parental_status_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_parental_status_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_parental_status_type_proto_goTypes = []any{ + (ParentalStatusTypeEnum_ParentalStatusType)(0), // 0: google.ads.googleads.v22.enums.ParentalStatusTypeEnum.ParentalStatusType + (*ParentalStatusTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ParentalStatusTypeEnum } -var file_google_ads_googleads_v21_enums_parental_status_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_parental_status_type_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_parental_status_type_proto_init() } -func file_google_ads_googleads_v21_enums_parental_status_type_proto_init() { - if File_google_ads_googleads_v21_enums_parental_status_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_parental_status_type_proto_init() } +func file_google_ads_googleads_v22_enums_parental_status_type_proto_init() { + if File_google_ads_googleads_v22_enums_parental_status_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_parental_status_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_parental_status_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_parental_status_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_parental_status_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_parental_status_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_parental_status_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_parental_status_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_parental_status_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_parental_status_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_parental_status_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_parental_status_type_proto = out.File - file_google_ads_googleads_v21_enums_parental_status_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_parental_status_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_parental_status_type_proto = out.File + file_google_ads_googleads_v22_enums_parental_status_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_parental_status_type_proto_depIdxs = nil } diff --git a/enums/payment_mode.pb.go b/enums/payment_mode.pb.go index a94568d6..b2d0dfa4 100644 --- a/enums/payment_mode.pb.go +++ b/enums/payment_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/payment_mode.proto +// source: google/ads/googleads/v22/enums/payment_mode.proto package enums @@ -92,11 +92,11 @@ func (x PaymentModeEnum_PaymentMode) String() string { } func (PaymentModeEnum_PaymentMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_payment_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_payment_mode_proto_enumTypes[0].Descriptor() } func (PaymentModeEnum_PaymentMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_payment_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_payment_mode_proto_enumTypes[0] } func (x PaymentModeEnum_PaymentMode) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_enums_payment_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_payment_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_payment_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *PaymentModeEnum) String() string { func (*PaymentModeEnum) ProtoMessage() {} func (x *PaymentModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_payment_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_payment_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,17 +142,17 @@ func (x *PaymentModeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PaymentModeEnum.ProtoReflect.Descriptor instead. func (*PaymentModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_payment_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_payment_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_payment_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,41 +163,41 @@ var file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x10, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_payment_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_payment_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_payment_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_payment_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_payment_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_payment_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_payment_mode_proto_goTypes = []any{ - (PaymentModeEnum_PaymentMode)(0), // 0: google.ads.googleads.v21.enums.PaymentModeEnum.PaymentMode - (*PaymentModeEnum)(nil), // 1: google.ads.googleads.v21.enums.PaymentModeEnum +var file_google_ads_googleads_v22_enums_payment_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_payment_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_payment_mode_proto_goTypes = []any{ + (PaymentModeEnum_PaymentMode)(0), // 0: google.ads.googleads.v22.enums.PaymentModeEnum.PaymentMode + (*PaymentModeEnum)(nil), // 1: google.ads.googleads.v22.enums.PaymentModeEnum } -var file_google_ads_googleads_v21_enums_payment_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_payment_mode_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_payment_mode_proto_init() } -func file_google_ads_googleads_v21_enums_payment_mode_proto_init() { - if File_google_ads_googleads_v21_enums_payment_mode_proto != nil { +func init() { file_google_ads_googleads_v22_enums_payment_mode_proto_init() } +func file_google_ads_googleads_v22_enums_payment_mode_proto_init() { + if File_google_ads_googleads_v22_enums_payment_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_payment_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_payment_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_payment_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_payment_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_payment_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_payment_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_payment_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_payment_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_payment_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_payment_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_payment_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_payment_mode_proto = out.File - file_google_ads_googleads_v21_enums_payment_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_payment_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_payment_mode_proto = out.File + file_google_ads_googleads_v22_enums_payment_mode_proto_goTypes = nil + file_google_ads_googleads_v22_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 9bdf34c4..84104a37 100644 --- a/enums/performance_max_upgrade_status.pb.go +++ b/enums/performance_max_upgrade_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/performance_max_upgrade_status.proto +// source: google/ads/googleads/v22/enums/performance_max_upgrade_status.proto package enums @@ -85,11 +85,11 @@ func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) String() st } func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_enumTypes[0].Descriptor() } func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_enumTypes[0] } func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) Number() pr // Deprecated: Use PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus.Descriptor instead. func (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *PerformanceMaxUpgradeStatusEnum) String() string { func (*PerformanceMaxUpgradeStatusEnum) ProtoMessage() {} func (x *PerformanceMaxUpgradeStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *PerformanceMaxUpgradeStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PerformanceMaxUpgradeStatusEnum.ProtoReflect.Descriptor instead. func (*PerformanceMaxUpgradeStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,42 +161,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_goTypes = []any{ - (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 0: google.ads.googleads.v21.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus - (*PerformanceMaxUpgradeStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.PerformanceMaxUpgradeStatusEnum +var file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_goTypes = []any{ + (PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 0: google.ads.googleads.v22.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus + (*PerformanceMaxUpgradeStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.PerformanceMaxUpgradeStatusEnum } -var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_init() } -func file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_init() { - if File_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_init() } +func file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_init() { + if File_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto = out.File - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_performance_max_upgrade_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto = out.File + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_performance_max_upgrade_status_proto_depIdxs = nil } diff --git a/enums/placement_type.pb.go b/enums/placement_type.pb.go index 7ad966a7..498b4867 100644 --- a/enums/placement_type.pb.go +++ b/enums/placement_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/placement_type.proto +// source: google/ads/googleads/v22/enums/placement_type.proto package enums @@ -92,11 +92,11 @@ func (x PlacementTypeEnum_PlacementType) String() string { } func (PlacementTypeEnum_PlacementType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_placement_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_placement_type_proto_enumTypes[0].Descriptor() } func (PlacementTypeEnum_PlacementType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_placement_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_placement_type_proto_enumTypes[0] } func (x PlacementTypeEnum_PlacementType) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_enums_placement_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_placement_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_placement_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *PlacementTypeEnum) String() string { func (*PlacementTypeEnum) ProtoMessage() {} func (x *PlacementTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_placement_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_placement_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,17 +142,17 @@ func (x *PlacementTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PlacementTypeEnum.ProtoReflect.Descriptor instead. func (*PlacementTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_placement_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_placement_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_placement_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_placement_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_placement_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,41 +167,41 @@ var file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x12, 0x50, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_placement_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_placement_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_placement_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_placement_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_placement_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_placement_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_placement_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_placement_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_placement_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_placement_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_placement_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_placement_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_placement_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_placement_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_placement_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_placement_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_placement_type_proto_goTypes = []any{ - (PlacementTypeEnum_PlacementType)(0), // 0: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType - (*PlacementTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum +var file_google_ads_googleads_v22_enums_placement_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_placement_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_placement_type_proto_goTypes = []any{ + (PlacementTypeEnum_PlacementType)(0), // 0: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType + (*PlacementTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum } -var file_google_ads_googleads_v21_enums_placement_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_enums_placement_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_placement_type_proto_init() } -func file_google_ads_googleads_v21_enums_placement_type_proto_init() { - if File_google_ads_googleads_v21_enums_placement_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_placement_type_proto_init() } +func file_google_ads_googleads_v22_enums_placement_type_proto_init() { + if File_google_ads_googleads_v22_enums_placement_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_placement_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_placement_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_placement_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_placement_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_placement_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_placement_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_placement_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_placement_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_placement_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_placement_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_placement_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_placement_type_proto = out.File - file_google_ads_googleads_v21_enums_placement_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_placement_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_placement_type_proto = out.File + file_google_ads_googleads_v22_enums_placement_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_placement_type_proto_depIdxs = nil } diff --git a/enums/policy_approval_status.pb.go b/enums/policy_approval_status.pb.go index 7bbb56ec..67bb7707 100644 --- a/enums/policy_approval_status.pb.go +++ b/enums/policy_approval_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_approval_status.proto +// source: google/ads/googleads/v22/enums/policy_approval_status.proto package enums @@ -89,11 +89,11 @@ func (x PolicyApprovalStatusEnum_PolicyApprovalStatus) String() string { } func (PolicyApprovalStatusEnum_PolicyApprovalStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_approval_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_policy_approval_status_proto_enumTypes[0].Descriptor() } func (PolicyApprovalStatusEnum_PolicyApprovalStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_policy_approval_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_approval_status_proto_enumTypes[0] } func (x PolicyApprovalStatusEnum_PolicyApprovalStatus) Number() protoreflect.EnumNumber { @@ -102,7 +102,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_v21_enums_policy_approval_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_approval_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *PolicyApprovalStatusEnum) String() string { func (*PolicyApprovalStatusEnum) ProtoMessage() {} func (x *PolicyApprovalStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_approval_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_approval_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *PolicyApprovalStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyApprovalStatusEnum.ProtoReflect.Descriptor instead. func (*PolicyApprovalStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_approval_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_approval_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa1, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,41 +163,41 @@ var file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_approval_status_proto_goTypes = []any{ - (PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 0: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - (*PolicyApprovalStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum +var file_google_ads_googleads_v22_enums_policy_approval_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_approval_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_approval_status_proto_goTypes = []any{ + (PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 0: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + (*PolicyApprovalStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum } -var file_google_ads_googleads_v21_enums_policy_approval_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_policy_approval_status_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_policy_approval_status_proto_init() } -func file_google_ads_googleads_v21_enums_policy_approval_status_proto_init() { - if File_google_ads_googleads_v21_enums_policy_approval_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_policy_approval_status_proto_init() } +func file_google_ads_googleads_v22_enums_policy_approval_status_proto_init() { + if File_google_ads_googleads_v22_enums_policy_approval_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_approval_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_approval_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_policy_approval_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_approval_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_approval_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_approval_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_approval_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_approval_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_approval_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_approval_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_approval_status_proto = out.File - file_google_ads_googleads_v21_enums_policy_approval_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_approval_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_approval_status_proto = out.File + file_google_ads_googleads_v22_enums_policy_approval_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_policy_approval_status_proto_depIdxs = nil } diff --git a/enums/policy_review_status.pb.go b/enums/policy_review_status.pb.go index 94188965..68f645be 100644 --- a/enums/policy_review_status.pb.go +++ b/enums/policy_review_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_review_status.proto +// source: google/ads/googleads/v22/enums/policy_review_status.proto package enums @@ -88,11 +88,11 @@ func (x PolicyReviewStatusEnum_PolicyReviewStatus) String() string { } func (PolicyReviewStatusEnum_PolicyReviewStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_review_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_policy_review_status_proto_enumTypes[0].Descriptor() } func (PolicyReviewStatusEnum_PolicyReviewStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_policy_review_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_review_status_proto_enumTypes[0] } func (x PolicyReviewStatusEnum_PolicyReviewStatus) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_policy_review_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_review_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_review_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *PolicyReviewStatusEnum) String() string { func (*PolicyReviewStatusEnum) ProtoMessage() {} func (x *PolicyReviewStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_review_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_review_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *PolicyReviewStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyReviewStatusEnum.ProtoReflect.Descriptor instead. func (*PolicyReviewStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_review_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_review_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x9d, 0x01, 0x0a, 0x16, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,42 +161,42 @@ var file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_review_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_review_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_review_status_proto_goTypes = []any{ - (PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 0: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (*PolicyReviewStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyReviewStatusEnum +var file_google_ads_googleads_v22_enums_policy_review_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_review_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_review_status_proto_goTypes = []any{ + (PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 0: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (*PolicyReviewStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyReviewStatusEnum } -var file_google_ads_googleads_v21_enums_policy_review_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_policy_review_status_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_policy_review_status_proto_init() } -func file_google_ads_googleads_v21_enums_policy_review_status_proto_init() { - if File_google_ads_googleads_v21_enums_policy_review_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_policy_review_status_proto_init() } +func file_google_ads_googleads_v22_enums_policy_review_status_proto_init() { + if File_google_ads_googleads_v22_enums_policy_review_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_review_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_review_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_policy_review_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_review_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_review_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_review_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_review_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_review_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_review_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_review_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_review_status_proto = out.File - file_google_ads_googleads_v21_enums_policy_review_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_review_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_review_status_proto = out.File + file_google_ads_googleads_v22_enums_policy_review_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 5439c4de..6b667ffe 100644 --- a/enums/policy_topic_entry_type.pb.go +++ b/enums/policy_topic_entry_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_topic_entry_type.proto +// source: google/ads/googleads/v22/enums/policy_topic_entry_type.proto package enums @@ -96,11 +96,11 @@ func (x PolicyTopicEntryTypeEnum_PolicyTopicEntryType) String() string { } func (PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_enumTypes[0].Descriptor() } func (PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_enumTypes[0] } func (x PolicyTopicEntryTypeEnum_PolicyTopicEntryType) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *PolicyTopicEntryTypeEnum) String() string { func (*PolicyTopicEntryTypeEnum) ProtoMessage() {} func (x *PolicyTopicEntryTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,18 +146,18 @@ func (x *PolicyTopicEntryTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyTopicEntryTypeEnum.ProtoReflect.Descriptor instead. func (*PolicyTopicEntryTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_topic_entry_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_topic_entry_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xbd, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,42 +171,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_goTypes = []any{ - (PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 0: google.ads.googleads.v21.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType - (*PolicyTopicEntryTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyTopicEntryTypeEnum +var file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_goTypes = []any{ + (PolicyTopicEntryTypeEnum_PolicyTopicEntryType)(0), // 0: google.ads.googleads.v22.enums.PolicyTopicEntryTypeEnum.PolicyTopicEntryType + (*PolicyTopicEntryTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyTopicEntryTypeEnum } -var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -214,27 +214,27 @@ var file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_init() } -func file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_init() { - if File_google_ads_googleads_v21_enums_policy_topic_entry_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_init() } +func file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_init() { + if File_google_ads_googleads_v22_enums_policy_topic_entry_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_topic_entry_type_proto = out.File - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_topic_entry_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_topic_entry_type_proto = out.File + file_google_ads_googleads_v22_enums_policy_topic_entry_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 76fb8902..0c6ab23b 100644 --- a/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go +++ b/enums/policy_topic_evidence_destination_mismatch_url_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_topic_evidence_destination_mismatch_url_type.proto +// source: google/ads/googleads/v22/enums/policy_topic_evidence_destination_mismatch_url_type.proto package enums @@ -90,11 +90,11 @@ func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDes } func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0].Descriptor() } func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes[0] } func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) Number() protoreflect.EnumNumber { @@ -103,7 +103,7 @@ func (x PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDes // Deprecated: Use PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType.Descriptor instead. func (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) String() string { func (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoMessage() {} func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,20 +141,20 @@ func (x *PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) ProtoReflect() proto // Deprecated: Use PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.ProtoReflect.Descriptor instead. func (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe4, 0x01, 0x0a, 0x31, 0x50, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,43 +171,43 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x32, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = []any{ - (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 0: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType - (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = []any{ + (PolicyTopicEvidenceDestinationMismatchUrlTypeEnum_PolicyTopicEvidenceDestinationMismatchUrlType)(0), // 0: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum.PolicyTopicEvidenceDestinationMismatchUrlType + (*PolicyTopicEvidenceDestinationMismatchUrlTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationMismatchUrlTypeEnum } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -216,28 +216,28 @@ var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismat } func init() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() } -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() { - if File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto != nil { +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_init() { + if File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto = out.File - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_mismatch_url_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto = out.File + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_mismatch_url_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 9b8dac9a..a8351992 100644 --- a/enums/policy_topic_evidence_destination_not_working_device.pb.go +++ b/enums/policy_topic_evidence_destination_not_working_device.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_topic_evidence_destination_not_working_device.proto +// source: google/ads/googleads/v22/enums/policy_topic_evidence_destination_not_working_device.proto package enums @@ -82,11 +82,11 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDe } func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0].Descriptor() } func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes[0] } func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDe // Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice.Descriptor instead. func (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) String() string { func (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoMessage() {} func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,20 +133,20 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) ProtoReflect() prot // Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.ProtoReflect.Descriptor instead. func (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x32, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,43 +159,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x33, 0x50, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = []any{ - (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 0: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice - (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = []any{ + (PolicyTopicEvidenceDestinationNotWorkingDeviceEnum_PolicyTopicEvidenceDestinationNotWorkingDevice)(0), // 0: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum.PolicyTopicEvidenceDestinationNotWorkingDevice + (*PolicyTopicEvidenceDestinationNotWorkingDeviceEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDeviceEnum } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,28 +204,28 @@ var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_wo } func init() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_init() + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_init() } -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_init() { - if File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto != nil { +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_init() { + if File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto = out.File - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_device_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto = out.File + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_device_proto_goTypes = nil + file_google_ads_googleads_v22_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 6e825b4b..da09a8f1 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 @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/policy_topic_evidence_destination_not_working_dns_error_type.proto +// source: google/ads/googleads/v22/enums/policy_topic_evidence_destination_not_working_dns_error_type.proto package enums @@ -80,11 +80,11 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvid } func (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_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_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes[0] } func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvid // Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType.Descriptor instead. func (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) String() stri func (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoMessage() {} func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,20 +131,20 @@ func (x *PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) ProtoReflect( // Deprecated: Use PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.ProtoReflect.Descriptor instead. func (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,7 +159,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,36 +167,36 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = []any{ - (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 0: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType - (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = []any{ + (PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum_PolicyTopicEvidenceDestinationNotWorkingDnsErrorType)(0), // 0: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum.PolicyTopicEvidenceDestinationNotWorkingDnsErrorType + (*PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PolicyTopicEvidenceDestinationNotWorkingDnsErrorTypeEnum } -var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,28 +205,28 @@ var file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_wo } func init() { - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() } -func file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() { - if File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto != nil { +func file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_init() { + if File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_rawDesc), len(file_google_ads_googleads_v22_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_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto = out.File - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto = out.File + file_google_ads_googleads_v22_enums_policy_topic_evidence_destination_not_working_dns_error_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 dfb5131b..57c9f1bc 100644 --- a/enums/positive_geo_target_type.pb.go +++ b/enums/positive_geo_target_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/positive_geo_target_type.proto +// source: google/ads/googleads/v22/enums/positive_geo_target_type.proto package enums @@ -85,11 +85,11 @@ func (x PositiveGeoTargetTypeEnum_PositiveGeoTargetType) String() string { } func (PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_enumTypes[0].Descriptor() } func (PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_enumTypes[0] } func (x PositiveGeoTargetTypeEnum_PositiveGeoTargetType) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *PositiveGeoTargetTypeEnum) String() string { func (*PositiveGeoTargetTypeEnum) ProtoMessage() {} func (x *PositiveGeoTargetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *PositiveGeoTargetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PositiveGeoTargetTypeEnum.ProtoReflect.Descriptor instead. func (*PositiveGeoTargetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_positive_geo_target_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_positive_geo_target_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,41 +158,41 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x50, 0x6f, 0x73, 0x69, 0x74, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_goTypes = []any{ - (PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 0: google.ads.googleads.v21.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType - (*PositiveGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PositiveGeoTargetTypeEnum +var file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_goTypes = []any{ + (PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 0: google.ads.googleads.v22.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType + (*PositiveGeoTargetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PositiveGeoTargetTypeEnum } -var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_init() } -func file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_init() { - if File_google_ads_googleads_v21_enums_positive_geo_target_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_init() } +func file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_init() { + if File_google_ads_googleads_v22_enums_positive_geo_target_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_positive_geo_target_type_proto = out.File - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_positive_geo_target_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_positive_geo_target_type_proto = out.File + file_google_ads_googleads_v22_enums_positive_geo_target_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 da2379fa..cdb9c008 100644 --- a/enums/price_extension_price_qualifier.pb.go +++ b/enums/price_extension_price_qualifier.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/price_extension_price_qualifier.proto +// source: google/ads/googleads/v22/enums/price_extension_price_qualifier.proto package enums @@ -80,11 +80,11 @@ func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) String() } func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_enumTypes[0].Descriptor() } func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_enumTypes[0] } func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) Number() // Deprecated: Use PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier.Descriptor instead. func (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *PriceExtensionPriceQualifierEnum) String() string { func (*PriceExtensionPriceQualifierEnum) ProtoMessage() {} func (x *PriceExtensionPriceQualifierEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *PriceExtensionPriceQualifierEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceExtensionPriceQualifierEnum.ProtoReflect.Descriptor instead. func (*PriceExtensionPriceQualifierEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,43 +152,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDescData + return file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDescData } -var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_goTypes = []any{ - (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 0: google.ads.googleads.v21.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier - (*PriceExtensionPriceQualifierEnum)(nil), // 1: google.ads.googleads.v21.enums.PriceExtensionPriceQualifierEnum +var file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_goTypes = []any{ + (PriceExtensionPriceQualifierEnum_PriceExtensionPriceQualifier)(0), // 0: google.ads.googleads.v22.enums.PriceExtensionPriceQualifierEnum.PriceExtensionPriceQualifier + (*PriceExtensionPriceQualifierEnum)(nil), // 1: google.ads.googleads.v22.enums.PriceExtensionPriceQualifierEnum } -var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_init() } -func file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_init() { - if File_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto != nil { +func init() { file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_init() } +func file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_init() { + if File_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto = out.File - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_goTypes = nil - file_google_ads_googleads_v21_enums_price_extension_price_qualifier_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto = out.File + file_google_ads_googleads_v22_enums_price_extension_price_qualifier_proto_goTypes = nil + file_google_ads_googleads_v22_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 a9f14e5f..904cb605 100644 --- a/enums/price_extension_price_unit.pb.go +++ b/enums/price_extension_price_unit.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/price_extension_price_unit.proto +// source: google/ads/googleads/v22/enums/price_extension_price_unit.proto package enums @@ -92,11 +92,11 @@ func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) String() string { } func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_enumTypes[0].Descriptor() } func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_enumTypes[0] } func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) Number() protorefle // Deprecated: Use PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit.Descriptor instead. func (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *PriceExtensionPriceUnitEnum) String() string { func (*PriceExtensionPriceUnitEnum) ProtoMessage() {} func (x *PriceExtensionPriceUnitEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,18 +142,18 @@ func (x *PriceExtensionPriceUnitEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceExtensionPriceUnitEnum.ProtoReflect.Descriptor instead. func (*PriceExtensionPriceUnitEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_price_extension_price_unit_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_price_extension_price_unit_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x50, 0x72, 0x69, 0x63, 0x65, 0x45, 0x78, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDescData + return file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDescData } -var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_goTypes = []any{ - (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 0: google.ads.googleads.v21.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit - (*PriceExtensionPriceUnitEnum)(nil), // 1: google.ads.googleads.v21.enums.PriceExtensionPriceUnitEnum +var file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_goTypes = []any{ + (PriceExtensionPriceUnitEnum_PriceExtensionPriceUnit)(0), // 0: google.ads.googleads.v22.enums.PriceExtensionPriceUnitEnum.PriceExtensionPriceUnit + (*PriceExtensionPriceUnitEnum)(nil), // 1: google.ads.googleads.v22.enums.PriceExtensionPriceUnitEnum } -var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_init() } -func file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_init() { - if File_google_ads_googleads_v21_enums_price_extension_price_unit_proto != nil { +func init() { file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_init() } +func file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_init() { + if File_google_ads_googleads_v22_enums_price_extension_price_unit_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_price_extension_price_unit_proto = out.File - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_goTypes = nil - file_google_ads_googleads_v21_enums_price_extension_price_unit_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_price_extension_price_unit_proto = out.File + file_google_ads_googleads_v22_enums_price_extension_price_unit_proto_goTypes = nil + file_google_ads_googleads_v22_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 521c5221..de59fc93 100644 --- a/enums/price_extension_type.pb.go +++ b/enums/price_extension_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/price_extension_type.proto +// source: google/ads/googleads/v22/enums/price_extension_type.proto package enums @@ -104,11 +104,11 @@ func (x PriceExtensionTypeEnum_PriceExtensionType) String() string { } func (PriceExtensionTypeEnum_PriceExtensionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_price_extension_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_price_extension_type_proto_enumTypes[0].Descriptor() } func (PriceExtensionTypeEnum_PriceExtensionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_price_extension_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_price_extension_type_proto_enumTypes[0] } func (x PriceExtensionTypeEnum_PriceExtensionType) Number() protoreflect.EnumNumber { @@ -117,7 +117,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_v21_enums_price_extension_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_price_extension_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141,7 +141,7 @@ func (x *PriceExtensionTypeEnum) String() string { func (*PriceExtensionTypeEnum) ProtoMessage() {} func (x *PriceExtensionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_price_extension_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_price_extension_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154,18 +154,18 @@ func (x *PriceExtensionTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PriceExtensionTypeEnum.ProtoReflect.Descriptor instead. func (*PriceExtensionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_price_extension_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_price_extension_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xeb, 0x01, 0x0a, 0x16, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -182,42 +182,42 @@ var file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_price_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_price_extension_type_proto_goTypes = []any{ - (PriceExtensionTypeEnum_PriceExtensionType)(0), // 0: google.ads.googleads.v21.enums.PriceExtensionTypeEnum.PriceExtensionType - (*PriceExtensionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PriceExtensionTypeEnum +var file_google_ads_googleads_v22_enums_price_extension_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_price_extension_type_proto_goTypes = []any{ + (PriceExtensionTypeEnum_PriceExtensionType)(0), // 0: google.ads.googleads.v22.enums.PriceExtensionTypeEnum.PriceExtensionType + (*PriceExtensionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PriceExtensionTypeEnum } -var file_google_ads_googleads_v21_enums_price_extension_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -225,27 +225,27 @@ var file_google_ads_googleads_v21_enums_price_extension_type_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_price_extension_type_proto_init() } -func file_google_ads_googleads_v21_enums_price_extension_type_proto_init() { - if File_google_ads_googleads_v21_enums_price_extension_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_price_extension_type_proto_init() } +func file_google_ads_googleads_v22_enums_price_extension_type_proto_init() { + if File_google_ads_googleads_v22_enums_price_extension_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_price_extension_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_price_extension_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_price_extension_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_price_extension_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_price_extension_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_price_extension_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_price_extension_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_price_extension_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_price_extension_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_price_extension_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_price_extension_type_proto = out.File - file_google_ads_googleads_v21_enums_price_extension_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_price_extension_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_price_extension_type_proto = out.File + file_google_ads_googleads_v22_enums_price_extension_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_price_extension_type_proto_depIdxs = nil } diff --git a/enums/product_availability.pb.go b/enums/product_availability.pb.go index 06bcaead..db50cec1 100644 --- a/enums/product_availability.pb.go +++ b/enums/product_availability.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_availability.proto +// source: google/ads/googleads/v22/enums/product_availability.proto package enums @@ -80,11 +80,11 @@ func (x ProductAvailabilityEnum_ProductAvailability) String() string { } func (ProductAvailabilityEnum_ProductAvailability) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_availability_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_availability_proto_enumTypes[0].Descriptor() } func (ProductAvailabilityEnum_ProductAvailability) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_availability_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_availability_proto_enumTypes[0] } func (x ProductAvailabilityEnum_ProductAvailability) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ProductAvailabilityEnum_ProductAvailability) Number() protoreflect.EnumN // Deprecated: Use ProductAvailabilityEnum_ProductAvailability.Descriptor instead. func (ProductAvailabilityEnum_ProductAvailability) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_availability_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_product_availability_proto_rawDescGZIP(), []int{0, 0} } // The availability of a product. @@ -105,7 +105,7 @@ type ProductAvailabilityEnum struct { func (x *ProductAvailabilityEnum) Reset() { *x = ProductAvailabilityEnum{} - mi := &file_google_ads_googleads_v21_enums_product_availability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_availability_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ProductAvailabilityEnum) String() string { func (*ProductAvailabilityEnum) ProtoMessage() {} func (x *ProductAvailabilityEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_availability_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_availability_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ProductAvailabilityEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductAvailabilityEnum.ProtoReflect.Descriptor instead. func (*ProductAvailabilityEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_availability_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_availability_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_availability_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_availability_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_availability_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7c, 0x0a, 0x17, 0x50, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_availability_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_availability_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_availability_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_availability_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_availability_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_availability_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_availability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_availability_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_availability_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_availability_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_availability_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_availability_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_availability_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_availability_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_availability_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_availability_proto_goTypes = []any{ - (ProductAvailabilityEnum_ProductAvailability)(0), // 0: google.ads.googleads.v21.enums.ProductAvailabilityEnum.ProductAvailability - (*ProductAvailabilityEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductAvailabilityEnum +var file_google_ads_googleads_v22_enums_product_availability_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_availability_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_availability_proto_goTypes = []any{ + (ProductAvailabilityEnum_ProductAvailability)(0), // 0: google.ads.googleads.v22.enums.ProductAvailabilityEnum.ProductAvailability + (*ProductAvailabilityEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductAvailabilityEnum } -var file_google_ads_googleads_v21_enums_product_availability_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_product_availability_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_availability_proto_init() } -func file_google_ads_googleads_v21_enums_product_availability_proto_init() { - if File_google_ads_googleads_v21_enums_product_availability_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_availability_proto_init() } +func file_google_ads_googleads_v22_enums_product_availability_proto_init() { + if File_google_ads_googleads_v22_enums_product_availability_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_availability_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_availability_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_availability_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_availability_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_availability_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_availability_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_availability_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_availability_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_availability_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_availability_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_availability_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_availability_proto = out.File - file_google_ads_googleads_v21_enums_product_availability_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_availability_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_availability_proto = out.File + file_google_ads_googleads_v22_enums_product_availability_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_availability_proto_depIdxs = nil } diff --git a/enums/product_category_level.pb.go b/enums/product_category_level.pb.go index e8832455..3ad577b7 100644 --- a/enums/product_category_level.pb.go +++ b/enums/product_category_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_category_level.proto +// source: google/ads/googleads/v22/enums/product_category_level.proto package enums @@ -88,11 +88,11 @@ func (x ProductCategoryLevelEnum_ProductCategoryLevel) String() string { } func (ProductCategoryLevelEnum_ProductCategoryLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_category_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_category_level_proto_enumTypes[0].Descriptor() } func (ProductCategoryLevelEnum_ProductCategoryLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_category_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_category_level_proto_enumTypes[0] } func (x ProductCategoryLevelEnum_ProductCategoryLevel) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_product_category_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_category_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_category_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ProductCategoryLevelEnum) String() string { func (*ProductCategoryLevelEnum) ProtoMessage() {} func (x *ProductCategoryLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_category_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_category_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *ProductCategoryLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCategoryLevelEnum.ProtoReflect.Descriptor instead. func (*ProductCategoryLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_category_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_category_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_category_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8c, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_category_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_category_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_category_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_category_level_proto_goTypes = []any{ - (ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 0: google.ads.googleads.v21.enums.ProductCategoryLevelEnum.ProductCategoryLevel - (*ProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductCategoryLevelEnum +var file_google_ads_googleads_v22_enums_product_category_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_category_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_category_level_proto_goTypes = []any{ + (ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 0: google.ads.googleads.v22.enums.ProductCategoryLevelEnum.ProductCategoryLevel + (*ProductCategoryLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductCategoryLevelEnum } -var file_google_ads_googleads_v21_enums_product_category_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_enums_product_category_level_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_category_level_proto_init() } -func file_google_ads_googleads_v21_enums_product_category_level_proto_init() { - if File_google_ads_googleads_v21_enums_product_category_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_category_level_proto_init() } +func file_google_ads_googleads_v22_enums_product_category_level_proto_init() { + if File_google_ads_googleads_v22_enums_product_category_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_category_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_category_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_category_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_category_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_category_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_category_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_category_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_category_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_category_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_category_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_category_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_category_level_proto = out.File - file_google_ads_googleads_v21_enums_product_category_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_category_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_category_level_proto = out.File + file_google_ads_googleads_v22_enums_product_category_level_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_category_level_proto_depIdxs = nil } diff --git a/enums/product_category_state.pb.go b/enums/product_category_state.pb.go index 4f2ce3bb..6bc720ee 100644 --- a/enums/product_category_state.pb.go +++ b/enums/product_category_state.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_category_state.proto +// source: google/ads/googleads/v22/enums/product_category_state.proto package enums @@ -76,11 +76,11 @@ func (x ProductCategoryStateEnum_ProductCategoryState) String() string { } func (ProductCategoryStateEnum_ProductCategoryState) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_category_state_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_category_state_proto_enumTypes[0].Descriptor() } func (ProductCategoryStateEnum_ProductCategoryState) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_category_state_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_category_state_proto_enumTypes[0] } func (x ProductCategoryStateEnum_ProductCategoryState) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_product_category_state_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_category_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_category_state_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ProductCategoryStateEnum) String() string { func (*ProductCategoryStateEnum) ProtoMessage() {} func (x *ProductCategoryStateEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_category_state_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_category_state_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ProductCategoryStateEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCategoryStateEnum.ProtoReflect.Descriptor instead. func (*ProductCategoryStateEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_category_state_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_category_state_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_category_state_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_category_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_category_state_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_category_state_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_category_state_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_category_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_category_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_category_state_proto_goTypes = []any{ - (ProductCategoryStateEnum_ProductCategoryState)(0), // 0: google.ads.googleads.v21.enums.ProductCategoryStateEnum.ProductCategoryState - (*ProductCategoryStateEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductCategoryStateEnum +var file_google_ads_googleads_v22_enums_product_category_state_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_category_state_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_category_state_proto_goTypes = []any{ + (ProductCategoryStateEnum_ProductCategoryState)(0), // 0: google.ads.googleads.v22.enums.ProductCategoryStateEnum.ProductCategoryState + (*ProductCategoryStateEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductCategoryStateEnum } -var file_google_ads_googleads_v21_enums_product_category_state_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_product_category_state_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_category_state_proto_init() } -func file_google_ads_googleads_v21_enums_product_category_state_proto_init() { - if File_google_ads_googleads_v21_enums_product_category_state_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_category_state_proto_init() } +func file_google_ads_googleads_v22_enums_product_category_state_proto_init() { + if File_google_ads_googleads_v22_enums_product_category_state_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_category_state_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_category_state_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_category_state_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_category_state_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_category_state_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_category_state_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_category_state_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_category_state_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_category_state_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_category_state_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_category_state_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_category_state_proto = out.File - file_google_ads_googleads_v21_enums_product_category_state_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_category_state_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_category_state_proto = out.File + file_google_ads_googleads_v22_enums_product_category_state_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_category_state_proto_depIdxs = nil } diff --git a/enums/product_channel.pb.go b/enums/product_channel.pb.go index 12a4ad37..fdfb5de2 100644 --- a/enums/product_channel.pb.go +++ b/enums/product_channel.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_channel.proto +// source: google/ads/googleads/v22/enums/product_channel.proto package enums @@ -76,11 +76,11 @@ func (x ProductChannelEnum_ProductChannel) String() string { } func (ProductChannelEnum_ProductChannel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_channel_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_channel_proto_enumTypes[0].Descriptor() } func (ProductChannelEnum_ProductChannel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_channel_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_channel_proto_enumTypes[0] } func (x ProductChannelEnum_ProductChannel) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_product_channel_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_channel_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_channel_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ProductChannelEnum) String() string { func (*ProductChannelEnum) ProtoMessage() {} func (x *ProductChannelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_channel_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_channel_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *ProductChannelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductChannelEnum.ProtoReflect.Descriptor instead. func (*ProductChannelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_channel_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_channel_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_channel_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_channel_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_channel_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, 0x50, 0x72, 0x6f, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_channel_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_channel_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_channel_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_channel_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_channel_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_channel_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_channel_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_channel_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_channel_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_channel_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_channel_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_channel_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_channel_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_channel_proto_goTypes = []any{ - (ProductChannelEnum_ProductChannel)(0), // 0: google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - (*ProductChannelEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductChannelEnum +var file_google_ads_googleads_v22_enums_product_channel_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_channel_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_channel_proto_goTypes = []any{ + (ProductChannelEnum_ProductChannel)(0), // 0: google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + (*ProductChannelEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductChannelEnum } -var file_google_ads_googleads_v21_enums_product_channel_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_product_channel_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_channel_proto_init() } -func file_google_ads_googleads_v21_enums_product_channel_proto_init() { - if File_google_ads_googleads_v21_enums_product_channel_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_channel_proto_init() } +func file_google_ads_googleads_v22_enums_product_channel_proto_init() { + if File_google_ads_googleads_v22_enums_product_channel_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_channel_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_channel_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_channel_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_channel_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_channel_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_channel_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_channel_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_channel_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_channel_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_channel_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_channel_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_channel_proto = out.File - file_google_ads_googleads_v21_enums_product_channel_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_channel_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_channel_proto = out.File + file_google_ads_googleads_v22_enums_product_channel_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_channel_proto_depIdxs = nil } diff --git a/enums/product_channel_exclusivity.pb.go b/enums/product_channel_exclusivity.pb.go index d72e4df9..4c37c885 100644 --- a/enums/product_channel_exclusivity.pb.go +++ b/enums/product_channel_exclusivity.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_channel_exclusivity.proto +// source: google/ads/googleads/v22/enums/product_channel_exclusivity.proto package enums @@ -78,11 +78,11 @@ func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) String() string } func (ProductChannelExclusivityEnum_ProductChannelExclusivity) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_enumTypes[0].Descriptor() } func (ProductChannelExclusivityEnum_ProductChannelExclusivity) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_enumTypes[0] } func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x ProductChannelExclusivityEnum_ProductChannelExclusivity) Number() protor // Deprecated: Use ProductChannelExclusivityEnum_ProductChannelExclusivity.Descriptor instead. func (ProductChannelExclusivityEnum_ProductChannelExclusivity) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *ProductChannelExclusivityEnum) String() string { func (*ProductChannelExclusivityEnum) ProtoMessage() {} func (x *ProductChannelExclusivityEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *ProductChannelExclusivityEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductChannelExclusivityEnum.ProtoReflect.Descriptor instead. func (*ProductChannelExclusivityEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_channel_exclusivity_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_channel_exclusivity_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x50, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_goTypes = []any{ - (ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 0: google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - (*ProductChannelExclusivityEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductChannelExclusivityEnum +var file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_goTypes = []any{ + (ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 0: google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + (*ProductChannelExclusivityEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductChannelExclusivityEnum } -var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_init() } -func file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_init() { - if File_google_ads_googleads_v21_enums_product_channel_exclusivity_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_init() } +func file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_init() { + if File_google_ads_googleads_v22_enums_product_channel_exclusivity_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_channel_exclusivity_proto = out.File - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_channel_exclusivity_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_channel_exclusivity_proto = out.File + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_channel_exclusivity_proto_depIdxs = nil } diff --git a/enums/product_condition.pb.go b/enums/product_condition.pb.go index 8b071814..33e4bed9 100644 --- a/enums/product_condition.pb.go +++ b/enums/product_condition.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_condition.proto +// source: google/ads/googleads/v22/enums/product_condition.proto package enums @@ -80,11 +80,11 @@ func (x ProductConditionEnum_ProductCondition) String() string { } func (ProductConditionEnum_ProductCondition) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_condition_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_condition_proto_enumTypes[0].Descriptor() } func (ProductConditionEnum_ProductCondition) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_condition_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_condition_proto_enumTypes[0] } func (x ProductConditionEnum_ProductCondition) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_product_condition_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_condition_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_condition_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ProductConditionEnum) String() string { func (*ProductConditionEnum) ProtoMessage() {} func (x *ProductConditionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_condition_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_condition_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ProductConditionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductConditionEnum.ProtoReflect.Descriptor instead. func (*ProductConditionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_condition_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_condition_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_condition_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_condition_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_condition_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x64, + 0x32, 0x32, 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, @@ -150,41 +150,41 @@ var file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_condition_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_condition_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_condition_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_condition_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_condition_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_condition_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_condition_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_condition_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_condition_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_condition_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_condition_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_condition_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_condition_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_condition_proto_goTypes = []any{ - (ProductConditionEnum_ProductCondition)(0), // 0: google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - (*ProductConditionEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductConditionEnum +var file_google_ads_googleads_v22_enums_product_condition_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_condition_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_condition_proto_goTypes = []any{ + (ProductConditionEnum_ProductCondition)(0), // 0: google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + (*ProductConditionEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductConditionEnum } -var file_google_ads_googleads_v21_enums_product_condition_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_product_condition_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_condition_proto_init() } -func file_google_ads_googleads_v21_enums_product_condition_proto_init() { - if File_google_ads_googleads_v21_enums_product_condition_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_condition_proto_init() } +func file_google_ads_googleads_v22_enums_product_condition_proto_init() { + if File_google_ads_googleads_v22_enums_product_condition_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_condition_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_condition_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_condition_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_condition_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_condition_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_condition_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_condition_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_condition_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_condition_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_condition_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_condition_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_condition_proto = out.File - file_google_ads_googleads_v21_enums_product_condition_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_condition_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_condition_proto = out.File + file_google_ads_googleads_v22_enums_product_condition_proto_goTypes = nil + file_google_ads_googleads_v22_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 bcb0ac45..a4b73093 100644 --- a/enums/product_custom_attribute_index.pb.go +++ b/enums/product_custom_attribute_index.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_custom_attribute_index.proto +// source: google/ads/googleads/v22/enums/product_custom_attribute_index.proto package enums @@ -88,11 +88,11 @@ func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) String() st } func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_enumTypes[0].Descriptor() } func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_enumTypes[0] } func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) Number() pr // Deprecated: Use ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex.Descriptor instead. func (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ProductCustomAttributeIndexEnum) String() string { func (*ProductCustomAttributeIndexEnum) ProtoMessage() {} func (x *ProductCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *ProductCustomAttributeIndexEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCustomAttributeIndexEnum.ProtoReflect.Descriptor instead. func (*ProductCustomAttributeIndexEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_custom_attribute_index_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_custom_attribute_index_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,42 +162,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_goTypes = []any{ - (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 0: google.ads.googleads.v21.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex - (*ProductCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductCustomAttributeIndexEnum +var file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_goTypes = []any{ + (ProductCustomAttributeIndexEnum_ProductCustomAttributeIndex)(0), // 0: google.ads.googleads.v22.enums.ProductCustomAttributeIndexEnum.ProductCustomAttributeIndex + (*ProductCustomAttributeIndexEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductCustomAttributeIndexEnum } -var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_init() } -func file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_init() { - if File_google_ads_googleads_v21_enums_product_custom_attribute_index_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_init() } +func file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_init() { + if File_google_ads_googleads_v22_enums_product_custom_attribute_index_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_custom_attribute_index_proto = out.File - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_custom_attribute_index_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_custom_attribute_index_proto = out.File + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_custom_attribute_index_proto_depIdxs = nil } diff --git a/enums/product_issue_severity.pb.go b/enums/product_issue_severity.pb.go index ff223b6d..f94cba33 100644 --- a/enums/product_issue_severity.pb.go +++ b/enums/product_issue_severity.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_issue_severity.proto +// source: google/ads/googleads/v22/enums/product_issue_severity.proto package enums @@ -76,11 +76,11 @@ func (x ProductIssueSeverityEnum_ProductIssueSeverity) String() string { } func (ProductIssueSeverityEnum_ProductIssueSeverity) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_issue_severity_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_issue_severity_proto_enumTypes[0].Descriptor() } func (ProductIssueSeverityEnum_ProductIssueSeverity) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_issue_severity_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_issue_severity_proto_enumTypes[0] } func (x ProductIssueSeverityEnum_ProductIssueSeverity) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ProductIssueSeverityEnum_ProductIssueSeverity) Number() protoreflect.Enu // Deprecated: Use ProductIssueSeverityEnum_ProductIssueSeverity.Descriptor instead. func (ProductIssueSeverityEnum_ProductIssueSeverity) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescGZIP(), []int{0, 0} } // The severity of a product issue. @@ -101,7 +101,7 @@ type ProductIssueSeverityEnum struct { func (x *ProductIssueSeverityEnum) Reset() { *x = ProductIssueSeverityEnum{} - mi := &file_google_ads_googleads_v21_enums_product_issue_severity_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_issue_severity_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ProductIssueSeverityEnum) String() string { func (*ProductIssueSeverityEnum) ProtoMessage() {} func (x *ProductIssueSeverityEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_issue_severity_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_issue_severity_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ProductIssueSeverityEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductIssueSeverityEnum.ProtoReflect.Descriptor instead. func (*ProductIssueSeverityEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_issue_severity_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_issue_severity_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_issue_severity_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_issue_severity_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_issue_severity_proto_goTypes = []any{ - (ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 0: google.ads.googleads.v21.enums.ProductIssueSeverityEnum.ProductIssueSeverity - (*ProductIssueSeverityEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductIssueSeverityEnum +var file_google_ads_googleads_v22_enums_product_issue_severity_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_issue_severity_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_issue_severity_proto_goTypes = []any{ + (ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 0: google.ads.googleads.v22.enums.ProductIssueSeverityEnum.ProductIssueSeverity + (*ProductIssueSeverityEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductIssueSeverityEnum } -var file_google_ads_googleads_v21_enums_product_issue_severity_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_product_issue_severity_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_issue_severity_proto_init() } -func file_google_ads_googleads_v21_enums_product_issue_severity_proto_init() { - if File_google_ads_googleads_v21_enums_product_issue_severity_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_issue_severity_proto_init() } +func file_google_ads_googleads_v22_enums_product_issue_severity_proto_init() { + if File_google_ads_googleads_v22_enums_product_issue_severity_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_issue_severity_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_issue_severity_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_issue_severity_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_issue_severity_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_issue_severity_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_issue_severity_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_issue_severity_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_issue_severity_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_issue_severity_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_issue_severity_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_issue_severity_proto = out.File - file_google_ads_googleads_v21_enums_product_issue_severity_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_issue_severity_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_issue_severity_proto = out.File + file_google_ads_googleads_v22_enums_product_issue_severity_proto_goTypes = nil + file_google_ads_googleads_v22_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 f077e77a..ff2ab5d5 100644 --- a/enums/product_link_invitation_status.pb.go +++ b/enums/product_link_invitation_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_link_invitation_status.proto +// source: google/ads/googleads/v22/enums/product_link_invitation_status.proto package enums @@ -96,11 +96,11 @@ func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) String() st } func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_enumTypes[0].Descriptor() } func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_enumTypes[0] } func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Number() protoreflect.EnumNumber { @@ -109,7 +109,7 @@ func (x ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) Number() pr // Deprecated: Use ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus.Descriptor instead. func (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *ProductLinkInvitationStatusEnum) String() string { func (*ProductLinkInvitationStatusEnum) ProtoMessage() {} func (x *ProductLinkInvitationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,18 +147,18 @@ func (x *ProductLinkInvitationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLinkInvitationStatusEnum.ProtoReflect.Descriptor instead. func (*ProductLinkInvitationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_link_invitation_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_link_invitation_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -173,42 +173,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x50, 0x72, 0x6f, 0x64, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_goTypes = []any{ - (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 0: google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - (*ProductLinkInvitationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum +var file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_goTypes = []any{ + (ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 0: google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + (*ProductLinkInvitationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum } -var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -216,27 +216,27 @@ var file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_init() } -func file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_init() { - if File_google_ads_googleads_v21_enums_product_link_invitation_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_init() } +func file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_init() { + if File_google_ads_googleads_v22_enums_product_link_invitation_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_link_invitation_status_proto = out.File - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_link_invitation_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_link_invitation_status_proto = out.File + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_link_invitation_status_proto_depIdxs = nil } diff --git a/enums/product_status.pb.go b/enums/product_status.pb.go index d47a4f1a..d60bb93f 100644 --- a/enums/product_status.pb.go +++ b/enums/product_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_status.proto +// source: google/ads/googleads/v22/enums/product_status.proto package enums @@ -81,11 +81,11 @@ func (x ProductStatusEnum_ProductStatus) String() string { } func (ProductStatusEnum_ProductStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_status_proto_enumTypes[0].Descriptor() } func (ProductStatusEnum_ProductStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_status_proto_enumTypes[0] } func (x ProductStatusEnum_ProductStatus) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ProductStatusEnum_ProductStatus) Number() protoreflect.EnumNumber { // Deprecated: Use ProductStatusEnum_ProductStatus.Descriptor instead. func (ProductStatusEnum_ProductStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_product_status_proto_rawDescGZIP(), []int{0, 0} } // The status of a product indicating whether it can show in ads. @@ -106,7 +106,7 @@ type ProductStatusEnum struct { func (x *ProductStatusEnum) Reset() { *x = ProductStatusEnum{} - mi := &file_google_ads_googleads_v21_enums_product_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ProductStatusEnum) String() string { func (*ProductStatusEnum) ProtoMessage() {} func (x *ProductStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,17 +131,17 @@ func (x *ProductStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductStatusEnum.ProtoReflect.Descriptor instead. func (*ProductStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_product_status_proto_rawDesc = string([] 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_status_proto_goTypes = []any{ - (ProductStatusEnum_ProductStatus)(0), // 0: google.ads.googleads.v21.enums.ProductStatusEnum.ProductStatus - (*ProductStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductStatusEnum +var file_google_ads_googleads_v22_enums_product_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_status_proto_goTypes = []any{ + (ProductStatusEnum_ProductStatus)(0), // 0: google.ads.googleads.v22.enums.ProductStatusEnum.ProductStatus + (*ProductStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductStatusEnum } -var file_google_ads_googleads_v21_enums_product_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_product_status_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_status_proto_init() } -func file_google_ads_googleads_v21_enums_product_status_proto_init() { - if File_google_ads_googleads_v21_enums_product_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_status_proto_init() } +func file_google_ads_googleads_v22_enums_product_status_proto_init() { + if File_google_ads_googleads_v22_enums_product_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_status_proto = out.File - file_google_ads_googleads_v21_enums_product_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_status_proto = out.File + file_google_ads_googleads_v22_enums_product_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_status_proto_depIdxs = nil } diff --git a/enums/product_type_level.pb.go b/enums/product_type_level.pb.go index 43b2cb83..47b843b0 100644 --- a/enums/product_type_level.pb.go +++ b/enums/product_type_level.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/product_type_level.proto +// source: google/ads/googleads/v22/enums/product_type_level.proto package enums @@ -88,11 +88,11 @@ func (x ProductTypeLevelEnum_ProductTypeLevel) String() string { } func (ProductTypeLevelEnum_ProductTypeLevel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_product_type_level_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_product_type_level_proto_enumTypes[0].Descriptor() } func (ProductTypeLevelEnum_ProductTypeLevel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_product_type_level_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_product_type_level_proto_enumTypes[0] } func (x ProductTypeLevelEnum_ProductTypeLevel) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_product_type_level_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_product_type_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_type_level_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ProductTypeLevelEnum) String() string { func (*ProductTypeLevelEnum) ProtoMessage() {} func (x *ProductTypeLevelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_product_type_level_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_product_type_level_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *ProductTypeLevelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductTypeLevelEnum.ProtoReflect.Descriptor instead. func (*ProductTypeLevelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_product_type_level_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_product_type_level_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_product_type_level_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x84, 0x01, 0x0a, 0x14, 0x50, 0x72, + 0x76, 0x32, 0x32, 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, @@ -160,41 +160,41 @@ var file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_type_level_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_product_type_level_proto_rawDescData + return file_google_ads_googleads_v22_enums_product_type_level_proto_rawDescData } -var file_google_ads_googleads_v21_enums_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_product_type_level_proto_goTypes = []any{ - (ProductTypeLevelEnum_ProductTypeLevel)(0), // 0: google.ads.googleads.v21.enums.ProductTypeLevelEnum.ProductTypeLevel - (*ProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v21.enums.ProductTypeLevelEnum +var file_google_ads_googleads_v22_enums_product_type_level_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_product_type_level_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_product_type_level_proto_goTypes = []any{ + (ProductTypeLevelEnum_ProductTypeLevel)(0), // 0: google.ads.googleads.v22.enums.ProductTypeLevelEnum.ProductTypeLevel + (*ProductTypeLevelEnum)(nil), // 1: google.ads.googleads.v22.enums.ProductTypeLevelEnum } -var file_google_ads_googleads_v21_enums_product_type_level_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_product_type_level_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_product_type_level_proto_init() } -func file_google_ads_googleads_v21_enums_product_type_level_proto_init() { - if File_google_ads_googleads_v21_enums_product_type_level_proto != nil { +func init() { file_google_ads_googleads_v22_enums_product_type_level_proto_init() } +func file_google_ads_googleads_v22_enums_product_type_level_proto_init() { + if File_google_ads_googleads_v22_enums_product_type_level_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v21_enums_product_type_level_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_product_type_level_proto_rawDesc), len(file_google_ads_googleads_v22_enums_product_type_level_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_product_type_level_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_product_type_level_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_product_type_level_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_product_type_level_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_product_type_level_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_product_type_level_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_product_type_level_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_product_type_level_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_product_type_level_proto = out.File - file_google_ads_googleads_v21_enums_product_type_level_proto_goTypes = nil - file_google_ads_googleads_v21_enums_product_type_level_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_product_type_level_proto = out.File + file_google_ads_googleads_v22_enums_product_type_level_proto_goTypes = nil + file_google_ads_googleads_v22_enums_product_type_level_proto_depIdxs = nil } diff --git a/enums/promotion_barcode_type.pb.go b/enums/promotion_barcode_type.pb.go index c794327a..2fa26916 100644 --- a/enums/promotion_barcode_type.pb.go +++ b/enums/promotion_barcode_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/promotion_barcode_type.proto +// source: google/ads/googleads/v22/enums/promotion_barcode_type.proto package enums @@ -123,11 +123,11 @@ func (x PromotionBarcodeTypeEnum_PromotionBarcodeType) String() string { } func (PromotionBarcodeTypeEnum_PromotionBarcodeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_enumTypes[0].Descriptor() } func (PromotionBarcodeTypeEnum_PromotionBarcodeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_enumTypes[0] } func (x PromotionBarcodeTypeEnum_PromotionBarcodeType) Number() protoreflect.EnumNumber { @@ -136,7 +136,7 @@ func (x PromotionBarcodeTypeEnum_PromotionBarcodeType) Number() protoreflect.Enu // Deprecated: Use PromotionBarcodeTypeEnum_PromotionBarcodeType.Descriptor instead. func (PromotionBarcodeTypeEnum_PromotionBarcodeType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing a promotion barcode type. @@ -148,7 +148,7 @@ type PromotionBarcodeTypeEnum struct { func (x *PromotionBarcodeTypeEnum) Reset() { *x = PromotionBarcodeTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *PromotionBarcodeTypeEnum) String() string { func (*PromotionBarcodeTypeEnum) ProtoMessage() {} func (x *PromotionBarcodeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,18 +173,18 @@ func (x *PromotionBarcodeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PromotionBarcodeTypeEnum.ProtoReflect.Descriptor instead. func (*PromotionBarcodeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_promotion_barcode_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_promotion_barcode_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x62, 0x61, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc8, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc8, 0x01, 0x0a, 0x18, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xab, 0x01, 0x0a, 0x14, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 0x6f, 0x64, 0x65, 0x54, @@ -199,42 +199,42 @@ var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc = s 0x09, 0x12, 0x0a, 0x0a, 0x06, 0x50, 0x44, 0x46, 0x34, 0x31, 0x37, 0x10, 0x0a, 0x12, 0x09, 0x0a, 0x05, 0x55, 0x50, 0x43, 0x5f, 0x41, 0x10, 0x0b, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x50, 0x72, 0x6f, 0x6d, 0x6f, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x61, 0x72, 0x63, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_goTypes = []any{ - (PromotionBarcodeTypeEnum_PromotionBarcodeType)(0), // 0: google.ads.googleads.v21.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType - (*PromotionBarcodeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.PromotionBarcodeTypeEnum +var file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_goTypes = []any{ + (PromotionBarcodeTypeEnum_PromotionBarcodeType)(0), // 0: google.ads.googleads.v22.enums.PromotionBarcodeTypeEnum.PromotionBarcodeType + (*PromotionBarcodeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.PromotionBarcodeTypeEnum } -var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_promotion_barcode_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,27 +242,27 @@ var file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_init() } -func file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_init() { - if File_google_ads_googleads_v21_enums_promotion_barcode_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_init() } +func file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_init() { + if File_google_ads_googleads_v22_enums_promotion_barcode_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_promotion_barcode_type_proto = out.File - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_promotion_barcode_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_promotion_barcode_type_proto = out.File + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_promotion_barcode_type_proto_depIdxs = nil } diff --git a/enums/promotion_extension_discount_modifier.pb.go b/enums/promotion_extension_discount_modifier.pb.go index 5a74c306..92744abd 100644 --- a/enums/promotion_extension_discount_modifier.pb.go +++ b/enums/promotion_extension_discount_modifier.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/promotion_extension_discount_modifier.proto +// source: google/ads/googleads/v22/enums/promotion_extension_discount_modifier.proto package enums @@ -72,11 +72,11 @@ func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifie } func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_enumTypes[0].Descriptor() } func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_enumTypes[0] } func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifie // Deprecated: Use PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier.Descriptor instead. func (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *PromotionExtensionDiscountModifierEnum) String() string { func (*PromotionExtensionDiscountModifierEnum) ProtoMessage() {} func (x *PromotionExtensionDiscountModifierEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,19 +123,19 @@ func (x *PromotionExtensionDiscountModifierEnum) ProtoReflect() protoreflect.Mes // Deprecated: Use PromotionExtensionDiscountModifierEnum.ProtoReflect.Descriptor instead. func (*PromotionExtensionDiscountModifierEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x77, 0x0a, 0x26, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,43 +145,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x27, 0x50, 0x72, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDescData + return file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDescData } -var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_goTypes = []any{ - (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 0: google.ads.googleads.v21.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier - (*PromotionExtensionDiscountModifierEnum)(nil), // 1: google.ads.googleads.v21.enums.PromotionExtensionDiscountModifierEnum +var file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_goTypes = []any{ + (PromotionExtensionDiscountModifierEnum_PromotionExtensionDiscountModifier)(0), // 0: google.ads.googleads.v22.enums.PromotionExtensionDiscountModifierEnum.PromotionExtensionDiscountModifier + (*PromotionExtensionDiscountModifierEnum)(nil), // 1: google.ads.googleads.v22.enums.PromotionExtensionDiscountModifierEnum } -var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_init() } -func file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_init() { - if File_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto != nil { +func init() { file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_init() } +func file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_init() { + if File_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto = out.File - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_goTypes = nil - file_google_ads_googleads_v21_enums_promotion_extension_discount_modifier_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto = out.File + file_google_ads_googleads_v22_enums_promotion_extension_discount_modifier_proto_goTypes = nil + file_google_ads_googleads_v22_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 8775dd5d..ec551efb 100644 --- a/enums/promotion_extension_occasion.pb.go +++ b/enums/promotion_extension_occasion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/promotion_extension_occasion.proto +// source: google/ads/googleads/v22/enums/promotion_extension_occasion.proto package enums @@ -216,11 +216,11 @@ func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) String() stri } func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_enumTypes[0].Descriptor() } func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_enumTypes[0] } func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Number() protoreflect.EnumNumber { @@ -229,7 +229,7 @@ func (x PromotionExtensionOccasionEnum_PromotionExtensionOccasion) Number() prot // Deprecated: Use PromotionExtensionOccasionEnum_PromotionExtensionOccasion.Descriptor instead. func (PromotionExtensionOccasionEnum_PromotionExtensionOccasion) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -255,7 +255,7 @@ func (x *PromotionExtensionOccasionEnum) String() string { func (*PromotionExtensionOccasionEnum) ProtoMessage() {} func (x *PromotionExtensionOccasionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -268,18 +268,18 @@ func (x *PromotionExtensionOccasionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PromotionExtensionOccasionEnum.ProtoReflect.Descriptor instead. func (*PromotionExtensionOccasionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_promotion_extension_occasion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_promotion_extension_occasion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -326,42 +326,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1f, 0x50, 0x72, 0x6f, 0x6d, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDescData + return file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDescData } -var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_goTypes = []any{ - (PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 0: google.ads.googleads.v21.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion - (*PromotionExtensionOccasionEnum)(nil), // 1: google.ads.googleads.v21.enums.PromotionExtensionOccasionEnum +var file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_goTypes = []any{ + (PromotionExtensionOccasionEnum_PromotionExtensionOccasion)(0), // 0: google.ads.googleads.v22.enums.PromotionExtensionOccasionEnum.PromotionExtensionOccasion + (*PromotionExtensionOccasionEnum)(nil), // 1: google.ads.googleads.v22.enums.PromotionExtensionOccasionEnum } -var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -369,27 +369,27 @@ var file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_init() } -func file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_init() { - if File_google_ads_googleads_v21_enums_promotion_extension_occasion_proto != nil { +func init() { file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_init() } +func file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_init() { + if File_google_ads_googleads_v22_enums_promotion_extension_occasion_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDesc), len(file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDesc), len(file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_promotion_extension_occasion_proto = out.File - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_goTypes = nil - file_google_ads_googleads_v21_enums_promotion_extension_occasion_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_promotion_extension_occasion_proto = out.File + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_goTypes = nil + file_google_ads_googleads_v22_enums_promotion_extension_occasion_proto_depIdxs = nil } diff --git a/enums/proximity_radius_units.pb.go b/enums/proximity_radius_units.pb.go index b4baae60..d93bb865 100644 --- a/enums/proximity_radius_units.pb.go +++ b/enums/proximity_radius_units.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/proximity_radius_units.proto +// source: google/ads/googleads/v22/enums/proximity_radius_units.proto package enums @@ -76,11 +76,11 @@ func (x ProximityRadiusUnitsEnum_ProximityRadiusUnits) String() string { } func (ProximityRadiusUnitsEnum_ProximityRadiusUnits) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_proximity_radius_units_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_proximity_radius_units_proto_enumTypes[0].Descriptor() } func (ProximityRadiusUnitsEnum_ProximityRadiusUnits) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_proximity_radius_units_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_proximity_radius_units_proto_enumTypes[0] } func (x ProximityRadiusUnitsEnum_ProximityRadiusUnits) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_proximity_radius_units_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_proximity_radius_units_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ProximityRadiusUnitsEnum) String() string { func (*ProximityRadiusUnitsEnum) ProtoMessage() {} func (x *ProximityRadiusUnitsEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_proximity_radius_units_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_proximity_radius_units_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ProximityRadiusUnitsEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProximityRadiusUnitsEnum.ProtoReflect.Descriptor instead. func (*ProximityRadiusUnitsEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_proximity_radius_units_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_proximity_radius_units_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc), len(file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDesc), len(file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDescData + return file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDescData } -var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_goTypes = []any{ - (ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 0: google.ads.googleads.v21.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits - (*ProximityRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v21.enums.ProximityRadiusUnitsEnum +var file_google_ads_googleads_v22_enums_proximity_radius_units_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_proximity_radius_units_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_proximity_radius_units_proto_goTypes = []any{ + (ProximityRadiusUnitsEnum_ProximityRadiusUnits)(0), // 0: google.ads.googleads.v22.enums.ProximityRadiusUnitsEnum.ProximityRadiusUnits + (*ProximityRadiusUnitsEnum)(nil), // 1: google.ads.googleads.v22.enums.ProximityRadiusUnitsEnum } -var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_proximity_radius_units_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_proximity_radius_units_proto_init() } -func file_google_ads_googleads_v21_enums_proximity_radius_units_proto_init() { - if File_google_ads_googleads_v21_enums_proximity_radius_units_proto != nil { +func init() { file_google_ads_googleads_v22_enums_proximity_radius_units_proto_init() } +func file_google_ads_googleads_v22_enums_proximity_radius_units_proto_init() { + if File_google_ads_googleads_v22_enums_proximity_radius_units_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc), len(file_google_ads_googleads_v21_enums_proximity_radius_units_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDesc), len(file_google_ads_googleads_v22_enums_proximity_radius_units_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_proximity_radius_units_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_proximity_radius_units_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_proximity_radius_units_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_proximity_radius_units_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_proximity_radius_units_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_proximity_radius_units_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_proximity_radius_units_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_proximity_radius_units_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_proximity_radius_units_proto = out.File - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_goTypes = nil - file_google_ads_googleads_v21_enums_proximity_radius_units_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_proximity_radius_units_proto = out.File + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_goTypes = nil + file_google_ads_googleads_v22_enums_proximity_radius_units_proto_depIdxs = nil } diff --git a/enums/quality_score_bucket.pb.go b/enums/quality_score_bucket.pb.go index fd8af4f0..17922703 100644 --- a/enums/quality_score_bucket.pb.go +++ b/enums/quality_score_bucket.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/quality_score_bucket.proto +// source: google/ads/googleads/v22/enums/quality_score_bucket.proto package enums @@ -80,11 +80,11 @@ func (x QualityScoreBucketEnum_QualityScoreBucket) String() string { } func (QualityScoreBucketEnum_QualityScoreBucket) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_quality_score_bucket_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_quality_score_bucket_proto_enumTypes[0].Descriptor() } func (QualityScoreBucketEnum_QualityScoreBucket) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_quality_score_bucket_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_quality_score_bucket_proto_enumTypes[0] } func (x QualityScoreBucketEnum_QualityScoreBucket) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_quality_score_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_quality_score_bucket_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *QualityScoreBucketEnum) String() string { func (*QualityScoreBucketEnum) ProtoMessage() {} func (x *QualityScoreBucketEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_quality_score_bucket_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_quality_score_bucket_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *QualityScoreBucketEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use QualityScoreBucketEnum.ProtoReflect.Descriptor instead. func (*QualityScoreBucketEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_quality_score_bucket_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_quality_score_bucket_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7f, 0x0a, 0x16, 0x51, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDescData + return file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDescData } -var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_goTypes = []any{ - (QualityScoreBucketEnum_QualityScoreBucket)(0), // 0: google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - (*QualityScoreBucketEnum)(nil), // 1: google.ads.googleads.v21.enums.QualityScoreBucketEnum +var file_google_ads_googleads_v22_enums_quality_score_bucket_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_quality_score_bucket_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_quality_score_bucket_proto_goTypes = []any{ + (QualityScoreBucketEnum_QualityScoreBucket)(0), // 0: google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + (*QualityScoreBucketEnum)(nil), // 1: google.ads.googleads.v22.enums.QualityScoreBucketEnum } -var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_quality_score_bucket_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_quality_score_bucket_proto_init() } -func file_google_ads_googleads_v21_enums_quality_score_bucket_proto_init() { - if File_google_ads_googleads_v21_enums_quality_score_bucket_proto != nil { +func init() { file_google_ads_googleads_v22_enums_quality_score_bucket_proto_init() } +func file_google_ads_googleads_v22_enums_quality_score_bucket_proto_init() { + if File_google_ads_googleads_v22_enums_quality_score_bucket_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc), len(file_google_ads_googleads_v21_enums_quality_score_bucket_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDesc), len(file_google_ads_googleads_v22_enums_quality_score_bucket_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_quality_score_bucket_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_quality_score_bucket_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_quality_score_bucket_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_quality_score_bucket_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_quality_score_bucket_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_quality_score_bucket_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_quality_score_bucket_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_quality_score_bucket_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_quality_score_bucket_proto = out.File - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_goTypes = nil - file_google_ads_googleads_v21_enums_quality_score_bucket_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_quality_score_bucket_proto = out.File + file_google_ads_googleads_v22_enums_quality_score_bucket_proto_goTypes = nil + file_google_ads_googleads_v22_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 40c5547e..5416adf6 100644 --- a/enums/reach_plan_age_range.pb.go +++ b/enums/reach_plan_age_range.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/reach_plan_age_range.proto +// source: google/ads/googleads/v22/enums/reach_plan_age_range.proto package enums @@ -172,11 +172,11 @@ func (x ReachPlanAgeRangeEnum_ReachPlanAgeRange) String() string { } func (ReachPlanAgeRangeEnum_ReachPlanAgeRange) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_enumTypes[0].Descriptor() } func (ReachPlanAgeRangeEnum_ReachPlanAgeRange) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_enumTypes[0] } func (x ReachPlanAgeRangeEnum_ReachPlanAgeRange) Number() protoreflect.EnumNumber { @@ -185,7 +185,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_v21_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *ReachPlanAgeRangeEnum) String() string { func (*ReachPlanAgeRangeEnum) ProtoMessage() {} func (x *ReachPlanAgeRangeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,18 +222,18 @@ func (x *ReachPlanAgeRangeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachPlanAgeRangeEnum.ProtoReflect.Descriptor instead. func (*ReachPlanAgeRangeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_reach_plan_age_range_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_reach_plan_age_range_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x05, 0x0a, 0x15, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -276,42 +276,42 @@ var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDescData + return file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDescData } -var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_goTypes = []any{ - (ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 0: google.ads.googleads.v21.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - (*ReachPlanAgeRangeEnum)(nil), // 1: google.ads.googleads.v21.enums.ReachPlanAgeRangeEnum +var file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_goTypes = []any{ + (ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 0: google.ads.googleads.v22.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + (*ReachPlanAgeRangeEnum)(nil), // 1: google.ads.googleads.v22.enums.ReachPlanAgeRangeEnum } -var file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -319,27 +319,27 @@ var file_google_ads_googleads_v21_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_v21_enums_reach_plan_age_range_proto_init() } -func file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_init() { - if File_google_ads_googleads_v21_enums_reach_plan_age_range_proto != nil { +func init() { file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_init() } +func file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_init() { + if File_google_ads_googleads_v22_enums_reach_plan_age_range_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_reach_plan_age_range_proto = out.File - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_goTypes = nil - file_google_ads_googleads_v21_enums_reach_plan_age_range_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_reach_plan_age_range_proto = out.File + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_goTypes = nil + file_google_ads_googleads_v22_enums_reach_plan_age_range_proto_depIdxs = nil } diff --git a/enums/reach_plan_conversion_rate_model.pb.go b/enums/reach_plan_conversion_rate_model.pb.go index 4fd23862..23c3a031 100644 --- a/enums/reach_plan_conversion_rate_model.pb.go +++ b/enums/reach_plan_conversion_rate_model.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/reach_plan_conversion_rate_model.proto +// source: google/ads/googleads/v22/enums/reach_plan_conversion_rate_model.proto package enums @@ -88,11 +88,11 @@ func (x ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) String() } func (ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_enumTypes[0].Descriptor() } func (ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_enumTypes[0] } func (x ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) Number() // Deprecated: Use ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel.Descriptor instead. func (ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the type of model used to create a conversion @@ -114,7 +114,7 @@ type ReachPlanConversionRateModelEnum struct { func (x *ReachPlanConversionRateModelEnum) Reset() { *x = ReachPlanConversionRateModelEnum{} - mi := &file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *ReachPlanConversionRateModelEnum) String() string { func (*ReachPlanConversionRateModelEnum) ProtoMessage() {} func (x *ReachPlanConversionRateModelEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *ReachPlanConversionRateModelEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachPlanConversionRateModelEnum.ProtoReflect.Descriptor instead. func (*ReachPlanConversionRateModelEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x20, 0x52, 0x65, 0x61, 0x63, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc3, 0x01, 0x0a, 0x20, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9e, 0x01, 0x0a, 0x1c, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, @@ -165,43 +165,43 @@ var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_r 0x41, 0x54, 0x49, 0x56, 0x45, 0x10, 0x04, 0x12, 0x14, 0x0a, 0x10, 0x49, 0x4e, 0x56, 0x45, 0x4e, 0x54, 0x4f, 0x52, 0x59, 0x5f, 0x4d, 0x45, 0x44, 0x49, 0x41, 0x4e, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDescData + return file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDescData } -var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_goTypes = []any{ - (ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel)(0), // 0: google.ads.googleads.v21.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel - (*ReachPlanConversionRateModelEnum)(nil), // 1: google.ads.googleads.v21.enums.ReachPlanConversionRateModelEnum +var file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_goTypes = []any{ + (ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel)(0), // 0: google.ads.googleads.v22.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel + (*ReachPlanConversionRateModelEnum)(nil), // 1: google.ads.googleads.v22.enums.ReachPlanConversionRateModelEnum } -var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_init() } -func file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_init() { - if File_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto != nil { +func init() { file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_init() } +func file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_init() { + if File_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto = out.File - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_goTypes = nil - file_google_ads_googleads_v21_enums_reach_plan_conversion_rate_model_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto = out.File + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_goTypes = nil + file_google_ads_googleads_v22_enums_reach_plan_conversion_rate_model_proto_depIdxs = nil } diff --git a/enums/reach_plan_network.pb.go b/enums/reach_plan_network.pb.go index 91789b2e..0085f345 100644 --- a/enums/reach_plan_network.pb.go +++ b/enums/reach_plan_network.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/reach_plan_network.proto +// source: google/ads/googleads/v22/enums/reach_plan_network.proto package enums @@ -81,11 +81,11 @@ func (x ReachPlanNetworkEnum_ReachPlanNetwork) String() string { } func (ReachPlanNetworkEnum_ReachPlanNetwork) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_reach_plan_network_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_reach_plan_network_proto_enumTypes[0].Descriptor() } func (ReachPlanNetworkEnum_ReachPlanNetwork) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_reach_plan_network_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_reach_plan_network_proto_enumTypes[0] } func (x ReachPlanNetworkEnum_ReachPlanNetwork) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_reach_plan_network_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_reach_plan_network_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_network_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ReachPlanNetworkEnum) String() string { func (*ReachPlanNetworkEnum) ProtoMessage() {} func (x *ReachPlanNetworkEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_reach_plan_network_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_network_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ReachPlanNetworkEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachPlanNetworkEnum.ProtoReflect.Descriptor instead. func (*ReachPlanNetworkEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_reach_plan_network_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_reach_plan_network_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x97, 0x01, 0x0a, 0x14, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -154,41 +154,41 @@ var file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x52, 0x65, 0x61, 0x63, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDescData + return file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDescData } -var file_google_ads_googleads_v21_enums_reach_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_network_proto_goTypes = []any{ - (ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 0: google.ads.googleads.v21.enums.ReachPlanNetworkEnum.ReachPlanNetwork - (*ReachPlanNetworkEnum)(nil), // 1: google.ads.googleads.v21.enums.ReachPlanNetworkEnum +var file_google_ads_googleads_v22_enums_reach_plan_network_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_network_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_network_proto_goTypes = []any{ + (ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 0: google.ads.googleads.v22.enums.ReachPlanNetworkEnum.ReachPlanNetwork + (*ReachPlanNetworkEnum)(nil), // 1: google.ads.googleads.v22.enums.ReachPlanNetworkEnum } -var file_google_ads_googleads_v21_enums_reach_plan_network_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_reach_plan_network_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_reach_plan_network_proto_init() } -func file_google_ads_googleads_v21_enums_reach_plan_network_proto_init() { - if File_google_ads_googleads_v21_enums_reach_plan_network_proto != nil { +func init() { file_google_ads_googleads_v22_enums_reach_plan_network_proto_init() } +func file_google_ads_googleads_v22_enums_reach_plan_network_proto_init() { + if File_google_ads_googleads_v22_enums_reach_plan_network_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_network_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_network_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_reach_plan_network_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_reach_plan_network_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_reach_plan_network_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_reach_plan_network_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_reach_plan_network_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_reach_plan_network_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_reach_plan_network_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_reach_plan_network_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_reach_plan_network_proto = out.File - file_google_ads_googleads_v21_enums_reach_plan_network_proto_goTypes = nil - file_google_ads_googleads_v21_enums_reach_plan_network_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_reach_plan_network_proto = out.File + file_google_ads_googleads_v22_enums_reach_plan_network_proto_goTypes = nil + file_google_ads_googleads_v22_enums_reach_plan_network_proto_depIdxs = nil } diff --git a/enums/reach_plan_plannable_user_list_status.pb.go b/enums/reach_plan_plannable_user_list_status.pb.go index 659a6821..98cfd148 100644 --- a/enums/reach_plan_plannable_user_list_status.pb.go +++ b/enums/reach_plan_plannable_user_list_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/reach_plan_plannable_user_list_status.proto +// source: google/ads/googleads/v22/enums/reach_plan_plannable_user_list_status.proto package enums @@ -76,11 +76,11 @@ func (x ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) S } func (ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_enumTypes[0].Descriptor() } func (ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_enumTypes[0] } func (x ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) N // Deprecated: Use ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus.Descriptor instead. func (ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the plannable status of a user list. @@ -101,7 +101,7 @@ type ReachPlanPlannableUserListStatusEnum struct { func (x *ReachPlanPlannableUserListStatusEnum) Reset() { *x = ReachPlanPlannableUserListStatusEnum{} - mi := &file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ReachPlanPlannableUserListStatusEnum) String() string { func (*ReachPlanPlannableUserListStatusEnum) ProtoMessage() {} func (x *ReachPlanPlannableUserListStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,19 +126,19 @@ func (x *ReachPlanPlannableUserListStatusEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use ReachPlanPlannableUserListStatusEnum.ProtoReflect.Descriptor instead. func (*ReachPlanPlannableUserListStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x88, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x88, 0x01, 0x0a, 0x24, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x60, 0x0a, 0x20, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, @@ -149,43 +149,43 @@ var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_pr 0x41, 0x42, 0x4c, 0x45, 0x10, 0x02, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x50, 0x4c, 0x41, 0x4e, 0x4e, 0x41, 0x42, 0x4c, 0x45, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_goTypes = []any{ - (ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus)(0), // 0: google.ads.googleads.v21.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus - (*ReachPlanPlannableUserListStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.ReachPlanPlannableUserListStatusEnum +var file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_goTypes = []any{ + (ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus)(0), // 0: google.ads.googleads.v22.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus + (*ReachPlanPlannableUserListStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.ReachPlanPlannableUserListStatusEnum } -var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_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,27 +193,27 @@ var file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_init() } -func file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_init() { - if File_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_init() } +func file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_init() { + if File_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto = out.File - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_reach_plan_plannable_user_list_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto = out.File + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_reach_plan_plannable_user_list_status_proto_depIdxs = nil } diff --git a/enums/reach_plan_surface.pb.go b/enums/reach_plan_surface.pb.go index 10d560ec..ddeb9cdb 100644 --- a/enums/reach_plan_surface.pb.go +++ b/enums/reach_plan_surface.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/reach_plan_surface.proto +// source: google/ads/googleads/v22/enums/reach_plan_surface.proto package enums @@ -96,11 +96,11 @@ func (x ReachPlanSurfaceEnum_ReachPlanSurface) String() string { } func (ReachPlanSurfaceEnum_ReachPlanSurface) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_reach_plan_surface_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_reach_plan_surface_proto_enumTypes[0].Descriptor() } func (ReachPlanSurfaceEnum_ReachPlanSurface) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_reach_plan_surface_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_reach_plan_surface_proto_enumTypes[0] } func (x ReachPlanSurfaceEnum_ReachPlanSurface) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing surfaces available for targeting in forecasts. @@ -123,7 +123,7 @@ type ReachPlanSurfaceEnum struct { func (x *ReachPlanSurfaceEnum) Reset() { *x = ReachPlanSurfaceEnum{} - mi := &file_google_ads_googleads_v21_enums_reach_plan_surface_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_surface_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *ReachPlanSurfaceEnum) String() string { func (*ReachPlanSurfaceEnum) ProtoMessage() {} func (x *ReachPlanSurfaceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_reach_plan_surface_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_reach_plan_surface_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,18 +148,18 @@ func (x *ReachPlanSurfaceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachPlanSurfaceEnum.ProtoReflect.Descriptor instead. func (*ReachPlanSurfaceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_reach_plan_surface_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_reach_plan_surface_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x52, 0x65, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcc, 0x01, 0x0a, 0x14, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x53, 0x75, 0x72, 0x66, 0x61, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb3, 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, @@ -174,42 +174,42 @@ var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDescData + return file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDescData } -var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_goTypes = []any{ - (ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 0: google.ads.googleads.v21.enums.ReachPlanSurfaceEnum.ReachPlanSurface - (*ReachPlanSurfaceEnum)(nil), // 1: google.ads.googleads.v21.enums.ReachPlanSurfaceEnum +var file_google_ads_googleads_v22_enums_reach_plan_surface_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_surface_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_reach_plan_surface_proto_goTypes = []any{ + (ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 0: google.ads.googleads.v22.enums.ReachPlanSurfaceEnum.ReachPlanSurface + (*ReachPlanSurfaceEnum)(nil), // 1: google.ads.googleads.v22.enums.ReachPlanSurfaceEnum } -var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -217,27 +217,27 @@ var file_google_ads_googleads_v21_enums_reach_plan_surface_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_reach_plan_surface_proto_init() } -func file_google_ads_googleads_v21_enums_reach_plan_surface_proto_init() { - if File_google_ads_googleads_v21_enums_reach_plan_surface_proto != nil { +func init() { file_google_ads_googleads_v22_enums_reach_plan_surface_proto_init() } +func file_google_ads_googleads_v22_enums_reach_plan_surface_proto_init() { + if File_google_ads_googleads_v22_enums_reach_plan_surface_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc), len(file_google_ads_googleads_v21_enums_reach_plan_surface_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDesc), len(file_google_ads_googleads_v22_enums_reach_plan_surface_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_reach_plan_surface_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_reach_plan_surface_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_reach_plan_surface_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_reach_plan_surface_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_reach_plan_surface_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_reach_plan_surface_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_reach_plan_surface_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_reach_plan_surface_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_reach_plan_surface_proto = out.File - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_goTypes = nil - file_google_ads_googleads_v21_enums_reach_plan_surface_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_reach_plan_surface_proto = out.File + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_goTypes = nil + file_google_ads_googleads_v22_enums_reach_plan_surface_proto_depIdxs = nil } diff --git a/enums/recommendation_subscription_status.pb.go b/enums/recommendation_subscription_status.pb.go index 308698d6..6badddd5 100644 --- a/enums/recommendation_subscription_status.pb.go +++ b/enums/recommendation_subscription_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/recommendation_subscription_status.proto +// source: google/ads/googleads/v22/enums/recommendation_subscription_status.proto package enums @@ -79,11 +79,11 @@ func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) S } func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_enumTypes[0].Descriptor() } func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_enumTypes[0] } func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) Number() protoreflect.EnumNumber { @@ -92,7 +92,7 @@ func (x RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) N // Deprecated: Use RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus.Descriptor instead. func (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *RecommendationSubscriptionStatusEnum) String() string { func (*RecommendationSubscriptionStatusEnum) ProtoMessage() {} func (x *RecommendationSubscriptionStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,19 +129,19 @@ func (x *RecommendationSubscriptionStatusEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use RecommendationSubscriptionStatusEnum.ProtoReflect.Descriptor instead. func (*RecommendationSubscriptionStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_recommendation_subscription_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_recommendation_subscription_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x24, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -151,43 +151,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_goTypes = []any{ - (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 0: google.ads.googleads.v21.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus - (*RecommendationSubscriptionStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.RecommendationSubscriptionStatusEnum +var file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_goTypes = []any{ + (RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 0: google.ads.googleads.v22.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus + (*RecommendationSubscriptionStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.RecommendationSubscriptionStatusEnum } -var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_init() } -func file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_init() { - if File_google_ads_googleads_v21_enums_recommendation_subscription_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_init() } +func file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_init() { + if File_google_ads_googleads_v22_enums_recommendation_subscription_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_recommendation_subscription_status_proto = out.File - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_recommendation_subscription_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_recommendation_subscription_status_proto = out.File + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_recommendation_subscription_status_proto_depIdxs = nil } diff --git a/enums/recommendation_type.pb.go b/enums/recommendation_type.pb.go index fc61bde1..99b49e44 100644 --- a/enums/recommendation_type.pb.go +++ b/enums/recommendation_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/recommendation_type.proto +// source: google/ads/googleads/v22/enums/recommendation_type.proto package enums @@ -326,11 +326,11 @@ func (x RecommendationTypeEnum_RecommendationType) String() string { } func (RecommendationTypeEnum_RecommendationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_recommendation_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_recommendation_type_proto_enumTypes[0].Descriptor() } func (RecommendationTypeEnum_RecommendationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_recommendation_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_recommendation_type_proto_enumTypes[0] } func (x RecommendationTypeEnum_RecommendationType) Number() protoreflect.EnumNumber { @@ -339,7 +339,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_v21_enums_recommendation_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing types of recommendations. @@ -351,7 +351,7 @@ type RecommendationTypeEnum struct { func (x *RecommendationTypeEnum) Reset() { *x = RecommendationTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_recommendation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_recommendation_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -363,7 +363,7 @@ func (x *RecommendationTypeEnum) String() string { func (*RecommendationTypeEnum) ProtoMessage() {} func (x *RecommendationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_recommendation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_recommendation_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -376,18 +376,18 @@ func (x *RecommendationTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use RecommendationTypeEnum.ProtoReflect.Descriptor instead. func (*RecommendationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_recommendation_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_recommendation_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xf3, 0x0d, 0x0a, 0x16, 0x52, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -501,41 +501,41 @@ var file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_recommendation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_recommendation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_recommendation_type_proto_goTypes = []any{ - (RecommendationTypeEnum_RecommendationType)(0), // 0: google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - (*RecommendationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.RecommendationTypeEnum +var file_google_ads_googleads_v22_enums_recommendation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_recommendation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_recommendation_type_proto_goTypes = []any{ + (RecommendationTypeEnum_RecommendationType)(0), // 0: google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + (*RecommendationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.RecommendationTypeEnum } -var file_google_ads_googleads_v21_enums_recommendation_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -543,27 +543,27 @@ var file_google_ads_googleads_v21_enums_recommendation_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_recommendation_type_proto_init() } -func file_google_ads_googleads_v21_enums_recommendation_type_proto_init() { - if File_google_ads_googleads_v21_enums_recommendation_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_recommendation_type_proto_init() } +func file_google_ads_googleads_v22_enums_recommendation_type_proto_init() { + if File_google_ads_googleads_v22_enums_recommendation_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_recommendation_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_recommendation_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_recommendation_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_recommendation_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_recommendation_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_recommendation_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_recommendation_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_recommendation_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_recommendation_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_recommendation_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_recommendation_type_proto = out.File - file_google_ads_googleads_v21_enums_recommendation_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_recommendation_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_recommendation_type_proto = out.File + file_google_ads_googleads_v22_enums_recommendation_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_recommendation_type_proto_depIdxs = nil } diff --git a/enums/resource_change_operation.pb.go b/enums/resource_change_operation.pb.go index 3ad6d056..42625ac8 100644 --- a/enums/resource_change_operation.pb.go +++ b/enums/resource_change_operation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/resource_change_operation.proto +// source: google/ads/googleads/v22/enums/resource_change_operation.proto package enums @@ -81,11 +81,11 @@ func (x ResourceChangeOperationEnum_ResourceChangeOperation) String() string { } func (ResourceChangeOperationEnum_ResourceChangeOperation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_resource_change_operation_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_resource_change_operation_proto_enumTypes[0].Descriptor() } func (ResourceChangeOperationEnum_ResourceChangeOperation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_resource_change_operation_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_resource_change_operation_proto_enumTypes[0] } func (x ResourceChangeOperationEnum_ResourceChangeOperation) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ResourceChangeOperationEnum_ResourceChangeOperation) Number() protorefle // Deprecated: Use ResourceChangeOperationEnum_ResourceChangeOperation.Descriptor instead. func (ResourceChangeOperationEnum_ResourceChangeOperation) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_resource_change_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_resource_change_operation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *ResourceChangeOperationEnum) String() string { func (*ResourceChangeOperationEnum) ProtoMessage() {} func (x *ResourceChangeOperationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_resource_change_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_resource_change_operation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,18 +132,18 @@ func (x *ResourceChangeOperationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceChangeOperationEnum.ProtoReflect.Descriptor instead. func (*ResourceChangeOperationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_resource_change_operation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_resource_change_operation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDescData + return file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDescData } -var file_google_ads_googleads_v21_enums_resource_change_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_resource_change_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_resource_change_operation_proto_goTypes = []any{ - (ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 0: google.ads.googleads.v21.enums.ResourceChangeOperationEnum.ResourceChangeOperation - (*ResourceChangeOperationEnum)(nil), // 1: google.ads.googleads.v21.enums.ResourceChangeOperationEnum +var file_google_ads_googleads_v22_enums_resource_change_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_resource_change_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_resource_change_operation_proto_goTypes = []any{ + (ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 0: google.ads.googleads.v22.enums.ResourceChangeOperationEnum.ResourceChangeOperation + (*ResourceChangeOperationEnum)(nil), // 1: google.ads.googleads.v22.enums.ResourceChangeOperationEnum } -var file_google_ads_googleads_v21_enums_resource_change_operation_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_resource_change_operation_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_resource_change_operation_proto_init() } -func file_google_ads_googleads_v21_enums_resource_change_operation_proto_init() { - if File_google_ads_googleads_v21_enums_resource_change_operation_proto != nil { +func init() { file_google_ads_googleads_v22_enums_resource_change_operation_proto_init() } +func file_google_ads_googleads_v22_enums_resource_change_operation_proto_init() { + if File_google_ads_googleads_v22_enums_resource_change_operation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_resource_change_operation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_resource_change_operation_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_resource_change_operation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_resource_change_operation_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_resource_change_operation_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_resource_change_operation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_resource_change_operation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_resource_change_operation_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_resource_change_operation_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_resource_change_operation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_resource_change_operation_proto = out.File - file_google_ads_googleads_v21_enums_resource_change_operation_proto_goTypes = nil - file_google_ads_googleads_v21_enums_resource_change_operation_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_resource_change_operation_proto = out.File + file_google_ads_googleads_v22_enums_resource_change_operation_proto_goTypes = nil + file_google_ads_googleads_v22_enums_resource_change_operation_proto_depIdxs = nil } diff --git a/enums/resource_limit_type.pb.go b/enums/resource_limit_type.pb.go index 7ef7f74e..7347fbef 100644 --- a/enums/resource_limit_type.pb.go +++ b/enums/resource_limit_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/resource_limit_type.proto +// source: google/ads/googleads/v22/enums/resource_limit_type.proto package enums @@ -691,11 +691,11 @@ func (x ResourceLimitTypeEnum_ResourceLimitType) String() string { } func (ResourceLimitTypeEnum_ResourceLimitType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_resource_limit_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_resource_limit_type_proto_enumTypes[0].Descriptor() } func (ResourceLimitTypeEnum_ResourceLimitType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_resource_limit_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_resource_limit_type_proto_enumTypes[0] } func (x ResourceLimitTypeEnum_ResourceLimitType) Number() protoreflect.EnumNumber { @@ -704,7 +704,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_v21_enums_resource_limit_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible resource limit types. @@ -716,7 +716,7 @@ type ResourceLimitTypeEnum struct { func (x *ResourceLimitTypeEnum) Reset() { *x = ResourceLimitTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_resource_limit_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_resource_limit_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -728,7 +728,7 @@ func (x *ResourceLimitTypeEnum) String() string { func (*ResourceLimitTypeEnum) ProtoMessage() {} func (x *ResourceLimitTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_resource_limit_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_resource_limit_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -741,18 +741,18 @@ func (x *ResourceLimitTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceLimitTypeEnum.ProtoReflect.Descriptor instead. func (*ResourceLimitTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_resource_limit_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_resource_limit_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x30, 0x0a, 0x15, 0x52, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, 0x30, 0x0a, 0x15, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe9, 0x2f, 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, @@ -1139,41 +1139,41 @@ var file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc = stri 0x5f, 0x50, 0x45, 0x52, 0x5f, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0xc1, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_resource_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_resource_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_resource_limit_type_proto_goTypes = []any{ - (ResourceLimitTypeEnum_ResourceLimitType)(0), // 0: google.ads.googleads.v21.enums.ResourceLimitTypeEnum.ResourceLimitType - (*ResourceLimitTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ResourceLimitTypeEnum +var file_google_ads_googleads_v22_enums_resource_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_resource_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_resource_limit_type_proto_goTypes = []any{ + (ResourceLimitTypeEnum_ResourceLimitType)(0), // 0: google.ads.googleads.v22.enums.ResourceLimitTypeEnum.ResourceLimitType + (*ResourceLimitTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ResourceLimitTypeEnum } -var file_google_ads_googleads_v21_enums_resource_limit_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -1181,27 +1181,27 @@ var file_google_ads_googleads_v21_enums_resource_limit_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_resource_limit_type_proto_init() } -func file_google_ads_googleads_v21_enums_resource_limit_type_proto_init() { - if File_google_ads_googleads_v21_enums_resource_limit_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_resource_limit_type_proto_init() } +func file_google_ads_googleads_v22_enums_resource_limit_type_proto_init() { + if File_google_ads_googleads_v22_enums_resource_limit_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_resource_limit_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_resource_limit_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_resource_limit_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_resource_limit_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_resource_limit_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_resource_limit_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_resource_limit_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_resource_limit_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_resource_limit_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_resource_limit_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_resource_limit_type_proto = out.File - file_google_ads_googleads_v21_enums_resource_limit_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_resource_limit_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_resource_limit_type_proto = out.File + file_google_ads_googleads_v22_enums_resource_limit_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_resource_limit_type_proto_depIdxs = nil } diff --git a/enums/response_content_type.pb.go b/enums/response_content_type.pb.go index 2c9a0ac8..3bc76f67 100644 --- a/enums/response_content_type.pb.go +++ b/enums/response_content_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/response_content_type.proto +// source: google/ads/googleads/v22/enums/response_content_type.proto package enums @@ -74,11 +74,11 @@ func (x ResponseContentTypeEnum_ResponseContentType) String() string { } func (ResponseContentTypeEnum_ResponseContentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_response_content_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_response_content_type_proto_enumTypes[0].Descriptor() } func (ResponseContentTypeEnum_ResponseContentType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_response_content_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_response_content_type_proto_enumTypes[0] } func (x ResponseContentTypeEnum_ResponseContentType) Number() protoreflect.EnumNumber { @@ -87,7 +87,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_v21_enums_response_content_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_response_content_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_response_content_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111,7 +111,7 @@ func (x *ResponseContentTypeEnum) String() string { func (*ResponseContentTypeEnum) ProtoMessage() {} func (x *ResponseContentTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_response_content_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_response_content_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124,18 +124,18 @@ func (x *ResponseContentTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ResponseContentTypeEnum.ProtoReflect.Descriptor instead. func (*ResponseContentTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_response_content_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_response_content_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_response_content_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 0x0a, 0x17, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_response_content_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_response_content_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_response_content_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_response_content_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_response_content_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_response_content_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_response_content_type_proto_goTypes = []any{ - (ResponseContentTypeEnum_ResponseContentType)(0), // 0: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*ResponseContentTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ResponseContentTypeEnum +var file_google_ads_googleads_v22_enums_response_content_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_response_content_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_response_content_type_proto_goTypes = []any{ + (ResponseContentTypeEnum_ResponseContentType)(0), // 0: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*ResponseContentTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ResponseContentTypeEnum } -var file_google_ads_googleads_v21_enums_response_content_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_response_content_type_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_response_content_type_proto_init() } -func file_google_ads_googleads_v21_enums_response_content_type_proto_init() { - if File_google_ads_googleads_v21_enums_response_content_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_response_content_type_proto_init() } +func file_google_ads_googleads_v22_enums_response_content_type_proto_init() { + if File_google_ads_googleads_v22_enums_response_content_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_response_content_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_response_content_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_response_content_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_response_content_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_response_content_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_response_content_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_response_content_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_response_content_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_response_content_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_response_content_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_response_content_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_response_content_type_proto = out.File - file_google_ads_googleads_v21_enums_response_content_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_response_content_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_response_content_type_proto = out.File + file_google_ads_googleads_v22_enums_response_content_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 1555ac7a..e50fd637 100644 --- a/enums/search_engine_results_page_type.pb.go +++ b/enums/search_engine_results_page_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/search_engine_results_page_type.proto +// source: google/ads/googleads/v22/enums/search_engine_results_page_type.proto package enums @@ -81,11 +81,11 @@ func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) String() st } func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_enumTypes[0].Descriptor() } func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_enumTypes[0] } func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) Number() pr // Deprecated: Use SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType.Descriptor instead. func (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *SearchEngineResultsPageTypeEnum) String() string { func (*SearchEngineResultsPageTypeEnum) ProtoMessage() {} func (x *SearchEngineResultsPageTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *SearchEngineResultsPageTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchEngineResultsPageTypeEnum.ProtoReflect.Descriptor instead. func (*SearchEngineResultsPageTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_search_engine_results_page_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_search_engine_results_page_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -154,43 +154,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_goTypes = []any{ - (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 0: google.ads.googleads.v21.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType - (*SearchEngineResultsPageTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SearchEngineResultsPageTypeEnum +var file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_goTypes = []any{ + (SearchEngineResultsPageTypeEnum_SearchEngineResultsPageType)(0), // 0: google.ads.googleads.v22.enums.SearchEngineResultsPageTypeEnum.SearchEngineResultsPageType + (*SearchEngineResultsPageTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SearchEngineResultsPageTypeEnum } -var file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_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_v21_enums_search_engine_results_page_type_proto_init() } -func file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_init() { - if File_google_ads_googleads_v21_enums_search_engine_results_page_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_init() } +func file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_init() { + if File_google_ads_googleads_v22_enums_search_engine_results_page_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_search_engine_results_page_type_proto = out.File - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_search_engine_results_page_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_search_engine_results_page_type_proto = out.File + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_search_engine_results_page_type_proto_depIdxs = nil } diff --git a/enums/search_term_match_source.pb.go b/enums/search_term_match_source.pb.go index ef4d8019..ffe9fb91 100644 --- a/enums/search_term_match_source.pb.go +++ b/enums/search_term_match_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/search_term_match_source.proto +// source: google/ads/googleads/v22/enums/search_term_match_source.proto package enums @@ -88,11 +88,11 @@ func (x SearchTermMatchSourceEnum_SearchTermMatchSource) String() string { } func (SearchTermMatchSourceEnum_SearchTermMatchSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_search_term_match_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_search_term_match_source_proto_enumTypes[0].Descriptor() } func (SearchTermMatchSourceEnum_SearchTermMatchSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_search_term_match_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_search_term_match_source_proto_enumTypes[0] } func (x SearchTermMatchSourceEnum_SearchTermMatchSource) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x SearchTermMatchSourceEnum_SearchTermMatchSource) Number() protoreflect.E // Deprecated: Use SearchTermMatchSourceEnum_SearchTermMatchSource.Descriptor instead. func (SearchTermMatchSourceEnum_SearchTermMatchSource) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing the source for search term matches in the @@ -114,7 +114,7 @@ type SearchTermMatchSourceEnum struct { func (x *SearchTermMatchSourceEnum) Reset() { *x = SearchTermMatchSourceEnum{} - mi := &file_google_ads_googleads_v21_enums_search_term_match_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_match_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *SearchTermMatchSourceEnum) String() string { func (*SearchTermMatchSourceEnum) ProtoMessage() {} func (x *SearchTermMatchSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_search_term_match_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_match_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *SearchTermMatchSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermMatchSourceEnum.ProtoReflect.Descriptor instead. func (*SearchTermMatchSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_search_term_match_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_search_term_match_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd1, 0x01, 0x0a, 0x19, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb3, 0x01, 0x0a, 0x15, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, @@ -166,42 +166,42 @@ var file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc = 0x0a, 0x0f, 0x50, 0x45, 0x52, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x4e, 0x43, 0x45, 0x5f, 0x4d, 0x41, 0x58, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x53, 0x65, 0x61, 0x72, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_search_term_match_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_match_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_match_source_proto_goTypes = []any{ - (SearchTermMatchSourceEnum_SearchTermMatchSource)(0), // 0: google.ads.googleads.v21.enums.SearchTermMatchSourceEnum.SearchTermMatchSource - (*SearchTermMatchSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.SearchTermMatchSourceEnum +var file_google_ads_googleads_v22_enums_search_term_match_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_match_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_match_source_proto_goTypes = []any{ + (SearchTermMatchSourceEnum_SearchTermMatchSource)(0), // 0: google.ads.googleads.v22.enums.SearchTermMatchSourceEnum.SearchTermMatchSource + (*SearchTermMatchSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.SearchTermMatchSourceEnum } -var file_google_ads_googleads_v21_enums_search_term_match_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_search_term_match_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_enums_search_term_match_source_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_search_term_match_source_proto_init() } -func file_google_ads_googleads_v21_enums_search_term_match_source_proto_init() { - if File_google_ads_googleads_v21_enums_search_term_match_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_search_term_match_source_proto_init() } +func file_google_ads_googleads_v22_enums_search_term_match_source_proto_init() { + if File_google_ads_googleads_v22_enums_search_term_match_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_match_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_match_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_search_term_match_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_search_term_match_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_search_term_match_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_search_term_match_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_search_term_match_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_search_term_match_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_search_term_match_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_search_term_match_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_search_term_match_source_proto = out.File - file_google_ads_googleads_v21_enums_search_term_match_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_search_term_match_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_search_term_match_source_proto = out.File + file_google_ads_googleads_v22_enums_search_term_match_source_proto_goTypes = nil + file_google_ads_googleads_v22_enums_search_term_match_source_proto_depIdxs = nil } diff --git a/enums/search_term_match_type.pb.go b/enums/search_term_match_type.pb.go index 92a113fd..1e131403 100644 --- a/enums/search_term_match_type.pb.go +++ b/enums/search_term_match_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/search_term_match_type.proto +// source: google/ads/googleads/v22/enums/search_term_match_type.proto package enums @@ -96,11 +96,11 @@ func (x SearchTermMatchTypeEnum_SearchTermMatchType) String() string { } func (SearchTermMatchTypeEnum_SearchTermMatchType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_search_term_match_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_search_term_match_type_proto_enumTypes[0].Descriptor() } func (SearchTermMatchTypeEnum_SearchTermMatchType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_search_term_match_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_search_term_match_type_proto_enumTypes[0] } func (x SearchTermMatchTypeEnum_SearchTermMatchType) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_search_term_match_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing match types for a keyword triggering an ad. @@ -121,7 +121,7 @@ type SearchTermMatchTypeEnum struct { func (x *SearchTermMatchTypeEnum) Reset() { *x = SearchTermMatchTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_search_term_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_match_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *SearchTermMatchTypeEnum) String() string { func (*SearchTermMatchTypeEnum) ProtoMessage() {} func (x *SearchTermMatchTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_search_term_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_match_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,18 +146,18 @@ func (x *SearchTermMatchTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermMatchTypeEnum.ProtoReflect.Descriptor instead. func (*SearchTermMatchTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_search_term_match_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_search_term_match_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb3, 0x01, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb3, 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, 0x97, 0x01, 0x0a, 0x13, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x54, 0x79, 0x70, @@ -171,41 +171,41 @@ var file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc = s 0x0a, 0x0f, 0x50, 0x45, 0x52, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x4e, 0x43, 0x45, 0x5f, 0x4d, 0x41, 0x58, 0x10, 0x08, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x65, 0x61, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_search_term_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_match_type_proto_goTypes = []any{ - (SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 0: google.ads.googleads.v21.enums.SearchTermMatchTypeEnum.SearchTermMatchType - (*SearchTermMatchTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SearchTermMatchTypeEnum +var file_google_ads_googleads_v22_enums_search_term_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_match_type_proto_goTypes = []any{ + (SearchTermMatchTypeEnum_SearchTermMatchType)(0), // 0: google.ads.googleads.v22.enums.SearchTermMatchTypeEnum.SearchTermMatchType + (*SearchTermMatchTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SearchTermMatchTypeEnum } -var file_google_ads_googleads_v21_enums_search_term_match_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -213,27 +213,27 @@ var file_google_ads_googleads_v21_enums_search_term_match_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_search_term_match_type_proto_init() } -func file_google_ads_googleads_v21_enums_search_term_match_type_proto_init() { - if File_google_ads_googleads_v21_enums_search_term_match_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_search_term_match_type_proto_init() } +func file_google_ads_googleads_v22_enums_search_term_match_type_proto_init() { + if File_google_ads_googleads_v22_enums_search_term_match_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_match_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_match_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_search_term_match_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_search_term_match_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_search_term_match_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_search_term_match_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_search_term_match_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_search_term_match_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_search_term_match_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_search_term_match_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_search_term_match_type_proto = out.File - file_google_ads_googleads_v21_enums_search_term_match_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_search_term_match_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_search_term_match_type_proto = out.File + file_google_ads_googleads_v22_enums_search_term_match_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 0343a2aa..db4773c1 100644 --- a/enums/search_term_targeting_status.pb.go +++ b/enums/search_term_targeting_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/search_term_targeting_status.proto +// source: google/ads/googleads/v22/enums/search_term_targeting_status.proto package enums @@ -85,11 +85,11 @@ func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) String() string } func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_enumTypes[0].Descriptor() } func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_enumTypes[0] } func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x SearchTermTargetingStatusEnum_SearchTermTargetingStatus) Number() protor // Deprecated: Use SearchTermTargetingStatusEnum_SearchTermTargetingStatus.Descriptor instead. func (SearchTermTargetingStatusEnum_SearchTermTargetingStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *SearchTermTargetingStatusEnum) String() string { func (*SearchTermTargetingStatusEnum) ProtoMessage() {} func (x *SearchTermTargetingStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *SearchTermTargetingStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermTargetingStatusEnum.ProtoReflect.Descriptor instead. func (*SearchTermTargetingStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_search_term_targeting_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_search_term_targeting_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_goTypes = []any{ - (SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 0: google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus - (*SearchTermTargetingStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum +var file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_goTypes = []any{ + (SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 0: google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus + (*SearchTermTargetingStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum } -var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_init() } -func file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_init() { - if File_google_ads_googleads_v21_enums_search_term_targeting_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_init() } +func file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_init() { + if File_google_ads_googleads_v22_enums_search_term_targeting_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_search_term_targeting_status_proto = out.File - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_search_term_targeting_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_search_term_targeting_status_proto = out.File + file_google_ads_googleads_v22_enums_search_term_targeting_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 c636c2f6..9b6675a1 100644 --- a/enums/seasonality_event_scope.pb.go +++ b/enums/seasonality_event_scope.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/seasonality_event_scope.proto +// source: google/ads/googleads/v22/enums/seasonality_event_scope.proto package enums @@ -85,11 +85,11 @@ func (x SeasonalityEventScopeEnum_SeasonalityEventScope) String() string { } func (SeasonalityEventScopeEnum_SeasonalityEventScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_enumTypes[0].Descriptor() } func (SeasonalityEventScopeEnum_SeasonalityEventScope) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_enumTypes[0] } func (x SeasonalityEventScopeEnum_SeasonalityEventScope) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *SeasonalityEventScopeEnum) String() string { func (*SeasonalityEventScopeEnum) ProtoMessage() {} func (x *SeasonalityEventScopeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *SeasonalityEventScopeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SeasonalityEventScopeEnum.ProtoReflect.Descriptor instead. func (*SeasonalityEventScopeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_seasonality_event_scope_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_seasonality_event_scope_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x7b, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDesc), len(file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDesc), len(file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDescData + return file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDescData } -var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_goTypes = []any{ - (SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 0: google.ads.googleads.v21.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - (*SeasonalityEventScopeEnum)(nil), // 1: google.ads.googleads.v21.enums.SeasonalityEventScopeEnum +var file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_goTypes = []any{ + (SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 0: google.ads.googleads.v22.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + (*SeasonalityEventScopeEnum)(nil), // 1: google.ads.googleads.v22.enums.SeasonalityEventScopeEnum } -var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_init() } -func file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_init() { - if File_google_ads_googleads_v21_enums_seasonality_event_scope_proto != nil { +func init() { file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_init() } +func file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_init() { + if File_google_ads_googleads_v22_enums_seasonality_event_scope_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDesc), len(file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDesc), len(file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_seasonality_event_scope_proto = out.File - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_goTypes = nil - file_google_ads_googleads_v21_enums_seasonality_event_scope_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_seasonality_event_scope_proto = out.File + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_goTypes = nil + file_google_ads_googleads_v22_enums_seasonality_event_scope_proto_depIdxs = nil } diff --git a/enums/seasonality_event_status.pb.go b/enums/seasonality_event_status.pb.go index 6992942b..9834f515 100644 --- a/enums/seasonality_event_status.pb.go +++ b/enums/seasonality_event_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/seasonality_event_status.proto +// source: google/ads/googleads/v22/enums/seasonality_event_status.proto package enums @@ -78,11 +78,11 @@ func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) String() string { } func (SeasonalityEventStatusEnum_SeasonalityEventStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_seasonality_event_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_seasonality_event_status_proto_enumTypes[0].Descriptor() } func (SeasonalityEventStatusEnum_SeasonalityEventStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_seasonality_event_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_seasonality_event_status_proto_enumTypes[0] } func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x SeasonalityEventStatusEnum_SeasonalityEventStatus) Number() protoreflect // Deprecated: Use SeasonalityEventStatusEnum_SeasonalityEventStatus.Descriptor instead. func (SeasonalityEventStatusEnum_SeasonalityEventStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_seasonality_event_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_seasonality_event_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *SeasonalityEventStatusEnum) String() string { func (*SeasonalityEventStatusEnum) ProtoMessage() {} func (x *SeasonalityEventStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_seasonality_event_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_seasonality_event_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,18 +129,18 @@ func (x *SeasonalityEventStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SeasonalityEventStatusEnum.ProtoReflect.Descriptor instead. func (*SeasonalityEventStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_seasonality_event_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_seasonality_event_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_goTypes = []any{ - (SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 0: google.ads.googleads.v21.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - (*SeasonalityEventStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.SeasonalityEventStatusEnum +var file_google_ads_googleads_v22_enums_seasonality_event_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_seasonality_event_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_seasonality_event_status_proto_goTypes = []any{ + (SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 0: google.ads.googleads.v22.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + (*SeasonalityEventStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.SeasonalityEventStatusEnum } -var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_seasonality_event_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_seasonality_event_status_proto_init() } -func file_google_ads_googleads_v21_enums_seasonality_event_status_proto_init() { - if File_google_ads_googleads_v21_enums_seasonality_event_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_seasonality_event_status_proto_init() } +func file_google_ads_googleads_v22_enums_seasonality_event_status_proto_init() { + if File_google_ads_googleads_v22_enums_seasonality_event_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_seasonality_event_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_seasonality_event_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_seasonality_event_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_seasonality_event_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_seasonality_event_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_seasonality_event_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_seasonality_event_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_seasonality_event_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_seasonality_event_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_seasonality_event_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_seasonality_event_status_proto = out.File - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_seasonality_event_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_seasonality_event_status_proto = out.File + file_google_ads_googleads_v22_enums_seasonality_event_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 aa3afa3b..8aba6e63 100644 --- a/enums/served_asset_field_type.pb.go +++ b/enums/served_asset_field_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/served_asset_field_type.proto +// source: google/ads/googleads/v22/enums/served_asset_field_type.proto package enums @@ -198,11 +198,11 @@ func (x ServedAssetFieldTypeEnum_ServedAssetFieldType) String() string { } func (ServedAssetFieldTypeEnum_ServedAssetFieldType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_served_asset_field_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_served_asset_field_type_proto_enumTypes[0].Descriptor() } func (ServedAssetFieldTypeEnum_ServedAssetFieldType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_served_asset_field_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_served_asset_field_type_proto_enumTypes[0] } func (x ServedAssetFieldTypeEnum_ServedAssetFieldType) Number() protoreflect.EnumNumber { @@ -211,7 +211,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_v21_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible asset field types. @@ -223,7 +223,7 @@ type ServedAssetFieldTypeEnum struct { func (x *ServedAssetFieldTypeEnum) Reset() { *x = ServedAssetFieldTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_served_asset_field_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_served_asset_field_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -235,7 +235,7 @@ func (x *ServedAssetFieldTypeEnum) String() string { func (*ServedAssetFieldTypeEnum) ProtoMessage() {} func (x *ServedAssetFieldTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_served_asset_field_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_served_asset_field_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -248,18 +248,18 @@ func (x *ServedAssetFieldTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ServedAssetFieldTypeEnum.ProtoReflect.Descriptor instead. func (*ServedAssetFieldTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_served_asset_field_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_served_asset_field_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 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, 0x8a, 0x05, 0x0a, 0x14, 0x53, 0x65, 0x72, 0x76, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, @@ -304,42 +304,42 @@ var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc = 0x12, 0x16, 0x0a, 0x12, 0x44, 0x45, 0x53, 0x43, 0x52, 0x49, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x50, 0x52, 0x45, 0x46, 0x49, 0x58, 0x10, 0x20, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_goTypes = []any{ - (ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 0: google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - (*ServedAssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum +var file_google_ads_googleads_v22_enums_served_asset_field_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_served_asset_field_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_served_asset_field_type_proto_goTypes = []any{ + (ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 0: google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + (*ServedAssetFieldTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum } -var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -347,27 +347,27 @@ var file_google_ads_googleads_v21_enums_served_asset_field_type_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_served_asset_field_type_proto_init() } -func file_google_ads_googleads_v21_enums_served_asset_field_type_proto_init() { - if File_google_ads_googleads_v21_enums_served_asset_field_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_served_asset_field_type_proto_init() } +func file_google_ads_googleads_v22_enums_served_asset_field_type_proto_init() { + if File_google_ads_googleads_v22_enums_served_asset_field_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_served_asset_field_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_served_asset_field_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_served_asset_field_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_served_asset_field_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_served_asset_field_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_served_asset_field_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_served_asset_field_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_served_asset_field_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_served_asset_field_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_served_asset_field_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_served_asset_field_type_proto = out.File - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_served_asset_field_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_served_asset_field_type_proto = out.File + file_google_ads_googleads_v22_enums_served_asset_field_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 a4cbeb09..3b228daf 100644 --- a/enums/shared_set_status.pb.go +++ b/enums/shared_set_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/shared_set_status.proto +// source: google/ads/googleads/v22/enums/shared_set_status.proto package enums @@ -76,11 +76,11 @@ func (x SharedSetStatusEnum_SharedSetStatus) String() string { } func (SharedSetStatusEnum_SharedSetStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_shared_set_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_shared_set_status_proto_enumTypes[0].Descriptor() } func (SharedSetStatusEnum_SharedSetStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_shared_set_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_shared_set_status_proto_enumTypes[0] } func (x SharedSetStatusEnum_SharedSetStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_shared_set_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_shared_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shared_set_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *SharedSetStatusEnum) String() string { func (*SharedSetStatusEnum) ProtoMessage() {} func (x *SharedSetStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_shared_set_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shared_set_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *SharedSetStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSetStatusEnum.ProtoReflect.Descriptor instead. func (*SharedSetStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_shared_set_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_shared_set_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x60, 0x0a, 0x13, 0x53, 0x68, 0x61, 0x72, + 0x32, 0x32, 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, @@ -145,42 +145,42 @@ var file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_shared_set_status_proto_goTypes = []any{ - (SharedSetStatusEnum_SharedSetStatus)(0), // 0: google.ads.googleads.v21.enums.SharedSetStatusEnum.SharedSetStatus - (*SharedSetStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.SharedSetStatusEnum +var file_google_ads_googleads_v22_enums_shared_set_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_shared_set_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_shared_set_status_proto_goTypes = []any{ + (SharedSetStatusEnum_SharedSetStatus)(0), // 0: google.ads.googleads.v22.enums.SharedSetStatusEnum.SharedSetStatus + (*SharedSetStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.SharedSetStatusEnum } -var file_google_ads_googleads_v21_enums_shared_set_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_enums_shared_set_status_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_shared_set_status_proto_init() } -func file_google_ads_googleads_v21_enums_shared_set_status_proto_init() { - if File_google_ads_googleads_v21_enums_shared_set_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_shared_set_status_proto_init() } +func file_google_ads_googleads_v22_enums_shared_set_status_proto_init() { + if File_google_ads_googleads_v22_enums_shared_set_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shared_set_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shared_set_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_shared_set_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_shared_set_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_shared_set_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_shared_set_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_shared_set_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_shared_set_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_shared_set_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_shared_set_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_shared_set_status_proto = out.File - file_google_ads_googleads_v21_enums_shared_set_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_shared_set_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_shared_set_status_proto = out.File + file_google_ads_googleads_v22_enums_shared_set_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_shared_set_status_proto_depIdxs = nil } diff --git a/enums/shared_set_type.pb.go b/enums/shared_set_type.pb.go index 552e9d42..6b5b40b6 100644 --- a/enums/shared_set_type.pb.go +++ b/enums/shared_set_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/shared_set_type.proto +// source: google/ads/googleads/v22/enums/shared_set_type.proto package enums @@ -89,11 +89,11 @@ func (x SharedSetTypeEnum_SharedSetType) String() string { } func (SharedSetTypeEnum_SharedSetType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_shared_set_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_shared_set_type_proto_enumTypes[0].Descriptor() } func (SharedSetTypeEnum_SharedSetType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_shared_set_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_shared_set_type_proto_enumTypes[0] } func (x SharedSetTypeEnum_SharedSetType) Number() protoreflect.EnumNumber { @@ -102,7 +102,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_v21_enums_shared_set_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing types of shared sets. @@ -114,7 +114,7 @@ type SharedSetTypeEnum struct { func (x *SharedSetTypeEnum) Reset() { *x = SharedSetTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_shared_set_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shared_set_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *SharedSetTypeEnum) String() string { func (*SharedSetTypeEnum) ProtoMessage() {} func (x *SharedSetTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_shared_set_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shared_set_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,17 +139,17 @@ func (x *SharedSetTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSetTypeEnum.ProtoReflect.Descriptor instead. func (*SharedSetTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_shared_set_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_shared_set_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb2, 0x01, 0x0a, 0x11, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9c, 0x01, 0x0a, 0x0d, 0x53, 0x68, 0x61, 0x72, 0x65, 0x64, 0x53, 0x65, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x0f, @@ -163,42 +163,42 @@ var file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc = string([ 0x04, 0x12, 0x0a, 0x0a, 0x06, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x53, 0x10, 0x05, 0x12, 0x0c, 0x0a, 0x08, 0x57, 0x45, 0x42, 0x50, 0x41, 0x47, 0x45, 0x53, 0x10, 0x06, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_shared_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_shared_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_shared_set_type_proto_goTypes = []any{ - (SharedSetTypeEnum_SharedSetType)(0), // 0: google.ads.googleads.v21.enums.SharedSetTypeEnum.SharedSetType - (*SharedSetTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SharedSetTypeEnum +var file_google_ads_googleads_v22_enums_shared_set_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_shared_set_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_shared_set_type_proto_goTypes = []any{ + (SharedSetTypeEnum_SharedSetType)(0), // 0: google.ads.googleads.v22.enums.SharedSetTypeEnum.SharedSetType + (*SharedSetTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SharedSetTypeEnum } -var file_google_ads_googleads_v21_enums_shared_set_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -206,27 +206,27 @@ var file_google_ads_googleads_v21_enums_shared_set_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_shared_set_type_proto_init() } -func file_google_ads_googleads_v21_enums_shared_set_type_proto_init() { - if File_google_ads_googleads_v21_enums_shared_set_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_shared_set_type_proto_init() } +func file_google_ads_googleads_v22_enums_shared_set_type_proto_init() { + if File_google_ads_googleads_v22_enums_shared_set_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shared_set_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shared_set_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_shared_set_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_shared_set_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_shared_set_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_shared_set_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_shared_set_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_shared_set_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_shared_set_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_shared_set_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_shared_set_type_proto = out.File - file_google_ads_googleads_v21_enums_shared_set_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_shared_set_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_shared_set_type_proto = out.File + file_google_ads_googleads_v22_enums_shared_set_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 24e36bfa..12b85cdb 100644 --- a/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go +++ b/enums/shopping_add_products_to_campaign_recommendation_enum.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/shopping_add_products_to_campaign_recommendation_enum.proto +// source: google/ads/googleads/v22/enums/shopping_add_products_to_campaign_recommendation_enum.proto package enums @@ -87,11 +87,11 @@ func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) String() string } func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0].Descriptor() } func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes[0] } func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) Number() protoreflect.EnumNumber { @@ -100,7 +100,7 @@ func (x ShoppingAddProductsToCampaignRecommendationEnum_Reason) Number() protore // Deprecated: Use ShoppingAddProductsToCampaignRecommendationEnum_Reason.Descriptor instead. func (ShoppingAddProductsToCampaignRecommendationEnum_Reason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *ShoppingAddProductsToCampaignRecommendationEnum) String() string { func (*ShoppingAddProductsToCampaignRecommendationEnum) ProtoMessage() {} func (x *ShoppingAddProductsToCampaignRecommendationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,20 +138,20 @@ func (x *ShoppingAddProductsToCampaignRecommendationEnum) ProtoReflect() protore // Deprecated: Use ShoppingAddProductsToCampaignRecommendationEnum.ProtoReflect.Descriptor instead. func (*ShoppingAddProductsToCampaignRecommendationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xac, 0x02, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -180,36 +180,36 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData + return file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDescData } -var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = []any{ - (ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 0: google.ads.googleads.v21.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason - (*ShoppingAddProductsToCampaignRecommendationEnum)(nil), // 1: google.ads.googleads.v21.enums.ShoppingAddProductsToCampaignRecommendationEnum +var file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = []any{ + (ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 0: google.ads.googleads.v22.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason + (*ShoppingAddProductsToCampaignRecommendationEnum)(nil), // 1: google.ads.googleads.v22.enums.ShoppingAddProductsToCampaignRecommendationEnum } -var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -218,28 +218,28 @@ var file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recomm } func init() { - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() } -func file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() { - if File_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto != nil { +func file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_init() { + if File_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc), len(file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc), len(file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto = out.File - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = nil - file_google_ads_googleads_v21_enums_shopping_add_products_to_campaign_recommendation_enum_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto = out.File + file_google_ads_googleads_v22_enums_shopping_add_products_to_campaign_recommendation_enum_proto_goTypes = nil + file_google_ads_googleads_v22_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 b9bcb6ea..f640256b 100644 --- a/enums/simulation_modification_method.pb.go +++ b/enums/simulation_modification_method.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/simulation_modification_method.proto +// source: google/ads/googleads/v22/enums/simulation_modification_method.proto package enums @@ -85,11 +85,11 @@ func (x SimulationModificationMethodEnum_SimulationModificationMethod) String() } func (SimulationModificationMethodEnum_SimulationModificationMethod) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_simulation_modification_method_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_simulation_modification_method_proto_enumTypes[0].Descriptor() } func (SimulationModificationMethodEnum_SimulationModificationMethod) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_simulation_modification_method_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_simulation_modification_method_proto_enumTypes[0] } func (x SimulationModificationMethodEnum_SimulationModificationMethod) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x SimulationModificationMethodEnum_SimulationModificationMethod) Number() // Deprecated: Use SimulationModificationMethodEnum_SimulationModificationMethod.Descriptor instead. func (SimulationModificationMethodEnum_SimulationModificationMethod) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_simulation_modification_method_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_simulation_modification_method_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *SimulationModificationMethodEnum) String() string { func (*SimulationModificationMethodEnum) ProtoMessage() {} func (x *SimulationModificationMethodEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_simulation_modification_method_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_simulation_modification_method_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *SimulationModificationMethodEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationModificationMethodEnum.ProtoReflect.Descriptor instead. func (*SimulationModificationMethodEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_simulation_modification_method_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_simulation_modification_method_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,43 +158,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDesc), len(file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDesc), len(file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDescData + return file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDescData } -var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_goTypes = []any{ - (SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 0: google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*SimulationModificationMethodEnum)(nil), // 1: google.ads.googleads.v21.enums.SimulationModificationMethodEnum +var file_google_ads_googleads_v22_enums_simulation_modification_method_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_simulation_modification_method_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_simulation_modification_method_proto_goTypes = []any{ + (SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 0: google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*SimulationModificationMethodEnum)(nil), // 1: google.ads.googleads.v22.enums.SimulationModificationMethodEnum } -var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_enums_simulation_modification_method_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_simulation_modification_method_proto_init() } -func file_google_ads_googleads_v21_enums_simulation_modification_method_proto_init() { - if File_google_ads_googleads_v21_enums_simulation_modification_method_proto != nil { +func init() { file_google_ads_googleads_v22_enums_simulation_modification_method_proto_init() } +func file_google_ads_googleads_v22_enums_simulation_modification_method_proto_init() { + if File_google_ads_googleads_v22_enums_simulation_modification_method_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDesc), len(file_google_ads_googleads_v21_enums_simulation_modification_method_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDesc), len(file_google_ads_googleads_v22_enums_simulation_modification_method_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_simulation_modification_method_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_simulation_modification_method_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_simulation_modification_method_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_simulation_modification_method_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_simulation_modification_method_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_simulation_modification_method_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_simulation_modification_method_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_simulation_modification_method_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_simulation_modification_method_proto = out.File - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_goTypes = nil - file_google_ads_googleads_v21_enums_simulation_modification_method_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_simulation_modification_method_proto = out.File + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_goTypes = nil + file_google_ads_googleads_v22_enums_simulation_modification_method_proto_depIdxs = nil } diff --git a/enums/simulation_type.pb.go b/enums/simulation_type.pb.go index 0431c454..dd99b32a 100644 --- a/enums/simulation_type.pb.go +++ b/enums/simulation_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/simulation_type.proto +// source: google/ads/googleads/v22/enums/simulation_type.proto package enums @@ -100,11 +100,11 @@ func (x SimulationTypeEnum_SimulationType) String() string { } func (SimulationTypeEnum_SimulationType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_simulation_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_simulation_type_proto_enumTypes[0].Descriptor() } func (SimulationTypeEnum_SimulationType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_simulation_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_simulation_type_proto_enumTypes[0] } func (x SimulationTypeEnum_SimulationType) Number() protoreflect.EnumNumber { @@ -113,7 +113,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_v21_enums_simulation_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_simulation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_simulation_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *SimulationTypeEnum) String() string { func (*SimulationTypeEnum) ProtoMessage() {} func (x *SimulationTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_simulation_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_simulation_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,17 +150,17 @@ func (x *SimulationTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SimulationTypeEnum.ProtoReflect.Descriptor instead. func (*SimulationTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_simulation_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_simulation_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_simulation_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -176,42 +176,42 @@ var file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_simulation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_simulation_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_simulation_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_simulation_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_simulation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_simulation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_simulation_type_proto_goTypes = []any{ - (SimulationTypeEnum_SimulationType)(0), // 0: google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - (*SimulationTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SimulationTypeEnum +var file_google_ads_googleads_v22_enums_simulation_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_simulation_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_simulation_type_proto_goTypes = []any{ + (SimulationTypeEnum_SimulationType)(0), // 0: google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + (*SimulationTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SimulationTypeEnum } -var file_google_ads_googleads_v21_enums_simulation_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -219,27 +219,27 @@ var file_google_ads_googleads_v21_enums_simulation_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_simulation_type_proto_init() } -func file_google_ads_googleads_v21_enums_simulation_type_proto_init() { - if File_google_ads_googleads_v21_enums_simulation_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_simulation_type_proto_init() } +func file_google_ads_googleads_v22_enums_simulation_type_proto_init() { + if File_google_ads_googleads_v22_enums_simulation_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_simulation_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_simulation_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_simulation_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_simulation_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_simulation_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_simulation_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_simulation_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_simulation_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_simulation_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_simulation_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_simulation_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_simulation_type_proto = out.File - file_google_ads_googleads_v21_enums_simulation_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_simulation_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_simulation_type_proto = out.File + file_google_ads_googleads_v22_enums_simulation_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_simulation_type_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 c7037ede..02e27198 100644 --- a/enums/sk_ad_network_ad_event_type.pb.go +++ b/enums/sk_ad_network_ad_event_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/sk_ad_network_ad_event_type.proto +// source: google/ads/googleads/v22/enums/sk_ad_network_ad_event_type.proto package enums @@ -81,11 +81,11 @@ func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) String() string { } func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_enumTypes[0].Descriptor() } func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_enumTypes[0] } func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) Number() protoreflect // Deprecated: Use SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType.Descriptor instead. func (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *SkAdNetworkAdEventTypeEnum) String() string { func (*SkAdNetworkAdEventTypeEnum) ProtoMessage() {} func (x *SkAdNetworkAdEventTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *SkAdNetworkAdEventTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SkAdNetworkAdEventTypeEnum.ProtoReflect.Descriptor instead. func (*SkAdNetworkAdEventTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1b, 0x53, 0x6b, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_goTypes = []any{ - (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 0: google.ads.googleads.v21.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType - (*SkAdNetworkAdEventTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SkAdNetworkAdEventTypeEnum +var file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_goTypes = []any{ + (SkAdNetworkAdEventTypeEnum_SkAdNetworkAdEventType)(0), // 0: google.ads.googleads.v22.enums.SkAdNetworkAdEventTypeEnum.SkAdNetworkAdEventType + (*SkAdNetworkAdEventTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SkAdNetworkAdEventTypeEnum } -var file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_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_v21_enums_sk_ad_network_ad_event_type_proto_init() } -func file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_init() { - if File_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_init() } +func file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_init() { + if File_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto = out.File - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_sk_ad_network_ad_event_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto = out.File + file_google_ads_googleads_v22_enums_sk_ad_network_ad_event_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 3bbc6405..260effab 100644 --- a/enums/sk_ad_network_attribution_credit.pb.go +++ b/enums/sk_ad_network_attribution_credit.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/sk_ad_network_attribution_credit.proto +// source: google/ads/googleads/v22/enums/sk_ad_network_attribution_credit.proto package enums @@ -82,11 +82,11 @@ func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) String() } func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_enumTypes[0].Descriptor() } func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_enumTypes[0] } func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Number() protoreflect.EnumNumber { @@ -95,7 +95,7 @@ func (x SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) Number() // Deprecated: Use SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit.Descriptor instead. func (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *SkAdNetworkAttributionCreditEnum) String() string { func (*SkAdNetworkAttributionCreditEnum) ProtoMessage() {} func (x *SkAdNetworkAttributionCreditEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,19 +132,19 @@ func (x *SkAdNetworkAttributionCreditEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SkAdNetworkAttributionCreditEnum.ProtoReflect.Descriptor instead. func (*SkAdNetworkAttributionCreditEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x01, 0x0a, 0x20, 0x53, 0x6b, 0x41, 0x64, + 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x53, 0x6b, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDescData + return file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDescData } -var file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_goTypes = []any{ - (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 0: google.ads.googleads.v21.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit - (*SkAdNetworkAttributionCreditEnum)(nil), // 1: google.ads.googleads.v21.enums.SkAdNetworkAttributionCreditEnum +var file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_goTypes = []any{ + (SkAdNetworkAttributionCreditEnum_SkAdNetworkAttributionCredit)(0), // 0: google.ads.googleads.v22.enums.SkAdNetworkAttributionCreditEnum.SkAdNetworkAttributionCredit + (*SkAdNetworkAttributionCreditEnum)(nil), // 1: google.ads.googleads.v22.enums.SkAdNetworkAttributionCreditEnum } -var file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_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_v21_enums_sk_ad_network_attribution_credit_proto_init() } -func file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_init() { - if File_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto != nil { +func init() { file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_init() } +func file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_init() { + if File_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto = out.File - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_goTypes = nil - file_google_ads_googleads_v21_enums_sk_ad_network_attribution_credit_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto = out.File + file_google_ads_googleads_v22_enums_sk_ad_network_attribution_credit_proto_goTypes = nil + file_google_ads_googleads_v22_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 ed71e692..3372ee04 100644 --- a/enums/sk_ad_network_coarse_conversion_value.pb.go +++ b/enums/sk_ad_network_coarse_conversion_value.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/sk_ad_network_coarse_conversion_value.proto +// source: google/ads/googleads/v22/enums/sk_ad_network_coarse_conversion_value.proto package enums @@ -89,11 +89,11 @@ func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) S } func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0].Descriptor() } func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes[0] } func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) Number() protoreflect.EnumNumber { @@ -102,7 +102,7 @@ func (x SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) N // Deprecated: Use SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue.Descriptor instead. func (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *SkAdNetworkCoarseConversionValueEnum) String() string { func (*SkAdNetworkCoarseConversionValueEnum) ProtoMessage() {} func (x *SkAdNetworkCoarseConversionValueEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *SkAdNetworkCoarseConversionValueEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use SkAdNetworkCoarseConversionValueEnum.ProtoReflect.Descriptor instead. func (*SkAdNetworkCoarseConversionValueEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -164,42 +164,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x25, 0x53, 0x6b, 0x41, 0x64, 0x4e, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData + return file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDescData } -var file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = []any{ - (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 0: google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue - (*SkAdNetworkCoarseConversionValueEnum)(nil), // 1: google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum +var file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = []any{ + (SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 0: google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue + (*SkAdNetworkCoarseConversionValueEnum)(nil), // 1: google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum } -var file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_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_v21_enums_sk_ad_network_coarse_conversion_value_proto_init() } -func file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_init() { - if File_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto != nil { +func init() { file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_init() } +func file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_init() { + if File_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto = out.File - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = nil - file_google_ads_googleads_v21_enums_sk_ad_network_coarse_conversion_value_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto = out.File + file_google_ads_googleads_v22_enums_sk_ad_network_coarse_conversion_value_proto_goTypes = nil + file_google_ads_googleads_v22_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 654918d0..1a960493 100644 --- a/enums/sk_ad_network_source_type.pb.go +++ b/enums/sk_ad_network_source_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/sk_ad_network_source_type.proto +// source: google/ads/googleads/v22/enums/sk_ad_network_source_type.proto package enums @@ -81,11 +81,11 @@ func (x SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) String() string { } func (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_enumTypes[0].Descriptor() } func (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_enumTypes[0] } func (x SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *SkAdNetworkSourceTypeEnum) String() string { func (*SkAdNetworkSourceTypeEnum) ProtoMessage() {} func (x *SkAdNetworkSourceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *SkAdNetworkSourceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SkAdNetworkSourceTypeEnum.ProtoReflect.Descriptor instead. func (*SkAdNetworkSourceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_goTypes = []any{ - (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 0: google.ads.googleads.v21.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType - (*SkAdNetworkSourceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SkAdNetworkSourceTypeEnum +var file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_goTypes = []any{ + (SkAdNetworkSourceTypeEnum_SkAdNetworkSourceType)(0), // 0: google.ads.googleads.v22.enums.SkAdNetworkSourceTypeEnum.SkAdNetworkSourceType + (*SkAdNetworkSourceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SkAdNetworkSourceTypeEnum } -var file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_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_v21_enums_sk_ad_network_source_type_proto_init() } -func file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_init() { - if File_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_init() } +func file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_init() { + if File_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto = out.File - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_sk_ad_network_source_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto = out.File + file_google_ads_googleads_v22_enums_sk_ad_network_source_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 7695a541..67146fa5 100644 --- a/enums/sk_ad_network_user_type.pb.go +++ b/enums/sk_ad_network_user_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/sk_ad_network_user_type.proto +// source: google/ads/googleads/v22/enums/sk_ad_network_user_type.proto package enums @@ -81,11 +81,11 @@ func (x SkAdNetworkUserTypeEnum_SkAdNetworkUserType) String() string { } func (SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_enumTypes[0].Descriptor() } func (SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_enumTypes[0] } func (x SkAdNetworkUserTypeEnum_SkAdNetworkUserType) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *SkAdNetworkUserTypeEnum) String() string { func (*SkAdNetworkUserTypeEnum) ProtoMessage() {} func (x *SkAdNetworkUserTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *SkAdNetworkUserTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SkAdNetworkUserTypeEnum.ProtoReflect.Descriptor instead. func (*SkAdNetworkUserTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x83, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x53, 0x6b, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_goTypes = []any{ - (SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 0: google.ads.googleads.v21.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType - (*SkAdNetworkUserTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SkAdNetworkUserTypeEnum +var file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_goTypes = []any{ + (SkAdNetworkUserTypeEnum_SkAdNetworkUserType)(0), // 0: google.ads.googleads.v22.enums.SkAdNetworkUserTypeEnum.SkAdNetworkUserType + (*SkAdNetworkUserTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SkAdNetworkUserTypeEnum } -var file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_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_v21_enums_sk_ad_network_user_type_proto_init() } -func file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_init() { - if File_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_init() } +func file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_init() { + if File_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto = out.File - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_sk_ad_network_user_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto = out.File + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_sk_ad_network_user_type_proto_depIdxs = nil } diff --git a/enums/slot.pb.go b/enums/slot.pb.go index 963f7f57..8173e235 100644 --- a/enums/slot.pb.go +++ b/enums/slot.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/slot.proto +// source: google/ads/googleads/v22/enums/slot.proto package enums @@ -96,11 +96,11 @@ func (x SlotEnum_Slot) String() string { } func (SlotEnum_Slot) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_slot_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_slot_proto_enumTypes[0].Descriptor() } func (SlotEnum_Slot) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_slot_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_slot_proto_enumTypes[0] } func (x SlotEnum_Slot) Number() protoreflect.EnumNumber { @@ -109,7 +109,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_v21_enums_slot_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_slot_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_slot_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -133,7 +133,7 @@ func (x *SlotEnum) String() string { func (*SlotEnum) ProtoMessage() {} func (x *SlotEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_slot_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_slot_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -146,17 +146,17 @@ func (x *SlotEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SlotEnum.ProtoReflect.Descriptor instead. func (*SlotEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_slot_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_slot_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_slot_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_slot_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_slot_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_slot_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xae, 0x01, 0x0a, 0x08, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,41 +169,41 @@ var file_google_ads_googleads_v21_enums_slot_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_slot_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_slot_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_slot_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_slot_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_slot_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_slot_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_slot_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_slot_proto_rawDesc), len(file_google_ads_googleads_v21_enums_slot_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_slot_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_slot_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_slot_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_slot_proto_rawDesc), len(file_google_ads_googleads_v22_enums_slot_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_slot_proto_rawDescData + return file_google_ads_googleads_v22_enums_slot_proto_rawDescData } -var file_google_ads_googleads_v21_enums_slot_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_slot_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_slot_proto_goTypes = []any{ - (SlotEnum_Slot)(0), // 0: google.ads.googleads.v21.enums.SlotEnum.Slot - (*SlotEnum)(nil), // 1: google.ads.googleads.v21.enums.SlotEnum +var file_google_ads_googleads_v22_enums_slot_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_slot_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_slot_proto_goTypes = []any{ + (SlotEnum_Slot)(0), // 0: google.ads.googleads.v22.enums.SlotEnum.Slot + (*SlotEnum)(nil), // 1: google.ads.googleads.v22.enums.SlotEnum } -var file_google_ads_googleads_v21_enums_slot_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,27 +211,27 @@ var file_google_ads_googleads_v21_enums_slot_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_slot_proto_init() } -func file_google_ads_googleads_v21_enums_slot_proto_init() { - if File_google_ads_googleads_v21_enums_slot_proto != nil { +func init() { file_google_ads_googleads_v22_enums_slot_proto_init() } +func file_google_ads_googleads_v22_enums_slot_proto_init() { + if File_google_ads_googleads_v22_enums_slot_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_slot_proto_rawDesc), len(file_google_ads_googleads_v21_enums_slot_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_slot_proto_rawDesc), len(file_google_ads_googleads_v22_enums_slot_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_slot_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_slot_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_slot_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_slot_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_slot_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_slot_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_slot_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_slot_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_slot_proto = out.File - file_google_ads_googleads_v21_enums_slot_proto_goTypes = nil - file_google_ads_googleads_v21_enums_slot_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_slot_proto = out.File + file_google_ads_googleads_v22_enums_slot_proto_goTypes = nil + file_google_ads_googleads_v22_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 3044b1a5..a88f312b 100644 --- a/enums/smart_campaign_not_eligible_reason.pb.go +++ b/enums/smart_campaign_not_eligible_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/smart_campaign_not_eligible_reason.proto +// source: google/ads/googleads/v22/enums/smart_campaign_not_eligible_reason.proto package enums @@ -89,11 +89,11 @@ func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Strin } func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0].Descriptor() } func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_enumTypes[0] } func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Number() protoreflect.EnumNumber { @@ -102,7 +102,7 @@ func (x SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) Numbe // Deprecated: Use SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason.Descriptor instead. func (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *SmartCampaignNotEligibleReasonEnum) String() string { func (*SmartCampaignNotEligibleReasonEnum) ProtoMessage() {} func (x *SmartCampaignNotEligibleReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,19 +140,19 @@ func (x *SmartCampaignNotEligibleReasonEnum) ProtoReflect() protoreflect.Message // Deprecated: Use SmartCampaignNotEligibleReasonEnum.ProtoReflect.Descriptor instead. func (*SmartCampaignNotEligibleReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xcb, 0x01, 0x0a, 0x22, 0x53, 0x6d, + 0x76, 0x32, 0x32, 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, @@ -167,42 +167,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_goTypes = []any{ - (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 0: google.ads.googleads.v21.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason - (*SmartCampaignNotEligibleReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.SmartCampaignNotEligibleReasonEnum +var file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_goTypes = []any{ + (SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 0: google.ads.googleads.v22.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason + (*SmartCampaignNotEligibleReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.SmartCampaignNotEligibleReasonEnum } -var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -210,27 +210,27 @@ var file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_init() } -func file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_init() { - if File_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_init() } +func file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_init() { + if File_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto = out.File - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_smart_campaign_not_eligible_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto = out.File + file_google_ads_googleads_v22_enums_smart_campaign_not_eligible_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 84235824..b2d849e5 100644 --- a/enums/smart_campaign_status.pb.go +++ b/enums/smart_campaign_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/smart_campaign_status.proto +// source: google/ads/googleads/v22/enums/smart_campaign_status.proto package enums @@ -95,11 +95,11 @@ func (x SmartCampaignStatusEnum_SmartCampaignStatus) String() string { } func (SmartCampaignStatusEnum_SmartCampaignStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_smart_campaign_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_smart_campaign_status_proto_enumTypes[0].Descriptor() } func (SmartCampaignStatusEnum_SmartCampaignStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_smart_campaign_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_smart_campaign_status_proto_enumTypes[0] } func (x SmartCampaignStatusEnum_SmartCampaignStatus) Number() protoreflect.EnumNumber { @@ -108,7 +108,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_v21_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_smart_campaign_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_smart_campaign_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *SmartCampaignStatusEnum) String() string { func (*SmartCampaignStatusEnum) ProtoMessage() {} func (x *SmartCampaignStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_smart_campaign_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_smart_campaign_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,18 +145,18 @@ func (x *SmartCampaignStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignStatusEnum.ProtoReflect.Descriptor instead. func (*SmartCampaignStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_smart_campaign_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_smart_campaign_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -168,42 +168,42 @@ var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc = st 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_goTypes = []any{ - (SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 0: google.ads.googleads.v21.enums.SmartCampaignStatusEnum.SmartCampaignStatus - (*SmartCampaignStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.SmartCampaignStatusEnum +var file_google_ads_googleads_v22_enums_smart_campaign_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_smart_campaign_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_smart_campaign_status_proto_goTypes = []any{ + (SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 0: google.ads.googleads.v22.enums.SmartCampaignStatusEnum.SmartCampaignStatus + (*SmartCampaignStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.SmartCampaignStatusEnum } -var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,27 +211,27 @@ var file_google_ads_googleads_v21_enums_smart_campaign_status_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_smart_campaign_status_proto_init() } -func file_google_ads_googleads_v21_enums_smart_campaign_status_proto_init() { - if File_google_ads_googleads_v21_enums_smart_campaign_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_smart_campaign_status_proto_init() } +func file_google_ads_googleads_v22_enums_smart_campaign_status_proto_init() { + if File_google_ads_googleads_v22_enums_smart_campaign_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_smart_campaign_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_smart_campaign_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_smart_campaign_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_smart_campaign_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_smart_campaign_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_smart_campaign_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_smart_campaign_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_smart_campaign_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_smart_campaign_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_smart_campaign_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_smart_campaign_status_proto = out.File - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_smart_campaign_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_smart_campaign_status_proto = out.File + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_goTypes = nil + file_google_ads_googleads_v22_enums_smart_campaign_status_proto_depIdxs = nil } diff --git a/enums/spending_limit_type.pb.go b/enums/spending_limit_type.pb.go index eed662d1..1e3d1f51 100644 --- a/enums/spending_limit_type.pb.go +++ b/enums/spending_limit_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/spending_limit_type.proto +// source: google/ads/googleads/v22/enums/spending_limit_type.proto package enums @@ -73,11 +73,11 @@ func (x SpendingLimitTypeEnum_SpendingLimitType) String() string { } func (SpendingLimitTypeEnum_SpendingLimitType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_spending_limit_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_spending_limit_type_proto_enumTypes[0].Descriptor() } func (SpendingLimitTypeEnum_SpendingLimitType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_spending_limit_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_spending_limit_type_proto_enumTypes[0] } func (x SpendingLimitTypeEnum_SpendingLimitType) Number() protoreflect.EnumNumber { @@ -86,7 +86,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_v21_enums_spending_limit_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_spending_limit_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_spending_limit_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *SpendingLimitTypeEnum) String() string { func (*SpendingLimitTypeEnum) ProtoMessage() {} func (x *SpendingLimitTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_spending_limit_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_spending_limit_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *SpendingLimitTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SpendingLimitTypeEnum.ProtoReflect.Descriptor instead. func (*SpendingLimitTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_spending_limit_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_spending_limit_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x58, 0x0a, 0x15, 0x53, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,41 +142,41 @@ var file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x53, 0x70, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_spending_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_spending_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_spending_limit_type_proto_goTypes = []any{ - (SpendingLimitTypeEnum_SpendingLimitType)(0), // 0: google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - (*SpendingLimitTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.SpendingLimitTypeEnum +var file_google_ads_googleads_v22_enums_spending_limit_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_spending_limit_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_spending_limit_type_proto_goTypes = []any{ + (SpendingLimitTypeEnum_SpendingLimitType)(0), // 0: google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + (*SpendingLimitTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.SpendingLimitTypeEnum } -var file_google_ads_googleads_v21_enums_spending_limit_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_enums_spending_limit_type_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_spending_limit_type_proto_init() } -func file_google_ads_googleads_v21_enums_spending_limit_type_proto_init() { - if File_google_ads_googleads_v21_enums_spending_limit_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_spending_limit_type_proto_init() } +func file_google_ads_googleads_v22_enums_spending_limit_type_proto_init() { + if File_google_ads_googleads_v22_enums_spending_limit_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_spending_limit_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_spending_limit_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_spending_limit_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_spending_limit_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_spending_limit_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_spending_limit_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_spending_limit_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_spending_limit_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_spending_limit_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_spending_limit_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_spending_limit_type_proto = out.File - file_google_ads_googleads_v21_enums_spending_limit_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_spending_limit_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_spending_limit_type_proto = out.File + file_google_ads_googleads_v22_enums_spending_limit_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_spending_limit_type_proto_depIdxs = nil } diff --git a/enums/summary_row_setting.pb.go b/enums/summary_row_setting.pb.go index 4a204809..77ce3f34 100644 --- a/enums/summary_row_setting.pb.go +++ b/enums/summary_row_setting.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/summary_row_setting.proto +// source: google/ads/googleads/v22/enums/summary_row_setting.proto package enums @@ -81,11 +81,11 @@ func (x SummaryRowSettingEnum_SummaryRowSetting) String() string { } func (SummaryRowSettingEnum_SummaryRowSetting) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_summary_row_setting_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_summary_row_setting_proto_enumTypes[0].Descriptor() } func (SummaryRowSettingEnum_SummaryRowSetting) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_summary_row_setting_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_summary_row_setting_proto_enumTypes[0] } func (x SummaryRowSettingEnum_SummaryRowSetting) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_enums_summary_row_setting_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_summary_row_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_summary_row_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *SummaryRowSettingEnum) String() string { func (*SummaryRowSettingEnum) ProtoMessage() {} func (x *SummaryRowSettingEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_summary_row_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_summary_row_setting_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *SummaryRowSettingEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SummaryRowSettingEnum.ProtoReflect.Descriptor instead. func (*SummaryRowSettingEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_summary_row_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_summary_row_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x92, 0x01, 0x0a, 0x15, 0x53, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc = stri 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc), len(file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDesc), len(file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDescData + return file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDescData } -var file_google_ads_googleads_v21_enums_summary_row_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_summary_row_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_summary_row_setting_proto_goTypes = []any{ - (SummaryRowSettingEnum_SummaryRowSetting)(0), // 0: google.ads.googleads.v21.enums.SummaryRowSettingEnum.SummaryRowSetting - (*SummaryRowSettingEnum)(nil), // 1: google.ads.googleads.v21.enums.SummaryRowSettingEnum +var file_google_ads_googleads_v22_enums_summary_row_setting_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_summary_row_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_summary_row_setting_proto_goTypes = []any{ + (SummaryRowSettingEnum_SummaryRowSetting)(0), // 0: google.ads.googleads.v22.enums.SummaryRowSettingEnum.SummaryRowSetting + (*SummaryRowSettingEnum)(nil), // 1: google.ads.googleads.v22.enums.SummaryRowSettingEnum } -var file_google_ads_googleads_v21_enums_summary_row_setting_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_summary_row_setting_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_summary_row_setting_proto_init() } -func file_google_ads_googleads_v21_enums_summary_row_setting_proto_init() { - if File_google_ads_googleads_v21_enums_summary_row_setting_proto != nil { +func init() { file_google_ads_googleads_v22_enums_summary_row_setting_proto_init() } +func file_google_ads_googleads_v22_enums_summary_row_setting_proto_init() { + if File_google_ads_googleads_v22_enums_summary_row_setting_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc), len(file_google_ads_googleads_v21_enums_summary_row_setting_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDesc), len(file_google_ads_googleads_v22_enums_summary_row_setting_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_summary_row_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_summary_row_setting_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_summary_row_setting_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_summary_row_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_summary_row_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_summary_row_setting_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_summary_row_setting_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_summary_row_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_summary_row_setting_proto = out.File - file_google_ads_googleads_v21_enums_summary_row_setting_proto_goTypes = nil - file_google_ads_googleads_v21_enums_summary_row_setting_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_summary_row_setting_proto = out.File + file_google_ads_googleads_v22_enums_summary_row_setting_proto_goTypes = nil + file_google_ads_googleads_v22_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 ad5890c2..0dc70fac 100644 --- a/enums/system_managed_entity_source.pb.go +++ b/enums/system_managed_entity_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/system_managed_entity_source.proto +// source: google/ads/googleads/v22/enums/system_managed_entity_source.proto package enums @@ -72,11 +72,11 @@ func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) String() st } func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_enumTypes[0].Descriptor() } func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_enumTypes[0] } func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x SystemManagedResourceSourceEnum_SystemManagedResourceSource) Number() pr // Deprecated: Use SystemManagedResourceSourceEnum_SystemManagedResourceSource.Descriptor instead. func (SystemManagedResourceSourceEnum_SystemManagedResourceSource) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *SystemManagedResourceSourceEnum) String() string { func (*SystemManagedResourceSourceEnum) ProtoMessage() {} func (x *SystemManagedResourceSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *SystemManagedResourceSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SystemManagedResourceSourceEnum.ProtoReflect.Descriptor instead. func (*SystemManagedResourceSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_system_managed_entity_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_system_managed_entity_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1e, 0x53, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_goTypes = []any{ - (SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 0: google.ads.googleads.v21.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource - (*SystemManagedResourceSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.SystemManagedResourceSourceEnum +var file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_goTypes = []any{ + (SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 0: google.ads.googleads.v22.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource + (*SystemManagedResourceSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.SystemManagedResourceSourceEnum } -var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -186,27 +186,27 @@ var file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_init() } -func file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_init() { - if File_google_ads_googleads_v21_enums_system_managed_entity_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_init() } +func file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_init() { + if File_google_ads_googleads_v22_enums_system_managed_entity_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_system_managed_entity_source_proto = out.File - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_system_managed_entity_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_system_managed_entity_source_proto = out.File + file_google_ads_googleads_v22_enums_system_managed_entity_source_proto_goTypes = nil + file_google_ads_googleads_v22_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 d9e522d7..bbe46315 100644 --- a/enums/target_cpa_opt_in_recommendation_goal.pb.go +++ b/enums/target_cpa_opt_in_recommendation_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/target_cpa_opt_in_recommendation_goal.proto +// source: google/ads/googleads/v22/enums/target_cpa_opt_in_recommendation_goal.proto package enums @@ -85,11 +85,11 @@ func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) S } func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0].Descriptor() } func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes[0] } func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) N // Deprecated: Use TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal.Descriptor instead. func (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *TargetCpaOptInRecommendationGoalEnum) String() string { func (*TargetCpaOptInRecommendationGoalEnum) ProtoMessage() {} func (x *TargetCpaOptInRecommendationGoalEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *TargetCpaOptInRecommendationGoalEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use TargetCpaOptInRecommendationGoalEnum.ProtoReflect.Descriptor instead. func (*TargetCpaOptInRecommendationGoalEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xad, 0x01, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,43 +160,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData + return file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDescData } -var file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = []any{ - (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 0: google.ads.googleads.v21.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal - (*TargetCpaOptInRecommendationGoalEnum)(nil), // 1: google.ads.googleads.v21.enums.TargetCpaOptInRecommendationGoalEnum +var file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = []any{ + (TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 0: google.ads.googleads.v22.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal + (*TargetCpaOptInRecommendationGoalEnum)(nil), // 1: google.ads.googleads.v22.enums.TargetCpaOptInRecommendationGoalEnum } -var file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_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_v21_enums_target_cpa_opt_in_recommendation_goal_proto_init() } -func file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_init() { - if File_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto != nil { +func init() { file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_init() } +func file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_init() { + if File_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto = out.File - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = nil - file_google_ads_googleads_v21_enums_target_cpa_opt_in_recommendation_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto = out.File + file_google_ads_googleads_v22_enums_target_cpa_opt_in_recommendation_goal_proto_goTypes = nil + file_google_ads_googleads_v22_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 c7d17dbb..f30b95af 100644 --- a/enums/target_frequency_time_unit.pb.go +++ b/enums/target_frequency_time_unit.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/target_frequency_time_unit.proto +// source: google/ads/googleads/v22/enums/target_frequency_time_unit.proto package enums @@ -76,11 +76,11 @@ func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) String() string { } func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_enumTypes[0].Descriptor() } func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_enumTypes[0] } func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) Number() protorefle // Deprecated: Use TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit.Descriptor instead. func (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing bidding goal Target Frequency time units. @@ -101,7 +101,7 @@ type TargetFrequencyTimeUnitEnum struct { func (x *TargetFrequencyTimeUnitEnum) Reset() { *x = TargetFrequencyTimeUnitEnum{} - mi := &file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *TargetFrequencyTimeUnitEnum) String() string { func (*TargetFrequencyTimeUnitEnum) ProtoMessage() {} func (x *TargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *TargetFrequencyTimeUnitEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetFrequencyTimeUnitEnum.ProtoReflect.Descriptor instead. func (*TargetFrequencyTimeUnitEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_target_frequency_time_unit_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_target_frequency_time_unit_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6f, 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, 0x50, 0x0a, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc 0x4b, 0x4c, 0x59, 0x10, 0x02, 0x12, 0x0b, 0x0a, 0x07, 0x4d, 0x4f, 0x4e, 0x54, 0x48, 0x4c, 0x59, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDescData + return file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDescData } -var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_goTypes = []any{ - (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit - (*TargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum +var file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_goTypes = []any{ + (TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 0: google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit + (*TargetFrequencyTimeUnitEnum)(nil), // 1: google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum } -var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_init() } -func file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_init() { - if File_google_ads_googleads_v21_enums_target_frequency_time_unit_proto != nil { +func init() { file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_init() } +func file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_init() { + if File_google_ads_googleads_v22_enums_target_frequency_time_unit_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_target_frequency_time_unit_proto = out.File - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_goTypes = nil - file_google_ads_googleads_v21_enums_target_frequency_time_unit_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_target_frequency_time_unit_proto = out.File + file_google_ads_googleads_v22_enums_target_frequency_time_unit_proto_goTypes = nil + file_google_ads_googleads_v22_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 11d6adaa..33d709e2 100644 --- a/enums/target_impression_share_location.pb.go +++ b/enums/target_impression_share_location.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/target_impression_share_location.proto +// source: google/ads/googleads/v22/enums/target_impression_share_location.proto package enums @@ -80,11 +80,11 @@ func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) String( } func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_target_impression_share_location_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_target_impression_share_location_proto_enumTypes[0].Descriptor() } func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_target_impression_share_location_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_target_impression_share_location_proto_enumTypes[0] } func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x TargetImpressionShareLocationEnum_TargetImpressionShareLocation) Number( // Deprecated: Use TargetImpressionShareLocationEnum_TargetImpressionShareLocation.Descriptor instead. func (TargetImpressionShareLocationEnum_TargetImpressionShareLocation) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_target_impression_share_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_impression_share_location_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *TargetImpressionShareLocationEnum) String() string { func (*TargetImpressionShareLocationEnum) ProtoMessage() {} func (x *TargetImpressionShareLocationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_target_impression_share_location_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_target_impression_share_location_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,19 +132,19 @@ func (x *TargetImpressionShareLocationEnum) ProtoReflect() protoreflect.Message // Deprecated: Use TargetImpressionShareLocationEnum.ProtoReflect.Descriptor instead. func (*TargetImpressionShareLocationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_target_impression_share_location_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_target_impression_share_location_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa3, 0x01, 0x0a, 0x21, 0x54, 0x61, 0x72, 0x67, + 0x32, 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, @@ -156,43 +156,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDescData + return file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDescData } -var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_goTypes = []any{ - (TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 0: google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation - (*TargetImpressionShareLocationEnum)(nil), // 1: google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum +var file_google_ads_googleads_v22_enums_target_impression_share_location_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_target_impression_share_location_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_target_impression_share_location_proto_goTypes = []any{ + (TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 0: google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation + (*TargetImpressionShareLocationEnum)(nil), // 1: google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum } -var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_enums_target_impression_share_location_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_target_impression_share_location_proto_init() } -func file_google_ads_googleads_v21_enums_target_impression_share_location_proto_init() { - if File_google_ads_googleads_v21_enums_target_impression_share_location_proto != nil { +func init() { file_google_ads_googleads_v22_enums_target_impression_share_location_proto_init() } +func file_google_ads_googleads_v22_enums_target_impression_share_location_proto_init() { + if File_google_ads_googleads_v22_enums_target_impression_share_location_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDesc), len(file_google_ads_googleads_v21_enums_target_impression_share_location_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDesc), len(file_google_ads_googleads_v22_enums_target_impression_share_location_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_target_impression_share_location_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_target_impression_share_location_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_target_impression_share_location_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_target_impression_share_location_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_target_impression_share_location_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_target_impression_share_location_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_target_impression_share_location_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_target_impression_share_location_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_target_impression_share_location_proto = out.File - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_goTypes = nil - file_google_ads_googleads_v21_enums_target_impression_share_location_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_target_impression_share_location_proto = out.File + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_goTypes = nil + file_google_ads_googleads_v22_enums_target_impression_share_location_proto_depIdxs = nil } diff --git a/enums/targeting_dimension.pb.go b/enums/targeting_dimension.pb.go index efb12a82..08d1406f 100644 --- a/enums/targeting_dimension.pb.go +++ b/enums/targeting_dimension.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/targeting_dimension.proto +// source: google/ads/googleads/v22/enums/targeting_dimension.proto package enums @@ -106,11 +106,11 @@ func (x TargetingDimensionEnum_TargetingDimension) String() string { } func (TargetingDimensionEnum_TargetingDimension) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_targeting_dimension_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_targeting_dimension_proto_enumTypes[0].Descriptor() } func (TargetingDimensionEnum_TargetingDimension) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_targeting_dimension_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_targeting_dimension_proto_enumTypes[0] } func (x TargetingDimensionEnum_TargetingDimension) Number() protoreflect.EnumNumber { @@ -119,7 +119,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_v21_enums_targeting_dimension_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_targeting_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_targeting_dimension_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143,7 +143,7 @@ func (x *TargetingDimensionEnum) String() string { func (*TargetingDimensionEnum) ProtoMessage() {} func (x *TargetingDimensionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_targeting_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_targeting_dimension_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156,18 +156,18 @@ func (x *TargetingDimensionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetingDimensionEnum.ProtoReflect.Descriptor instead. func (*TargetingDimensionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_targeting_dimension_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_targeting_dimension_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc4, 0x01, 0x0a, 0x16, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -182,41 +182,41 @@ var file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc = stri 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDescData + return file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDescData } -var file_google_ads_googleads_v21_enums_targeting_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_targeting_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_targeting_dimension_proto_goTypes = []any{ - (TargetingDimensionEnum_TargetingDimension)(0), // 0: google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimension - (*TargetingDimensionEnum)(nil), // 1: google.ads.googleads.v21.enums.TargetingDimensionEnum +var file_google_ads_googleads_v22_enums_targeting_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_targeting_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_targeting_dimension_proto_goTypes = []any{ + (TargetingDimensionEnum_TargetingDimension)(0), // 0: google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimension + (*TargetingDimensionEnum)(nil), // 1: google.ads.googleads.v22.enums.TargetingDimensionEnum } -var file_google_ads_googleads_v21_enums_targeting_dimension_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -224,27 +224,27 @@ var file_google_ads_googleads_v21_enums_targeting_dimension_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_targeting_dimension_proto_init() } -func file_google_ads_googleads_v21_enums_targeting_dimension_proto_init() { - if File_google_ads_googleads_v21_enums_targeting_dimension_proto != nil { +func init() { file_google_ads_googleads_v22_enums_targeting_dimension_proto_init() } +func file_google_ads_googleads_v22_enums_targeting_dimension_proto_init() { + if File_google_ads_googleads_v22_enums_targeting_dimension_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_targeting_dimension_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_targeting_dimension_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_targeting_dimension_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_targeting_dimension_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_targeting_dimension_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_targeting_dimension_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_targeting_dimension_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_targeting_dimension_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_targeting_dimension_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_targeting_dimension_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_targeting_dimension_proto = out.File - file_google_ads_googleads_v21_enums_targeting_dimension_proto_goTypes = nil - file_google_ads_googleads_v21_enums_targeting_dimension_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_targeting_dimension_proto = out.File + file_google_ads_googleads_v22_enums_targeting_dimension_proto_goTypes = nil + file_google_ads_googleads_v22_enums_targeting_dimension_proto_depIdxs = nil } diff --git a/enums/third_party_brand_lift_integration_partner.pb.go b/enums/third_party_brand_lift_integration_partner.pb.go index de4a358b..971a3ab5 100644 --- a/enums/third_party_brand_lift_integration_partner.pb.go +++ b/enums/third_party_brand_lift_integration_partner.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/third_party_brand_lift_integration_partner.proto +// source: google/ads/googleads/v22/enums/third_party_brand_lift_integration_partner.proto package enums @@ -85,11 +85,11 @@ func (x ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegration } func (ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_enumTypes[0].Descriptor() } func (ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_enumTypes[0] } func (x ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegration // Deprecated: Use ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner.Descriptor instead. func (ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing available third party integration partners for @@ -111,7 +111,7 @@ type ThirdPartyBrandLiftIntegrationPartnerEnum struct { func (x *ThirdPartyBrandLiftIntegrationPartnerEnum) Reset() { *x = ThirdPartyBrandLiftIntegrationPartnerEnum{} - mi := &file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *ThirdPartyBrandLiftIntegrationPartnerEnum) String() string { func (*ThirdPartyBrandLiftIntegrationPartnerEnum) ProtoMessage() {} func (x *ThirdPartyBrandLiftIntegrationPartnerEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,19 +136,19 @@ func (x *ThirdPartyBrandLiftIntegrationPartnerEnum) ProtoReflect() protoreflect. // Deprecated: Use ThirdPartyBrandLiftIntegrationPartnerEnum.ProtoReflect.Descriptor instead. func (*ThirdPartyBrandLiftIntegrationPartnerEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x66, 0x74, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xb5, 0x01, 0x0a, 0x29, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, @@ -162,43 +162,43 @@ var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partn 0x0a, 0x06, 0x49, 0x4e, 0x54, 0x41, 0x47, 0x45, 0x10, 0x04, 0x12, 0x0d, 0x0a, 0x09, 0x4d, 0x41, 0x43, 0x52, 0x4f, 0x4d, 0x49, 0x4c, 0x4c, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2a, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x4c, 0x69, 0x66, 0x74, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDescData + return file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDescData } -var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_goTypes = []any{ - (ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner)(0), // 0: google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner - (*ThirdPartyBrandLiftIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v21.enums.ThirdPartyBrandLiftIntegrationPartnerEnum +var file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_goTypes = []any{ + (ThirdPartyBrandLiftIntegrationPartnerEnum_ThirdPartyBrandLiftIntegrationPartner)(0), // 0: google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum.ThirdPartyBrandLiftIntegrationPartner + (*ThirdPartyBrandLiftIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v22.enums.ThirdPartyBrandLiftIntegrationPartnerEnum } -var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +207,28 @@ var file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partn } func init() { - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_init() + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_init() } -func file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_init() { - if File_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto != nil { +func file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_init() { + if File_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto = out.File - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_goTypes = nil - file_google_ads_googleads_v21_enums_third_party_brand_lift_integration_partner_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto = out.File + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_goTypes = nil + file_google_ads_googleads_v22_enums_third_party_brand_lift_integration_partner_proto_depIdxs = nil } diff --git a/enums/third_party_brand_safety_integration_partner.pb.go b/enums/third_party_brand_safety_integration_partner.pb.go index db0b1290..c6fd6a96 100644 --- a/enums/third_party_brand_safety_integration_partner.pb.go +++ b/enums/third_party_brand_safety_integration_partner.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/third_party_brand_safety_integration_partner.proto +// source: google/ads/googleads/v22/enums/third_party_brand_safety_integration_partner.proto package enums @@ -81,11 +81,11 @@ func (x ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegra } func (ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_enumTypes[0].Descriptor() } func (ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_enumTypes[0] } func (x ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegra // Deprecated: Use ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner.Descriptor instead. func (ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing available third party integration partners for @@ -107,7 +107,7 @@ type ThirdPartyBrandSafetyIntegrationPartnerEnum struct { func (x *ThirdPartyBrandSafetyIntegrationPartnerEnum) Reset() { *x = ThirdPartyBrandSafetyIntegrationPartnerEnum{} - mi := &file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *ThirdPartyBrandSafetyIntegrationPartnerEnum) String() string { func (*ThirdPartyBrandSafetyIntegrationPartnerEnum) ProtoMessage() {} func (x *ThirdPartyBrandSafetyIntegrationPartnerEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,19 +132,19 @@ func (x *ThirdPartyBrandSafetyIntegrationPartnerEnum) ProtoReflect() protoreflec // Deprecated: Use ThirdPartyBrandSafetyIntegrationPartnerEnum.ProtoReflect.Descriptor instead. func (*ThirdPartyBrandSafetyIntegrationPartnerEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x73, 0x61, 0x66, 0x65, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xac, 0x01, 0x0a, 0x2b, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, @@ -158,43 +158,43 @@ var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_par 0x43, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x10, 0x03, 0x12, 0x08, 0x0a, 0x04, 0x5a, 0x45, 0x46, 0x52, 0x10, 0x04, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x54, 0x68, 0x69, 0x72, 0x64, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, 0x61, 0x66, 0x65, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDescData + return file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDescData } -var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_goTypes = []any{ - (ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner)(0), // 0: google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner - (*ThirdPartyBrandSafetyIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v21.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum +var file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_goTypes = []any{ + (ThirdPartyBrandSafetyIntegrationPartnerEnum_ThirdPartyBrandSafetyIntegrationPartner)(0), // 0: google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum.ThirdPartyBrandSafetyIntegrationPartner + (*ThirdPartyBrandSafetyIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v22.enums.ThirdPartyBrandSafetyIntegrationPartnerEnum } -var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +203,28 @@ var file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_par } func init() { - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_init() + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_init() } -func file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_init() { - if File_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto != nil { +func file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_init() { + if File_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto = out.File - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_goTypes = nil - file_google_ads_googleads_v21_enums_third_party_brand_safety_integration_partner_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto = out.File + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_goTypes = nil + file_google_ads_googleads_v22_enums_third_party_brand_safety_integration_partner_proto_depIdxs = nil } diff --git a/enums/third_party_reach_integration_partner.pb.go b/enums/third_party_reach_integration_partner.pb.go index f4a4a267..5f35f588 100644 --- a/enums/third_party_reach_integration_partner.pb.go +++ b/enums/third_party_reach_integration_partner.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/third_party_reach_integration_partner.proto +// source: google/ads/googleads/v22/enums/third_party_reach_integration_partner.proto package enums @@ -105,11 +105,11 @@ func (x ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) } func (ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_enumTypes[0].Descriptor() } func (ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_enumTypes[0] } func (x ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) Number() protoreflect.EnumNumber { @@ -118,7 +118,7 @@ func (x ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) // Deprecated: Use ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner.Descriptor instead. func (ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing available third party integration partners for @@ -131,7 +131,7 @@ type ThirdPartyReachIntegrationPartnerEnum struct { func (x *ThirdPartyReachIntegrationPartnerEnum) Reset() { *x = ThirdPartyReachIntegrationPartnerEnum{} - mi := &file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143,7 +143,7 @@ func (x *ThirdPartyReachIntegrationPartnerEnum) String() string { func (*ThirdPartyReachIntegrationPartnerEnum) ProtoMessage() {} func (x *ThirdPartyReachIntegrationPartnerEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156,19 +156,19 @@ func (x *ThirdPartyReachIntegrationPartnerEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use ThirdPartyReachIntegrationPartnerEnum.ProtoReflect.Descriptor instead. func (*ThirdPartyReachIntegrationPartnerEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x02, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x02, 0x0a, 0x25, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xdb, 0x01, 0x0a, 0x21, 0x54, 0x68, 0x69, 0x72, 0x64, @@ -187,42 +187,42 @@ var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_pr 0x5f, 0x41, 0x4d, 0x50, 0x10, 0x09, 0x12, 0x0c, 0x0a, 0x08, 0x49, 0x53, 0x50, 0x4f, 0x54, 0x5f, 0x54, 0x56, 0x10, 0x0a, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x54, 0x68, 0x69, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x26, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDescData + return file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDescData } -var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_goTypes = []any{ - (ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner)(0), // 0: google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner - (*ThirdPartyReachIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v21.enums.ThirdPartyReachIntegrationPartnerEnum +var file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_goTypes = []any{ + (ThirdPartyReachIntegrationPartnerEnum_ThirdPartyReachIntegrationPartner)(0), // 0: google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum.ThirdPartyReachIntegrationPartner + (*ThirdPartyReachIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v22.enums.ThirdPartyReachIntegrationPartnerEnum } -var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method output_type 0, // [0:0] is the sub-list for method input_type 0, // [0:0] is the sub-list for extension type_name @@ -230,27 +230,27 @@ var file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_init() } -func file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_init() { - if File_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto != nil { +func init() { file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_init() } +func file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_init() { + if File_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto = out.File - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_goTypes = nil - file_google_ads_googleads_v21_enums_third_party_reach_integration_partner_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto = out.File + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_goTypes = nil + file_google_ads_googleads_v22_enums_third_party_reach_integration_partner_proto_depIdxs = nil } diff --git a/enums/third_party_viewability_integration_partner.pb.go b/enums/third_party_viewability_integration_partner.pb.go index 45084f5e..aa05339b 100644 --- a/enums/third_party_viewability_integration_partner.pb.go +++ b/enums/third_party_viewability_integration_partner.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/third_party_viewability_integration_partner.proto +// source: google/ads/googleads/v22/enums/third_party_viewability_integration_partner.proto package enums @@ -77,11 +77,11 @@ func (x ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegra } func (ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_enumTypes[0].Descriptor() } func (ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_enumTypes[0] } func (x ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegra // Deprecated: Use ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner.Descriptor instead. func (ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing available third party integration partners for @@ -103,7 +103,7 @@ type ThirdPartyViewabilityIntegrationPartnerEnum struct { func (x *ThirdPartyViewabilityIntegrationPartnerEnum) Reset() { *x = ThirdPartyViewabilityIntegrationPartnerEnum{} - mi := &file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *ThirdPartyViewabilityIntegrationPartnerEnum) String() string { func (*ThirdPartyViewabilityIntegrationPartnerEnum) ProtoMessage() {} func (x *ThirdPartyViewabilityIntegrationPartnerEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,19 +128,19 @@ func (x *ThirdPartyViewabilityIntegrationPartnerEnum) ProtoReflect() protoreflec // Deprecated: Use ThirdPartyViewabilityIntegrationPartnerEnum.ProtoReflect.Descriptor instead. func (*ThirdPartyViewabilityIntegrationPartnerEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa2, 0x01, 0x0a, 0x2b, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x45, 0x6e, @@ -153,43 +153,43 @@ var file_google_ads_googleads_v21_enums_third_party_viewability_integration_part 0x0a, 0x13, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x52, 0x41, 0x4c, 0x5f, 0x41, 0x44, 0x5f, 0x53, 0x43, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x10, 0x03, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x2c, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x56, 0x69, 0x65, 0x77, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDescData + return file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDescData } -var file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_goTypes = []any{ - (ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner)(0), // 0: google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner - (*ThirdPartyViewabilityIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v21.enums.ThirdPartyViewabilityIntegrationPartnerEnum +var file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_goTypes = []any{ + (ThirdPartyViewabilityIntegrationPartnerEnum_ThirdPartyViewabilityIntegrationPartner)(0), // 0: google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum.ThirdPartyViewabilityIntegrationPartner + (*ThirdPartyViewabilityIntegrationPartnerEnum)(nil), // 1: google.ads.googleads.v22.enums.ThirdPartyViewabilityIntegrationPartnerEnum } -var file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +198,28 @@ var file_google_ads_googleads_v21_enums_third_party_viewability_integration_part } func init() { - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_init() + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_init() } -func file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_init() { - if File_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto != nil { +func file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_init() { + if File_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDesc), len(file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto = out.File - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_goTypes = nil - file_google_ads_googleads_v21_enums_third_party_viewability_integration_partner_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto = out.File + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_goTypes = nil + file_google_ads_googleads_v22_enums_third_party_viewability_integration_partner_proto_depIdxs = nil } diff --git a/enums/time_type.pb.go b/enums/time_type.pb.go index b49ad404..a2b70224 100644 --- a/enums/time_type.pb.go +++ b/enums/time_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/time_type.proto +// source: google/ads/googleads/v22/enums/time_type.proto package enums @@ -77,11 +77,11 @@ func (x TimeTypeEnum_TimeType) String() string { } func (TimeTypeEnum_TimeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_time_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_time_type_proto_enumTypes[0].Descriptor() } func (TimeTypeEnum_TimeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_time_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_time_type_proto_enumTypes[0] } func (x TimeTypeEnum_TimeType) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_enums_time_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_time_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_time_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *TimeTypeEnum) String() string { func (*TimeTypeEnum) ProtoMessage() {} func (x *TimeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_time_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_time_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,17 +127,17 @@ func (x *TimeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TimeTypeEnum.ProtoReflect.Descriptor instead. func (*TimeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_time_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_time_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_time_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_time_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_time_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_time_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_enums_time_type_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x0d, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, 0x70, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_time_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_time_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_time_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_time_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_time_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_time_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_time_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_time_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_time_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_time_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_time_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_time_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_time_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_time_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_time_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_time_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_time_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_time_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_time_type_proto_goTypes = []any{ - (TimeTypeEnum_TimeType)(0), // 0: google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - (*TimeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.TimeTypeEnum +var file_google_ads_googleads_v22_enums_time_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_time_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_time_type_proto_goTypes = []any{ + (TimeTypeEnum_TimeType)(0), // 0: google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + (*TimeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.TimeTypeEnum } -var file_google_ads_googleads_v21_enums_time_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_time_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_time_type_proto_init() } -func file_google_ads_googleads_v21_enums_time_type_proto_init() { - if File_google_ads_googleads_v21_enums_time_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_time_type_proto_init() } +func file_google_ads_googleads_v22_enums_time_type_proto_init() { + if File_google_ads_googleads_v22_enums_time_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_time_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_time_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_time_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_time_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_time_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_time_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_time_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_time_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_time_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_time_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_time_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_time_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_time_type_proto = out.File - file_google_ads_googleads_v21_enums_time_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_time_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_time_type_proto = out.File + file_google_ads_googleads_v22_enums_time_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 8f769fe1..4a5d1e35 100644 --- a/enums/tracking_code_page_format.pb.go +++ b/enums/tracking_code_page_format.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/tracking_code_page_format.proto +// source: google/ads/googleads/v22/enums/tracking_code_page_format.proto package enums @@ -77,11 +77,11 @@ func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) String() string { } func (TrackingCodePageFormatEnum_TrackingCodePageFormat) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_enumTypes[0].Descriptor() } func (TrackingCodePageFormatEnum_TrackingCodePageFormat) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_enumTypes[0] } func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x TrackingCodePageFormatEnum_TrackingCodePageFormat) Number() protoreflect // Deprecated: Use TrackingCodePageFormatEnum_TrackingCodePageFormat.Descriptor instead. func (TrackingCodePageFormatEnum_TrackingCodePageFormat) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *TrackingCodePageFormatEnum) String() string { func (*TrackingCodePageFormatEnum) ProtoMessage() {} func (x *TrackingCodePageFormatEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *TrackingCodePageFormatEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TrackingCodePageFormatEnum.ProtoReflect.Descriptor instead. func (*TrackingCodePageFormatEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_tracking_code_page_format_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_tracking_code_page_format_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDesc), len(file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDesc), len(file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDescData + return file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDescData } -var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_goTypes = []any{ - (TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 0: google.ads.googleads.v21.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat - (*TrackingCodePageFormatEnum)(nil), // 1: google.ads.googleads.v21.enums.TrackingCodePageFormatEnum +var file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_goTypes = []any{ + (TrackingCodePageFormatEnum_TrackingCodePageFormat)(0), // 0: google.ads.googleads.v22.enums.TrackingCodePageFormatEnum.TrackingCodePageFormat + (*TrackingCodePageFormatEnum)(nil), // 1: google.ads.googleads.v22.enums.TrackingCodePageFormatEnum } -var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_init() } -func file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_init() { - if File_google_ads_googleads_v21_enums_tracking_code_page_format_proto != nil { +func init() { file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_init() } +func file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_init() { + if File_google_ads_googleads_v22_enums_tracking_code_page_format_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDesc), len(file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDesc), len(file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_tracking_code_page_format_proto = out.File - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_goTypes = nil - file_google_ads_googleads_v21_enums_tracking_code_page_format_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_tracking_code_page_format_proto = out.File + file_google_ads_googleads_v22_enums_tracking_code_page_format_proto_goTypes = nil + file_google_ads_googleads_v22_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 6b379cec..d6360443 100644 --- a/enums/tracking_code_type.pb.go +++ b/enums/tracking_code_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/tracking_code_type.proto +// source: google/ads/googleads/v22/enums/tracking_code_type.proto package enums @@ -88,11 +88,11 @@ func (x TrackingCodeTypeEnum_TrackingCodeType) String() string { } func (TrackingCodeTypeEnum_TrackingCodeType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_tracking_code_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_tracking_code_type_proto_enumTypes[0].Descriptor() } func (TrackingCodeTypeEnum_TrackingCodeType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_tracking_code_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_tracking_code_type_proto_enumTypes[0] } func (x TrackingCodeTypeEnum_TrackingCodeType) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_tracking_code_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_tracking_code_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_tracking_code_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *TrackingCodeTypeEnum) String() string { func (*TrackingCodeTypeEnum) ProtoMessage() {} func (x *TrackingCodeTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_tracking_code_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_tracking_code_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *TrackingCodeTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TrackingCodeTypeEnum.ProtoReflect.Descriptor instead. func (*TrackingCodeTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_tracking_code_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_tracking_code_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8f, 0x01, 0x0a, 0x14, 0x54, 0x72, + 0x76, 0x32, 0x32, 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, @@ -161,42 +161,42 @@ var file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_tracking_code_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_tracking_code_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_tracking_code_type_proto_goTypes = []any{ - (TrackingCodeTypeEnum_TrackingCodeType)(0), // 0: google.ads.googleads.v21.enums.TrackingCodeTypeEnum.TrackingCodeType - (*TrackingCodeTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.TrackingCodeTypeEnum +var file_google_ads_googleads_v22_enums_tracking_code_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_tracking_code_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_tracking_code_type_proto_goTypes = []any{ + (TrackingCodeTypeEnum_TrackingCodeType)(0), // 0: google.ads.googleads.v22.enums.TrackingCodeTypeEnum.TrackingCodeType + (*TrackingCodeTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.TrackingCodeTypeEnum } -var file_google_ads_googleads_v21_enums_tracking_code_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_enums_tracking_code_type_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_tracking_code_type_proto_init() } -func file_google_ads_googleads_v21_enums_tracking_code_type_proto_init() { - if File_google_ads_googleads_v21_enums_tracking_code_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_tracking_code_type_proto_init() } +func file_google_ads_googleads_v22_enums_tracking_code_type_proto_init() { + if File_google_ads_googleads_v22_enums_tracking_code_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_tracking_code_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_tracking_code_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_tracking_code_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_tracking_code_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_tracking_code_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_tracking_code_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_tracking_code_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_tracking_code_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_tracking_code_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_tracking_code_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_tracking_code_type_proto = out.File - file_google_ads_googleads_v21_enums_tracking_code_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_tracking_code_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_tracking_code_type_proto = out.File + file_google_ads_googleads_v22_enums_tracking_code_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_tracking_code_type_proto_depIdxs = nil } diff --git a/enums/user_identifier_source.pb.go b/enums/user_identifier_source.pb.go index 99c44869..4d74a486 100644 --- a/enums/user_identifier_source.pb.go +++ b/enums/user_identifier_source.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_identifier_source.proto +// source: google/ads/googleads/v22/enums/user_identifier_source.proto package enums @@ -79,11 +79,11 @@ func (x UserIdentifierSourceEnum_UserIdentifierSource) String() string { } func (UserIdentifierSourceEnum_UserIdentifierSource) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_identifier_source_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_identifier_source_proto_enumTypes[0].Descriptor() } func (UserIdentifierSourceEnum_UserIdentifierSource) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_identifier_source_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_identifier_source_proto_enumTypes[0] } func (x UserIdentifierSourceEnum_UserIdentifierSource) Number() protoreflect.EnumNumber { @@ -92,7 +92,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_v21_enums_user_identifier_source_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_identifier_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_identifier_source_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *UserIdentifierSourceEnum) String() string { func (*UserIdentifierSourceEnum) ProtoMessage() {} func (x *UserIdentifierSourceEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_identifier_source_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_identifier_source_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *UserIdentifierSourceEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserIdentifierSourceEnum.ProtoReflect.Descriptor instead. func (*UserIdentifierSourceEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_identifier_source_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_identifier_source_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x72, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,41 +151,41 @@ var file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x19, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_identifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_identifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_identifier_source_proto_goTypes = []any{ - (UserIdentifierSourceEnum_UserIdentifierSource)(0), // 0: google.ads.googleads.v21.enums.UserIdentifierSourceEnum.UserIdentifierSource - (*UserIdentifierSourceEnum)(nil), // 1: google.ads.googleads.v21.enums.UserIdentifierSourceEnum +var file_google_ads_googleads_v22_enums_user_identifier_source_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_identifier_source_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_identifier_source_proto_goTypes = []any{ + (UserIdentifierSourceEnum_UserIdentifierSource)(0), // 0: google.ads.googleads.v22.enums.UserIdentifierSourceEnum.UserIdentifierSource + (*UserIdentifierSourceEnum)(nil), // 1: google.ads.googleads.v22.enums.UserIdentifierSourceEnum } -var file_google_ads_googleads_v21_enums_user_identifier_source_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_enums_user_identifier_source_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_identifier_source_proto_init() } -func file_google_ads_googleads_v21_enums_user_identifier_source_proto_init() { - if File_google_ads_googleads_v21_enums_user_identifier_source_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_identifier_source_proto_init() } +func file_google_ads_googleads_v22_enums_user_identifier_source_proto_init() { + if File_google_ads_googleads_v22_enums_user_identifier_source_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_identifier_source_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_identifier_source_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_identifier_source_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_identifier_source_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_identifier_source_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_identifier_source_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_identifier_source_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_identifier_source_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_identifier_source_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_identifier_source_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_identifier_source_proto = out.File - file_google_ads_googleads_v21_enums_user_identifier_source_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_identifier_source_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_identifier_source_proto = out.File + file_google_ads_googleads_v22_enums_user_identifier_source_proto_goTypes = nil + file_google_ads_googleads_v22_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 c8901107..470bf1ea 100644 --- a/enums/user_interest_taxonomy_type.pb.go +++ b/enums/user_interest_taxonomy_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_interest_taxonomy_type.proto +// source: google/ads/googleads/v22/enums/user_interest_taxonomy_type.proto package enums @@ -88,11 +88,11 @@ func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) String() string { } func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_enumTypes[0].Descriptor() } func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_enumTypes[0] } func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) Number() protoref // Deprecated: Use UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType.Descriptor instead. func (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *UserInterestTaxonomyTypeEnum) String() string { func (*UserInterestTaxonomyTypeEnum) ProtoMessage() {} func (x *UserInterestTaxonomyTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *UserInterestTaxonomyTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterestTaxonomyTypeEnum.ProtoReflect.Descriptor instead. func (*UserInterestTaxonomyTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -164,42 +164,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_goTypes = []any{ - (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 0: google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - (*UserInterestTaxonomyTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum +var file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_goTypes = []any{ + (UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 0: google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + (*UserInterestTaxonomyTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum } -var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_init() } -func file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_init() { - if File_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_init() } +func file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_init() { + if File_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto = out.File - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_interest_taxonomy_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto = out.File + file_google_ads_googleads_v22_enums_user_interest_taxonomy_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 360ac173..2ec23656 100644 --- a/enums/user_list_access_status.pb.go +++ b/enums/user_list_access_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_access_status.proto +// source: google/ads/googleads/v22/enums/user_list_access_status.proto package enums @@ -76,11 +76,11 @@ func (x UserListAccessStatusEnum_UserListAccessStatus) String() string { } func (UserListAccessStatusEnum_UserListAccessStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_access_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_access_status_proto_enumTypes[0].Descriptor() } func (UserListAccessStatusEnum_UserListAccessStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_access_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_access_status_proto_enumTypes[0] } func (x UserListAccessStatusEnum_UserListAccessStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_user_list_access_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_access_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_access_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *UserListAccessStatusEnum) String() string { func (*UserListAccessStatusEnum) ProtoMessage() {} func (x *UserListAccessStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_access_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_access_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *UserListAccessStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListAccessStatusEnum.ProtoReflect.Descriptor instead. func (*UserListAccessStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_access_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_access_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6b, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_access_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_access_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_access_status_proto_goTypes = []any{ - (UserListAccessStatusEnum_UserListAccessStatus)(0), // 0: google.ads.googleads.v21.enums.UserListAccessStatusEnum.UserListAccessStatus - (*UserListAccessStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListAccessStatusEnum +var file_google_ads_googleads_v22_enums_user_list_access_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_access_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_access_status_proto_goTypes = []any{ + (UserListAccessStatusEnum_UserListAccessStatus)(0), // 0: google.ads.googleads.v22.enums.UserListAccessStatusEnum.UserListAccessStatus + (*UserListAccessStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListAccessStatusEnum } -var file_google_ads_googleads_v21_enums_user_list_access_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_enums_user_list_access_status_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_access_status_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_access_status_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_access_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_access_status_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_access_status_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_access_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_access_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_access_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_access_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_access_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_access_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_access_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_access_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_access_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_access_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_access_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_access_status_proto = out.File - file_google_ads_googleads_v21_enums_user_list_access_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_access_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_access_status_proto = out.File + file_google_ads_googleads_v22_enums_user_list_access_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 f12f8d0c..a2374cd7 100644 --- a/enums/user_list_closing_reason.pb.go +++ b/enums/user_list_closing_reason.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_closing_reason.proto +// source: google/ads/googleads/v22/enums/user_list_closing_reason.proto package enums @@ -72,11 +72,11 @@ func (x UserListClosingReasonEnum_UserListClosingReason) String() string { } func (UserListClosingReasonEnum_UserListClosingReason) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_enumTypes[0].Descriptor() } func (UserListClosingReasonEnum_UserListClosingReason) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_enumTypes[0] } func (x UserListClosingReasonEnum_UserListClosingReason) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *UserListClosingReasonEnum) String() string { func (*UserListClosingReasonEnum) ProtoMessage() {} func (x *UserListClosingReasonEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *UserListClosingReasonEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListClosingReasonEnum.ProtoReflect.Descriptor instead. func (*UserListClosingReasonEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_closing_reason_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_closing_reason_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_goTypes = []any{ - (UserListClosingReasonEnum_UserListClosingReason)(0), // 0: google.ads.googleads.v21.enums.UserListClosingReasonEnum.UserListClosingReason - (*UserListClosingReasonEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListClosingReasonEnum +var file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_goTypes = []any{ + (UserListClosingReasonEnum_UserListClosingReason)(0), // 0: google.ads.googleads.v22.enums.UserListClosingReasonEnum.UserListClosingReason + (*UserListClosingReasonEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListClosingReasonEnum } -var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_closing_reason_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_closing_reason_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_closing_reason_proto = out.File - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_closing_reason_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_closing_reason_proto = out.File + file_google_ads_googleads_v22_enums_user_list_closing_reason_proto_goTypes = nil + file_google_ads_googleads_v22_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 00b2fa55..7008ef36 100644 --- a/enums/user_list_crm_data_source_type.pb.go +++ b/enums/user_list_crm_data_source_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_crm_data_source_type.proto +// source: google/ads/googleads/v22/enums/user_list_crm_data_source_type.proto package enums @@ -49,6 +49,8 @@ const ( UserListCrmDataSourceTypeEnum_THIRD_PARTY_CREDIT_BUREAU UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType = 3 // The uploaded data is from a third-party voter file. UserListCrmDataSourceTypeEnum_THIRD_PARTY_VOTER_FILE UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType = 4 + // The uploaded data is third party partner data. + UserListCrmDataSourceTypeEnum_THIRD_PARTY_PARTNER_DATA UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType = 5 ) // Enum value maps for UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType. @@ -59,6 +61,7 @@ var ( 2: "FIRST_PARTY", 3: "THIRD_PARTY_CREDIT_BUREAU", 4: "THIRD_PARTY_VOTER_FILE", + 5: "THIRD_PARTY_PARTNER_DATA", } UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType_value = map[string]int32{ "UNSPECIFIED": 0, @@ -66,6 +69,7 @@ var ( "FIRST_PARTY": 2, "THIRD_PARTY_CREDIT_BUREAU": 3, "THIRD_PARTY_VOTER_FILE": 4, + "THIRD_PARTY_PARTNER_DATA": 5, } ) @@ -80,11 +84,11 @@ func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) String() string } func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_enumTypes[0].Descriptor() } func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_enumTypes[0] } func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Number() protoreflect.EnumNumber { @@ -93,7 +97,7 @@ func (x UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) Number() protor // Deprecated: Use UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType.Descriptor instead. func (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0, 0} } // Indicates source of Crm upload data. @@ -105,7 +109,7 @@ type UserListCrmDataSourceTypeEnum struct { func (x *UserListCrmDataSourceTypeEnum) Reset() { *x = UserListCrmDataSourceTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +121,7 @@ func (x *UserListCrmDataSourceTypeEnum) String() string { func (*UserListCrmDataSourceTypeEnum) ProtoMessage() {} func (x *UserListCrmDataSourceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,21 +134,21 @@ func (x *UserListCrmDataSourceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListCrmDataSourceTypeEnum.ProtoReflect.Descriptor instead. func (*UserListCrmDataSourceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, - 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xc5, 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, + 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa3, 0x01, 0x0a, 0x19, 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, 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, @@ -152,45 +156,46 @@ var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_raw 0x54, 0x59, 0x10, 0x02, 0x12, 0x1d, 0x0a, 0x19, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x44, 0x49, 0x54, 0x5f, 0x42, 0x55, 0x52, 0x45, 0x41, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, - 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, - 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, - 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x54, 0x59, 0x5f, 0x56, 0x4f, 0x54, 0x45, 0x52, 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x10, 0x04, 0x12, + 0x1c, 0x0a, 0x18, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x50, + 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x44, 0x41, 0x54, 0x41, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, + 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, + 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, + 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, + 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_goTypes = []any{ - (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 0: google.ads.googleads.v21.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType - (*UserListCrmDataSourceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListCrmDataSourceTypeEnum +var file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_goTypes = []any{ + (UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 0: google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType + (*UserListCrmDataSourceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum } -var file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +203,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_crm_data_source_type_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto = out.File - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_crm_data_source_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto = out.File + file_google_ads_googleads_v22_enums_user_list_crm_data_source_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 index b4ae36ff..4108ccde 100644 --- a/enums/user_list_customer_type_category.pb.go +++ b/enums/user_list_customer_type_category.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_customer_type_category.proto +// source: google/ads/googleads/v22/enums/user_list_customer_type_category.proto package enums @@ -132,11 +132,11 @@ func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) String() } func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_enumTypes[0].Descriptor() } func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_enumTypes[0] } func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Number() protoreflect.EnumNumber { @@ -145,7 +145,7 @@ func (x UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) Number() // Deprecated: Use UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory.Descriptor instead. func (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0, 0} } // The user list customer type categories. @@ -157,7 +157,7 @@ type UserListCustomerTypeCategoryEnum struct { func (x *UserListCustomerTypeCategoryEnum) Reset() { *x = UserListCustomerTypeCategoryEnum{} - mi := &file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169,7 +169,7 @@ func (x *UserListCustomerTypeCategoryEnum) String() string { func (*UserListCustomerTypeCategoryEnum) ProtoMessage() {} func (x *UserListCustomerTypeCategoryEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182,19 +182,19 @@ func (x *UserListCustomerTypeCategoryEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListCustomerTypeCategoryEnum.ProtoReflect.Descriptor instead. func (*UserListCustomerTypeCategoryEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_customer_type_category_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_customer_type_category_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe7, 0x03, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x72, + 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe7, 0x03, 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, 0xc2, 0x03, 0x0a, 0x1c, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, @@ -227,42 +227,42 @@ var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_r 0x5f, 0x54, 0x49, 0x45, 0x52, 0x5f, 0x37, 0x5f, 0x4d, 0x45, 0x4d, 0x42, 0x45, 0x52, 0x53, 0x10, 0x11, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x21, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_goTypes = []any{ - (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 0: google.ads.googleads.v21.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory - (*UserListCustomerTypeCategoryEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListCustomerTypeCategoryEnum +var file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_goTypes = []any{ + (UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 0: google.ads.googleads.v22.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory + (*UserListCustomerTypeCategoryEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListCustomerTypeCategoryEnum } -var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -270,27 +270,27 @@ var file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_customer_type_category_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_customer_type_category_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_customer_type_category_proto = out.File - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_customer_type_category_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_customer_type_category_proto = out.File + file_google_ads_googleads_v22_enums_user_list_customer_type_category_proto_goTypes = nil + file_google_ads_googleads_v22_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 5da4596d..fb55dd7b 100644 --- a/enums/user_list_date_rule_item_operator.pb.go +++ b/enums/user_list_date_rule_item_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_date_rule_item_operator.proto +// source: google/ads/googleads/v22/enums/user_list_date_rule_item_operator.proto package enums @@ -84,11 +84,11 @@ func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) String() } func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_enumTypes[0].Descriptor() } func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_enumTypes[0] } func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) Number() // Deprecated: Use UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator.Descriptor instead. func (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *UserListDateRuleItemOperatorEnum) String() string { func (*UserListDateRuleItemOperatorEnum) ProtoMessage() {} func (x *UserListDateRuleItemOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,19 +134,19 @@ func (x *UserListDateRuleItemOperatorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListDateRuleItemOperatorEnum.ProtoReflect.Descriptor instead. func (*UserListDateRuleItemOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x20, 0x55, 0x73, 0x65, + 0x32, 0x32, 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, @@ -157,43 +157,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_goTypes = []any{ - (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 0: google.ads.googleads.v21.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator - (*UserListDateRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListDateRuleItemOperatorEnum +var file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_goTypes = []any{ + (UserListDateRuleItemOperatorEnum_UserListDateRuleItemOperator)(0), // 0: google.ads.googleads.v22.enums.UserListDateRuleItemOperatorEnum.UserListDateRuleItemOperator + (*UserListDateRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListDateRuleItemOperatorEnum } -var file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_date_rule_item_operator_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto = out.File - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_date_rule_item_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto = out.File + file_google_ads_googleads_v22_enums_user_list_date_rule_item_operator_proto_goTypes = nil + file_google_ads_googleads_v22_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 8886393f..04d8fa06 100644 --- a/enums/user_list_flexible_rule_operator.pb.go +++ b/enums/user_list_flexible_rule_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_flexible_rule_operator.proto +// source: google/ads/googleads/v22/enums/user_list_flexible_rule_operator.proto package enums @@ -76,11 +76,11 @@ func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) String() } func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_enumTypes[0].Descriptor() } func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_enumTypes[0] } func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) Number() // Deprecated: Use UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator.Descriptor instead. func (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *UserListFlexibleRuleOperatorEnum) String() string { func (*UserListFlexibleRuleOperatorEnum) ProtoMessage() {} func (x *UserListFlexibleRuleOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,19 +126,19 @@ func (x *UserListFlexibleRuleOperatorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListFlexibleRuleOperatorEnum.ProtoReflect.Descriptor instead. func (*UserListFlexibleRuleOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x71, 0x0a, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_goTypes = []any{ - (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 0: google.ads.googleads.v21.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator - (*UserListFlexibleRuleOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListFlexibleRuleOperatorEnum +var file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_goTypes = []any{ + (UserListFlexibleRuleOperatorEnum_UserListFlexibleRuleOperator)(0), // 0: google.ads.googleads.v22.enums.UserListFlexibleRuleOperatorEnum.UserListFlexibleRuleOperator + (*UserListFlexibleRuleOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListFlexibleRuleOperatorEnum } -var file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_flexible_rule_operator_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto = out.File - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_flexible_rule_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto = out.File + file_google_ads_googleads_v22_enums_user_list_flexible_rule_operator_proto_goTypes = nil + file_google_ads_googleads_v22_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 6d20b891..59150208 100644 --- a/enums/user_list_logical_rule_operator.pb.go +++ b/enums/user_list_logical_rule_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_logical_rule_operator.proto +// source: google/ads/googleads/v22/enums/user_list_logical_rule_operator.proto package enums @@ -80,11 +80,11 @@ func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) String() st } func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_enumTypes[0].Descriptor() } func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_enumTypes[0] } func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) Number() pr // Deprecated: Use UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator.Descriptor instead. func (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *UserListLogicalRuleOperatorEnum) String() string { func (*UserListLogicalRuleOperatorEnum) ProtoMessage() {} func (x *UserListLogicalRuleOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *UserListLogicalRuleOperatorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListLogicalRuleOperatorEnum.ProtoReflect.Descriptor instead. func (*UserListLogicalRuleOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x20, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_goTypes = []any{ - (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 0: google.ads.googleads.v21.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator - (*UserListLogicalRuleOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListLogicalRuleOperatorEnum +var file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_goTypes = []any{ + (UserListLogicalRuleOperatorEnum_UserListLogicalRuleOperator)(0), // 0: google.ads.googleads.v22.enums.UserListLogicalRuleOperatorEnum.UserListLogicalRuleOperator + (*UserListLogicalRuleOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListLogicalRuleOperatorEnum } -var file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_logical_rule_operator_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto = out.File - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_logical_rule_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto = out.File + file_google_ads_googleads_v22_enums_user_list_logical_rule_operator_proto_goTypes = nil + file_google_ads_googleads_v22_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 732fbaaf..5c347207 100644 --- a/enums/user_list_membership_status.pb.go +++ b/enums/user_list_membership_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_membership_status.proto +// source: google/ads/googleads/v22/enums/user_list_membership_status.proto package enums @@ -76,11 +76,11 @@ func (x UserListMembershipStatusEnum_UserListMembershipStatus) String() string { } func (UserListMembershipStatusEnum_UserListMembershipStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_membership_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_membership_status_proto_enumTypes[0].Descriptor() } func (UserListMembershipStatusEnum_UserListMembershipStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_membership_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_membership_status_proto_enumTypes[0] } func (x UserListMembershipStatusEnum_UserListMembershipStatus) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x UserListMembershipStatusEnum_UserListMembershipStatus) Number() protoref // Deprecated: Use UserListMembershipStatusEnum_UserListMembershipStatus.Descriptor instead. func (UserListMembershipStatusEnum_UserListMembershipStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_membership_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_membership_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *UserListMembershipStatusEnum) String() string { func (*UserListMembershipStatusEnum) ProtoMessage() {} func (x *UserListMembershipStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_membership_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_membership_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *UserListMembershipStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListMembershipStatusEnum.ProtoReflect.Descriptor instead. func (*UserListMembershipStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_membership_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_membership_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_goTypes = []any{ - (UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 0: google.ads.googleads.v21.enums.UserListMembershipStatusEnum.UserListMembershipStatus - (*UserListMembershipStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListMembershipStatusEnum +var file_google_ads_googleads_v22_enums_user_list_membership_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_membership_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_membership_status_proto_goTypes = []any{ + (UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 0: google.ads.googleads.v22.enums.UserListMembershipStatusEnum.UserListMembershipStatus + (*UserListMembershipStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListMembershipStatusEnum } -var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_enums_user_list_membership_status_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_membership_status_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_membership_status_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_membership_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_membership_status_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_membership_status_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_membership_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_membership_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_membership_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_membership_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_membership_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_membership_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_membership_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_membership_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_membership_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_membership_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_membership_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_membership_status_proto = out.File - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_membership_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_membership_status_proto = out.File + file_google_ads_googleads_v22_enums_user_list_membership_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 cce58f7c..6bfe1926 100644 --- a/enums/user_list_number_rule_item_operator.pb.go +++ b/enums/user_list_number_rule_item_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_number_rule_item_operator.proto +// source: google/ads/googleads/v22/enums/user_list_number_rule_item_operator.proto package enums @@ -92,11 +92,11 @@ func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Strin } func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_enumTypes[0].Descriptor() } func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_enumTypes[0] } func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) Numbe // Deprecated: Use UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator.Descriptor instead. func (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *UserListNumberRuleItemOperatorEnum) String() string { func (*UserListNumberRuleItemOperatorEnum) ProtoMessage() {} func (x *UserListNumberRuleItemOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,19 +142,19 @@ func (x *UserListNumberRuleItemOperatorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use UserListNumberRuleItemOperatorEnum.ProtoReflect.Descriptor instead. func (*UserListNumberRuleItemOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xd5, 0x01, 0x0a, 0x22, 0x55, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -170,42 +170,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_goTypes = []any{ - (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 0: google.ads.googleads.v21.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator - (*UserListNumberRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListNumberRuleItemOperatorEnum +var file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_goTypes = []any{ + (UserListNumberRuleItemOperatorEnum_UserListNumberRuleItemOperator)(0), // 0: google.ads.googleads.v22.enums.UserListNumberRuleItemOperatorEnum.UserListNumberRuleItemOperator + (*UserListNumberRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListNumberRuleItemOperatorEnum } -var file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -213,27 +213,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_number_rule_item_operator_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto = out.File - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_number_rule_item_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto = out.File + file_google_ads_googleads_v22_enums_user_list_number_rule_item_operator_proto_goTypes = nil + file_google_ads_googleads_v22_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 a50986fe..da2f33ac 100644 --- a/enums/user_list_prepopulation_status.pb.go +++ b/enums/user_list_prepopulation_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_prepopulation_status.proto +// source: google/ads/googleads/v22/enums/user_list_prepopulation_status.proto package enums @@ -80,11 +80,11 @@ func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) String() st } func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_enumTypes[0].Descriptor() } func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_enumTypes[0] } func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x UserListPrepopulationStatusEnum_UserListPrepopulationStatus) Number() pr // Deprecated: Use UserListPrepopulationStatusEnum_UserListPrepopulationStatus.Descriptor instead. func (UserListPrepopulationStatusEnum_UserListPrepopulationStatus) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *UserListPrepopulationStatusEnum) String() string { func (*UserListPrepopulationStatusEnum) ProtoMessage() {} func (x *UserListPrepopulationStatusEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *UserListPrepopulationStatusEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListPrepopulationStatusEnum.ProtoReflect.Descriptor instead. func (*UserListPrepopulationStatusEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,43 +152,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_goTypes = []any{ - (UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 0: google.ads.googleads.v21.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus - (*UserListPrepopulationStatusEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListPrepopulationStatusEnum +var file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_goTypes = []any{ + (UserListPrepopulationStatusEnum_UserListPrepopulationStatus)(0), // 0: google.ads.googleads.v22.enums.UserListPrepopulationStatusEnum.UserListPrepopulationStatus + (*UserListPrepopulationStatusEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListPrepopulationStatusEnum } -var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto = out.File - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_prepopulation_status_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto = out.File + file_google_ads_googleads_v22_enums_user_list_prepopulation_status_proto_goTypes = nil + file_google_ads_googleads_v22_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 97f7b71c..ef819e8c 100644 --- a/enums/user_list_rule_type.pb.go +++ b/enums/user_list_rule_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_rule_type.proto +// source: google/ads/googleads/v22/enums/user_list_rule_type.proto package enums @@ -76,11 +76,11 @@ func (x UserListRuleTypeEnum_UserListRuleType) String() string { } func (UserListRuleTypeEnum_UserListRuleType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_rule_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_rule_type_proto_enumTypes[0].Descriptor() } func (UserListRuleTypeEnum_UserListRuleType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_rule_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_rule_type_proto_enumTypes[0] } func (x UserListRuleTypeEnum_UserListRuleType) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_rule_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_rule_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *UserListRuleTypeEnum) String() string { func (*UserListRuleTypeEnum) ProtoMessage() {} func (x *UserListRuleTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_rule_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_rule_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *UserListRuleTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListRuleTypeEnum.ProtoReflect.Descriptor instead. func (*UserListRuleTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_rule_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_rule_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x68, 0x0a, 0x14, 0x55, 0x73, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, 0x55, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_goTypes = []any{ - (UserListRuleTypeEnum_UserListRuleType)(0), // 0: google.ads.googleads.v21.enums.UserListRuleTypeEnum.UserListRuleType - (*UserListRuleTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListRuleTypeEnum +var file_google_ads_googleads_v22_enums_user_list_rule_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_rule_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_rule_type_proto_goTypes = []any{ + (UserListRuleTypeEnum_UserListRuleType)(0), // 0: google.ads.googleads.v22.enums.UserListRuleTypeEnum.UserListRuleType + (*UserListRuleTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListRuleTypeEnum } -var file_google_ads_googleads_v21_enums_user_list_rule_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_rule_type_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_rule_type_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_rule_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_rule_type_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_rule_type_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_rule_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_rule_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_rule_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_rule_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_rule_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_rule_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_rule_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_rule_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_rule_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_rule_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_rule_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_rule_type_proto = out.File - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_rule_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_rule_type_proto = out.File + file_google_ads_googleads_v22_enums_user_list_rule_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 8e454a93..961fc5da 100644 --- a/enums/user_list_size_range.pb.go +++ b/enums/user_list_size_range.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_size_range.proto +// source: google/ads/googleads/v22/enums/user_list_size_range.proto package enums @@ -132,11 +132,11 @@ func (x UserListSizeRangeEnum_UserListSizeRange) String() string { } func (UserListSizeRangeEnum_UserListSizeRange) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_size_range_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_size_range_proto_enumTypes[0].Descriptor() } func (UserListSizeRangeEnum_UserListSizeRange) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_size_range_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_size_range_proto_enumTypes[0] } func (x UserListSizeRangeEnum_UserListSizeRange) Number() protoreflect.EnumNumber { @@ -145,7 +145,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_v21_enums_user_list_size_range_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_size_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_size_range_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169,7 +169,7 @@ func (x *UserListSizeRangeEnum) String() string { func (*UserListSizeRangeEnum) ProtoMessage() {} func (x *UserListSizeRangeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_size_range_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_size_range_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182,18 +182,18 @@ func (x *UserListSizeRangeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListSizeRangeEnum.ProtoReflect.Descriptor instead. func (*UserListSizeRangeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_size_range_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_size_range_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x94, 0x05, 0x0a, 0x15, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -237,41 +237,41 @@ var file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x16, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_size_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_size_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_size_range_proto_goTypes = []any{ - (UserListSizeRangeEnum_UserListSizeRange)(0), // 0: google.ads.googleads.v21.enums.UserListSizeRangeEnum.UserListSizeRange - (*UserListSizeRangeEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListSizeRangeEnum +var file_google_ads_googleads_v22_enums_user_list_size_range_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_size_range_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_size_range_proto_goTypes = []any{ + (UserListSizeRangeEnum_UserListSizeRange)(0), // 0: google.ads.googleads.v22.enums.UserListSizeRangeEnum.UserListSizeRange + (*UserListSizeRangeEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListSizeRangeEnum } -var file_google_ads_googleads_v21_enums_user_list_size_range_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -279,27 +279,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_size_range_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_size_range_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_size_range_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_size_range_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_size_range_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_size_range_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_size_range_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_size_range_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_size_range_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_size_range_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_size_range_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_size_range_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_size_range_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_size_range_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_size_range_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_size_range_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_size_range_proto = out.File - file_google_ads_googleads_v21_enums_user_list_size_range_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_size_range_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_size_range_proto = out.File + file_google_ads_googleads_v22_enums_user_list_size_range_proto_goTypes = nil + file_google_ads_googleads_v22_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 0360b7d1..93c77281 100644 --- a/enums/user_list_string_rule_item_operator.pb.go +++ b/enums/user_list_string_rule_item_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_string_rule_item_operator.proto +// source: google/ads/googleads/v22/enums/user_list_string_rule_item_operator.proto package enums @@ -100,11 +100,11 @@ func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Strin } func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_enumTypes[0].Descriptor() } func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_enumTypes[0] } func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Number() protoreflect.EnumNumber { @@ -113,7 +113,7 @@ func (x UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) Numbe // Deprecated: Use UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator.Descriptor instead. func (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *UserListStringRuleItemOperatorEnum) String() string { func (*UserListStringRuleItemOperatorEnum) ProtoMessage() {} func (x *UserListStringRuleItemOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,19 +150,19 @@ func (x *UserListStringRuleItemOperatorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use UserListStringRuleItemOperatorEnum.ProtoReflect.Descriptor instead. func (*UserListStringRuleItemOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x22, 0x55, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -179,42 +179,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x55, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_goTypes = []any{ - (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 0: google.ads.googleads.v21.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator - (*UserListStringRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListStringRuleItemOperatorEnum +var file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_goTypes = []any{ + (UserListStringRuleItemOperatorEnum_UserListStringRuleItemOperator)(0), // 0: google.ads.googleads.v22.enums.UserListStringRuleItemOperatorEnum.UserListStringRuleItemOperator + (*UserListStringRuleItemOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListStringRuleItemOperatorEnum } -var file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -222,27 +222,27 @@ var file_google_ads_googleads_v21_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_v21_enums_user_list_string_rule_item_operator_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto = out.File - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_string_rule_item_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto = out.File + file_google_ads_googleads_v22_enums_user_list_string_rule_item_operator_proto_goTypes = nil + file_google_ads_googleads_v22_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 bd715a18..397e6555 100644 --- a/enums/user_list_type.pb.go +++ b/enums/user_list_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/user_list_type.proto +// source: google/ads/googleads/v22/enums/user_list_type.proto package enums @@ -98,11 +98,11 @@ func (x UserListTypeEnum_UserListType) String() string { } func (UserListTypeEnum_UserListType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_user_list_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_user_list_type_proto_enumTypes[0].Descriptor() } func (UserListTypeEnum_UserListType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_user_list_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_user_list_type_proto_enumTypes[0] } func (x UserListTypeEnum_UserListType) Number() protoreflect.EnumNumber { @@ -111,7 +111,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_v21_enums_user_list_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_user_list_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *UserListTypeEnum) String() string { func (*UserListTypeEnum) ProtoMessage() {} func (x *UserListTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_user_list_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_user_list_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,17 +148,17 @@ func (x *UserListTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListTypeEnum.ProtoReflect.Descriptor instead. func (*UserListTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_user_list_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_user_list_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_user_list_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -172,42 +172,42 @@ var file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_user_list_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_user_list_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_user_list_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_user_list_type_proto_goTypes = []any{ - (UserListTypeEnum_UserListType)(0), // 0: google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - (*UserListTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.UserListTypeEnum +var file_google_ads_googleads_v22_enums_user_list_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_user_list_type_proto_goTypes = []any{ + (UserListTypeEnum_UserListType)(0), // 0: google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + (*UserListTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.UserListTypeEnum } -var file_google_ads_googleads_v21_enums_user_list_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_enums_user_list_type_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_user_list_type_proto_init() } -func file_google_ads_googleads_v21_enums_user_list_type_proto_init() { - if File_google_ads_googleads_v21_enums_user_list_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_user_list_type_proto_init() } +func file_google_ads_googleads_v22_enums_user_list_type_proto_init() { + if File_google_ads_googleads_v22_enums_user_list_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_user_list_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_user_list_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_user_list_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_user_list_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_user_list_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_user_list_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_user_list_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_user_list_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_user_list_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_user_list_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_user_list_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_user_list_type_proto = out.File - file_google_ads_googleads_v21_enums_user_list_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_user_list_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_user_list_type_proto = out.File + file_google_ads_googleads_v22_enums_user_list_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 7d8c751d..e0d1390b 100644 --- a/enums/value_rule_device_type.pb.go +++ b/enums/value_rule_device_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/value_rule_device_type.proto +// source: google/ads/googleads/v22/enums/value_rule_device_type.proto package enums @@ -80,11 +80,11 @@ func (x ValueRuleDeviceTypeEnum_ValueRuleDeviceType) String() string { } func (ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_value_rule_device_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_value_rule_device_type_proto_enumTypes[0].Descriptor() } func (ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_value_rule_device_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_value_rule_device_type_proto_enumTypes[0] } func (x ValueRuleDeviceTypeEnum_ValueRuleDeviceType) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_value_rule_device_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_device_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ValueRuleDeviceTypeEnum) String() string { func (*ValueRuleDeviceTypeEnum) ProtoMessage() {} func (x *ValueRuleDeviceTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_value_rule_device_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_device_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ValueRuleDeviceTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueRuleDeviceTypeEnum.ProtoReflect.Descriptor instead. func (*ValueRuleDeviceTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_value_rule_device_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_value_rule_device_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x73, 0x0a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,41 +152,41 @@ var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x18, 0x56, 0x61, 0x6c, 0x75, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_goTypes = []any{ - (ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 0: google.ads.googleads.v21.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType - (*ValueRuleDeviceTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ValueRuleDeviceTypeEnum +var file_google_ads_googleads_v22_enums_value_rule_device_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_device_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_device_type_proto_goTypes = []any{ + (ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 0: google.ads.googleads.v22.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType + (*ValueRuleDeviceTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ValueRuleDeviceTypeEnum } -var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_value_rule_device_type_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_value_rule_device_type_proto_init() } -func file_google_ads_googleads_v21_enums_value_rule_device_type_proto_init() { - if File_google_ads_googleads_v21_enums_value_rule_device_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_value_rule_device_type_proto_init() } +func file_google_ads_googleads_v22_enums_value_rule_device_type_proto_init() { + if File_google_ads_googleads_v22_enums_value_rule_device_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_device_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_device_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_value_rule_device_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_value_rule_device_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_value_rule_device_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_value_rule_device_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_value_rule_device_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_value_rule_device_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_value_rule_device_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_value_rule_device_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_value_rule_device_type_proto = out.File - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_value_rule_device_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_value_rule_device_type_proto = out.File + file_google_ads_googleads_v22_enums_value_rule_device_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 3e62f204..0880fc32 100644 --- a/enums/value_rule_geo_location_match_type.pb.go +++ b/enums/value_rule_geo_location_match_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/value_rule_geo_location_match_type.proto +// source: google/ads/googleads/v22/enums/value_rule_geo_location_match_type.proto package enums @@ -76,11 +76,11 @@ func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) String( } func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_enumTypes[0].Descriptor() } func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_enumTypes[0] } func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) Number( // Deprecated: Use ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType.Descriptor instead. func (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *ValueRuleGeoLocationMatchTypeEnum) String() string { func (*ValueRuleGeoLocationMatchTypeEnum) ProtoMessage() {} func (x *ValueRuleGeoLocationMatchTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,19 +127,19 @@ func (x *ValueRuleGeoLocationMatchTypeEnum) ProtoReflect() protoreflect.Message // Deprecated: Use ValueRuleGeoLocationMatchTypeEnum.ProtoReflect.Descriptor instead. func (*ValueRuleGeoLocationMatchTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x85, 0x01, 0x0a, 0x21, 0x56, 0x61, + 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x22, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_goTypes = []any{ - (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 0: google.ads.googleads.v21.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - (*ValueRuleGeoLocationMatchTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ValueRuleGeoLocationMatchTypeEnum +var file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_goTypes = []any{ + (ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 0: google.ads.googleads.v22.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + (*ValueRuleGeoLocationMatchTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ValueRuleGeoLocationMatchTypeEnum } -var file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_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_v21_enums_value_rule_geo_location_match_type_proto_init() } -func file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_init() { - if File_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_init() } +func file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_init() { + if File_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto = out.File - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_value_rule_geo_location_match_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto = out.File + file_google_ads_googleads_v22_enums_value_rule_geo_location_match_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 663b5d32..a870ea90 100644 --- a/enums/value_rule_operation.pb.go +++ b/enums/value_rule_operation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/value_rule_operation.proto +// source: google/ads/googleads/v22/enums/value_rule_operation.proto package enums @@ -80,11 +80,11 @@ func (x ValueRuleOperationEnum_ValueRuleOperation) String() string { } func (ValueRuleOperationEnum_ValueRuleOperation) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_value_rule_operation_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_value_rule_operation_proto_enumTypes[0].Descriptor() } func (ValueRuleOperationEnum_ValueRuleOperation) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_value_rule_operation_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_value_rule_operation_proto_enumTypes[0] } func (x ValueRuleOperationEnum_ValueRuleOperation) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_enums_value_rule_operation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_value_rule_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_operation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ValueRuleOperationEnum) String() string { func (*ValueRuleOperationEnum) ProtoMessage() {} func (x *ValueRuleOperationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_value_rule_operation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_operation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ValueRuleOperationEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueRuleOperationEnum.ProtoReflect.Descriptor instead. func (*ValueRuleOperationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_value_rule_operation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_value_rule_operation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6c, 0x0a, 0x16, 0x56, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDescData + return file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDescData } -var file_google_ads_googleads_v21_enums_value_rule_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_operation_proto_goTypes = []any{ - (ValueRuleOperationEnum_ValueRuleOperation)(0), // 0: google.ads.googleads.v21.enums.ValueRuleOperationEnum.ValueRuleOperation - (*ValueRuleOperationEnum)(nil), // 1: google.ads.googleads.v21.enums.ValueRuleOperationEnum +var file_google_ads_googleads_v22_enums_value_rule_operation_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_operation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_operation_proto_goTypes = []any{ + (ValueRuleOperationEnum_ValueRuleOperation)(0), // 0: google.ads.googleads.v22.enums.ValueRuleOperationEnum.ValueRuleOperation + (*ValueRuleOperationEnum)(nil), // 1: google.ads.googleads.v22.enums.ValueRuleOperationEnum } -var file_google_ads_googleads_v21_enums_value_rule_operation_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_enums_value_rule_operation_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_value_rule_operation_proto_init() } -func file_google_ads_googleads_v21_enums_value_rule_operation_proto_init() { - if File_google_ads_googleads_v21_enums_value_rule_operation_proto != nil { +func init() { file_google_ads_googleads_v22_enums_value_rule_operation_proto_init() } +func file_google_ads_googleads_v22_enums_value_rule_operation_proto_init() { + if File_google_ads_googleads_v22_enums_value_rule_operation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_operation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_operation_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_value_rule_operation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_value_rule_operation_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_value_rule_operation_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_value_rule_operation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_value_rule_operation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_value_rule_operation_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_value_rule_operation_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_value_rule_operation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_value_rule_operation_proto = out.File - file_google_ads_googleads_v21_enums_value_rule_operation_proto_goTypes = nil - file_google_ads_googleads_v21_enums_value_rule_operation_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_value_rule_operation_proto = out.File + file_google_ads_googleads_v22_enums_value_rule_operation_proto_goTypes = nil + file_google_ads_googleads_v22_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 a1096006..1ffbf93a 100644 --- a/enums/value_rule_set_attachment_type.pb.go +++ b/enums/value_rule_set_attachment_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/value_rule_set_attachment_type.proto +// source: google/ads/googleads/v22/enums/value_rule_set_attachment_type.proto package enums @@ -76,11 +76,11 @@ func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) String() stri } func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_enumTypes[0].Descriptor() } func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_enumTypes[0] } func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) Number() prot // Deprecated: Use ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType.Descriptor instead. func (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ValueRuleSetAttachmentTypeEnum) String() string { func (*ValueRuleSetAttachmentTypeEnum) ProtoMessage() {} func (x *ValueRuleSetAttachmentTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ValueRuleSetAttachmentTypeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueRuleSetAttachmentTypeEnum.ProtoReflect.Descriptor instead. func (*ValueRuleSetAttachmentTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,43 +147,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_goTypes = []any{ - (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 0: google.ads.googleads.v21.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType - (*ValueRuleSetAttachmentTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.ValueRuleSetAttachmentTypeEnum +var file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_goTypes = []any{ + (ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 0: google.ads.googleads.v22.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType + (*ValueRuleSetAttachmentTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.ValueRuleSetAttachmentTypeEnum } -var file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_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_v21_enums_value_rule_set_attachment_type_proto_init() } -func file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_init() { - if File_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_init() } +func file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_init() { + if File_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto = out.File - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_value_rule_set_attachment_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto = out.File + file_google_ads_googleads_v22_enums_value_rule_set_attachment_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 125a20b2..8061362c 100644 --- a/enums/value_rule_set_dimension.pb.go +++ b/enums/value_rule_set_dimension.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/value_rule_set_dimension.proto +// source: google/ads/googleads/v22/enums/value_rule_set_dimension.proto package enums @@ -88,11 +88,11 @@ func (x ValueRuleSetDimensionEnum_ValueRuleSetDimension) String() string { } func (ValueRuleSetDimensionEnum_ValueRuleSetDimension) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_enumTypes[0].Descriptor() } func (ValueRuleSetDimensionEnum_ValueRuleSetDimension) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_enumTypes[0] } func (x ValueRuleSetDimensionEnum_ValueRuleSetDimension) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible dimensions of a conversion value rule @@ -114,7 +114,7 @@ type ValueRuleSetDimensionEnum struct { func (x *ValueRuleSetDimensionEnum) Reset() { *x = ValueRuleSetDimensionEnum{} - mi := &file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *ValueRuleSetDimensionEnum) String() string { func (*ValueRuleSetDimensionEnum) ProtoMessage() {} func (x *ValueRuleSetDimensionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *ValueRuleSetDimensionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ValueRuleSetDimensionEnum.ProtoReflect.Descriptor instead. func (*ValueRuleSetDimensionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_value_rule_set_dimension_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_value_rule_set_dimension_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa0, 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, 0x82, 0x01, 0x0a, 0x15, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, 0x65, 0x53, 0x65, 0x74, 0x44, 0x69, @@ -163,42 +163,42 @@ var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc = 0x4e, 0x10, 0x05, 0x12, 0x0d, 0x0a, 0x09, 0x49, 0x54, 0x49, 0x4e, 0x45, 0x52, 0x41, 0x52, 0x59, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1a, 0x56, 0x61, 0x6c, 0x75, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDescData + return file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDescData } -var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_goTypes = []any{ - (ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 0: google.ads.googleads.v21.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension - (*ValueRuleSetDimensionEnum)(nil), // 1: google.ads.googleads.v21.enums.ValueRuleSetDimensionEnum +var file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_goTypes = []any{ + (ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 0: google.ads.googleads.v22.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension + (*ValueRuleSetDimensionEnum)(nil), // 1: google.ads.googleads.v22.enums.ValueRuleSetDimensionEnum } -var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -206,27 +206,27 @@ var file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_init() } -func file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_init() { - if File_google_ads_googleads_v21_enums_value_rule_set_dimension_proto != nil { +func init() { file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_init() } +func file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_init() { + if File_google_ads_googleads_v22_enums_value_rule_set_dimension_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc), len(file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDesc), len(file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_value_rule_set_dimension_proto = out.File - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_goTypes = nil - file_google_ads_googleads_v21_enums_value_rule_set_dimension_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_value_rule_set_dimension_proto = out.File + file_google_ads_googleads_v22_enums_value_rule_set_dimension_proto_goTypes = nil + file_google_ads_googleads_v22_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 9f50328b..4aebe600 100644 --- a/enums/vanity_pharma_display_url_mode.pb.go +++ b/enums/vanity_pharma_display_url_mode.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/vanity_pharma_display_url_mode.proto +// source: google/ads/googleads/v22/enums/vanity_pharma_display_url_mode.proto package enums @@ -76,11 +76,11 @@ func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) String() stri } func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_enumTypes[0].Descriptor() } func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_enumTypes[0] } func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) Number() prot // Deprecated: Use VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode.Descriptor instead. func (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *VanityPharmaDisplayUrlModeEnum) String() string { func (*VanityPharmaDisplayUrlModeEnum) ProtoMessage() {} func (x *VanityPharmaDisplayUrlModeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *VanityPharmaDisplayUrlModeEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use VanityPharmaDisplayUrlModeEnum.ProtoReflect.Descriptor instead. func (*VanityPharmaDisplayUrlModeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDescData + return file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDescData } -var file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_goTypes = []any{ - (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 0: google.ads.googleads.v21.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode - (*VanityPharmaDisplayUrlModeEnum)(nil), // 1: google.ads.googleads.v21.enums.VanityPharmaDisplayUrlModeEnum +var file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_goTypes = []any{ + (VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 0: google.ads.googleads.v22.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode + (*VanityPharmaDisplayUrlModeEnum)(nil), // 1: google.ads.googleads.v22.enums.VanityPharmaDisplayUrlModeEnum } -var file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_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_v21_enums_vanity_pharma_display_url_mode_proto_init() } -func file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_init() { - if File_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto != nil { +func init() { file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_init() } +func file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_init() { + if File_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDesc), len(file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDesc), len(file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto = out.File - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_goTypes = nil - file_google_ads_googleads_v21_enums_vanity_pharma_display_url_mode_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto = out.File + file_google_ads_googleads_v22_enums_vanity_pharma_display_url_mode_proto_goTypes = nil + file_google_ads_googleads_v22_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 f1de94ec..ed404f44 100644 --- a/enums/vanity_pharma_text.pb.go +++ b/enums/vanity_pharma_text.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/vanity_pharma_text.proto +// source: google/ads/googleads/v22/enums/vanity_pharma_text.proto package enums @@ -122,11 +122,11 @@ func (x VanityPharmaTextEnum_VanityPharmaText) String() string { } func (VanityPharmaTextEnum_VanityPharmaText) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_enumTypes[0].Descriptor() } func (VanityPharmaTextEnum_VanityPharmaText) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_enumTypes[0] } func (x VanityPharmaTextEnum_VanityPharmaText) Number() protoreflect.EnumNumber { @@ -135,7 +135,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_v21_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *VanityPharmaTextEnum) String() string { func (*VanityPharmaTextEnum) ProtoMessage() {} func (x *VanityPharmaTextEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,18 +173,18 @@ func (x *VanityPharmaTextEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use VanityPharmaTextEnum.ProtoReflect.Descriptor instead. func (*VanityPharmaTextEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_vanity_pharma_text_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_vanity_pharma_text_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x8b, 0x04, 0x0a, 0x14, 0x56, 0x61, + 0x76, 0x32, 0x32, 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, @@ -219,42 +219,42 @@ var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x15, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc), len(file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDesc), len(file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDescData + return file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDescData } -var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_goTypes = []any{ - (VanityPharmaTextEnum_VanityPharmaText)(0), // 0: google.ads.googleads.v21.enums.VanityPharmaTextEnum.VanityPharmaText - (*VanityPharmaTextEnum)(nil), // 1: google.ads.googleads.v21.enums.VanityPharmaTextEnum +var file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_goTypes = []any{ + (VanityPharmaTextEnum_VanityPharmaText)(0), // 0: google.ads.googleads.v22.enums.VanityPharmaTextEnum.VanityPharmaText + (*VanityPharmaTextEnum)(nil), // 1: google.ads.googleads.v22.enums.VanityPharmaTextEnum } -var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -262,27 +262,27 @@ var file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_init() } -func file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_init() { - if File_google_ads_googleads_v21_enums_vanity_pharma_text_proto != nil { +func init() { file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_init() } +func file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_init() { + if File_google_ads_googleads_v22_enums_vanity_pharma_text_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc), len(file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDesc), len(file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_vanity_pharma_text_proto = out.File - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_goTypes = nil - file_google_ads_googleads_v21_enums_vanity_pharma_text_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_vanity_pharma_text_proto = out.File + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_goTypes = nil + file_google_ads_googleads_v22_enums_vanity_pharma_text_proto_depIdxs = nil } diff --git a/enums/video_ad_format_restriction.pb.go b/enums/video_ad_format_restriction.pb.go index bf0b95e7..5c0d0fe6 100644 --- a/enums/video_ad_format_restriction.pb.go +++ b/enums/video_ad_format_restriction.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/video_ad_format_restriction.proto +// source: google/ads/googleads/v22/enums/video_ad_format_restriction.proto package enums @@ -72,11 +72,11 @@ func (x VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) String() string { } func (VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_enumTypes[0].Descriptor() } func (VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_enumTypes[0] } func (x VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) Number() protoref // Deprecated: Use VideoAdFormatRestrictionEnum_VideoAdFormatRestriction.Descriptor instead. func (VideoAdFormatRestrictionEnum_VideoAdFormatRestriction) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing format restrictions for video responsive ads in @@ -98,7 +98,7 @@ type VideoAdFormatRestrictionEnum struct { func (x *VideoAdFormatRestrictionEnum) Reset() { *x = VideoAdFormatRestrictionEnum{} - mi := &file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *VideoAdFormatRestrictionEnum) String() string { func (*VideoAdFormatRestrictionEnum) ProtoMessage() {} func (x *VideoAdFormatRestrictionEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *VideoAdFormatRestrictionEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoAdFormatRestrictionEnum.ProtoReflect.Descriptor instead. func (*VideoAdFormatRestrictionEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_video_ad_format_restriction_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_video_ad_format_restriction_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x75, 0x0a, 0x1c, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x55, 0x0a, 0x18, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDes 0x4e, 0x4f, 0x4e, 0x5f, 0x53, 0x4b, 0x49, 0x50, 0x50, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x49, 0x4e, 0x5f, 0x53, 0x54, 0x52, 0x45, 0x41, 0x4d, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDescData + return file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDescData } -var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_goTypes = []any{ - (VideoAdFormatRestrictionEnum_VideoAdFormatRestriction)(0), // 0: google.ads.googleads.v21.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction - (*VideoAdFormatRestrictionEnum)(nil), // 1: google.ads.googleads.v21.enums.VideoAdFormatRestrictionEnum +var file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_goTypes = []any{ + (VideoAdFormatRestrictionEnum_VideoAdFormatRestriction)(0), // 0: google.ads.googleads.v22.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction + (*VideoAdFormatRestrictionEnum)(nil), // 1: google.ads.googleads.v22.enums.VideoAdFormatRestrictionEnum } -var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_video_ad_format_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_init() } -func file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_init() { - if File_google_ads_googleads_v21_enums_video_ad_format_restriction_proto != nil { +func init() { file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_init() } +func file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_init() { + if File_google_ads_googleads_v22_enums_video_ad_format_restriction_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_video_ad_format_restriction_proto = out.File - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_goTypes = nil - file_google_ads_googleads_v21_enums_video_ad_format_restriction_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_video_ad_format_restriction_proto = out.File + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_goTypes = nil + file_google_ads_googleads_v22_enums_video_ad_format_restriction_proto_depIdxs = nil } diff --git a/enums/video_ad_sequence_interaction_type.pb.go b/enums/video_ad_sequence_interaction_type.pb.go index 7d2a5c9f..2925807e 100644 --- a/enums/video_ad_sequence_interaction_type.pb.go +++ b/enums/video_ad_sequence_interaction_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/video_ad_sequence_interaction_type.proto +// source: google/ads/googleads/v22/enums/video_ad_sequence_interaction_type.proto package enums @@ -90,11 +90,11 @@ func (x VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) Strin } func (VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_enumTypes[0].Descriptor() } func (VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_enumTypes[0] } func (x VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) Number() protoreflect.EnumNumber { @@ -103,7 +103,7 @@ func (x VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) Numbe // Deprecated: Use VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType.Descriptor instead. func (VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing an interaction between a viewer and a video in @@ -116,7 +116,7 @@ type VideoAdSequenceInteractionTypeEnum struct { func (x *VideoAdSequenceInteractionTypeEnum) Reset() { *x = VideoAdSequenceInteractionTypeEnum{} - mi := &file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *VideoAdSequenceInteractionTypeEnum) String() string { func (*VideoAdSequenceInteractionTypeEnum) ProtoMessage() {} func (x *VideoAdSequenceInteractionTypeEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,19 +141,19 @@ func (x *VideoAdSequenceInteractionTypeEnum) ProtoReflect() protoreflect.Message // Deprecated: Use VideoAdSequenceInteractionTypeEnum.ProtoReflect.Descriptor instead. func (*VideoAdSequenceInteractionTypeEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x01, 0x0a, 0x22, 0x56, 0x69, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0xa5, 0x01, 0x0a, 0x22, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x7f, 0x0a, 0x1e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, @@ -166,42 +166,42 @@ var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto 0x41, 0x47, 0x45, 0x44, 0x5f, 0x49, 0x4d, 0x50, 0x52, 0x45, 0x53, 0x53, 0x49, 0x4f, 0x4e, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDescData + return file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDescData } -var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_goTypes = []any{ - (VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType)(0), // 0: google.ads.googleads.v21.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType - (*VideoAdSequenceInteractionTypeEnum)(nil), // 1: google.ads.googleads.v21.enums.VideoAdSequenceInteractionTypeEnum +var file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_goTypes = []any{ + (VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType)(0), // 0: google.ads.googleads.v22.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType + (*VideoAdSequenceInteractionTypeEnum)(nil), // 1: google.ads.googleads.v22.enums.VideoAdSequenceInteractionTypeEnum } -var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_video_ad_sequence_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_init() } -func file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_init() { - if File_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto != nil { +func init() { file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_init() } +func file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_init() { + if File_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto = out.File - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_goTypes = nil - file_google_ads_googleads_v21_enums_video_ad_sequence_interaction_type_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto = out.File + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_goTypes = nil + file_google_ads_googleads_v22_enums_video_ad_sequence_interaction_type_proto_depIdxs = nil } diff --git a/enums/video_ad_sequence_minimum_duration.pb.go b/enums/video_ad_sequence_minimum_duration.pb.go index d2bc429c..15f07176 100644 --- a/enums/video_ad_sequence_minimum_duration.pb.go +++ b/enums/video_ad_sequence_minimum_duration.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/video_ad_sequence_minimum_duration.proto +// source: google/ads/googleads/v22/enums/video_ad_sequence_minimum_duration.proto package enums @@ -80,11 +80,11 @@ func (x VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) Strin } func (VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_enumTypes[0].Descriptor() } func (VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_enumTypes[0] } func (x VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) Numbe // Deprecated: Use VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration.Descriptor instead. func (VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible times after starting a video ad @@ -106,7 +106,7 @@ type VideoAdSequenceMinimumDurationEnum struct { func (x *VideoAdSequenceMinimumDurationEnum) Reset() { *x = VideoAdSequenceMinimumDurationEnum{} - mi := &file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *VideoAdSequenceMinimumDurationEnum) String() string { func (*VideoAdSequenceMinimumDurationEnum) ProtoMessage() {} func (x *VideoAdSequenceMinimumDurationEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,19 +131,19 @@ func (x *VideoAdSequenceMinimumDurationEnum) ProtoReflect() protoreflect.Message // Deprecated: Use VideoAdSequenceMinimumDurationEnum.ProtoReflect.Descriptor instead. func (*VideoAdSequenceMinimumDurationEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x64, 0x75, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x79, 0x0a, 0x22, 0x56, 0x69, 0x64, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x79, 0x0a, 0x22, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x53, 0x0a, 0x1e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, @@ -153,42 +153,42 @@ var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto 0x08, 0x0a, 0x04, 0x57, 0x45, 0x45, 0x4b, 0x10, 0x02, 0x12, 0x09, 0x0a, 0x05, 0x4d, 0x4f, 0x4e, 0x54, 0x48, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x56, 0x69, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x23, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, 0x75, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDescData + return file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDescData } -var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_goTypes = []any{ - (VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration)(0), // 0: google.ads.googleads.v21.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration - (*VideoAdSequenceMinimumDurationEnum)(nil), // 1: google.ads.googleads.v21.enums.VideoAdSequenceMinimumDurationEnum +var file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_goTypes = []any{ + (VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration)(0), // 0: google.ads.googleads.v22.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration + (*VideoAdSequenceMinimumDurationEnum)(nil), // 1: google.ads.googleads.v22.enums.VideoAdSequenceMinimumDurationEnum } -var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +196,27 @@ var file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_init() } -func file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_init() { - if File_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto != nil { +func init() { file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_init() } +func file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_init() { + if File_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto = out.File - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_goTypes = nil - file_google_ads_googleads_v21_enums_video_ad_sequence_minimum_duration_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto = out.File + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_goTypes = nil + file_google_ads_googleads_v22_enums_video_ad_sequence_minimum_duration_proto_depIdxs = nil } diff --git a/enums/video_thumbnail.pb.go b/enums/video_thumbnail.pb.go index 3c46e41e..70beaffe 100644 --- a/enums/video_thumbnail.pb.go +++ b/enums/video_thumbnail.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/video_thumbnail.proto +// source: google/ads/googleads/v22/enums/video_thumbnail.proto package enums @@ -85,11 +85,11 @@ func (x VideoThumbnailEnum_VideoThumbnail) String() string { } func (VideoThumbnailEnum_VideoThumbnail) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_video_thumbnail_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_video_thumbnail_proto_enumTypes[0].Descriptor() } func (VideoThumbnailEnum_VideoThumbnail) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_video_thumbnail_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_video_thumbnail_proto_enumTypes[0] } func (x VideoThumbnailEnum_VideoThumbnail) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_enums_video_thumbnail_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_video_thumbnail_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_thumbnail_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *VideoThumbnailEnum) String() string { func (*VideoThumbnailEnum) ProtoMessage() {} func (x *VideoThumbnailEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_video_thumbnail_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_video_thumbnail_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,17 +137,17 @@ func (x *VideoThumbnailEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoThumbnailEnum.ProtoReflect.Descriptor instead. func (*VideoThumbnailEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_video_thumbnail_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_video_thumbnail_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,41 +159,41 @@ var file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x13, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDescData + return file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDescData } -var file_google_ads_googleads_v21_enums_video_thumbnail_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_video_thumbnail_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_video_thumbnail_proto_goTypes = []any{ - (VideoThumbnailEnum_VideoThumbnail)(0), // 0: google.ads.googleads.v21.enums.VideoThumbnailEnum.VideoThumbnail - (*VideoThumbnailEnum)(nil), // 1: google.ads.googleads.v21.enums.VideoThumbnailEnum +var file_google_ads_googleads_v22_enums_video_thumbnail_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_video_thumbnail_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_video_thumbnail_proto_goTypes = []any{ + (VideoThumbnailEnum_VideoThumbnail)(0), // 0: google.ads.googleads.v22.enums.VideoThumbnailEnum.VideoThumbnail + (*VideoThumbnailEnum)(nil), // 1: google.ads.googleads.v22.enums.VideoThumbnailEnum } -var file_google_ads_googleads_v21_enums_video_thumbnail_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -201,27 +201,27 @@ var file_google_ads_googleads_v21_enums_video_thumbnail_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_video_thumbnail_proto_init() } -func file_google_ads_googleads_v21_enums_video_thumbnail_proto_init() { - if File_google_ads_googleads_v21_enums_video_thumbnail_proto != nil { +func init() { file_google_ads_googleads_v22_enums_video_thumbnail_proto_init() } +func file_google_ads_googleads_v22_enums_video_thumbnail_proto_init() { + if File_google_ads_googleads_v22_enums_video_thumbnail_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc), len(file_google_ads_googleads_v21_enums_video_thumbnail_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDesc), len(file_google_ads_googleads_v22_enums_video_thumbnail_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_video_thumbnail_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_video_thumbnail_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_video_thumbnail_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_video_thumbnail_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_video_thumbnail_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_video_thumbnail_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_video_thumbnail_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_video_thumbnail_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_video_thumbnail_proto = out.File - file_google_ads_googleads_v21_enums_video_thumbnail_proto_goTypes = nil - file_google_ads_googleads_v21_enums_video_thumbnail_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_video_thumbnail_proto = out.File + file_google_ads_googleads_v22_enums_video_thumbnail_proto_goTypes = nil + file_google_ads_googleads_v22_enums_video_thumbnail_proto_depIdxs = nil } diff --git a/enums/webpage_condition_operand.pb.go b/enums/webpage_condition_operand.pb.go index 6cd0225d..c2886390 100644 --- a/enums/webpage_condition_operand.pb.go +++ b/enums/webpage_condition_operand.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/webpage_condition_operand.proto +// source: google/ads/googleads/v22/enums/webpage_condition_operand.proto package enums @@ -88,11 +88,11 @@ func (x WebpageConditionOperandEnum_WebpageConditionOperand) String() string { } func (WebpageConditionOperandEnum_WebpageConditionOperand) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_enumTypes[0].Descriptor() } func (WebpageConditionOperandEnum_WebpageConditionOperand) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_enumTypes[0] } func (x WebpageConditionOperandEnum_WebpageConditionOperand) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x WebpageConditionOperandEnum_WebpageConditionOperand) Number() protorefle // Deprecated: Use WebpageConditionOperandEnum_WebpageConditionOperand.Descriptor instead. func (WebpageConditionOperandEnum_WebpageConditionOperand) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *WebpageConditionOperandEnum) String() string { func (*WebpageConditionOperandEnum) ProtoMessage() {} func (x *WebpageConditionOperandEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *WebpageConditionOperandEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageConditionOperandEnum.ProtoReflect.Descriptor instead. func (*WebpageConditionOperandEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_webpage_condition_operand_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_webpage_condition_operand_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,42 +162,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1c, 0x57, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDesc), len(file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDesc), len(file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDescData + return file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDescData } -var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_goTypes = []any{ - (WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 0: google.ads.googleads.v21.enums.WebpageConditionOperandEnum.WebpageConditionOperand - (*WebpageConditionOperandEnum)(nil), // 1: google.ads.googleads.v21.enums.WebpageConditionOperandEnum +var file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_goTypes = []any{ + (WebpageConditionOperandEnum_WebpageConditionOperand)(0), // 0: google.ads.googleads.v22.enums.WebpageConditionOperandEnum.WebpageConditionOperand + (*WebpageConditionOperandEnum)(nil), // 1: google.ads.googleads.v22.enums.WebpageConditionOperandEnum } -var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -205,27 +205,27 @@ var file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_init() } -func file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_init() { - if File_google_ads_googleads_v21_enums_webpage_condition_operand_proto != nil { +func init() { file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_init() } +func file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_init() { + if File_google_ads_googleads_v22_enums_webpage_condition_operand_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDesc), len(file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDesc), len(file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_webpage_condition_operand_proto = out.File - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_goTypes = nil - file_google_ads_googleads_v21_enums_webpage_condition_operand_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_webpage_condition_operand_proto = out.File + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_goTypes = nil + file_google_ads_googleads_v22_enums_webpage_condition_operand_proto_depIdxs = nil } diff --git a/enums/webpage_condition_operator.pb.go b/enums/webpage_condition_operator.pb.go index e8fffa11..2527ee74 100644 --- a/enums/webpage_condition_operator.pb.go +++ b/enums/webpage_condition_operator.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/enums/webpage_condition_operator.proto +// source: google/ads/googleads/v22/enums/webpage_condition_operator.proto package enums @@ -76,11 +76,11 @@ func (x WebpageConditionOperatorEnum_WebpageConditionOperator) String() string { } func (WebpageConditionOperatorEnum_WebpageConditionOperator) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_enumTypes[0].Descriptor() } func (WebpageConditionOperatorEnum_WebpageConditionOperator) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_enumTypes[0] + return &file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_enumTypes[0] } func (x WebpageConditionOperatorEnum_WebpageConditionOperator) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x WebpageConditionOperatorEnum_WebpageConditionOperator) Number() protoref // Deprecated: Use WebpageConditionOperatorEnum_WebpageConditionOperator.Descriptor instead. func (WebpageConditionOperatorEnum_WebpageConditionOperator) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *WebpageConditionOperatorEnum) String() string { func (*WebpageConditionOperatorEnum) ProtoMessage() {} func (x *WebpageConditionOperatorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *WebpageConditionOperatorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageConditionOperatorEnum.ProtoReflect.Descriptor instead. func (*WebpageConditionOperatorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_enums_webpage_condition_operator_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_enums_webpage_condition_operator_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x42, 0x1d, 0x57, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescData []byte + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDesc))) +func file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDesc))) }) - return file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDescData + return file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDescData } -var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_goTypes = []any{ - (WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 0: google.ads.googleads.v21.enums.WebpageConditionOperatorEnum.WebpageConditionOperator - (*WebpageConditionOperatorEnum)(nil), // 1: google.ads.googleads.v21.enums.WebpageConditionOperatorEnum +var file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_goTypes = []any{ + (WebpageConditionOperatorEnum_WebpageConditionOperator)(0), // 0: google.ads.googleads.v22.enums.WebpageConditionOperatorEnum.WebpageConditionOperator + (*WebpageConditionOperatorEnum)(nil), // 1: google.ads.googleads.v22.enums.WebpageConditionOperatorEnum } -var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_init() } -func file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_init() { - if File_google_ads_googleads_v21_enums_webpage_condition_operator_proto != nil { +func init() { file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_init() } +func file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_init() { + if File_google_ads_googleads_v22_enums_webpage_condition_operator_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDesc), len(file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDesc), len(file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_enums_webpage_condition_operator_proto = out.File - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_goTypes = nil - file_google_ads_googleads_v21_enums_webpage_condition_operator_proto_depIdxs = nil + File_google_ads_googleads_v22_enums_webpage_condition_operator_proto = out.File + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_goTypes = nil + file_google_ads_googleads_v22_enums_webpage_condition_operator_proto_depIdxs = nil } diff --git a/enums/youtube_video_property.pb.go b/enums/youtube_video_property.pb.go new file mode 100644 index 00000000..5c83d414 --- /dev/null +++ b/enums/youtube_video_property.pb.go @@ -0,0 +1,215 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/enums/youtube_video_property.proto + +package enums + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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) +) + +// Describes a property of a YouTube video. +type YouTubeVideoPropertyEnum_YouTubeVideoProperty int32 + +const ( + // Not specified. + YouTubeVideoPropertyEnum_UNSPECIFIED YouTubeVideoPropertyEnum_YouTubeVideoProperty = 0 + // The value is unknown in this version. + YouTubeVideoPropertyEnum_UNKNOWN YouTubeVideoPropertyEnum_YouTubeVideoProperty = 1 + // Video is a live stream. + YouTubeVideoPropertyEnum_LIVE_STREAM YouTubeVideoPropertyEnum_YouTubeVideoProperty = 2 + // Video is Shorts eligible. + YouTubeVideoPropertyEnum_SHORTS YouTubeVideoPropertyEnum_YouTubeVideoProperty = 3 +) + +// Enum value maps for YouTubeVideoPropertyEnum_YouTubeVideoProperty. +var ( + YouTubeVideoPropertyEnum_YouTubeVideoProperty_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 2: "LIVE_STREAM", + 3: "SHORTS", + } + YouTubeVideoPropertyEnum_YouTubeVideoProperty_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "LIVE_STREAM": 2, + "SHORTS": 3, + } +) + +func (x YouTubeVideoPropertyEnum_YouTubeVideoProperty) Enum() *YouTubeVideoPropertyEnum_YouTubeVideoProperty { + p := new(YouTubeVideoPropertyEnum_YouTubeVideoProperty) + *p = x + return p +} + +func (x YouTubeVideoPropertyEnum_YouTubeVideoProperty) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (YouTubeVideoPropertyEnum_YouTubeVideoProperty) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_enums_youtube_video_property_proto_enumTypes[0].Descriptor() +} + +func (YouTubeVideoPropertyEnum_YouTubeVideoProperty) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_enums_youtube_video_property_proto_enumTypes[0] +} + +func (x YouTubeVideoPropertyEnum_YouTubeVideoProperty) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use YouTubeVideoPropertyEnum_YouTubeVideoProperty.Descriptor instead. +func (YouTubeVideoPropertyEnum_YouTubeVideoProperty) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing the property of a YouTube video. +type YouTubeVideoPropertyEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *YouTubeVideoPropertyEnum) Reset() { + *x = YouTubeVideoPropertyEnum{} + mi := &file_google_ads_googleads_v22_enums_youtube_video_property_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *YouTubeVideoPropertyEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*YouTubeVideoPropertyEnum) ProtoMessage() {} + +func (x *YouTubeVideoPropertyEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_enums_youtube_video_property_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use YouTubeVideoPropertyEnum.ProtoReflect.Descriptor instead. +func (*YouTubeVideoPropertyEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_enums_youtube_video_property_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x2f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x70, + 0x72, 0x6f, 0x70, 0x65, 0x72, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x22, 0x6d, 0x0a, + 0x18, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x50, 0x72, 0x6f, + 0x70, 0x65, 0x72, 0x74, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x51, 0x0a, 0x14, 0x59, 0x6f, 0x75, + 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 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, + 0x0f, 0x0a, 0x0b, 0x4c, 0x49, 0x56, 0x45, 0x5f, 0x53, 0x54, 0x52, 0x45, 0x41, 0x4d, 0x10, 0x02, + 0x12, 0x0a, 0x0a, 0x06, 0x53, 0x48, 0x4f, 0x52, 0x54, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x42, 0x19, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, + 0x6f, 0x50, 0x72, 0x6f, 0x70, 0x65, 0x72, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x3b, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1e, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xca, 0x02, 0x1e, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x6e, 0x75, 0x6d, 0x73, 0xea, 0x02, 0x22, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x6e, 0x75, + 0x6d, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDesc), len(file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDescData +} + +var file_google_ads_googleads_v22_enums_youtube_video_property_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_enums_youtube_video_property_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_enums_youtube_video_property_proto_goTypes = []any{ + (YouTubeVideoPropertyEnum_YouTubeVideoProperty)(0), // 0: google.ads.googleads.v22.enums.YouTubeVideoPropertyEnum.YouTubeVideoProperty + (*YouTubeVideoPropertyEnum)(nil), // 1: google.ads.googleads.v22.enums.YouTubeVideoPropertyEnum +} +var file_google_ads_googleads_v22_enums_youtube_video_property_proto_depIdxs = []int32{ + 0, // [0:0] is the sub-list for method 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_v22_enums_youtube_video_property_proto_init() } +func file_google_ads_googleads_v22_enums_youtube_video_property_proto_init() { + if File_google_ads_googleads_v22_enums_youtube_video_property_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDesc), len(file_google_ads_googleads_v22_enums_youtube_video_property_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_enums_youtube_video_property_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_enums_youtube_video_property_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_enums_youtube_video_property_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_enums_youtube_video_property_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_enums_youtube_video_property_proto = out.File + file_google_ads_googleads_v22_enums_youtube_video_property_proto_goTypes = nil + file_google_ads_googleads_v22_enums_youtube_video_property_proto_depIdxs = nil +} diff --git a/errors/access_invitation_error.pb.go b/errors/access_invitation_error.pb.go index 318c49d2..d9bbed48 100644 --- a/errors/access_invitation_error.pb.go +++ b/errors/access_invitation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/access_invitation_error.proto +// source: google/ads/googleads/v22/errors/access_invitation_error.proto package errors @@ -101,11 +101,11 @@ func (x AccessInvitationErrorEnum_AccessInvitationError) String() string { } func (AccessInvitationErrorEnum_AccessInvitationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_access_invitation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_access_invitation_error_proto_enumTypes[0].Descriptor() } func (AccessInvitationErrorEnum_AccessInvitationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_access_invitation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_access_invitation_error_proto_enumTypes[0] } func (x AccessInvitationErrorEnum_AccessInvitationError) Number() protoreflect.EnumNumber { @@ -114,7 +114,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_v21_errors_access_invitation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_access_invitation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_access_invitation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +138,7 @@ func (x *AccessInvitationErrorEnum) String() string { func (*AccessInvitationErrorEnum) ProtoMessage() {} func (x *AccessInvitationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_access_invitation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_access_invitation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,18 +151,18 @@ func (x *AccessInvitationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessInvitationErrorEnum.ProtoReflect.Descriptor instead. func (*AccessInvitationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_access_invitation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_access_invitation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -188,42 +188,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_access_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_access_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_access_invitation_error_proto_goTypes = []any{ - (AccessInvitationErrorEnum_AccessInvitationError)(0), // 0: google.ads.googleads.v21.errors.AccessInvitationErrorEnum.AccessInvitationError - (*AccessInvitationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AccessInvitationErrorEnum +var file_google_ads_googleads_v22_errors_access_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_access_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_access_invitation_error_proto_goTypes = []any{ + (AccessInvitationErrorEnum_AccessInvitationError)(0), // 0: google.ads.googleads.v22.errors.AccessInvitationErrorEnum.AccessInvitationError + (*AccessInvitationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AccessInvitationErrorEnum } -var file_google_ads_googleads_v21_errors_access_invitation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -231,27 +231,27 @@ var file_google_ads_googleads_v21_errors_access_invitation_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_access_invitation_error_proto_init() } -func file_google_ads_googleads_v21_errors_access_invitation_error_proto_init() { - if File_google_ads_googleads_v21_errors_access_invitation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_access_invitation_error_proto_init() } +func file_google_ads_googleads_v22_errors_access_invitation_error_proto_init() { + if File_google_ads_googleads_v22_errors_access_invitation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_access_invitation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_access_invitation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_access_invitation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_access_invitation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_access_invitation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_access_invitation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_access_invitation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_access_invitation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_access_invitation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_access_invitation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_access_invitation_error_proto = out.File - file_google_ads_googleads_v21_errors_access_invitation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_access_invitation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_access_invitation_error_proto = out.File + file_google_ads_googleads_v22_errors_access_invitation_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 3fd853e4..559c0b7f 100644 --- a/errors/account_budget_proposal_error.pb.go +++ b/errors/account_budget_proposal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/account_budget_proposal_error.proto +// source: google/ads/googleads/v22/errors/account_budget_proposal_error.proto package errors @@ -180,11 +180,11 @@ func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) String() stri } func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_enumTypes[0].Descriptor() } func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_enumTypes[0] } func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Number() protoreflect.EnumNumber { @@ -193,7 +193,7 @@ func (x AccountBudgetProposalErrorEnum_AccountBudgetProposalError) Number() prot // Deprecated: Use AccountBudgetProposalErrorEnum_AccountBudgetProposalError.Descriptor instead. func (AccountBudgetProposalErrorEnum_AccountBudgetProposalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -217,7 +217,7 @@ func (x *AccountBudgetProposalErrorEnum) String() string { func (*AccountBudgetProposalErrorEnum) ProtoMessage() {} func (x *AccountBudgetProposalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -230,18 +230,18 @@ func (x *AccountBudgetProposalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposalErrorEnum.ProtoReflect.Descriptor instead. func (*AccountBudgetProposalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_account_budget_proposal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_account_budget_proposal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -306,42 +306,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x41, 0x63, 0x63, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_goTypes = []any{ - (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 0: google.ads.googleads.v21.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError - (*AccountBudgetProposalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AccountBudgetProposalErrorEnum +var file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_goTypes = []any{ + (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 0: google.ads.googleads.v22.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError + (*AccountBudgetProposalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AccountBudgetProposalErrorEnum } -var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -349,27 +349,27 @@ var file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_init() } -func file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_init() { - if File_google_ads_googleads_v21_errors_account_budget_proposal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_init() } +func file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_init() { + if File_google_ads_googleads_v22_errors_account_budget_proposal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_account_budget_proposal_error_proto = out.File - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_account_budget_proposal_error_proto = out.File + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 a66e440e..da36cb5f 100644 --- a/errors/account_link_error.pb.go +++ b/errors/account_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/account_link_error.proto +// source: google/ads/googleads/v22/errors/account_link_error.proto package errors @@ -76,11 +76,11 @@ func (x AccountLinkErrorEnum_AccountLinkError) String() string { } func (AccountLinkErrorEnum_AccountLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_account_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_account_link_error_proto_enumTypes[0].Descriptor() } func (AccountLinkErrorEnum_AccountLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_account_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_account_link_error_proto_enumTypes[0] } func (x AccountLinkErrorEnum_AccountLinkError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_account_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_account_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_account_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *AccountLinkErrorEnum) String() string { func (*AccountLinkErrorEnum) ProtoMessage() {} func (x *AccountLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_account_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_account_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *AccountLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountLinkErrorEnum.ProtoReflect.Descriptor instead. func (*AccountLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_account_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_account_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_account_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x73, 0x0a, 0x14, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_account_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_account_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_account_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_account_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_account_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_account_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_account_link_error_proto_goTypes = []any{ - (AccountLinkErrorEnum_AccountLinkError)(0), // 0: google.ads.googleads.v21.errors.AccountLinkErrorEnum.AccountLinkError - (*AccountLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AccountLinkErrorEnum +var file_google_ads_googleads_v22_errors_account_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_account_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_account_link_error_proto_goTypes = []any{ + (AccountLinkErrorEnum_AccountLinkError)(0), // 0: google.ads.googleads.v22.errors.AccountLinkErrorEnum.AccountLinkError + (*AccountLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AccountLinkErrorEnum } -var file_google_ads_googleads_v21_errors_account_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_account_link_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_account_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_account_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_account_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_account_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_account_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_account_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_account_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_account_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_account_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_account_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_account_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_account_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_account_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_account_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_account_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_account_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_account_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_account_link_error_proto = out.File - file_google_ads_googleads_v21_errors_account_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_account_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_account_link_error_proto = out.File + file_google_ads_googleads_v22_errors_account_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_account_link_error_proto_depIdxs = nil } diff --git a/errors/ad_customizer_error.pb.go b/errors/ad_customizer_error.pb.go index f4397b74..99f77c32 100644 --- a/errors/ad_customizer_error.pb.go +++ b/errors/ad_customizer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_customizer_error.proto +// source: google/ads/googleads/v22/errors/ad_customizer_error.proto package errors @@ -88,11 +88,11 @@ func (x AdCustomizerErrorEnum_AdCustomizerError) String() string { } func (AdCustomizerErrorEnum_AdCustomizerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_customizer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_customizer_error_proto_enumTypes[0].Descriptor() } func (AdCustomizerErrorEnum_AdCustomizerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_customizer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_customizer_error_proto_enumTypes[0] } func (x AdCustomizerErrorEnum_AdCustomizerError) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_customizer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *AdCustomizerErrorEnum) String() string { func (*AdCustomizerErrorEnum) ProtoMessage() {} func (x *AdCustomizerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_customizer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *AdCustomizerErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdCustomizerErrorEnum.ProtoReflect.Descriptor instead. func (*AdCustomizerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_customizer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_customizer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe8, 0x01, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -166,42 +166,42 @@ var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_goTypes = []any{ - (AdCustomizerErrorEnum_AdCustomizerError)(0), // 0: google.ads.googleads.v21.errors.AdCustomizerErrorEnum.AdCustomizerError - (*AdCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdCustomizerErrorEnum +var file_google_ads_googleads_v22_errors_ad_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_customizer_error_proto_goTypes = []any{ + (AdCustomizerErrorEnum_AdCustomizerError)(0), // 0: google.ads.googleads.v22.errors.AdCustomizerErrorEnum.AdCustomizerError + (*AdCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdCustomizerErrorEnum } -var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_errors_ad_customizer_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_customizer_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_customizer_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_customizer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_customizer_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_customizer_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_customizer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_customizer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_customizer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_customizer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_customizer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_customizer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_customizer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_customizer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_customizer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_customizer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_customizer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_customizer_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_customizer_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_depIdxs = nil } diff --git a/errors/ad_error.pb.go b/errors/ad_error.pb.go index 87c60ff1..4d32a173 100644 --- a/errors/ad_error.pb.go +++ b/errors/ad_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_error.proto +// source: google/ads/googleads/v22/errors/ad_error.proto package errors @@ -711,11 +711,11 @@ func (x AdErrorEnum_AdError) String() string { } func (AdErrorEnum_AdError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_error_proto_enumTypes[0].Descriptor() } func (AdErrorEnum_AdError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_error_proto_enumTypes[0] } func (x AdErrorEnum_AdError) Number() protoreflect.EnumNumber { @@ -724,7 +724,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_v21_errors_ad_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_ad_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible ad errors. @@ -736,7 +736,7 @@ type AdErrorEnum struct { func (x *AdErrorEnum) Reset() { *x = AdErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_ad_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -748,7 +748,7 @@ func (x *AdErrorEnum) String() string { func (*AdErrorEnum) ProtoMessage() {} func (x *AdErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -761,17 +761,17 @@ func (x *AdErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdErrorEnum.ProtoReflect.Descriptor instead. func (*AdErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x29, 0x0a, 0x0b, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xfc, 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, @@ -1103,41 +1103,41 @@ var file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc = string([]byte{ 0x44, 0x53, 0x5f, 0x53, 0x45, 0x51, 0x55, 0x45, 0x4e, 0x43, 0x49, 0x4e, 0x47, 0x10, 0x9d, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0c, 0x41, 0x64, 0x45, 0x72, 0x72, 0x6f, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_error_proto_goTypes = []any{ - (AdErrorEnum_AdError)(0), // 0: google.ads.googleads.v21.errors.AdErrorEnum.AdError - (*AdErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdErrorEnum +var file_google_ads_googleads_v22_errors_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_error_proto_goTypes = []any{ + (AdErrorEnum_AdError)(0), // 0: google.ads.googleads.v22.errors.AdErrorEnum.AdError + (*AdErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdErrorEnum } -var file_google_ads_googleads_v21_errors_ad_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -1145,27 +1145,27 @@ var file_google_ads_googleads_v21_errors_ad_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 ef29384a..b8455e05 100644 --- a/errors/ad_group_ad_error.pb.go +++ b/errors/ad_group_ad_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_ad_error.proto +// source: google/ads/googleads/v22/errors/ad_group_ad_error.proto package errors @@ -115,11 +115,11 @@ func (x AdGroupAdErrorEnum_AdGroupAdError) String() string { } func (AdGroupAdErrorEnum_AdGroupAdError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_enumTypes[0].Descriptor() } func (AdGroupAdErrorEnum_AdGroupAdError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_enumTypes[0] } func (x AdGroupAdErrorEnum_AdGroupAdError) Number() protoreflect.EnumNumber { @@ -128,7 +128,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_v21_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *AdGroupAdErrorEnum) String() string { func (*AdGroupAdErrorEnum) ProtoMessage() {} func (x *AdGroupAdErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,18 +165,18 @@ func (x *AdGroupAdErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupAdErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_ad_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_ad_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xab, 0x03, 0x0a, 0x12, 0x41, + 0x76, 0x32, 0x32, 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, @@ -205,42 +205,42 @@ var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_goTypes = []any{ - (AdGroupAdErrorEnum_AdGroupAdError)(0), // 0: google.ads.googleads.v21.errors.AdGroupAdErrorEnum.AdGroupAdError - (*AdGroupAdErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupAdErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_goTypes = []any{ + (AdGroupAdErrorEnum_AdGroupAdError)(0), // 0: google.ads.googleads.v22.errors.AdGroupAdErrorEnum.AdGroupAdError + (*AdGroupAdErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupAdErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -248,27 +248,27 @@ var file_google_ads_googleads_v21_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_v21_errors_ad_group_ad_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_ad_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_ad_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_ad_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_ad_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 f51a640a..a8e321b3 100644 --- a/errors/ad_group_bid_modifier_error.pb.go +++ b/errors/ad_group_bid_modifier_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_bid_modifier_error.proto +// source: google/ads/googleads/v22/errors/ad_group_bid_modifier_error.proto package errors @@ -77,11 +77,11 @@ func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) String() string { } func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_enumTypes[0].Descriptor() } func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_enumTypes[0] } func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Number() protoreflect.EnumNumber { @@ -90,7 +90,7 @@ func (x AdGroupBidModifierErrorEnum_AdGroupBidModifierError) Number() protorefle // Deprecated: Use AdGroupBidModifierErrorEnum_AdGroupBidModifierError.Descriptor instead. func (AdGroupBidModifierErrorEnum_AdGroupBidModifierError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *AdGroupBidModifierErrorEnum) String() string { func (*AdGroupBidModifierErrorEnum) ProtoMessage() {} func (x *AdGroupBidModifierErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *AdGroupBidModifierErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupBidModifierErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupBidModifierErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,43 +152,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_goTypes = []any{ - (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 0: google.ads.googleads.v21.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError - (*AdGroupBidModifierErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupBidModifierErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_goTypes = []any{ + (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 0: google.ads.googleads.v22.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError + (*AdGroupBidModifierErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupBidModifierErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -196,27 +196,27 @@ var file_google_ads_googleads_v21_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_v21_errors_ad_group_bid_modifier_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 ac17873d..0848d632 100644 --- a/errors/ad_group_criterion_customizer_error.pb.go +++ b/errors/ad_group_criterion_customizer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_criterion_customizer_error.proto +// source: google/ads/googleads/v22/errors/ad_group_criterion_customizer_error.proto package errors @@ -72,11 +72,11 @@ func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Str } func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_enumTypes[0] } func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) Num // Deprecated: Use AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError.Descriptor instead. func (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *AdGroupCriterionCustomizerErrorEnum) String() string { func (*AdGroupCriterionCustomizerErrorEnum) ProtoMessage() {} func (x *AdGroupCriterionCustomizerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,19 +122,19 @@ func (x *AdGroupCriterionCustomizerErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use AdGroupCriterionCustomizerErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionCustomizerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x84, 0x01, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,43 +145,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x41, 0x64, 0x47, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_goTypes = []any{ - (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 0: google.ads.googleads.v21.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError - (*AdGroupCriterionCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupCriterionCustomizerErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_goTypes = []any{ + (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 0: google.ads.googleads.v22.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError + (*AdGroupCriterionCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupCriterionCustomizerErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 91607a7d..31dae453 100644 --- a/errors/ad_group_criterion_error.pb.go +++ b/errors/ad_group_criterion_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_criterion_error.proto +// source: google/ads/googleads/v22/errors/ad_group_criterion_error.proto package errors @@ -189,11 +189,11 @@ func (x AdGroupCriterionErrorEnum_AdGroupCriterionError) String() string { } func (AdGroupCriterionErrorEnum_AdGroupCriterionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_enumTypes[0].Descriptor() } func (AdGroupCriterionErrorEnum_AdGroupCriterionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_enumTypes[0] } func (x AdGroupCriterionErrorEnum_AdGroupCriterionError) Number() protoreflect.EnumNumber { @@ -202,7 +202,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_v21_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -226,7 +226,7 @@ func (x *AdGroupCriterionErrorEnum) String() string { func (*AdGroupCriterionErrorEnum) ProtoMessage() {} func (x *AdGroupCriterionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -239,18 +239,18 @@ func (x *AdGroupCriterionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupCriterionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_criterion_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_criterion_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -331,42 +331,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_goTypes = []any{ - (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 0: google.ads.googleads.v21.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError - (*AdGroupCriterionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupCriterionErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_goTypes = []any{ + (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 0: google.ads.googleads.v22.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError + (*AdGroupCriterionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupCriterionErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -374,27 +374,27 @@ var file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_criterion_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_criterion_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_criterion_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_criterion_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 45428c0b..979d2314 100644 --- a/errors/ad_group_customizer_error.pb.go +++ b/errors/ad_group_customizer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_customizer_error.proto +// source: google/ads/googleads/v22/errors/ad_group_customizer_error.proto package errors @@ -68,11 +68,11 @@ func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) String() string { } func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_enumTypes[0].Descriptor() } func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_enumTypes[0] } func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Number() protoreflect.EnumNumber { @@ -81,7 +81,7 @@ func (x AdGroupCustomizerErrorEnum_AdGroupCustomizerError) Number() protoreflect // Deprecated: Use AdGroupCustomizerErrorEnum_AdGroupCustomizerError.Descriptor instead. func (AdGroupCustomizerErrorEnum_AdGroupCustomizerError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *AdGroupCustomizerErrorEnum) String() string { func (*AdGroupCustomizerErrorEnum) ProtoMessage() {} func (x *AdGroupCustomizerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,18 +118,18 @@ func (x *AdGroupCustomizerErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCustomizerErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupCustomizerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_customizer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_customizer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -137,42 +137,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_goTypes = []any{ - (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 0: google.ads.googleads.v21.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError - (*AdGroupCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupCustomizerErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_goTypes = []any{ + (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 0: google.ads.googleads.v22.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError + (*AdGroupCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupCustomizerErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -180,27 +180,27 @@ var file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_customizer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_customizer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_customizer_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_customizer_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 f135e578..b59a03c9 100644 --- a/errors/ad_group_error.pb.go +++ b/errors/ad_group_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_error.proto +// source: google/ads/googleads/v22/errors/ad_group_error.proto package errors @@ -156,11 +156,11 @@ func (x AdGroupErrorEnum_AdGroupError) String() string { } func (AdGroupErrorEnum_AdGroupError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_error_proto_enumTypes[0].Descriptor() } func (AdGroupErrorEnum_AdGroupError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_error_proto_enumTypes[0] } func (x AdGroupErrorEnum_AdGroupError) Number() protoreflect.EnumNumber { @@ -169,7 +169,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_v21_errors_ad_group_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible ad group errors. @@ -181,7 +181,7 @@ type AdGroupErrorEnum struct { func (x *AdGroupErrorEnum) Reset() { *x = AdGroupErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_ad_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193,7 +193,7 @@ func (x *AdGroupErrorEnum) String() string { func (*AdGroupErrorEnum) ProtoMessage() {} func (x *AdGroupErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206,17 +206,17 @@ func (x *AdGroupErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xeb, 0x06, 0x0a, 0x10, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xd6, 0x06, 0x0a, 0x0c, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, @@ -274,42 +274,42 @@ var file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc = string([ 0x0a, 0x11, 0x44, 0x55, 0x50, 0x4c, 0x49, 0x43, 0x41, 0x54, 0x45, 0x5f, 0x53, 0x54, 0x45, 0x50, 0x5f, 0x49, 0x44, 0x10, 0x16, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x41, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_error_proto_goTypes = []any{ - (AdGroupErrorEnum_AdGroupError)(0), // 0: google.ads.googleads.v21.errors.AdGroupErrorEnum.AdGroupError - (*AdGroupErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_error_proto_goTypes = []any{ + (AdGroupErrorEnum_AdGroupError)(0), // 0: google.ads.googleads.v22.errors.AdGroupErrorEnum.AdGroupError + (*AdGroupErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -317,27 +317,27 @@ var file_google_ads_googleads_v21_errors_ad_group_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_group_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 3b992b7d..19988426 100644 --- a/errors/ad_group_feed_error.pb.go +++ b/errors/ad_group_feed_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_group_feed_error.proto +// source: google/ads/googleads/v22/errors/ad_group_feed_error.proto package errors @@ -98,11 +98,11 @@ func (x AdGroupFeedErrorEnum_AdGroupFeedError) String() string { } func (AdGroupFeedErrorEnum_AdGroupFeedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_enumTypes[0].Descriptor() } func (AdGroupFeedErrorEnum_AdGroupFeedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_enumTypes[0] } func (x AdGroupFeedErrorEnum_AdGroupFeedError) Number() protoreflect.EnumNumber { @@ -111,7 +111,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_v21_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *AdGroupFeedErrorEnum) String() string { func (*AdGroupFeedErrorEnum) ProtoMessage() {} func (x *AdGroupFeedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,18 +148,18 @@ func (x *AdGroupFeedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupFeedErrorEnum.ProtoReflect.Descriptor instead. func (*AdGroupFeedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_group_feed_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_group_feed_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x02, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,42 +183,42 @@ var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_goTypes = []any{ - (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 0: google.ads.googleads.v21.errors.AdGroupFeedErrorEnum.AdGroupFeedError - (*AdGroupFeedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdGroupFeedErrorEnum +var file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_goTypes = []any{ + (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 0: google.ads.googleads.v22.errors.AdGroupFeedErrorEnum.AdGroupFeedError + (*AdGroupFeedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdGroupFeedErrorEnum } -var file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -226,27 +226,27 @@ var file_google_ads_googleads_v21_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_v21_errors_ad_group_feed_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_group_feed_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_group_feed_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_group_feed_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_group_feed_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 fbb698ad..1b1ccb74 100644 --- a/errors/ad_parameter_error.pb.go +++ b/errors/ad_parameter_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_parameter_error.proto +// source: google/ads/googleads/v22/errors/ad_parameter_error.proto package errors @@ -76,11 +76,11 @@ func (x AdParameterErrorEnum_AdParameterError) String() string { } func (AdParameterErrorEnum_AdParameterError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_parameter_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_parameter_error_proto_enumTypes[0].Descriptor() } func (AdParameterErrorEnum_AdParameterError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_parameter_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_parameter_error_proto_enumTypes[0] } func (x AdParameterErrorEnum_AdParameterError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_parameter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_parameter_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *AdParameterErrorEnum) String() string { func (*AdParameterErrorEnum) ProtoMessage() {} func (x *AdParameterErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_parameter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_parameter_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *AdParameterErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdParameterErrorEnum.ProtoReflect.Descriptor instead. func (*AdParameterErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_parameter_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_parameter_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x93, 0x01, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc = stri 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x41, 0x64, 0x50, 0x61, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_goTypes = []any{ - (AdParameterErrorEnum_AdParameterError)(0), // 0: google.ads.googleads.v21.errors.AdParameterErrorEnum.AdParameterError - (*AdParameterErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdParameterErrorEnum +var file_google_ads_googleads_v22_errors_ad_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_parameter_error_proto_goTypes = []any{ + (AdParameterErrorEnum_AdParameterError)(0), // 0: google.ads.googleads.v22.errors.AdParameterErrorEnum.AdParameterError + (*AdParameterErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdParameterErrorEnum } -var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_errors_ad_parameter_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_parameter_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_parameter_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_parameter_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_parameter_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_parameter_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_parameter_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_parameter_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_parameter_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_parameter_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_parameter_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_parameter_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_parameter_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_parameter_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_parameter_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_parameter_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_parameter_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_parameter_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_parameter_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_depIdxs = nil } diff --git a/errors/ad_sharing_error.pb.go b/errors/ad_sharing_error.pb.go index 9bd933dc..41c485e1 100644 --- a/errors/ad_sharing_error.pb.go +++ b/errors/ad_sharing_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/ad_sharing_error.proto +// source: google/ads/googleads/v22/errors/ad_sharing_error.proto package errors @@ -81,11 +81,11 @@ func (x AdSharingErrorEnum_AdSharingError) String() string { } func (AdSharingErrorEnum_AdSharingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_ad_sharing_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_ad_sharing_error_proto_enumTypes[0].Descriptor() } func (AdSharingErrorEnum_AdSharingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_ad_sharing_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_ad_sharing_error_proto_enumTypes[0] } func (x AdSharingErrorEnum_AdSharingError) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_ad_sharing_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_sharing_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *AdSharingErrorEnum) String() string { func (*AdSharingErrorEnum) ProtoMessage() {} func (x *AdSharingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_ad_sharing_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_ad_sharing_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *AdSharingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdSharingErrorEnum.ProtoReflect.Descriptor instead. func (*AdSharingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_ad_sharing_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_ad_sharing_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa9, 0x01, 0x0a, 0x12, 0x41, 0x64, + 0x32, 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x41, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_goTypes = []any{ - (AdSharingErrorEnum_AdSharingError)(0), // 0: google.ads.googleads.v21.errors.AdSharingErrorEnum.AdSharingError - (*AdSharingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdSharingErrorEnum +var file_google_ads_googleads_v22_errors_ad_sharing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_ad_sharing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_ad_sharing_error_proto_goTypes = []any{ + (AdSharingErrorEnum_AdSharingError)(0), // 0: google.ads.googleads.v22.errors.AdSharingErrorEnum.AdSharingError + (*AdSharingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdSharingErrorEnum } -var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_errors_ad_sharing_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_ad_sharing_error_proto_init() } -func file_google_ads_googleads_v21_errors_ad_sharing_error_proto_init() { - if File_google_ads_googleads_v21_errors_ad_sharing_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_ad_sharing_error_proto_init() } +func file_google_ads_googleads_v22_errors_ad_sharing_error_proto_init() { + if File_google_ads_googleads_v22_errors_ad_sharing_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_ad_sharing_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_ad_sharing_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_ad_sharing_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_ad_sharing_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_ad_sharing_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_ad_sharing_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_ad_sharing_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_ad_sharing_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_ad_sharing_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_ad_sharing_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_ad_sharing_error_proto = out.File - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_ad_sharing_error_proto = out.File + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_depIdxs = nil } diff --git a/errors/adx_error.pb.go b/errors/adx_error.pb.go index 703657bc..2212f846 100644 --- a/errors/adx_error.pb.go +++ b/errors/adx_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/adx_error.proto +// source: google/ads/googleads/v22/errors/adx_error.proto package errors @@ -72,11 +72,11 @@ func (x AdxErrorEnum_AdxError) String() string { } func (AdxErrorEnum_AdxError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_adx_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_adx_error_proto_enumTypes[0].Descriptor() } func (AdxErrorEnum_AdxError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_adx_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_adx_error_proto_enumTypes[0] } func (x AdxErrorEnum_AdxError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_adx_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_adx_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_adx_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *AdxErrorEnum) String() string { func (*AdxErrorEnum) ProtoMessage() {} func (x *AdxErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_adx_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_adx_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *AdxErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AdxErrorEnum.ProtoReflect.Descriptor instead. func (*AdxErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_adx_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_adx_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_adx_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_adx_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_adx_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -140,41 +140,41 @@ var file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0d, 0x41, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_adx_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_adx_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_adx_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_adx_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_adx_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_adx_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_adx_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_adx_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_adx_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_adx_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_adx_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_adx_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_adx_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_adx_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_adx_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_adx_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_adx_error_proto_goTypes = []any{ - (AdxErrorEnum_AdxError)(0), // 0: google.ads.googleads.v21.errors.AdxErrorEnum.AdxError - (*AdxErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AdxErrorEnum +var file_google_ads_googleads_v22_errors_adx_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_adx_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_adx_error_proto_goTypes = []any{ + (AdxErrorEnum_AdxError)(0), // 0: google.ads.googleads.v22.errors.AdxErrorEnum.AdxError + (*AdxErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AdxErrorEnum } -var file_google_ads_googleads_v21_errors_adx_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_errors_adx_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_adx_error_proto_init() } -func file_google_ads_googleads_v21_errors_adx_error_proto_init() { - if File_google_ads_googleads_v21_errors_adx_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_adx_error_proto_init() } +func file_google_ads_googleads_v22_errors_adx_error_proto_init() { + if File_google_ads_googleads_v22_errors_adx_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_adx_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_adx_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_adx_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_adx_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_adx_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_adx_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_adx_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_adx_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_adx_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_adx_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_adx_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_adx_error_proto = out.File - file_google_ads_googleads_v21_errors_adx_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_adx_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_adx_error_proto = out.File + file_google_ads_googleads_v22_errors_adx_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_adx_error_proto_depIdxs = nil } diff --git a/errors/asset_error.pb.go b/errors/asset_error.pb.go index 8ef81b38..8a83b030 100644 --- a/errors/asset_error.pb.go +++ b/errors/asset_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_error.proto +// source: google/ads/googleads/v22/errors/asset_error.proto package errors @@ -250,11 +250,11 @@ func (x AssetErrorEnum_AssetError) String() string { } func (AssetErrorEnum_AssetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_error_proto_enumTypes[0].Descriptor() } func (AssetErrorEnum_AssetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_error_proto_enumTypes[0] } func (x AssetErrorEnum_AssetError) Number() protoreflect.EnumNumber { @@ -263,7 +263,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_v21_errors_asset_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_asset_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible asset errors. @@ -275,7 +275,7 @@ type AssetErrorEnum struct { func (x *AssetErrorEnum) Reset() { *x = AssetErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -287,7 +287,7 @@ func (x *AssetErrorEnum) String() string { func (*AssetErrorEnum) ProtoMessage() {} func (x *AssetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -300,17 +300,17 @@ func (x *AssetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetErrorEnum.ProtoReflect.Descriptor instead. func (*AssetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x0e, 0x0a, 0x0e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf9, 0x0d, 0x0a, 0x0a, 0x41, 0x73, 0x73, 0x65, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, @@ -426,41 +426,41 @@ var file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc = string([]by 0x44, 0x45, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x4d, 0x41, 0x54, 0x10, 0x2d, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0f, 0x41, 0x73, 0x73, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_error_proto_goTypes = []any{ - (AssetErrorEnum_AssetError)(0), // 0: google.ads.googleads.v21.errors.AssetErrorEnum.AssetError - (*AssetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetErrorEnum +var file_google_ads_googleads_v22_errors_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_error_proto_goTypes = []any{ + (AssetErrorEnum_AssetError)(0), // 0: google.ads.googleads.v22.errors.AssetErrorEnum.AssetError + (*AssetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetErrorEnum } -var file_google_ads_googleads_v21_errors_asset_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -468,27 +468,27 @@ var file_google_ads_googleads_v21_errors_asset_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_asset_error_proto_depIdxs = nil } diff --git a/errors/asset_generation_error.pb.go b/errors/asset_generation_error.pb.go new file mode 100644 index 00000000..366cc6b1 --- /dev/null +++ b/errors/asset_generation_error.pb.go @@ -0,0 +1,434 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/errors/asset_generation_error.proto + +package errors + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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 GenAI asset generation errors. +type AssetGenerationErrorEnum_AssetGenerationError int32 + +const ( + // Enum unspecified. + AssetGenerationErrorEnum_UNSPECIFIED AssetGenerationErrorEnum_AssetGenerationError = 0 + // The received error code is not known in this version. + AssetGenerationErrorEnum_UNKNOWN AssetGenerationErrorEnum_AssetGenerationError = 1 + // No assets were generated for the given request. + AssetGenerationErrorEnum_NO_ASSETS_GENERATED AssetGenerationErrorEnum_AssetGenerationError = 2 + // A final URL is required but was not provided, and could not be sourced + // from the existing generation context because no existing generation + // context was provided. + AssetGenerationErrorEnum_FINAL_URL_REQUIRED AssetGenerationErrorEnum_AssetGenerationError = 3 + // A final URL is required but was not provided, and could not be sourced + // from the provided existing generation context. + AssetGenerationErrorEnum_GENERATION_CONTEXT_MISSING_FINAL_URL AssetGenerationErrorEnum_AssetGenerationError = 4 + // The provided final URL is considered sensitive, and assets cannot be + // generated. + AssetGenerationErrorEnum_FINAL_URL_SENSITIVE AssetGenerationErrorEnum_AssetGenerationError = 5 + // The language of the provided final URL is not supported. + AssetGenerationErrorEnum_FINAL_URL_UNSUPPORTED_LANGUAGE AssetGenerationErrorEnum_AssetGenerationError = 6 + // The provided final URL was not indexed or could otherwise not be + // processed. + AssetGenerationErrorEnum_FINAL_URL_UNAVAILABLE AssetGenerationErrorEnum_AssetGenerationError = 7 + // Campaign type is required but was not provided, and could not be sourced + // from the existing generation context because no existing generation + // context was provided. + AssetGenerationErrorEnum_CAMPAIGN_TYPE_REQUIRED AssetGenerationErrorEnum_AssetGenerationError = 8 + // The provided campaign type is not supported for this asset generation + // operation. + AssetGenerationErrorEnum_UNSUPPORTED_CAMPAIGN_TYPE AssetGenerationErrorEnum_AssetGenerationError = 9 + // The provided field type is not supported for this asset generation + // operation. + AssetGenerationErrorEnum_UNSUPPORTED_FIELD_TYPE AssetGenerationErrorEnum_AssetGenerationError = 10 + // The provided field type is not supported for the given campaign type. + AssetGenerationErrorEnum_UNSUPPORTED_FIELD_TYPE_FOR_CAMPAIGN_TYPE AssetGenerationErrorEnum_AssetGenerationError = 11 + // The language of the provided freeform prompt is not supported. + AssetGenerationErrorEnum_FREEFORM_PROMPT_UNSUPPORTED_LANGUAGE AssetGenerationErrorEnum_AssetGenerationError = 12 + // The provided freeform prompt is considered sensitive, and assets cannot + // be generated. + AssetGenerationErrorEnum_FREEFORM_PROMPT_SENSITIVE AssetGenerationErrorEnum_AssetGenerationError = 13 + // The provided image file size exceeds the limit. + AssetGenerationErrorEnum_INPUT_IMAGE_FILE_SIZE_TOO_LARGE AssetGenerationErrorEnum_AssetGenerationError = 14 + // The provided image is empty. + AssetGenerationErrorEnum_INPUT_IMAGE_EMPTY AssetGenerationErrorEnum_AssetGenerationError = 15 + // Exactly one generation type must be provided. + AssetGenerationErrorEnum_GENERATION_TYPE_REQUIRED AssetGenerationErrorEnum_AssetGenerationError = 16 + // Too many keywords provided in request. + AssetGenerationErrorEnum_TOO_MANY_KEYWORDS AssetGenerationErrorEnum_AssetGenerationError = 17 + // A provided keyword does not have a valid length. + AssetGenerationErrorEnum_KEYWORD_INVALID_LENGTH AssetGenerationErrorEnum_AssetGenerationError = 18 + // All keywords were filtered out. + AssetGenerationErrorEnum_NO_VALID_KEYWORDS AssetGenerationErrorEnum_AssetGenerationError = 19 + // The provided freeform prompt does not have a valid length. + AssetGenerationErrorEnum_FREEFORM_PROMPT_INVALID_LENGTH AssetGenerationErrorEnum_AssetGenerationError = 20 + // The provided freeform prompt references children. + AssetGenerationErrorEnum_FREEFORM_PROMPT_REFERENCES_CHILDREN AssetGenerationErrorEnum_AssetGenerationError = 21 + // The provided freeform prompt references specific people. + AssetGenerationErrorEnum_FREEFORM_PROMPT_REFERENCES_SPECIFIC_PEOPLE AssetGenerationErrorEnum_AssetGenerationError = 22 + // The provided freeform prompt violates Ads Policy. + AssetGenerationErrorEnum_FREEFORM_PROMPT_VIOLATES_ADS_POLICY AssetGenerationErrorEnum_AssetGenerationError = 23 + // The provided freeform prompt contains brand content. + AssetGenerationErrorEnum_FREEFORM_PROMPT_BRAND_CONTENT AssetGenerationErrorEnum_AssetGenerationError = 24 + // The provided image depicts children. + AssetGenerationErrorEnum_INPUT_IMAGE_DEPICTS_CHILDREN AssetGenerationErrorEnum_AssetGenerationError = 25 + // The provided image contains brand content. + AssetGenerationErrorEnum_INPUT_IMAGE_CONTAINS_BRAND_CONTENT AssetGenerationErrorEnum_AssetGenerationError = 26 + // The provided image contains sensitive subject matter. + AssetGenerationErrorEnum_INPUT_IMAGE_SENSITIVE AssetGenerationErrorEnum_AssetGenerationError = 27 + // The provided image may violate Google Ads policies. + AssetGenerationErrorEnum_INPUT_IMAGE_VIOLATES_POLICY AssetGenerationErrorEnum_AssetGenerationError = 28 + // All output images were filtered out because they included depictions of + // children. + AssetGenerationErrorEnum_ALL_OUTPUT_IMAGES_FILTERED_OUT_CHILDREN_DEPICTION AssetGenerationErrorEnum_AssetGenerationError = 29 + // All output images were filtered out because they included depictions of + // specific people. + AssetGenerationErrorEnum_ALL_OUTPUT_IMAGES_FILTERED_OUT_SPECIFIC_PEOPLE AssetGenerationErrorEnum_AssetGenerationError = 30 + // All output images were filtered out for a reason not covered by a more + // specific error code. + AssetGenerationErrorEnum_ALL_OUTPUT_IMAGES_FILTERED_OUT AssetGenerationErrorEnum_AssetGenerationError = 31 + // At least one input image is required for certain requests. + AssetGenerationErrorEnum_INPUT_IMAGE_REQUIRED AssetGenerationErrorEnum_AssetGenerationError = 32 + // The provided image is of an unsupported type. + AssetGenerationErrorEnum_INPUT_IMAGE_UNSUPPORTED_IMAGE_TYPE AssetGenerationErrorEnum_AssetGenerationError = 33 + // Asset Group could not be found with the provided ID. + AssetGenerationErrorEnum_CONTEXT_ASSET_GROUP_NOT_FOUND AssetGenerationErrorEnum_AssetGenerationError = 34 + // Ad Group Ad could not be found with the provided ID combination. + AssetGenerationErrorEnum_CONTEXT_AD_GROUP_AD_NOT_FOUND AssetGenerationErrorEnum_AssetGenerationError = 35 + // Could not find Campaign associated with the provided generation context. + AssetGenerationErrorEnum_CONTEXT_CAMPAIGN_NOT_FOUND AssetGenerationErrorEnum_AssetGenerationError = 36 +) + +// Enum value maps for AssetGenerationErrorEnum_AssetGenerationError. +var ( + AssetGenerationErrorEnum_AssetGenerationError_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 2: "NO_ASSETS_GENERATED", + 3: "FINAL_URL_REQUIRED", + 4: "GENERATION_CONTEXT_MISSING_FINAL_URL", + 5: "FINAL_URL_SENSITIVE", + 6: "FINAL_URL_UNSUPPORTED_LANGUAGE", + 7: "FINAL_URL_UNAVAILABLE", + 8: "CAMPAIGN_TYPE_REQUIRED", + 9: "UNSUPPORTED_CAMPAIGN_TYPE", + 10: "UNSUPPORTED_FIELD_TYPE", + 11: "UNSUPPORTED_FIELD_TYPE_FOR_CAMPAIGN_TYPE", + 12: "FREEFORM_PROMPT_UNSUPPORTED_LANGUAGE", + 13: "FREEFORM_PROMPT_SENSITIVE", + 14: "INPUT_IMAGE_FILE_SIZE_TOO_LARGE", + 15: "INPUT_IMAGE_EMPTY", + 16: "GENERATION_TYPE_REQUIRED", + 17: "TOO_MANY_KEYWORDS", + 18: "KEYWORD_INVALID_LENGTH", + 19: "NO_VALID_KEYWORDS", + 20: "FREEFORM_PROMPT_INVALID_LENGTH", + 21: "FREEFORM_PROMPT_REFERENCES_CHILDREN", + 22: "FREEFORM_PROMPT_REFERENCES_SPECIFIC_PEOPLE", + 23: "FREEFORM_PROMPT_VIOLATES_ADS_POLICY", + 24: "FREEFORM_PROMPT_BRAND_CONTENT", + 25: "INPUT_IMAGE_DEPICTS_CHILDREN", + 26: "INPUT_IMAGE_CONTAINS_BRAND_CONTENT", + 27: "INPUT_IMAGE_SENSITIVE", + 28: "INPUT_IMAGE_VIOLATES_POLICY", + 29: "ALL_OUTPUT_IMAGES_FILTERED_OUT_CHILDREN_DEPICTION", + 30: "ALL_OUTPUT_IMAGES_FILTERED_OUT_SPECIFIC_PEOPLE", + 31: "ALL_OUTPUT_IMAGES_FILTERED_OUT", + 32: "INPUT_IMAGE_REQUIRED", + 33: "INPUT_IMAGE_UNSUPPORTED_IMAGE_TYPE", + 34: "CONTEXT_ASSET_GROUP_NOT_FOUND", + 35: "CONTEXT_AD_GROUP_AD_NOT_FOUND", + 36: "CONTEXT_CAMPAIGN_NOT_FOUND", + } + AssetGenerationErrorEnum_AssetGenerationError_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "NO_ASSETS_GENERATED": 2, + "FINAL_URL_REQUIRED": 3, + "GENERATION_CONTEXT_MISSING_FINAL_URL": 4, + "FINAL_URL_SENSITIVE": 5, + "FINAL_URL_UNSUPPORTED_LANGUAGE": 6, + "FINAL_URL_UNAVAILABLE": 7, + "CAMPAIGN_TYPE_REQUIRED": 8, + "UNSUPPORTED_CAMPAIGN_TYPE": 9, + "UNSUPPORTED_FIELD_TYPE": 10, + "UNSUPPORTED_FIELD_TYPE_FOR_CAMPAIGN_TYPE": 11, + "FREEFORM_PROMPT_UNSUPPORTED_LANGUAGE": 12, + "FREEFORM_PROMPT_SENSITIVE": 13, + "INPUT_IMAGE_FILE_SIZE_TOO_LARGE": 14, + "INPUT_IMAGE_EMPTY": 15, + "GENERATION_TYPE_REQUIRED": 16, + "TOO_MANY_KEYWORDS": 17, + "KEYWORD_INVALID_LENGTH": 18, + "NO_VALID_KEYWORDS": 19, + "FREEFORM_PROMPT_INVALID_LENGTH": 20, + "FREEFORM_PROMPT_REFERENCES_CHILDREN": 21, + "FREEFORM_PROMPT_REFERENCES_SPECIFIC_PEOPLE": 22, + "FREEFORM_PROMPT_VIOLATES_ADS_POLICY": 23, + "FREEFORM_PROMPT_BRAND_CONTENT": 24, + "INPUT_IMAGE_DEPICTS_CHILDREN": 25, + "INPUT_IMAGE_CONTAINS_BRAND_CONTENT": 26, + "INPUT_IMAGE_SENSITIVE": 27, + "INPUT_IMAGE_VIOLATES_POLICY": 28, + "ALL_OUTPUT_IMAGES_FILTERED_OUT_CHILDREN_DEPICTION": 29, + "ALL_OUTPUT_IMAGES_FILTERED_OUT_SPECIFIC_PEOPLE": 30, + "ALL_OUTPUT_IMAGES_FILTERED_OUT": 31, + "INPUT_IMAGE_REQUIRED": 32, + "INPUT_IMAGE_UNSUPPORTED_IMAGE_TYPE": 33, + "CONTEXT_ASSET_GROUP_NOT_FOUND": 34, + "CONTEXT_AD_GROUP_AD_NOT_FOUND": 35, + "CONTEXT_CAMPAIGN_NOT_FOUND": 36, + } +) + +func (x AssetGenerationErrorEnum_AssetGenerationError) Enum() *AssetGenerationErrorEnum_AssetGenerationError { + p := new(AssetGenerationErrorEnum_AssetGenerationError) + *p = x + return p +} + +func (x AssetGenerationErrorEnum_AssetGenerationError) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (AssetGenerationErrorEnum_AssetGenerationError) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_errors_asset_generation_error_proto_enumTypes[0].Descriptor() +} + +func (AssetGenerationErrorEnum_AssetGenerationError) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_errors_asset_generation_error_proto_enumTypes[0] +} + +func (x AssetGenerationErrorEnum_AssetGenerationError) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use AssetGenerationErrorEnum_AssetGenerationError.Descriptor instead. +func (AssetGenerationErrorEnum_AssetGenerationError) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing GenAI asset generation errors. +type AssetGenerationErrorEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *AssetGenerationErrorEnum) Reset() { + *x = AssetGenerationErrorEnum{} + mi := &file_google_ads_googleads_v22_errors_asset_generation_error_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *AssetGenerationErrorEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AssetGenerationErrorEnum) ProtoMessage() {} + +func (x *AssetGenerationErrorEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_errors_asset_generation_error_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use AssetGenerationErrorEnum.ProtoReflect.Descriptor instead. +func (*AssetGenerationErrorEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_errors_asset_generation_error_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x65, 0x6e, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0xfc, 0x09, 0x0a, 0x18, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xdf, 0x09, 0x0a, + 0x14, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 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, 0x17, 0x0a, 0x13, 0x4e, 0x4f, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x53, + 0x5f, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x45, 0x44, 0x10, 0x02, 0x12, 0x16, 0x0a, 0x12, + 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, + 0x45, 0x44, 0x10, 0x03, 0x12, 0x28, 0x0a, 0x24, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x49, + 0x4f, 0x4e, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x4d, 0x49, 0x53, 0x53, 0x49, + 0x4e, 0x47, 0x5f, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x10, 0x04, 0x12, 0x17, + 0x0a, 0x13, 0x46, 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x53, 0x45, 0x4e, 0x53, + 0x49, 0x54, 0x49, 0x56, 0x45, 0x10, 0x05, 0x12, 0x22, 0x0a, 0x1e, 0x46, 0x49, 0x4e, 0x41, 0x4c, + 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, + 0x5f, 0x4c, 0x41, 0x4e, 0x47, 0x55, 0x41, 0x47, 0x45, 0x10, 0x06, 0x12, 0x19, 0x0a, 0x15, 0x46, + 0x49, 0x4e, 0x41, 0x4c, 0x5f, 0x55, 0x52, 0x4c, 0x5f, 0x55, 0x4e, 0x41, 0x56, 0x41, 0x49, 0x4c, + 0x41, 0x42, 0x4c, 0x45, 0x10, 0x07, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, + 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, + 0x10, 0x08, 0x12, 0x1d, 0x0a, 0x19, 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, + 0x44, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, + 0x09, 0x12, 0x1a, 0x0a, 0x16, 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, + 0x5f, 0x46, 0x49, 0x45, 0x4c, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x0a, 0x12, 0x2c, 0x0a, + 0x28, 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x49, 0x45, + 0x4c, 0x44, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x43, 0x41, 0x4d, 0x50, + 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x0b, 0x12, 0x28, 0x0a, 0x24, 0x46, + 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, 0x55, + 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x4c, 0x41, 0x4e, 0x47, 0x55, + 0x41, 0x47, 0x45, 0x10, 0x0c, 0x12, 0x1d, 0x0a, 0x19, 0x46, 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, + 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x49, 0x54, 0x49, + 0x56, 0x45, 0x10, 0x0d, 0x12, 0x23, 0x0a, 0x1f, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, + 0x41, 0x47, 0x45, 0x5f, 0x46, 0x49, 0x4c, 0x45, 0x5f, 0x53, 0x49, 0x5a, 0x45, 0x5f, 0x54, 0x4f, + 0x4f, 0x5f, 0x4c, 0x41, 0x52, 0x47, 0x45, 0x10, 0x0e, 0x12, 0x15, 0x0a, 0x11, 0x49, 0x4e, 0x50, + 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, 0x45, 0x4d, 0x50, 0x54, 0x59, 0x10, 0x0f, + 0x12, 0x1c, 0x0a, 0x18, 0x47, 0x45, 0x4e, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x54, + 0x59, 0x50, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x10, 0x12, 0x15, + 0x0a, 0x11, 0x54, 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, + 0x52, 0x44, 0x53, 0x10, 0x11, 0x12, 0x1a, 0x0a, 0x16, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44, + 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x4c, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, + 0x12, 0x12, 0x15, 0x0a, 0x11, 0x4e, 0x4f, 0x5f, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x4b, 0x45, + 0x59, 0x57, 0x4f, 0x52, 0x44, 0x53, 0x10, 0x13, 0x12, 0x22, 0x0a, 0x1e, 0x46, 0x52, 0x45, 0x45, + 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, 0x49, 0x4e, 0x56, 0x41, + 0x4c, 0x49, 0x44, 0x5f, 0x4c, 0x45, 0x4e, 0x47, 0x54, 0x48, 0x10, 0x14, 0x12, 0x27, 0x0a, 0x23, + 0x46, 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, + 0x52, 0x45, 0x46, 0x45, 0x52, 0x45, 0x4e, 0x43, 0x45, 0x53, 0x5f, 0x43, 0x48, 0x49, 0x4c, 0x44, + 0x52, 0x45, 0x4e, 0x10, 0x15, 0x12, 0x2e, 0x0a, 0x2a, 0x46, 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, + 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, 0x52, 0x45, 0x46, 0x45, 0x52, 0x45, 0x4e, + 0x43, 0x45, 0x53, 0x5f, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x43, 0x5f, 0x50, 0x45, 0x4f, + 0x50, 0x4c, 0x45, 0x10, 0x16, 0x12, 0x27, 0x0a, 0x23, 0x46, 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, + 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, 0x54, 0x5f, 0x56, 0x49, 0x4f, 0x4c, 0x41, 0x54, 0x45, + 0x53, 0x5f, 0x41, 0x44, 0x53, 0x5f, 0x50, 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x10, 0x17, 0x12, 0x21, + 0x0a, 0x1d, 0x46, 0x52, 0x45, 0x45, 0x46, 0x4f, 0x52, 0x4d, 0x5f, 0x50, 0x52, 0x4f, 0x4d, 0x50, + 0x54, 0x5f, 0x42, 0x52, 0x41, 0x4e, 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10, + 0x18, 0x12, 0x20, 0x0a, 0x1c, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, + 0x5f, 0x44, 0x45, 0x50, 0x49, 0x43, 0x54, 0x53, 0x5f, 0x43, 0x48, 0x49, 0x4c, 0x44, 0x52, 0x45, + 0x4e, 0x10, 0x19, 0x12, 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, + 0x47, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x41, 0x49, 0x4e, 0x53, 0x5f, 0x42, 0x52, 0x41, 0x4e, + 0x44, 0x5f, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x4e, 0x54, 0x10, 0x1a, 0x12, 0x19, 0x0a, 0x15, 0x49, + 0x4e, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, 0x53, 0x45, 0x4e, 0x53, 0x49, + 0x54, 0x49, 0x56, 0x45, 0x10, 0x1b, 0x12, 0x1f, 0x0a, 0x1b, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, + 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, 0x56, 0x49, 0x4f, 0x4c, 0x41, 0x54, 0x45, 0x53, 0x5f, 0x50, + 0x4f, 0x4c, 0x49, 0x43, 0x59, 0x10, 0x1c, 0x12, 0x35, 0x0a, 0x31, 0x41, 0x4c, 0x4c, 0x5f, 0x4f, + 0x55, 0x54, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x53, 0x5f, 0x46, 0x49, 0x4c, + 0x54, 0x45, 0x52, 0x45, 0x44, 0x5f, 0x4f, 0x55, 0x54, 0x5f, 0x43, 0x48, 0x49, 0x4c, 0x44, 0x52, + 0x45, 0x4e, 0x5f, 0x44, 0x45, 0x50, 0x49, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x1d, 0x12, 0x32, + 0x0a, 0x2e, 0x41, 0x4c, 0x4c, 0x5f, 0x4f, 0x55, 0x54, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, + 0x47, 0x45, 0x53, 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x45, 0x44, 0x5f, 0x4f, 0x55, 0x54, + 0x5f, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x43, 0x5f, 0x50, 0x45, 0x4f, 0x50, 0x4c, 0x45, + 0x10, 0x1e, 0x12, 0x22, 0x0a, 0x1e, 0x41, 0x4c, 0x4c, 0x5f, 0x4f, 0x55, 0x54, 0x50, 0x55, 0x54, + 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x53, 0x5f, 0x46, 0x49, 0x4c, 0x54, 0x45, 0x52, 0x45, 0x44, + 0x5f, 0x4f, 0x55, 0x54, 0x10, 0x1f, 0x12, 0x18, 0x0a, 0x14, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, + 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x20, + 0x12, 0x26, 0x0a, 0x22, 0x49, 0x4e, 0x50, 0x55, 0x54, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x5f, + 0x55, 0x4e, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x49, 0x4d, 0x41, 0x47, + 0x45, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x21, 0x12, 0x21, 0x0a, 0x1d, 0x43, 0x4f, 0x4e, 0x54, + 0x45, 0x58, 0x54, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, + 0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x22, 0x12, 0x21, 0x0a, 0x1d, 0x43, + 0x4f, 0x4e, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, + 0x41, 0x44, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x23, 0x12, 0x1e, + 0x0a, 0x1a, 0x43, 0x4f, 0x4e, 0x54, 0x45, 0x58, 0x54, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, + 0x47, 0x4e, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x24, 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, 0x32, 0x32, 0x2e, + 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, + 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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, + 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, + 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDescData +} + +var file_google_ads_googleads_v22_errors_asset_generation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_generation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_generation_error_proto_goTypes = []any{ + (AssetGenerationErrorEnum_AssetGenerationError)(0), // 0: google.ads.googleads.v22.errors.AssetGenerationErrorEnum.AssetGenerationError + (*AssetGenerationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetGenerationErrorEnum +} +var file_google_ads_googleads_v22_errors_asset_generation_error_proto_depIdxs = []int32{ + 0, // [0:0] is the sub-list for method 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_v22_errors_asset_generation_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_generation_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_generation_error_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_generation_error_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_errors_asset_generation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_generation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_generation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_generation_error_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_errors_asset_generation_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_generation_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_asset_generation_error_proto_depIdxs = nil +} diff --git a/errors/asset_group_asset_error.pb.go b/errors/asset_group_asset_error.pb.go index 07dbe017..556c3790 100644 --- a/errors/asset_group_asset_error.pb.go +++ b/errors/asset_group_asset_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_group_asset_error.proto +// source: google/ads/googleads/v22/errors/asset_group_asset_error.proto package errors @@ -85,11 +85,11 @@ func (x AssetGroupAssetErrorEnum_AssetGroupAssetError) String() string { } func (AssetGroupAssetErrorEnum_AssetGroupAssetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_enumTypes[0].Descriptor() } func (AssetGroupAssetErrorEnum_AssetGroupAssetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_enumTypes[0] } func (x AssetGroupAssetErrorEnum_AssetGroupAssetError) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *AssetGroupAssetErrorEnum) String() string { func (*AssetGroupAssetErrorEnum) ProtoMessage() {} func (x *AssetGroupAssetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *AssetGroupAssetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAssetErrorEnum.ProtoReflect.Descriptor instead. func (*AssetGroupAssetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_group_asset_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_group_asset_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_goTypes = []any{ - (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 0: google.ads.googleads.v21.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError - (*AssetGroupAssetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetGroupAssetErrorEnum +var file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_goTypes = []any{ + (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 0: google.ads.googleads.v22.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError + (*AssetGroupAssetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetGroupAssetErrorEnum } -var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_group_asset_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_group_asset_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_group_asset_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_group_asset_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 280cb895..5fa641a0 100644 --- a/errors/asset_group_error.pb.go +++ b/errors/asset_group_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_group_error.proto +// source: google/ads/googleads/v22/errors/asset_group_error.proto package errors @@ -132,11 +132,11 @@ func (x AssetGroupErrorEnum_AssetGroupError) String() string { } func (AssetGroupErrorEnum_AssetGroupError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_group_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_group_error_proto_enumTypes[0].Descriptor() } func (AssetGroupErrorEnum_AssetGroupError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_group_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_group_error_proto_enumTypes[0] } func (x AssetGroupErrorEnum_AssetGroupError) Number() protoreflect.EnumNumber { @@ -145,7 +145,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_v21_errors_asset_group_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169,7 +169,7 @@ func (x *AssetGroupErrorEnum) String() string { func (*AssetGroupErrorEnum) ProtoMessage() {} func (x *AssetGroupErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182,18 +182,18 @@ func (x *AssetGroupErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupErrorEnum.ProtoReflect.Descriptor instead. func (*AssetGroupErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_group_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_group_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9d, 0x05, 0x0a, 0x13, 0x41, + 0x76, 0x32, 0x32, 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, @@ -237,42 +237,42 @@ var file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_error_proto_goTypes = []any{ - (AssetGroupErrorEnum_AssetGroupError)(0), // 0: google.ads.googleads.v21.errors.AssetGroupErrorEnum.AssetGroupError - (*AssetGroupErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetGroupErrorEnum +var file_google_ads_googleads_v22_errors_asset_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_error_proto_goTypes = []any{ + (AssetGroupErrorEnum_AssetGroupError)(0), // 0: google.ads.googleads.v22.errors.AssetGroupErrorEnum.AssetGroupError + (*AssetGroupErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetGroupErrorEnum } -var file_google_ads_googleads_v21_errors_asset_group_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -280,27 +280,27 @@ var file_google_ads_googleads_v21_errors_asset_group_error_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_group_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_group_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_group_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_group_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_group_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_group_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_group_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_group_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_group_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_group_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_group_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_group_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_group_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_group_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_group_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_group_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_group_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_group_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_group_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 fab96b62..3336dffc 100644 --- a/errors/asset_group_listing_group_filter_error.pb.go +++ b/errors/asset_group_listing_group_filter_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_group_listing_group_filter_error.proto +// source: google/ads/googleads/v22/errors/asset_group_listing_group_filter_error.proto package errors @@ -165,11 +165,11 @@ func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) } func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_enumTypes[0].Descriptor() } func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_enumTypes[0] } func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) Number() protoreflect.EnumNumber { @@ -178,7 +178,7 @@ func (x AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) // Deprecated: Use AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError.Descriptor instead. func (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible asset group listing group filter @@ -191,7 +191,7 @@ type AssetGroupListingGroupFilterErrorEnum struct { func (x *AssetGroupListingGroupFilterErrorEnum) Reset() { *x = AssetGroupListingGroupFilterErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203,7 +203,7 @@ func (x *AssetGroupListingGroupFilterErrorEnum) String() string { func (*AssetGroupListingGroupFilterErrorEnum) ProtoMessage() {} func (x *AssetGroupListingGroupFilterErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -216,19 +216,19 @@ func (x *AssetGroupListingGroupFilterErrorEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use AssetGroupListingGroupFilterErrorEnum.ProtoReflect.Descriptor instead. func (*AssetGroupListingGroupFilterErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc3, 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, 0x99, 0x07, 0x0a, 0x21, 0x41, 0x73, @@ -291,43 +291,43 @@ var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_ 0x4c, 0x49, 0x44, 0x5f, 0x42, 0x45, 0x46, 0x4f, 0x52, 0x45, 0x5f, 0x4d, 0x55, 0x54, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x18, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x26, 0x41, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_goTypes = []any{ - (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 0: google.ads.googleads.v21.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError - (*AssetGroupListingGroupFilterErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetGroupListingGroupFilterErrorEnum +var file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_goTypes = []any{ + (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 0: google.ads.googleads.v22.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError + (*AssetGroupListingGroupFilterErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetGroupListingGroupFilterErrorEnum } -var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -335,27 +335,27 @@ var file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 095df655..bac8bb8f 100644 --- a/errors/asset_group_signal_error.pb.go +++ b/errors/asset_group_signal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_group_signal_error.proto +// source: google/ads/googleads/v22/errors/asset_group_signal_error.proto package errors @@ -85,11 +85,11 @@ func (x AssetGroupSignalErrorEnum_AssetGroupSignalError) String() string { } func (AssetGroupSignalErrorEnum_AssetGroupSignalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_enumTypes[0].Descriptor() } func (AssetGroupSignalErrorEnum_AssetGroupSignalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_enumTypes[0] } func (x AssetGroupSignalErrorEnum_AssetGroupSignalError) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *AssetGroupSignalErrorEnum) String() string { func (*AssetGroupSignalErrorEnum) ProtoMessage() {} func (x *AssetGroupSignalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *AssetGroupSignalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupSignalErrorEnum.ProtoReflect.Descriptor instead. func (*AssetGroupSignalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_group_signal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_group_signal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_goTypes = []any{ - (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 0: google.ads.googleads.v21.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError - (*AssetGroupSignalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetGroupSignalErrorEnum +var file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_goTypes = []any{ + (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 0: google.ads.googleads.v22.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError + (*AssetGroupSignalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetGroupSignalErrorEnum } -var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_group_signal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_group_signal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_group_signal_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_group_signal_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 873abaee..bebb7d3d 100644 --- a/errors/asset_link_error.pb.go +++ b/errors/asset_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_link_error.proto +// source: google/ads/googleads/v22/errors/asset_link_error.proto package errors @@ -188,11 +188,11 @@ func (x AssetLinkErrorEnum_AssetLinkError) String() string { } func (AssetLinkErrorEnum_AssetLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_link_error_proto_enumTypes[0].Descriptor() } func (AssetLinkErrorEnum_AssetLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_link_error_proto_enumTypes[0] } func (x AssetLinkErrorEnum_AssetLinkError) Number() protoreflect.EnumNumber { @@ -201,7 +201,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_v21_errors_asset_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible asset link errors. @@ -213,7 +213,7 @@ type AssetLinkErrorEnum struct { func (x *AssetLinkErrorEnum) Reset() { *x = AssetLinkErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_asset_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *AssetLinkErrorEnum) String() string { func (*AssetLinkErrorEnum) ProtoMessage() {} func (x *AssetLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,18 +238,18 @@ func (x *AssetLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetLinkErrorEnum.ProtoReflect.Descriptor instead. func (*AssetLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x08, 0x0a, 0x12, 0x41, 0x73, + 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x08, 0x0a, 0x12, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xa6, 0x08, 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, @@ -319,42 +319,42 @@ var file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc = string 0x49, 0x4e, 0x4b, 0x45, 0x44, 0x5f, 0x41, 0x54, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x4c, 0x45, 0x56, 0x45, 0x4c, 0x10, 0x1a, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_link_error_proto_goTypes = []any{ - (AssetLinkErrorEnum_AssetLinkError)(0), // 0: google.ads.googleads.v21.errors.AssetLinkErrorEnum.AssetLinkError - (*AssetLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetLinkErrorEnum +var file_google_ads_googleads_v22_errors_asset_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_link_error_proto_goTypes = []any{ + (AssetLinkErrorEnum_AssetLinkError)(0), // 0: google.ads.googleads.v22.errors.AssetLinkErrorEnum.AssetLinkError + (*AssetLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetLinkErrorEnum } -var file_google_ads_googleads_v21_errors_asset_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -362,27 +362,27 @@ var file_google_ads_googleads_v21_errors_asset_link_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_link_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_link_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 199760dd..66bc151d 100644 --- a/errors/asset_set_asset_error.pb.go +++ b/errors/asset_set_asset_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_set_asset_error.proto +// source: google/ads/googleads/v22/errors/asset_set_asset_error.proto package errors @@ -89,11 +89,11 @@ func (x AssetSetAssetErrorEnum_AssetSetAssetError) String() string { } func (AssetSetAssetErrorEnum_AssetSetAssetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_enumTypes[0].Descriptor() } func (AssetSetAssetErrorEnum_AssetSetAssetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_enumTypes[0] } func (x AssetSetAssetErrorEnum_AssetSetAssetError) Number() protoreflect.EnumNumber { @@ -102,7 +102,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_v21_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *AssetSetAssetErrorEnum) String() string { func (*AssetSetAssetErrorEnum) ProtoMessage() {} func (x *AssetSetAssetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *AssetSetAssetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAssetErrorEnum.ProtoReflect.Descriptor instead. func (*AssetSetAssetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_set_asset_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_set_asset_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc0, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,42 +165,42 @@ var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_goTypes = []any{ - (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 0: google.ads.googleads.v21.errors.AssetSetAssetErrorEnum.AssetSetAssetError - (*AssetSetAssetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetSetAssetErrorEnum +var file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_goTypes = []any{ + (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 0: google.ads.googleads.v22.errors.AssetSetAssetErrorEnum.AssetSetAssetError + (*AssetSetAssetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetSetAssetErrorEnum } -var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_set_asset_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_set_asset_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_set_asset_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_set_asset_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 02f75e39..2db57670 100644 --- a/errors/asset_set_error.pb.go +++ b/errors/asset_set_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_set_error.proto +// source: google/ads/googleads/v22/errors/asset_set_error.proto package errors @@ -118,11 +118,11 @@ func (x AssetSetErrorEnum_AssetSetError) String() string { } func (AssetSetErrorEnum_AssetSetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_set_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_set_error_proto_enumTypes[0].Descriptor() } func (AssetSetErrorEnum_AssetSetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_set_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_set_error_proto_enumTypes[0] } func (x AssetSetErrorEnum_AssetSetError) Number() protoreflect.EnumNumber { @@ -131,7 +131,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_v21_errors_asset_set_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *AssetSetErrorEnum) String() string { func (*AssetSetErrorEnum) ProtoMessage() {} func (x *AssetSetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,18 +168,18 @@ func (x *AssetSetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetErrorEnum.ProtoReflect.Descriptor instead. func (*AssetSetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_set_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_set_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xef, 0x03, 0x0a, 0x11, 0x41, 0x73, 0x73, + 0x32, 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, @@ -212,42 +212,42 @@ var file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_error_proto_goTypes = []any{ - (AssetSetErrorEnum_AssetSetError)(0), // 0: google.ads.googleads.v21.errors.AssetSetErrorEnum.AssetSetError - (*AssetSetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetSetErrorEnum +var file_google_ads_googleads_v22_errors_asset_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_error_proto_goTypes = []any{ + (AssetSetErrorEnum_AssetSetError)(0), // 0: google.ads.googleads.v22.errors.AssetSetErrorEnum.AssetSetError + (*AssetSetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetSetErrorEnum } -var file_google_ads_googleads_v21_errors_asset_set_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -255,27 +255,27 @@ var file_google_ads_googleads_v21_errors_asset_set_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_set_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_set_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_set_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_set_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_set_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_set_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_set_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_set_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_set_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_set_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_set_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_set_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_set_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_set_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_set_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_set_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_set_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_set_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_set_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 02ac9724..de33d4e3 100644 --- a/errors/asset_set_link_error.pb.go +++ b/errors/asset_set_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/asset_set_link_error.proto +// source: google/ads/googleads/v22/errors/asset_set_link_error.proto package errors @@ -90,11 +90,11 @@ func (x AssetSetLinkErrorEnum_AssetSetLinkError) String() string { } func (AssetSetLinkErrorEnum_AssetSetLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_asset_set_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_asset_set_link_error_proto_enumTypes[0].Descriptor() } func (AssetSetLinkErrorEnum_AssetSetLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_asset_set_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_asset_set_link_error_proto_enumTypes[0] } func (x AssetSetLinkErrorEnum_AssetSetLinkError) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_asset_set_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *AssetSetLinkErrorEnum) String() string { func (*AssetSetLinkErrorEnum) ProtoMessage() {} func (x *AssetSetLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_asset_set_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_asset_set_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *AssetSetLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetLinkErrorEnum.ProtoReflect.Descriptor instead. func (*AssetSetLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_asset_set_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_asset_set_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x02, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -170,42 +170,42 @@ var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_goTypes = []any{ - (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 0: google.ads.googleads.v21.errors.AssetSetLinkErrorEnum.AssetSetLinkError - (*AssetSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AssetSetLinkErrorEnum +var file_google_ads_googleads_v22_errors_asset_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_asset_set_link_error_proto_goTypes = []any{ + (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 0: google.ads.googleads.v22.errors.AssetSetLinkErrorEnum.AssetSetLinkError + (*AssetSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AssetSetLinkErrorEnum } -var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -213,27 +213,27 @@ var file_google_ads_googleads_v21_errors_asset_set_link_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_asset_set_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_asset_set_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_asset_set_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_asset_set_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_asset_set_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_asset_set_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_asset_set_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_asset_set_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_asset_set_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_asset_set_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_asset_set_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_asset_set_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_asset_set_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_asset_set_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_asset_set_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_asset_set_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_asset_set_link_error_proto = out.File - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_asset_set_link_error_proto = out.File + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_depIdxs = nil } diff --git a/errors/audience_error.pb.go b/errors/audience_error.pb.go index c2c8ee70..f38af880 100644 --- a/errors/audience_error.pb.go +++ b/errors/audience_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/audience_error.proto +// source: google/ads/googleads/v22/errors/audience_error.proto package errors @@ -110,11 +110,11 @@ func (x AudienceErrorEnum_AudienceError) String() string { } func (AudienceErrorEnum_AudienceError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_audience_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_audience_error_proto_enumTypes[0].Descriptor() } func (AudienceErrorEnum_AudienceError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_audience_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_audience_error_proto_enumTypes[0] } func (x AudienceErrorEnum_AudienceError) Number() protoreflect.EnumNumber { @@ -123,7 +123,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_v21_errors_audience_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_audience_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_audience_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147,7 +147,7 @@ func (x *AudienceErrorEnum) String() string { func (*AudienceErrorEnum) ProtoMessage() {} func (x *AudienceErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_audience_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_audience_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160,17 +160,17 @@ func (x *AudienceErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceErrorEnum.ProtoReflect.Descriptor instead. func (*AudienceErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_audience_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_audience_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_audience_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_audience_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_audience_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -197,41 +197,41 @@ var file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc = string([ 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x41, 0x75, 0x64, 0x69, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_audience_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_audience_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_audience_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_audience_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_audience_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_audience_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_audience_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_audience_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_audience_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_audience_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_audience_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_audience_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_audience_error_proto_goTypes = []any{ - (AudienceErrorEnum_AudienceError)(0), // 0: google.ads.googleads.v21.errors.AudienceErrorEnum.AudienceError - (*AudienceErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AudienceErrorEnum +var file_google_ads_googleads_v22_errors_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_audience_error_proto_goTypes = []any{ + (AudienceErrorEnum_AudienceError)(0), // 0: google.ads.googleads.v22.errors.AudienceErrorEnum.AudienceError + (*AudienceErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AudienceErrorEnum } -var file_google_ads_googleads_v21_errors_audience_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -239,27 +239,27 @@ var file_google_ads_googleads_v21_errors_audience_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_audience_error_proto_init() } -func file_google_ads_googleads_v21_errors_audience_error_proto_init() { - if File_google_ads_googleads_v21_errors_audience_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_audience_error_proto_init() } +func file_google_ads_googleads_v22_errors_audience_error_proto_init() { + if File_google_ads_googleads_v22_errors_audience_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_audience_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_audience_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_audience_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_audience_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_audience_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_audience_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_audience_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_audience_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_audience_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_audience_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_audience_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_audience_error_proto = out.File - file_google_ads_googleads_v21_errors_audience_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_audience_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_audience_error_proto = out.File + file_google_ads_googleads_v22_errors_audience_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_audience_error_proto_depIdxs = nil } diff --git a/errors/audience_insights_error.pb.go b/errors/audience_insights_error.pb.go index faccb27d..ace3a157 100644 --- a/errors/audience_insights_error.pb.go +++ b/errors/audience_insights_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/audience_insights_error.proto +// source: google/ads/googleads/v22/errors/audience_insights_error.proto package errors @@ -72,11 +72,11 @@ func (x AudienceInsightsErrorEnum_AudienceInsightsError) String() string { } func (AudienceInsightsErrorEnum_AudienceInsightsError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_audience_insights_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_audience_insights_error_proto_enumTypes[0].Descriptor() } func (AudienceInsightsErrorEnum_AudienceInsightsError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_audience_insights_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_audience_insights_error_proto_enumTypes[0] } func (x AudienceInsightsErrorEnum_AudienceInsightsError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_audience_insights_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_audience_insights_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_audience_insights_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *AudienceInsightsErrorEnum) String() string { func (*AudienceInsightsErrorEnum) ProtoMessage() {} func (x *AudienceInsightsErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_audience_insights_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_audience_insights_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *AudienceInsightsErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceInsightsErrorEnum.ProtoReflect.Descriptor instead. func (*AudienceInsightsErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_audience_insights_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_audience_insights_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x41, 0x75, 0x64, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_audience_insights_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_audience_insights_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_audience_insights_error_proto_goTypes = []any{ - (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 0: google.ads.googleads.v21.errors.AudienceInsightsErrorEnum.AudienceInsightsError - (*AudienceInsightsErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AudienceInsightsErrorEnum +var file_google_ads_googleads_v22_errors_audience_insights_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_audience_insights_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_audience_insights_error_proto_goTypes = []any{ + (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 0: google.ads.googleads.v22.errors.AudienceInsightsErrorEnum.AudienceInsightsError + (*AudienceInsightsErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AudienceInsightsErrorEnum } -var file_google_ads_googleads_v21_errors_audience_insights_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_audience_insights_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_audience_insights_error_proto_init() } -func file_google_ads_googleads_v21_errors_audience_insights_error_proto_init() { - if File_google_ads_googleads_v21_errors_audience_insights_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_audience_insights_error_proto_init() } +func file_google_ads_googleads_v22_errors_audience_insights_error_proto_init() { + if File_google_ads_googleads_v22_errors_audience_insights_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_audience_insights_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_audience_insights_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_audience_insights_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_audience_insights_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_audience_insights_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_audience_insights_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_audience_insights_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_audience_insights_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_audience_insights_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_audience_insights_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_audience_insights_error_proto = out.File - file_google_ads_googleads_v21_errors_audience_insights_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_audience_insights_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_audience_insights_error_proto = out.File + file_google_ads_googleads_v22_errors_audience_insights_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_audience_insights_error_proto_depIdxs = nil } diff --git a/errors/authentication_error.pb.go b/errors/authentication_error.pb.go index d264f453..5acc9d42 100644 --- a/errors/authentication_error.pb.go +++ b/errors/authentication_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/authentication_error.proto +// source: google/ads/googleads/v22/errors/authentication_error.proto package errors @@ -165,11 +165,11 @@ func (x AuthenticationErrorEnum_AuthenticationError) String() string { } func (AuthenticationErrorEnum_AuthenticationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_authentication_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_authentication_error_proto_enumTypes[0].Descriptor() } func (AuthenticationErrorEnum_AuthenticationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_authentication_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_authentication_error_proto_enumTypes[0] } func (x AuthenticationErrorEnum_AuthenticationError) Number() protoreflect.EnumNumber { @@ -178,7 +178,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_v21_errors_authentication_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible authentication errors. @@ -190,7 +190,7 @@ type AuthenticationErrorEnum struct { func (x *AuthenticationErrorEnum) Reset() { *x = AuthenticationErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_authentication_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_authentication_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -202,7 +202,7 @@ func (x *AuthenticationErrorEnum) String() string { func (*AuthenticationErrorEnum) ProtoMessage() {} func (x *AuthenticationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_authentication_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_authentication_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -215,18 +215,18 @@ func (x *AuthenticationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AuthenticationErrorEnum.ProtoReflect.Descriptor instead. func (*AuthenticationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_authentication_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_authentication_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_authentication_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfb, 0x05, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfb, 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, 0xdf, 0x05, 0x0a, 0x13, 0x41, 0x75, 0x74, 0x68, 0x65, 0x6e, 0x74, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, @@ -276,42 +276,42 @@ var file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc = st 0x0a, 0x17, 0x44, 0x45, 0x56, 0x45, 0x4c, 0x4f, 0x50, 0x45, 0x52, 0x5f, 0x54, 0x4f, 0x4b, 0x45, 0x4e, 0x5f, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x10, 0x1d, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_authentication_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_authentication_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_authentication_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_authentication_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_authentication_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_authentication_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_authentication_error_proto_goTypes = []any{ - (AuthenticationErrorEnum_AuthenticationError)(0), // 0: google.ads.googleads.v21.errors.AuthenticationErrorEnum.AuthenticationError - (*AuthenticationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AuthenticationErrorEnum +var file_google_ads_googleads_v22_errors_authentication_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_authentication_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_authentication_error_proto_goTypes = []any{ + (AuthenticationErrorEnum_AuthenticationError)(0), // 0: google.ads.googleads.v22.errors.AuthenticationErrorEnum.AuthenticationError + (*AuthenticationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AuthenticationErrorEnum } -var file_google_ads_googleads_v21_errors_authentication_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -319,27 +319,27 @@ var file_google_ads_googleads_v21_errors_authentication_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_authentication_error_proto_init() } -func file_google_ads_googleads_v21_errors_authentication_error_proto_init() { - if File_google_ads_googleads_v21_errors_authentication_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_authentication_error_proto_init() } +func file_google_ads_googleads_v22_errors_authentication_error_proto_init() { + if File_google_ads_googleads_v22_errors_authentication_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_authentication_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_authentication_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_authentication_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_authentication_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_authentication_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_authentication_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_authentication_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_authentication_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_authentication_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_authentication_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_authentication_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_authentication_error_proto = out.File - file_google_ads_googleads_v21_errors_authentication_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_authentication_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_authentication_error_proto = out.File + file_google_ads_googleads_v22_errors_authentication_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_authentication_error_proto_depIdxs = nil } diff --git a/errors/authorization_error.pb.go b/errors/authorization_error.pb.go index dd27851f..3fc31241 100644 --- a/errors/authorization_error.pb.go +++ b/errors/authorization_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/authorization_error.proto +// source: google/ads/googleads/v22/errors/authorization_error.proto package errors @@ -143,11 +143,11 @@ func (x AuthorizationErrorEnum_AuthorizationError) String() string { } func (AuthorizationErrorEnum_AuthorizationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_authorization_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_authorization_error_proto_enumTypes[0].Descriptor() } func (AuthorizationErrorEnum_AuthorizationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_authorization_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_authorization_error_proto_enumTypes[0] } func (x AuthorizationErrorEnum_AuthorizationError) Number() protoreflect.EnumNumber { @@ -156,7 +156,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_v21_errors_authorization_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_authorization_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_authorization_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180,7 +180,7 @@ func (x *AuthorizationErrorEnum) String() string { func (*AuthorizationErrorEnum) ProtoMessage() {} func (x *AuthorizationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_authorization_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_authorization_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193,18 +193,18 @@ func (x *AuthorizationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use AuthorizationErrorEnum.ProtoReflect.Descriptor instead. func (*AuthorizationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_authorization_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_authorization_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_authorization_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x04, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -243,42 +243,42 @@ var file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_authorization_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_authorization_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_authorization_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_authorization_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_authorization_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_authorization_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_authorization_error_proto_goTypes = []any{ - (AuthorizationErrorEnum_AuthorizationError)(0), // 0: google.ads.googleads.v21.errors.AuthorizationErrorEnum.AuthorizationError - (*AuthorizationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AuthorizationErrorEnum +var file_google_ads_googleads_v22_errors_authorization_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_authorization_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_authorization_error_proto_goTypes = []any{ + (AuthorizationErrorEnum_AuthorizationError)(0), // 0: google.ads.googleads.v22.errors.AuthorizationErrorEnum.AuthorizationError + (*AuthorizationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AuthorizationErrorEnum } -var file_google_ads_googleads_v21_errors_authorization_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -286,27 +286,27 @@ var file_google_ads_googleads_v21_errors_authorization_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_authorization_error_proto_init() } -func file_google_ads_googleads_v21_errors_authorization_error_proto_init() { - if File_google_ads_googleads_v21_errors_authorization_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_authorization_error_proto_init() } +func file_google_ads_googleads_v22_errors_authorization_error_proto_init() { + if File_google_ads_googleads_v22_errors_authorization_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_authorization_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_authorization_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_authorization_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_authorization_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_authorization_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_authorization_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_authorization_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_authorization_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_authorization_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_authorization_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_authorization_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_authorization_error_proto = out.File - file_google_ads_googleads_v21_errors_authorization_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_authorization_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_authorization_error_proto = out.File + file_google_ads_googleads_v22_errors_authorization_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_authorization_error_proto_depIdxs = nil } diff --git a/errors/automatically_created_asset_removal_error.pb.go b/errors/automatically_created_asset_removal_error.pb.go index 03763d3c..7004a42f 100644 --- a/errors/automatically_created_asset_removal_error.pb.go +++ b/errors/automatically_created_asset_removal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/automatically_created_asset_removal_error.proto +// source: google/ads/googleads/v22/errors/automatically_created_asset_removal_error.proto package errors @@ -88,11 +88,11 @@ func (x AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemov } func (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_enumTypes[0].Descriptor() } func (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_enumTypes[0] } func (x AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError) Number() protoreflect.EnumNumber { @@ -101,7 +101,7 @@ func (x AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemov // Deprecated: Use AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError.Descriptor instead. func (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible automatically created asset removal @@ -114,7 +114,7 @@ type AutomaticallyCreatedAssetRemovalErrorEnum struct { func (x *AutomaticallyCreatedAssetRemovalErrorEnum) Reset() { *x = AutomaticallyCreatedAssetRemovalErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *AutomaticallyCreatedAssetRemovalErrorEnum) String() string { func (*AutomaticallyCreatedAssetRemovalErrorEnum) ProtoMessage() {} func (x *AutomaticallyCreatedAssetRemovalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,19 +139,19 @@ func (x *AutomaticallyCreatedAssetRemovalErrorEnum) ProtoReflect() protoreflect. // Deprecated: Use AutomaticallyCreatedAssetRemovalErrorEnum.ProtoReflect.Descriptor instead. func (*AutomaticallyCreatedAssetRemovalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x86, 0x02, 0x0a, 0x29, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, @@ -170,43 +170,43 @@ var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_err 0x54, 0x4f, 0x4d, 0x41, 0x54, 0x49, 0x43, 0x41, 0x4c, 0x4c, 0x59, 0x5f, 0x43, 0x52, 0x45, 0x41, 0x54, 0x45, 0x44, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x10, 0x06, 0x42, 0x8a, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x2a, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_goTypes = []any{ - (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError)(0), // 0: google.ads.googleads.v21.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError - (*AutomaticallyCreatedAssetRemovalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.AutomaticallyCreatedAssetRemovalErrorEnum +var file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_goTypes = []any{ + (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError)(0), // 0: google.ads.googleads.v22.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError + (*AutomaticallyCreatedAssetRemovalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.AutomaticallyCreatedAssetRemovalErrorEnum } -var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,28 +215,28 @@ var file_google_ads_googleads_v21_errors_automatically_created_asset_removal_err } func init() { - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_init() + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_init() } -func file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_init() { - if File_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto != nil { +func file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_init() { + if File_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto = out.File - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto = out.File + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_depIdxs = nil } diff --git a/errors/batch_job_error.pb.go b/errors/batch_job_error.pb.go index fa8fe381..d326f5c5 100644 --- a/errors/batch_job_error.pb.go +++ b/errors/batch_job_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/batch_job_error.proto +// source: google/ads/googleads/v22/errors/batch_job_error.proto package errors @@ -135,11 +135,11 @@ func (x BatchJobErrorEnum_BatchJobError) String() string { } func (BatchJobErrorEnum_BatchJobError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_batch_job_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_batch_job_error_proto_enumTypes[0].Descriptor() } func (BatchJobErrorEnum_BatchJobError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_batch_job_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_batch_job_error_proto_enumTypes[0] } func (x BatchJobErrorEnum_BatchJobError) Number() protoreflect.EnumNumber { @@ -148,7 +148,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_v21_errors_batch_job_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible batch job errors. @@ -160,7 +160,7 @@ type BatchJobErrorEnum struct { func (x *BatchJobErrorEnum) Reset() { *x = BatchJobErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_batch_job_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_batch_job_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *BatchJobErrorEnum) String() string { func (*BatchJobErrorEnum) ProtoMessage() {} func (x *BatchJobErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_batch_job_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_batch_job_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,18 +185,18 @@ func (x *BatchJobErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobErrorEnum.ProtoReflect.Descriptor instead. func (*BatchJobErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_batch_job_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_batch_job_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x03, 0x0a, 0x11, 0x42, 0x61, 0x74, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xce, 0x03, 0x0a, 0x11, 0x42, 0x61, 0x74, 0x63, 0x68, 0x4a, 0x6f, 0x62, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb8, 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, @@ -227,42 +227,42 @@ var file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc = string( 0x53, 0x45, 0x54, 0x5f, 0x54, 0x52, 0x41, 0x4e, 0x53, 0x41, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x46, 0x41, 0x49, 0x4c, 0x55, 0x52, 0x45, 0x10, 0x0c, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_batch_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_batch_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_batch_job_error_proto_goTypes = []any{ - (BatchJobErrorEnum_BatchJobError)(0), // 0: google.ads.googleads.v21.errors.BatchJobErrorEnum.BatchJobError - (*BatchJobErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.BatchJobErrorEnum +var file_google_ads_googleads_v22_errors_batch_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_batch_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_batch_job_error_proto_goTypes = []any{ + (BatchJobErrorEnum_BatchJobError)(0), // 0: google.ads.googleads.v22.errors.BatchJobErrorEnum.BatchJobError + (*BatchJobErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.BatchJobErrorEnum } -var file_google_ads_googleads_v21_errors_batch_job_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -270,27 +270,27 @@ var file_google_ads_googleads_v21_errors_batch_job_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_batch_job_error_proto_init() } -func file_google_ads_googleads_v21_errors_batch_job_error_proto_init() { - if File_google_ads_googleads_v21_errors_batch_job_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_batch_job_error_proto_init() } +func file_google_ads_googleads_v22_errors_batch_job_error_proto_init() { + if File_google_ads_googleads_v22_errors_batch_job_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_batch_job_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_batch_job_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_batch_job_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_batch_job_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_batch_job_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_batch_job_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_batch_job_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_batch_job_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_batch_job_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_batch_job_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_batch_job_error_proto = out.File - file_google_ads_googleads_v21_errors_batch_job_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_batch_job_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_batch_job_error_proto = out.File + file_google_ads_googleads_v22_errors_batch_job_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_batch_job_error_proto_depIdxs = nil } diff --git a/errors/bidding_error.pb.go b/errors/bidding_error.pb.go index 8722a97e..b7e60e65 100644 --- a/errors/bidding_error.pb.go +++ b/errors/bidding_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/bidding_error.proto +// source: google/ads/googleads/v22/errors/bidding_error.proto package errors @@ -175,11 +175,11 @@ func (x BiddingErrorEnum_BiddingError) String() string { } func (BiddingErrorEnum_BiddingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_bidding_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_bidding_error_proto_enumTypes[0].Descriptor() } func (BiddingErrorEnum_BiddingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_bidding_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_bidding_error_proto_enumTypes[0] } func (x BiddingErrorEnum_BiddingError) Number() protoreflect.EnumNumber { @@ -188,7 +188,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_v21_errors_bidding_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible bidding errors. @@ -200,7 +200,7 @@ type BiddingErrorEnum struct { func (x *BiddingErrorEnum) Reset() { *x = BiddingErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_bidding_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_bidding_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -212,7 +212,7 @@ func (x *BiddingErrorEnum) String() string { func (*BiddingErrorEnum) ProtoMessage() {} func (x *BiddingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_bidding_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_bidding_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -225,17 +225,17 @@ func (x *BiddingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingErrorEnum.ProtoReflect.Descriptor instead. func (*BiddingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_bidding_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_bidding_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_bidding_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8d, 0x0a, 0x0a, 0x10, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf8, 0x09, 0x0a, 0x0c, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, @@ -319,42 +319,42 @@ var file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc = string([] 0x4c, 0x4c, 0x49, 0x53, 0x5f, 0x4d, 0x55, 0x53, 0x54, 0x5f, 0x42, 0x45, 0x5f, 0x49, 0x4e, 0x54, 0x45, 0x47, 0x45, 0x52, 0x10, 0x2a, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_bidding_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_bidding_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_bidding_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_bidding_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_bidding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_bidding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_bidding_error_proto_goTypes = []any{ - (BiddingErrorEnum_BiddingError)(0), // 0: google.ads.googleads.v21.errors.BiddingErrorEnum.BiddingError - (*BiddingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.BiddingErrorEnum +var file_google_ads_googleads_v22_errors_bidding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_bidding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_bidding_error_proto_goTypes = []any{ + (BiddingErrorEnum_BiddingError)(0), // 0: google.ads.googleads.v22.errors.BiddingErrorEnum.BiddingError + (*BiddingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.BiddingErrorEnum } -var file_google_ads_googleads_v21_errors_bidding_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -362,27 +362,27 @@ var file_google_ads_googleads_v21_errors_bidding_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_bidding_error_proto_init() } -func file_google_ads_googleads_v21_errors_bidding_error_proto_init() { - if File_google_ads_googleads_v21_errors_bidding_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_bidding_error_proto_init() } +func file_google_ads_googleads_v22_errors_bidding_error_proto_init() { + if File_google_ads_googleads_v22_errors_bidding_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_bidding_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_bidding_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_bidding_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_bidding_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_bidding_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_bidding_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_bidding_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_bidding_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_bidding_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_bidding_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_bidding_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_bidding_error_proto = out.File - file_google_ads_googleads_v21_errors_bidding_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_bidding_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_bidding_error_proto = out.File + file_google_ads_googleads_v22_errors_bidding_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_bidding_error_proto_depIdxs = nil } diff --git a/errors/bidding_strategy_error.pb.go b/errors/bidding_strategy_error.pb.go index 6f023304..a74bba35 100644 --- a/errors/bidding_strategy_error.pb.go +++ b/errors/bidding_strategy_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/bidding_strategy_error.proto +// source: google/ads/googleads/v22/errors/bidding_strategy_error.proto package errors @@ -90,11 +90,11 @@ func (x BiddingStrategyErrorEnum_BiddingStrategyError) String() string { } func (BiddingStrategyErrorEnum_BiddingStrategyError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_enumTypes[0].Descriptor() } func (BiddingStrategyErrorEnum_BiddingStrategyError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_enumTypes[0] } func (x BiddingStrategyErrorEnum_BiddingStrategyError) Number() protoreflect.EnumNumber { @@ -103,7 +103,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_v21_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *BiddingStrategyErrorEnum) String() string { func (*BiddingStrategyErrorEnum) ProtoMessage() {} func (x *BiddingStrategyErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,18 +140,18 @@ func (x *BiddingStrategyErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategyErrorEnum.ProtoReflect.Descriptor instead. func (*BiddingStrategyErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_bidding_strategy_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_bidding_strategy_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,43 +171,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_goTypes = []any{ - (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 0: google.ads.googleads.v21.errors.BiddingStrategyErrorEnum.BiddingStrategyError - (*BiddingStrategyErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.BiddingStrategyErrorEnum +var file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_goTypes = []any{ + (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 0: google.ads.googleads.v22.errors.BiddingStrategyErrorEnum.BiddingStrategyError + (*BiddingStrategyErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.BiddingStrategyErrorEnum } -var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_init() } -func file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_init() { - if File_google_ads_googleads_v21_errors_bidding_strategy_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_init() } +func file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_init() { + if File_google_ads_googleads_v22_errors_bidding_strategy_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_bidding_strategy_error_proto = out.File - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_bidding_strategy_error_proto = out.File + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_depIdxs = nil } diff --git a/errors/billing_setup_error.pb.go b/errors/billing_setup_error.pb.go index 651ccc04..34f97c5f 100644 --- a/errors/billing_setup_error.pb.go +++ b/errors/billing_setup_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/billing_setup_error.proto +// source: google/ads/googleads/v22/errors/billing_setup_error.proto package errors @@ -160,11 +160,11 @@ func (x BillingSetupErrorEnum_BillingSetupError) String() string { } func (BillingSetupErrorEnum_BillingSetupError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_billing_setup_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_billing_setup_error_proto_enumTypes[0].Descriptor() } func (BillingSetupErrorEnum_BillingSetupError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_billing_setup_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_billing_setup_error_proto_enumTypes[0] } func (x BillingSetupErrorEnum_BillingSetupError) Number() protoreflect.EnumNumber { @@ -173,7 +173,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_v21_errors_billing_setup_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_billing_setup_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_billing_setup_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197,7 +197,7 @@ func (x *BillingSetupErrorEnum) String() string { func (*BillingSetupErrorEnum) ProtoMessage() {} func (x *BillingSetupErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_billing_setup_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_billing_setup_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -210,18 +210,18 @@ func (x *BillingSetupErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetupErrorEnum.ProtoReflect.Descriptor instead. func (*BillingSetupErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_billing_setup_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_billing_setup_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x06, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -278,42 +278,42 @@ var file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_billing_setup_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_billing_setup_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_billing_setup_error_proto_goTypes = []any{ - (BillingSetupErrorEnum_BillingSetupError)(0), // 0: google.ads.googleads.v21.errors.BillingSetupErrorEnum.BillingSetupError - (*BillingSetupErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.BillingSetupErrorEnum +var file_google_ads_googleads_v22_errors_billing_setup_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_billing_setup_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_billing_setup_error_proto_goTypes = []any{ + (BillingSetupErrorEnum_BillingSetupError)(0), // 0: google.ads.googleads.v22.errors.BillingSetupErrorEnum.BillingSetupError + (*BillingSetupErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.BillingSetupErrorEnum } -var file_google_ads_googleads_v21_errors_billing_setup_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -321,27 +321,27 @@ var file_google_ads_googleads_v21_errors_billing_setup_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_billing_setup_error_proto_init() } -func file_google_ads_googleads_v21_errors_billing_setup_error_proto_init() { - if File_google_ads_googleads_v21_errors_billing_setup_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_billing_setup_error_proto_init() } +func file_google_ads_googleads_v22_errors_billing_setup_error_proto_init() { + if File_google_ads_googleads_v22_errors_billing_setup_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_billing_setup_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_billing_setup_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_billing_setup_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_billing_setup_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_billing_setup_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_billing_setup_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_billing_setup_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_billing_setup_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_billing_setup_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_billing_setup_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_billing_setup_error_proto = out.File - file_google_ads_googleads_v21_errors_billing_setup_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_billing_setup_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_billing_setup_error_proto = out.File + file_google_ads_googleads_v22_errors_billing_setup_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_billing_setup_error_proto_depIdxs = nil } diff --git a/errors/brand_guidelines_migration_error.pb.go b/errors/brand_guidelines_migration_error.pb.go index ae0633cc..368fa3b0 100644 --- a/errors/brand_guidelines_migration_error.pb.go +++ b/errors/brand_guidelines_migration_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/brand_guidelines_migration_error.proto +// source: google/ads/googleads/v22/errors/brand_guidelines_migration_error.proto package errors @@ -95,11 +95,11 @@ func (x BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) String( } func (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_enumTypes[0].Descriptor() } func (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_enumTypes[0] } func (x BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) Number() protoreflect.EnumNumber { @@ -108,7 +108,7 @@ func (x BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) Number( // Deprecated: Use BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError.Descriptor instead. func (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing brand guidelines migration errors. @@ -120,7 +120,7 @@ type BrandGuidelinesMigrationErrorEnum struct { func (x *BrandGuidelinesMigrationErrorEnum) Reset() { *x = BrandGuidelinesMigrationErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *BrandGuidelinesMigrationErrorEnum) String() string { func (*BrandGuidelinesMigrationErrorEnum) ProtoMessage() {} func (x *BrandGuidelinesMigrationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,19 +145,19 @@ func (x *BrandGuidelinesMigrationErrorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use BrandGuidelinesMigrationErrorEnum.ProtoReflect.Descriptor instead. func (*BrandGuidelinesMigrationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x6d, 0x69, 0x67, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x91, 0x03, 0x0a, 0x21, 0x42, 0x72, + 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x91, 0x03, 0x0a, 0x21, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xeb, 0x02, 0x0a, 0x1d, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, @@ -184,43 +184,43 @@ var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_ 0x1a, 0x54, 0x4f, 0x4f, 0x5f, 0x4d, 0x41, 0x4e, 0x59, 0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x5f, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x53, 0x10, 0x07, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x22, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_goTypes = []any{ - (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError)(0), // 0: google.ads.googleads.v21.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError - (*BrandGuidelinesMigrationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.BrandGuidelinesMigrationErrorEnum +var file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_goTypes = []any{ + (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError)(0), // 0: google.ads.googleads.v22.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError + (*BrandGuidelinesMigrationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.BrandGuidelinesMigrationErrorEnum } -var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +228,27 @@ var file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_init() } -func file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_init() { - if File_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_init() } +func file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_init() { + if File_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto = out.File - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto = out.File + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_depIdxs = nil } diff --git a/errors/campaign_budget_error.pb.go b/errors/campaign_budget_error.pb.go index ccd73ce2..0e5c5a27 100644 --- a/errors/campaign_budget_error.pb.go +++ b/errors/campaign_budget_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_budget_error.proto +// source: google/ads/googleads/v22/errors/campaign_budget_error.proto package errors @@ -155,11 +155,11 @@ func (x CampaignBudgetErrorEnum_CampaignBudgetError) String() string { } func (CampaignBudgetErrorEnum_CampaignBudgetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_budget_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_budget_error_proto_enumTypes[0].Descriptor() } func (CampaignBudgetErrorEnum_CampaignBudgetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_budget_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_budget_error_proto_enumTypes[0] } func (x CampaignBudgetErrorEnum_CampaignBudgetError) Number() protoreflect.EnumNumber { @@ -168,7 +168,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_v21_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible campaign budget errors. @@ -180,7 +180,7 @@ type CampaignBudgetErrorEnum struct { func (x *CampaignBudgetErrorEnum) Reset() { *x = CampaignBudgetErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_campaign_budget_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_budget_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +192,7 @@ func (x *CampaignBudgetErrorEnum) String() string { func (*CampaignBudgetErrorEnum) ProtoMessage() {} func (x *CampaignBudgetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_budget_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_budget_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,18 +205,18 @@ func (x *CampaignBudgetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudgetErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignBudgetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_budget_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_budget_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb9, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb9, 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, 0x9d, 0x07, 0x0a, 0x13, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x45, 0x72, 0x72, @@ -278,42 +278,42 @@ var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc = s 0x45, 0x54, 0x5f, 0x42, 0x45, 0x4c, 0x4f, 0x57, 0x5f, 0x50, 0x45, 0x52, 0x5f, 0x44, 0x41, 0x59, 0x5f, 0x4d, 0x49, 0x4e, 0x49, 0x4d, 0x55, 0x4d, 0x10, 0x16, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_goTypes = []any{ - (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 0: google.ads.googleads.v21.errors.CampaignBudgetErrorEnum.CampaignBudgetError - (*CampaignBudgetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignBudgetErrorEnum +var file_google_ads_googleads_v22_errors_campaign_budget_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_budget_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_budget_error_proto_goTypes = []any{ + (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 0: google.ads.googleads.v22.errors.CampaignBudgetErrorEnum.CampaignBudgetError + (*CampaignBudgetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignBudgetErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -321,27 +321,27 @@ var file_google_ads_googleads_v21_errors_campaign_budget_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_budget_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_budget_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_budget_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_budget_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_budget_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_budget_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_budget_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_budget_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_budget_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_budget_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_budget_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_budget_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_budget_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_budget_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_budget_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_budget_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_budget_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_budget_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 7188bf86..7eaa6d9e 100644 --- a/errors/campaign_conversion_goal_error.pb.go +++ b/errors/campaign_conversion_goal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_conversion_goal_error.proto +// source: google/ads/googleads/v22/errors/campaign_conversion_goal_error.proto package errors @@ -76,11 +76,11 @@ func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) String() st } func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_enumTypes[0].Descriptor() } func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_enumTypes[0] } func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x CampaignConversionGoalErrorEnum_CampaignConversionGoalError) Number() pr // Deprecated: Use CampaignConversionGoalErrorEnum_CampaignConversionGoalError.Descriptor instead. func (CampaignConversionGoalErrorEnum_CampaignConversionGoalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CampaignConversionGoalErrorEnum) String() string { func (*CampaignConversionGoalErrorEnum) ProtoMessage() {} func (x *CampaignConversionGoalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CampaignConversionGoalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignConversionGoalErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignConversionGoalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -154,43 +154,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_goTypes = []any{ - (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 0: google.ads.googleads.v21.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError - (*CampaignConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignConversionGoalErrorEnum +var file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_goTypes = []any{ + (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 0: google.ads.googleads.v22.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError + (*CampaignConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignConversionGoalErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 74ad8b3f..f5cf4023 100644 --- a/errors/campaign_criterion_error.pb.go +++ b/errors/campaign_criterion_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_criterion_error.proto +// source: google/ads/googleads/v22/errors/campaign_criterion_error.proto package errors @@ -188,11 +188,11 @@ func (x CampaignCriterionErrorEnum_CampaignCriterionError) String() string { } func (CampaignCriterionErrorEnum_CampaignCriterionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_enumTypes[0].Descriptor() } func (CampaignCriterionErrorEnum_CampaignCriterionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_enumTypes[0] } func (x CampaignCriterionErrorEnum_CampaignCriterionError) Number() protoreflect.EnumNumber { @@ -201,7 +201,7 @@ func (x CampaignCriterionErrorEnum_CampaignCriterionError) Number() protoreflect // Deprecated: Use CampaignCriterionErrorEnum_CampaignCriterionError.Descriptor instead. func (CampaignCriterionErrorEnum_CampaignCriterionError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *CampaignCriterionErrorEnum) String() string { func (*CampaignCriterionErrorEnum) ProtoMessage() {} func (x *CampaignCriterionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,18 +238,18 @@ func (x *CampaignCriterionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterionErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignCriterionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_criterion_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_criterion_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -340,43 +340,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_goTypes = []any{ - (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 0: google.ads.googleads.v21.errors.CampaignCriterionErrorEnum.CampaignCriterionError - (*CampaignCriterionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignCriterionErrorEnum +var file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_goTypes = []any{ + (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 0: google.ads.googleads.v22.errors.CampaignCriterionErrorEnum.CampaignCriterionError + (*CampaignCriterionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignCriterionErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -384,27 +384,27 @@ var file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_criterion_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_criterion_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_criterion_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_criterion_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_depIdxs = nil } diff --git a/errors/campaign_customizer_error.pb.go b/errors/campaign_customizer_error.pb.go index 754914a7..1a9e3836 100644 --- a/errors/campaign_customizer_error.pb.go +++ b/errors/campaign_customizer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_customizer_error.proto +// source: google/ads/googleads/v22/errors/campaign_customizer_error.proto package errors @@ -68,11 +68,11 @@ func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) String() string { } func (CampaignCustomizerErrorEnum_CampaignCustomizerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_enumTypes[0].Descriptor() } func (CampaignCustomizerErrorEnum_CampaignCustomizerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_enumTypes[0] } func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) Number() protoreflect.EnumNumber { @@ -81,7 +81,7 @@ func (x CampaignCustomizerErrorEnum_CampaignCustomizerError) Number() protorefle // Deprecated: Use CampaignCustomizerErrorEnum_CampaignCustomizerError.Descriptor instead. func (CampaignCustomizerErrorEnum_CampaignCustomizerError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *CampaignCustomizerErrorEnum) String() string { func (*CampaignCustomizerErrorEnum) ProtoMessage() {} func (x *CampaignCustomizerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,18 +118,18 @@ func (x *CampaignCustomizerErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCustomizerErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignCustomizerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_customizer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_customizer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -137,43 +137,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_goTypes = []any{ - (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 0: google.ads.googleads.v21.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError - (*CampaignCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignCustomizerErrorEnum +var file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_goTypes = []any{ + (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 0: google.ads.googleads.v22.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError + (*CampaignCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignCustomizerErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -181,27 +181,27 @@ var file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_customizer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_customizer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_customizer_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_customizer_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_depIdxs = nil } diff --git a/errors/campaign_draft_error.pb.go b/errors/campaign_draft_error.pb.go index c173cdf5..0a84b440 100644 --- a/errors/campaign_draft_error.pb.go +++ b/errors/campaign_draft_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_draft_error.proto +// source: google/ads/googleads/v22/errors/campaign_draft_error.proto package errors @@ -113,11 +113,11 @@ func (x CampaignDraftErrorEnum_CampaignDraftError) String() string { } func (CampaignDraftErrorEnum_CampaignDraftError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_draft_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_draft_error_proto_enumTypes[0].Descriptor() } func (CampaignDraftErrorEnum_CampaignDraftError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_draft_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_draft_error_proto_enumTypes[0] } func (x CampaignDraftErrorEnum_CampaignDraftError) Number() protoreflect.EnumNumber { @@ -126,7 +126,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_v21_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_draft_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_draft_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *CampaignDraftErrorEnum) String() string { func (*CampaignDraftErrorEnum) ProtoMessage() {} func (x *CampaignDraftErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_draft_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_draft_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,18 +163,18 @@ func (x *CampaignDraftErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraftErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignDraftErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_draft_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_draft_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -205,42 +205,42 @@ var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_goTypes = []any{ - (CampaignDraftErrorEnum_CampaignDraftError)(0), // 0: google.ads.googleads.v21.errors.CampaignDraftErrorEnum.CampaignDraftError - (*CampaignDraftErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignDraftErrorEnum +var file_google_ads_googleads_v22_errors_campaign_draft_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_draft_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_draft_error_proto_goTypes = []any{ + (CampaignDraftErrorEnum_CampaignDraftError)(0), // 0: google.ads.googleads.v22.errors.CampaignDraftErrorEnum.CampaignDraftError + (*CampaignDraftErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignDraftErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -248,27 +248,27 @@ var file_google_ads_googleads_v21_errors_campaign_draft_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_draft_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_draft_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_draft_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_draft_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_draft_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_draft_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_draft_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_draft_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_draft_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_draft_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_draft_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_draft_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_draft_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_draft_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_draft_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_draft_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_draft_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_draft_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_depIdxs = nil } diff --git a/errors/campaign_error.pb.go b/errors/campaign_error.pb.go index 6cb584f5..27f1272d 100644 --- a/errors/campaign_error.pb.go +++ b/errors/campaign_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_error.proto +// source: google/ads/googleads/v22/errors/campaign_error.proto package errors @@ -524,11 +524,11 @@ func (x CampaignErrorEnum_CampaignError) String() string { } func (CampaignErrorEnum_CampaignError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_error_proto_enumTypes[0].Descriptor() } func (CampaignErrorEnum_CampaignError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_error_proto_enumTypes[0] } func (x CampaignErrorEnum_CampaignError) Number() protoreflect.EnumNumber { @@ -537,7 +537,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_v21_errors_campaign_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible campaign errors. @@ -549,7 +549,7 @@ type CampaignErrorEnum struct { func (x *CampaignErrorEnum) Reset() { *x = CampaignErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -561,7 +561,7 @@ func (x *CampaignErrorEnum) String() string { func (*CampaignErrorEnum) ProtoMessage() {} func (x *CampaignErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -574,17 +574,17 @@ func (x *CampaignErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd0, 0x22, 0x0a, 0x11, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xba, 0x22, 0x0a, 0x0d, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, @@ -864,42 +864,42 @@ var file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc = string([ 0x0a, 0x16, 0x41, 0x49, 0x5f, 0x4d, 0x41, 0x58, 0x5f, 0x4d, 0x55, 0x53, 0x54, 0x5f, 0x42, 0x45, 0x5f, 0x45, 0x4e, 0x41, 0x42, 0x4c, 0x45, 0x44, 0x10, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_error_proto_goTypes = []any{ - (CampaignErrorEnum_CampaignError)(0), // 0: google.ads.googleads.v21.errors.CampaignErrorEnum.CampaignError - (*CampaignErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignErrorEnum +var file_google_ads_googleads_v22_errors_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_error_proto_goTypes = []any{ + (CampaignErrorEnum_CampaignError)(0), // 0: google.ads.googleads.v22.errors.CampaignErrorEnum.CampaignError + (*CampaignErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -907,27 +907,27 @@ var file_google_ads_googleads_v21_errors_campaign_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_error_proto_depIdxs = nil } diff --git a/errors/campaign_experiment_error.pb.go b/errors/campaign_experiment_error.pb.go index 438182c2..5aef0bf7 100644 --- a/errors/campaign_experiment_error.pb.go +++ b/errors/campaign_experiment_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_experiment_error.proto +// source: google/ads/googleads/v22/errors/campaign_experiment_error.proto package errors @@ -115,11 +115,11 @@ func (x CampaignExperimentErrorEnum_CampaignExperimentError) String() string { } func (CampaignExperimentErrorEnum_CampaignExperimentError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_enumTypes[0].Descriptor() } func (CampaignExperimentErrorEnum_CampaignExperimentError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_enumTypes[0] } func (x CampaignExperimentErrorEnum_CampaignExperimentError) Number() protoreflect.EnumNumber { @@ -128,7 +128,7 @@ func (x CampaignExperimentErrorEnum_CampaignExperimentError) Number() protorefle // Deprecated: Use CampaignExperimentErrorEnum_CampaignExperimentError.Descriptor instead. func (CampaignExperimentErrorEnum_CampaignExperimentError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *CampaignExperimentErrorEnum) String() string { func (*CampaignExperimentErrorEnum) ProtoMessage() {} func (x *CampaignExperimentErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,18 +165,18 @@ func (x *CampaignExperimentErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignExperimentErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignExperimentErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_experiment_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_experiment_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -211,42 +211,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_goTypes = []any{ - (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 0: google.ads.googleads.v21.errors.CampaignExperimentErrorEnum.CampaignExperimentError - (*CampaignExperimentErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignExperimentErrorEnum +var file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_goTypes = []any{ + (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 0: google.ads.googleads.v22.errors.CampaignExperimentErrorEnum.CampaignExperimentError + (*CampaignExperimentErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignExperimentErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -254,27 +254,27 @@ var file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_experiment_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_experiment_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_experiment_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_experiment_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_depIdxs = nil } diff --git a/errors/campaign_feed_error.pb.go b/errors/campaign_feed_error.pb.go index c8fbe3bc..f1c2e75b 100644 --- a/errors/campaign_feed_error.pb.go +++ b/errors/campaign_feed_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_feed_error.proto +// source: google/ads/googleads/v22/errors/campaign_feed_error.proto package errors @@ -102,11 +102,11 @@ func (x CampaignFeedErrorEnum_CampaignFeedError) String() string { } func (CampaignFeedErrorEnum_CampaignFeedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_feed_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_feed_error_proto_enumTypes[0].Descriptor() } func (CampaignFeedErrorEnum_CampaignFeedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_feed_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_feed_error_proto_enumTypes[0] } func (x CampaignFeedErrorEnum_CampaignFeedError) Number() protoreflect.EnumNumber { @@ -115,7 +115,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_v21_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_feed_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *CampaignFeedErrorEnum) String() string { func (*CampaignFeedErrorEnum) ProtoMessage() {} func (x *CampaignFeedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_feed_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,18 +152,18 @@ func (x *CampaignFeedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignFeedErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignFeedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_feed_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_feed_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x03, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -190,42 +190,42 @@ var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_goTypes = []any{ - (CampaignFeedErrorEnum_CampaignFeedError)(0), // 0: google.ads.googleads.v21.errors.CampaignFeedErrorEnum.CampaignFeedError - (*CampaignFeedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignFeedErrorEnum +var file_google_ads_googleads_v22_errors_campaign_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_feed_error_proto_goTypes = []any{ + (CampaignFeedErrorEnum_CampaignFeedError)(0), // 0: google.ads.googleads.v22.errors.CampaignFeedErrorEnum.CampaignFeedError + (*CampaignFeedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignFeedErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +233,27 @@ var file_google_ads_googleads_v21_errors_campaign_feed_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_feed_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_feed_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_feed_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_feed_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_feed_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_feed_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_feed_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_feed_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_feed_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_feed_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_feed_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_feed_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_feed_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_feed_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_feed_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_feed_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_feed_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_feed_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_depIdxs = nil } diff --git a/errors/campaign_goal_config_error.pb.go b/errors/campaign_goal_config_error.pb.go new file mode 100644 index 00000000..c62eb317 --- /dev/null +++ b/errors/campaign_goal_config_error.pb.go @@ -0,0 +1,248 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/errors/campaign_goal_config_error.proto + +package errors + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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 campaign goal config errors. +type CampaignGoalConfigErrorEnum_CampaignGoalConfigError int32 + +const ( + // Enum unspecified. + CampaignGoalConfigErrorEnum_UNSPECIFIED CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 0 + // The received error code is not known in this version. + CampaignGoalConfigErrorEnum_UNKNOWN CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 1 + // Goal is either removed or does not exist for this account. + CampaignGoalConfigErrorEnum_GOAL_NOT_FOUND CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 3 + // Campaign is either removed or does not exist. + CampaignGoalConfigErrorEnum_CAMPAIGN_NOT_FOUND CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 4 + // If high lifetime value is present then value should be present. + CampaignGoalConfigErrorEnum_HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 9 + // High lifetime value should be greater than value. + CampaignGoalConfigErrorEnum_HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 10 + // When using customer lifecycle optimization goal, campaign type should be + // supported. + CampaignGoalConfigErrorEnum_CUSTOMER_LIFECYCLE_OPTIMIZATION_CAMPAIGN_TYPE_NOT_SUPPORTED CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 11 + // Customer must be allowlisted to use retention only goal. + CampaignGoalConfigErrorEnum_CUSTOMER_NOT_ALLOWLISTED_FOR_RETENTION_ONLY CampaignGoalConfigErrorEnum_CampaignGoalConfigError = 12 +) + +// Enum value maps for CampaignGoalConfigErrorEnum_CampaignGoalConfigError. +var ( + CampaignGoalConfigErrorEnum_CampaignGoalConfigError_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 3: "GOAL_NOT_FOUND", + 4: "CAMPAIGN_NOT_FOUND", + 9: "HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT", + 10: "HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE", + 11: "CUSTOMER_LIFECYCLE_OPTIMIZATION_CAMPAIGN_TYPE_NOT_SUPPORTED", + 12: "CUSTOMER_NOT_ALLOWLISTED_FOR_RETENTION_ONLY", + } + CampaignGoalConfigErrorEnum_CampaignGoalConfigError_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "GOAL_NOT_FOUND": 3, + "CAMPAIGN_NOT_FOUND": 4, + "HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT": 9, + "HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE": 10, + "CUSTOMER_LIFECYCLE_OPTIMIZATION_CAMPAIGN_TYPE_NOT_SUPPORTED": 11, + "CUSTOMER_NOT_ALLOWLISTED_FOR_RETENTION_ONLY": 12, + } +) + +func (x CampaignGoalConfigErrorEnum_CampaignGoalConfigError) Enum() *CampaignGoalConfigErrorEnum_CampaignGoalConfigError { + p := new(CampaignGoalConfigErrorEnum_CampaignGoalConfigError) + *p = x + return p +} + +func (x CampaignGoalConfigErrorEnum_CampaignGoalConfigError) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (CampaignGoalConfigErrorEnum_CampaignGoalConfigError) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_enumTypes[0].Descriptor() +} + +func (CampaignGoalConfigErrorEnum_CampaignGoalConfigError) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_enumTypes[0] +} + +func (x CampaignGoalConfigErrorEnum_CampaignGoalConfigError) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use CampaignGoalConfigErrorEnum_CampaignGoalConfigError.Descriptor instead. +func (CampaignGoalConfigErrorEnum_CampaignGoalConfigError) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing possible campaign goal config errors. +type CampaignGoalConfigErrorEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CampaignGoalConfigErrorEnum) Reset() { + *x = CampaignGoalConfigErrorEnum{} + mi := &file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CampaignGoalConfigErrorEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignGoalConfigErrorEnum) ProtoMessage() {} + +func (x *CampaignGoalConfigErrorEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CampaignGoalConfigErrorEnum.ProtoReflect.Descriptor instead. +func (*CampaignGoalConfigErrorEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_errors_campaign_goal_config_error_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0x22, 0xdc, 0x02, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, + 0x6e, 0x75, 0x6d, 0x22, 0xbc, 0x02, 0x0a, 0x17, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x12, 0x0a, + 0x0e, 0x47, 0x4f, 0x41, 0x4c, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, + 0x03, 0x12, 0x16, 0x0a, 0x12, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x4e, 0x4f, + 0x54, 0x5f, 0x46, 0x4f, 0x55, 0x4e, 0x44, 0x10, 0x04, 0x12, 0x30, 0x0a, 0x2c, 0x48, 0x49, 0x47, + 0x48, 0x5f, 0x4c, 0x49, 0x46, 0x45, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, + 0x5f, 0x50, 0x52, 0x45, 0x53, 0x45, 0x4e, 0x54, 0x5f, 0x42, 0x55, 0x54, 0x5f, 0x56, 0x41, 0x4c, + 0x55, 0x45, 0x5f, 0x41, 0x42, 0x53, 0x45, 0x4e, 0x54, 0x10, 0x09, 0x12, 0x33, 0x0a, 0x2f, 0x48, + 0x49, 0x47, 0x48, 0x5f, 0x4c, 0x49, 0x46, 0x45, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x56, 0x41, 0x4c, + 0x55, 0x45, 0x5f, 0x4c, 0x45, 0x53, 0x53, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x4f, 0x52, 0x5f, + 0x45, 0x51, 0x55, 0x41, 0x4c, 0x5f, 0x54, 0x4f, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x0a, + 0x12, 0x3f, 0x0a, 0x3b, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x46, + 0x45, 0x43, 0x59, 0x43, 0x4c, 0x45, 0x5f, 0x4f, 0x50, 0x54, 0x49, 0x4d, 0x49, 0x5a, 0x41, 0x54, + 0x49, 0x4f, 0x4e, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, + 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x10, + 0x0b, 0x12, 0x2f, 0x0a, 0x2b, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x4e, 0x4f, + 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x4c, 0x49, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, + 0x52, 0x5f, 0x52, 0x45, 0x54, 0x45, 0x4e, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x4f, 0x4e, 0x4c, 0x59, + 0x10, 0x0c, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDescData +} + +var file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_goTypes = []any{ + (CampaignGoalConfigErrorEnum_CampaignGoalConfigError)(0), // 0: google.ads.googleads.v22.errors.CampaignGoalConfigErrorEnum.CampaignGoalConfigError + (*CampaignGoalConfigErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignGoalConfigErrorEnum +} +var file_google_ads_googleads_v22_errors_campaign_goal_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 + 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_v22_errors_campaign_goal_config_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_goal_config_error_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_errors_campaign_goal_config_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_depIdxs = nil +} diff --git a/errors/campaign_lifecycle_goal_error.pb.go b/errors/campaign_lifecycle_goal_error.pb.go index 6ee09b4a..a43afbba 100644 --- a/errors/campaign_lifecycle_goal_error.pb.go +++ b/errors/campaign_lifecycle_goal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_lifecycle_goal_error.proto +// source: google/ads/googleads/v22/errors/campaign_lifecycle_goal_error.proto package errors @@ -145,11 +145,11 @@ func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) String() stri } func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_enumTypes[0].Descriptor() } func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_enumTypes[0] } func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Number() protoreflect.EnumNumber { @@ -158,7 +158,7 @@ func (x CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) Number() prot // Deprecated: Use CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError.Descriptor instead. func (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182,7 +182,7 @@ func (x *CampaignLifecycleGoalErrorEnum) String() string { func (*CampaignLifecycleGoalErrorEnum) ProtoMessage() {} func (x *CampaignLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195,18 +195,18 @@ func (x *CampaignLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLifecycleGoalErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignLifecycleGoalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -244,43 +244,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_goTypes = []any{ - (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 0: google.ads.googleads.v21.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError - (*CampaignLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignLifecycleGoalErrorEnum +var file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_goTypes = []any{ + (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 0: google.ads.googleads.v22.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError + (*CampaignLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignLifecycleGoalErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -288,27 +288,27 @@ var file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 f460cd2a..5f59438f 100644 --- a/errors/campaign_shared_set_error.pb.go +++ b/errors/campaign_shared_set_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/campaign_shared_set_error.proto +// source: google/ads/googleads/v22/errors/campaign_shared_set_error.proto package errors @@ -72,11 +72,11 @@ func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) String() string { } func (CampaignSharedSetErrorEnum_CampaignSharedSetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_enumTypes[0].Descriptor() } func (CampaignSharedSetErrorEnum_CampaignSharedSetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_enumTypes[0] } func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x CampaignSharedSetErrorEnum_CampaignSharedSetError) Number() protoreflect // Deprecated: Use CampaignSharedSetErrorEnum_CampaignSharedSetError.Descriptor instead. func (CampaignSharedSetErrorEnum_CampaignSharedSetError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *CampaignSharedSetErrorEnum) String() string { func (*CampaignSharedSetErrorEnum) ProtoMessage() {} func (x *CampaignSharedSetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *CampaignSharedSetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSetErrorEnum.ProtoReflect.Descriptor instead. func (*CampaignSharedSetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_campaign_shared_set_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_campaign_shared_set_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_goTypes = []any{ - (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 0: google.ads.googleads.v21.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError - (*CampaignSharedSetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CampaignSharedSetErrorEnum +var file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_goTypes = []any{ + (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 0: google.ads.googleads.v22.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError + (*CampaignSharedSetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CampaignSharedSetErrorEnum } -var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -186,27 +186,27 @@ var file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_init() } -func file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_init() { - if File_google_ads_googleads_v21_errors_campaign_shared_set_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_init() } +func file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_init() { + if File_google_ads_googleads_v22_errors_campaign_shared_set_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_campaign_shared_set_error_proto = out.File - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_campaign_shared_set_error_proto = out.File + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 334aa142..224bed20 100644 --- a/errors/change_event_error.pb.go +++ b/errors/change_event_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/change_event_error.proto +// source: google/ads/googleads/v22/errors/change_event_error.proto package errors @@ -92,11 +92,11 @@ func (x ChangeEventErrorEnum_ChangeEventError) String() string { } func (ChangeEventErrorEnum_ChangeEventError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_change_event_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_change_event_error_proto_enumTypes[0].Descriptor() } func (ChangeEventErrorEnum_ChangeEventError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_change_event_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_change_event_error_proto_enumTypes[0] } func (x ChangeEventErrorEnum_ChangeEventError) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_errors_change_event_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_change_event_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_change_event_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *ChangeEventErrorEnum) String() string { func (*ChangeEventErrorEnum) ProtoMessage() {} func (x *ChangeEventErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_change_event_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_change_event_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,18 +142,18 @@ func (x *ChangeEventErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeEventErrorEnum.ProtoReflect.Descriptor instead. func (*ChangeEventErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_change_event_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_change_event_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_change_event_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x01, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,42 +169,42 @@ var file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x43, 0x68, 0x61, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_change_event_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_change_event_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_change_event_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_change_event_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_change_event_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_change_event_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_change_event_error_proto_goTypes = []any{ - (ChangeEventErrorEnum_ChangeEventError)(0), // 0: google.ads.googleads.v21.errors.ChangeEventErrorEnum.ChangeEventError - (*ChangeEventErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ChangeEventErrorEnum +var file_google_ads_googleads_v22_errors_change_event_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_change_event_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_change_event_error_proto_goTypes = []any{ + (ChangeEventErrorEnum_ChangeEventError)(0), // 0: google.ads.googleads.v22.errors.ChangeEventErrorEnum.ChangeEventError + (*ChangeEventErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ChangeEventErrorEnum } -var file_google_ads_googleads_v21_errors_change_event_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -212,27 +212,27 @@ var file_google_ads_googleads_v21_errors_change_event_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_change_event_error_proto_init() } -func file_google_ads_googleads_v21_errors_change_event_error_proto_init() { - if File_google_ads_googleads_v21_errors_change_event_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_change_event_error_proto_init() } +func file_google_ads_googleads_v22_errors_change_event_error_proto_init() { + if File_google_ads_googleads_v22_errors_change_event_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_change_event_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_change_event_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_change_event_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_change_event_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_change_event_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_change_event_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_change_event_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_change_event_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_change_event_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_change_event_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_change_event_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_change_event_error_proto = out.File - file_google_ads_googleads_v21_errors_change_event_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_change_event_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_change_event_error_proto = out.File + file_google_ads_googleads_v22_errors_change_event_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_change_event_error_proto_depIdxs = nil } diff --git a/errors/change_status_error.pb.go b/errors/change_status_error.pb.go index 362bafa1..5f5e6c0a 100644 --- a/errors/change_status_error.pb.go +++ b/errors/change_status_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/change_status_error.proto +// source: google/ads/googleads/v22/errors/change_status_error.proto package errors @@ -92,11 +92,11 @@ func (x ChangeStatusErrorEnum_ChangeStatusError) String() string { } func (ChangeStatusErrorEnum_ChangeStatusError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_change_status_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_change_status_error_proto_enumTypes[0].Descriptor() } func (ChangeStatusErrorEnum_ChangeStatusError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_change_status_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_change_status_error_proto_enumTypes[0] } func (x ChangeStatusErrorEnum_ChangeStatusError) Number() protoreflect.EnumNumber { @@ -105,7 +105,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_v21_errors_change_status_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_change_status_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_change_status_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *ChangeStatusErrorEnum) String() string { func (*ChangeStatusErrorEnum) ProtoMessage() {} func (x *ChangeStatusErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_change_status_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_change_status_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,18 +142,18 @@ func (x *ChangeStatusErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeStatusErrorEnum.ProtoReflect.Descriptor instead. func (*ChangeStatusErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_change_status_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_change_status_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_change_status_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd6, 0x01, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,42 +169,42 @@ var file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x43, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_change_status_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_change_status_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_change_status_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_change_status_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_change_status_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_change_status_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_change_status_error_proto_goTypes = []any{ - (ChangeStatusErrorEnum_ChangeStatusError)(0), // 0: google.ads.googleads.v21.errors.ChangeStatusErrorEnum.ChangeStatusError - (*ChangeStatusErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ChangeStatusErrorEnum +var file_google_ads_googleads_v22_errors_change_status_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_change_status_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_change_status_error_proto_goTypes = []any{ + (ChangeStatusErrorEnum_ChangeStatusError)(0), // 0: google.ads.googleads.v22.errors.ChangeStatusErrorEnum.ChangeStatusError + (*ChangeStatusErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ChangeStatusErrorEnum } -var file_google_ads_googleads_v21_errors_change_status_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -212,27 +212,27 @@ var file_google_ads_googleads_v21_errors_change_status_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_change_status_error_proto_init() } -func file_google_ads_googleads_v21_errors_change_status_error_proto_init() { - if File_google_ads_googleads_v21_errors_change_status_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_change_status_error_proto_init() } +func file_google_ads_googleads_v22_errors_change_status_error_proto_init() { + if File_google_ads_googleads_v22_errors_change_status_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_change_status_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_change_status_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_change_status_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_change_status_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_change_status_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_change_status_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_change_status_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_change_status_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_change_status_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_change_status_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_change_status_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_change_status_error_proto = out.File - file_google_ads_googleads_v21_errors_change_status_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_change_status_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_change_status_error_proto = out.File + file_google_ads_googleads_v22_errors_change_status_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_change_status_error_proto_depIdxs = nil } diff --git a/errors/click_view_error.pb.go b/errors/click_view_error.pb.go index 269d8d2b..ff63957f 100644 --- a/errors/click_view_error.pb.go +++ b/errors/click_view_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/click_view_error.proto +// source: google/ads/googleads/v22/errors/click_view_error.proto package errors @@ -76,11 +76,11 @@ func (x ClickViewErrorEnum_ClickViewError) String() string { } func (ClickViewErrorEnum_ClickViewError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_click_view_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_click_view_error_proto_enumTypes[0].Descriptor() } func (ClickViewErrorEnum_ClickViewError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_click_view_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_click_view_error_proto_enumTypes[0] } func (x ClickViewErrorEnum_ClickViewError) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ClickViewErrorEnum_ClickViewError) Number() protoreflect.EnumNumber { // Deprecated: Use ClickViewErrorEnum_ClickViewError.Descriptor instead. func (ClickViewErrorEnum_ClickViewError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible click view errors. @@ -101,7 +101,7 @@ type ClickViewErrorEnum struct { func (x *ClickViewErrorEnum) Reset() { *x = ClickViewErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_click_view_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_click_view_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ClickViewErrorEnum) String() string { func (*ClickViewErrorEnum) ProtoMessage() {} func (x *ClickViewErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_click_view_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_click_view_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ClickViewErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickViewErrorEnum.ProtoReflect.Descriptor instead. func (*ClickViewErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_click_view_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_click_view_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_click_view_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7b, 0x0a, 0x12, 0x43, 0x6c, 0x69, + 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7b, 0x0a, 0x12, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x65, 0x0a, 0x0e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc = string 0x41, 0x59, 0x10, 0x02, 0x12, 0x10, 0x0a, 0x0c, 0x44, 0x41, 0x54, 0x45, 0x5f, 0x54, 0x4f, 0x4f, 0x5f, 0x4f, 0x4c, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, - 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_click_view_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_click_view_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_click_view_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_click_view_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_click_view_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_click_view_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_click_view_error_proto_goTypes = []any{ - (ClickViewErrorEnum_ClickViewError)(0), // 0: google.ads.googleads.v21.errors.ClickViewErrorEnum.ClickViewError - (*ClickViewErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ClickViewErrorEnum +var file_google_ads_googleads_v22_errors_click_view_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_click_view_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_click_view_error_proto_goTypes = []any{ + (ClickViewErrorEnum_ClickViewError)(0), // 0: google.ads.googleads.v22.errors.ClickViewErrorEnum.ClickViewError + (*ClickViewErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ClickViewErrorEnum } -var file_google_ads_googleads_v21_errors_click_view_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_click_view_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +190,27 @@ var file_google_ads_googleads_v21_errors_click_view_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_click_view_error_proto_init() } -func file_google_ads_googleads_v21_errors_click_view_error_proto_init() { - if File_google_ads_googleads_v21_errors_click_view_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_click_view_error_proto_init() } +func file_google_ads_googleads_v22_errors_click_view_error_proto_init() { + if File_google_ads_googleads_v22_errors_click_view_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_click_view_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_click_view_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_click_view_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_click_view_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_click_view_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_click_view_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_click_view_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_click_view_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_click_view_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_click_view_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_click_view_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_click_view_error_proto = out.File - file_google_ads_googleads_v21_errors_click_view_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_click_view_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_click_view_error_proto = out.File + file_google_ads_googleads_v22_errors_click_view_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_click_view_error_proto_depIdxs = nil } diff --git a/errors/collection_size_error.pb.go b/errors/collection_size_error.pb.go index 0d94a4af..c28a12a4 100644 --- a/errors/collection_size_error.pb.go +++ b/errors/collection_size_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/collection_size_error.proto +// source: google/ads/googleads/v22/errors/collection_size_error.proto package errors @@ -76,11 +76,11 @@ func (x CollectionSizeErrorEnum_CollectionSizeError) String() string { } func (CollectionSizeErrorEnum_CollectionSizeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_collection_size_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_collection_size_error_proto_enumTypes[0].Descriptor() } func (CollectionSizeErrorEnum_CollectionSizeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_collection_size_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_collection_size_error_proto_enumTypes[0] } func (x CollectionSizeErrorEnum_CollectionSizeError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_collection_size_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_collection_size_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_collection_size_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *CollectionSizeErrorEnum) String() string { func (*CollectionSizeErrorEnum) ProtoMessage() {} func (x *CollectionSizeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_collection_size_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_collection_size_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *CollectionSizeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CollectionSizeErrorEnum.ProtoReflect.Descriptor instead. func (*CollectionSizeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_collection_size_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_collection_size_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_collection_size_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_collection_size_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_collection_size_error_proto_goTypes = []any{ - (CollectionSizeErrorEnum_CollectionSizeError)(0), // 0: google.ads.googleads.v21.errors.CollectionSizeErrorEnum.CollectionSizeError - (*CollectionSizeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CollectionSizeErrorEnum +var file_google_ads_googleads_v22_errors_collection_size_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_collection_size_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_collection_size_error_proto_goTypes = []any{ + (CollectionSizeErrorEnum_CollectionSizeError)(0), // 0: google.ads.googleads.v22.errors.CollectionSizeErrorEnum.CollectionSizeError + (*CollectionSizeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CollectionSizeErrorEnum } -var file_google_ads_googleads_v21_errors_collection_size_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_collection_size_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_collection_size_error_proto_init() } -func file_google_ads_googleads_v21_errors_collection_size_error_proto_init() { - if File_google_ads_googleads_v21_errors_collection_size_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_collection_size_error_proto_init() } +func file_google_ads_googleads_v22_errors_collection_size_error_proto_init() { + if File_google_ads_googleads_v22_errors_collection_size_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_collection_size_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_collection_size_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_collection_size_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_collection_size_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_collection_size_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_collection_size_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_collection_size_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_collection_size_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_collection_size_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_collection_size_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_collection_size_error_proto = out.File - file_google_ads_googleads_v21_errors_collection_size_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_collection_size_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_collection_size_error_proto = out.File + file_google_ads_googleads_v22_errors_collection_size_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_collection_size_error_proto_depIdxs = nil } diff --git a/errors/context_error.pb.go b/errors/context_error.pb.go index 2a599ca3..c0f680b3 100644 --- a/errors/context_error.pb.go +++ b/errors/context_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/context_error.proto +// source: google/ads/googleads/v22/errors/context_error.proto package errors @@ -76,11 +76,11 @@ func (x ContextErrorEnum_ContextError) String() string { } func (ContextErrorEnum_ContextError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_context_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_context_error_proto_enumTypes[0].Descriptor() } func (ContextErrorEnum_ContextError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_context_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_context_error_proto_enumTypes[0] } func (x ContextErrorEnum_ContextError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_context_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_context_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_context_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ContextErrorEnum) String() string { func (*ContextErrorEnum) ProtoMessage() {} func (x *ContextErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_context_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_context_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *ContextErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ContextErrorEnum.ProtoReflect.Descriptor instead. func (*ContextErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_context_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_context_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_context_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_context_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_context_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_context_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_errors_context_error_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x43, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_context_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_context_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_context_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_context_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_context_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_context_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_context_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_context_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_context_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_context_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_context_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_context_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_context_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_context_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_context_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_context_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_context_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_context_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_context_error_proto_goTypes = []any{ - (ContextErrorEnum_ContextError)(0), // 0: google.ads.googleads.v21.errors.ContextErrorEnum.ContextError - (*ContextErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ContextErrorEnum +var file_google_ads_googleads_v22_errors_context_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_context_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_context_error_proto_goTypes = []any{ + (ContextErrorEnum_ContextError)(0), // 0: google.ads.googleads.v22.errors.ContextErrorEnum.ContextError + (*ContextErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ContextErrorEnum } -var file_google_ads_googleads_v21_errors_context_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,27 +192,27 @@ var file_google_ads_googleads_v21_errors_context_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_context_error_proto_init() } -func file_google_ads_googleads_v21_errors_context_error_proto_init() { - if File_google_ads_googleads_v21_errors_context_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_context_error_proto_init() } +func file_google_ads_googleads_v22_errors_context_error_proto_init() { + if File_google_ads_googleads_v22_errors_context_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_context_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_context_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_context_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_context_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_context_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_context_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_context_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_context_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_context_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_context_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_context_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_context_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_context_error_proto = out.File - file_google_ads_googleads_v21_errors_context_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_context_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_context_error_proto = out.File + file_google_ads_googleads_v22_errors_context_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_context_error_proto_depIdxs = nil } diff --git a/errors/conversion_action_error.pb.go b/errors/conversion_action_error.pb.go index 9556e37b..60659ca8 100644 --- a/errors/conversion_action_error.pb.go +++ b/errors/conversion_action_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_action_error.proto +// source: google/ads/googleads/v22/errors/conversion_action_error.proto package errors @@ -121,11 +121,11 @@ func (x ConversionActionErrorEnum_ConversionActionError) String() string { } func (ConversionActionErrorEnum_ConversionActionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_action_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_action_error_proto_enumTypes[0].Descriptor() } func (ConversionActionErrorEnum_ConversionActionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_action_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_action_error_proto_enumTypes[0] } func (x ConversionActionErrorEnum_ConversionActionError) Number() protoreflect.EnumNumber { @@ -134,7 +134,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_v21_errors_conversion_action_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_conversion_action_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_action_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158,7 +158,7 @@ func (x *ConversionActionErrorEnum) String() string { func (*ConversionActionErrorEnum) ProtoMessage() {} func (x *ConversionActionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_action_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_action_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171,18 +171,18 @@ func (x *ConversionActionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionActionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_action_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_action_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -214,42 +214,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_action_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_action_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_action_error_proto_goTypes = []any{ - (ConversionActionErrorEnum_ConversionActionError)(0), // 0: google.ads.googleads.v21.errors.ConversionActionErrorEnum.ConversionActionError - (*ConversionActionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionActionErrorEnum +var file_google_ads_googleads_v22_errors_conversion_action_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_action_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_action_error_proto_goTypes = []any{ + (ConversionActionErrorEnum_ConversionActionError)(0), // 0: google.ads.googleads.v22.errors.ConversionActionErrorEnum.ConversionActionError + (*ConversionActionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionActionErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_action_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -257,27 +257,27 @@ var file_google_ads_googleads_v21_errors_conversion_action_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_action_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_action_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_action_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_action_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_action_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_action_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_action_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_action_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_action_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_action_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_action_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_action_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_action_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_action_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_action_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_action_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_action_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_action_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_action_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_action_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_action_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 aa50c7ed..366ad69d 100644 --- a/errors/conversion_adjustment_upload_error.pb.go +++ b/errors/conversion_adjustment_upload_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_adjustment_upload_error.proto +// source: google/ads/googleads/v22/errors/conversion_adjustment_upload_error.proto package errors @@ -200,11 +200,11 @@ func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Str } func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_enumTypes[0].Descriptor() } func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_enumTypes[0] } func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Number() protoreflect.EnumNumber { @@ -213,7 +213,7 @@ func (x ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) Num // Deprecated: Use ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError.Descriptor instead. func (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -237,7 +237,7 @@ func (x *ConversionAdjustmentUploadErrorEnum) String() string { func (*ConversionAdjustmentUploadErrorEnum) ProtoMessage() {} func (x *ConversionAdjustmentUploadErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -250,19 +250,19 @@ func (x *ConversionAdjustmentUploadErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use ConversionAdjustmentUploadErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionAdjustmentUploadErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf0, 0x07, 0x0a, 0x23, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -327,43 +327,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_goTypes = []any{ - (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 0: google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - (*ConversionAdjustmentUploadErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum +var file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_goTypes = []any{ + (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 0: google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + (*ConversionAdjustmentUploadErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -371,27 +371,27 @@ var file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_prot 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 86ed8199..6b55f44c 100644 --- a/errors/conversion_custom_variable_error.pb.go +++ b/errors/conversion_custom_variable_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_custom_variable_error.proto +// source: google/ads/googleads/v22/errors/conversion_custom_variable_error.proto package errors @@ -81,11 +81,11 @@ func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) String( } func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_enumTypes[0].Descriptor() } func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_enumTypes[0] } func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x ConversionCustomVariableErrorEnum_ConversionCustomVariableError) Number( // Deprecated: Use ConversionCustomVariableErrorEnum_ConversionCustomVariableError.Descriptor instead. func (ConversionCustomVariableErrorEnum_ConversionCustomVariableError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ConversionCustomVariableErrorEnum) String() string { func (*ConversionCustomVariableErrorEnum) ProtoMessage() {} func (x *ConversionCustomVariableErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,19 +131,19 @@ func (x *ConversionCustomVariableErrorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionCustomVariableErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionCustomVariableErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9b, 0x01, 0x0a, 0x21, 0x43, 0x6f, + 0x32, 0x32, 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, @@ -155,43 +155,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_goTypes = []any{ - (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 0: google.ads.googleads.v21.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError - (*ConversionCustomVariableErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionCustomVariableErrorEnum +var file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_goTypes = []any{ + (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 0: google.ads.googleads.v22.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError + (*ConversionCustomVariableErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionCustomVariableErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 33d2ff0d..18beba4f 100644 --- a/errors/conversion_goal_campaign_config_error.pb.go +++ b/errors/conversion_goal_campaign_config_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_goal_campaign_config_error.proto +// source: google/ads/googleads/v22/errors/conversion_goal_campaign_config_error.proto package errors @@ -96,11 +96,11 @@ func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) } func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_enumTypes[0].Descriptor() } func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_enumTypes[0] } func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) Number() protoreflect.EnumNumber { @@ -109,7 +109,7 @@ func (x ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) // Deprecated: Use ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError.Descriptor instead. func (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *ConversionGoalCampaignConfigErrorEnum) String() string { func (*ConversionGoalCampaignConfigErrorEnum) ProtoMessage() {} func (x *ConversionGoalCampaignConfigErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,19 +147,19 @@ func (x *ConversionGoalCampaignConfigErrorEnum) ProtoReflect() protoreflect.Mess // Deprecated: Use ConversionGoalCampaignConfigErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionGoalCampaignConfigErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xad, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -188,43 +188,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_goTypes = []any{ - (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 0: google.ads.googleads.v21.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError - (*ConversionGoalCampaignConfigErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionGoalCampaignConfigErrorEnum +var file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_goTypes = []any{ + (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 0: google.ads.googleads.v22.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError + (*ConversionGoalCampaignConfigErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionGoalCampaignConfigErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -232,27 +232,27 @@ var file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_p 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 4e251b5b..2cc09575 100644 --- a/errors/conversion_upload_error.pb.go +++ b/errors/conversion_upload_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_upload_error.proto +// source: google/ads/googleads/v22/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_v21_errors_conversion_upload_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_upload_error_proto_enumTypes[0].Descriptor() } func (ConversionUploadErrorEnum_ConversionUploadError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_upload_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_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_v21_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible conversion upload errors. @@ -326,7 +326,7 @@ type ConversionUploadErrorEnum struct { func (x *ConversionUploadErrorEnum) Reset() { *x = ConversionUploadErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_conversion_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_upload_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *ConversionUploadErrorEnum) String() string { func (*ConversionUploadErrorEnum) ProtoMessage() {} func (x *ConversionUploadErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_upload_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,18 +351,18 @@ func (x *ConversionUploadErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionUploadErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionUploadErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_upload_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_upload_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -473,43 +473,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_goTypes = []any{ - (ConversionUploadErrorEnum_ConversionUploadError)(0), // 0: google.ads.googleads.v21.errors.ConversionUploadErrorEnum.ConversionUploadError - (*ConversionUploadErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionUploadErrorEnum +var file_google_ads_googleads_v22_errors_conversion_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_upload_error_proto_goTypes = []any{ + (ConversionUploadErrorEnum_ConversionUploadError)(0), // 0: google.ads.googleads.v22.errors.ConversionUploadErrorEnum.ConversionUploadError + (*ConversionUploadErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionUploadErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -517,27 +517,27 @@ var file_google_ads_googleads_v21_errors_conversion_upload_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_upload_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_upload_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_upload_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_upload_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_upload_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_upload_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_upload_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_upload_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_upload_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_upload_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_upload_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_upload_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_upload_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_upload_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_upload_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_upload_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_upload_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_upload_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 669be187..e03f619c 100644 --- a/errors/conversion_value_rule_error.pb.go +++ b/errors/conversion_value_rule_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_value_rule_error.proto +// source: google/ads/googleads/v22/errors/conversion_value_rule_error.proto package errors @@ -133,11 +133,11 @@ func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) String() string { } func (ConversionValueRuleErrorEnum_ConversionValueRuleError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_enumTypes[0].Descriptor() } func (ConversionValueRuleErrorEnum_ConversionValueRuleError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_enumTypes[0] } func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) Number() protoreflect.EnumNumber { @@ -146,7 +146,7 @@ func (x ConversionValueRuleErrorEnum_ConversionValueRuleError) Number() protoref // Deprecated: Use ConversionValueRuleErrorEnum_ConversionValueRuleError.Descriptor instead. func (ConversionValueRuleErrorEnum_ConversionValueRuleError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible conversion value rule errors. @@ -158,7 +158,7 @@ type ConversionValueRuleErrorEnum struct { func (x *ConversionValueRuleErrorEnum) Reset() { *x = ConversionValueRuleErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170,7 +170,7 @@ func (x *ConversionValueRuleErrorEnum) String() string { func (*ConversionValueRuleErrorEnum) ProtoMessage() {} func (x *ConversionValueRuleErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183,18 +183,18 @@ func (x *ConversionValueRuleErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionValueRuleErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_value_rule_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_value_rule_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa2, 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, 0x81, 0x04, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, @@ -231,43 +231,43 @@ var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDe 0x4e, 0x4f, 0x5f, 0x44, 0x41, 0x59, 0x5f, 0x4f, 0x46, 0x5f, 0x57, 0x45, 0x45, 0x4b, 0x5f, 0x53, 0x45, 0x4c, 0x45, 0x43, 0x54, 0x45, 0x44, 0x10, 0x0e, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_goTypes = []any{ - (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 0: google.ads.googleads.v21.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError - (*ConversionValueRuleErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionValueRuleErrorEnum +var file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_goTypes = []any{ + (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 0: google.ads.googleads.v22.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError + (*ConversionValueRuleErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionValueRuleErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -275,27 +275,27 @@ var file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_value_rule_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_value_rule_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_value_rule_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_value_rule_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 019ee833..f2e2d4c2 100644 --- a/errors/conversion_value_rule_set_error.pb.go +++ b/errors/conversion_value_rule_set_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/conversion_value_rule_set_error.proto +// source: google/ads/googleads/v22/errors/conversion_value_rule_set_error.proto package errors @@ -144,11 +144,11 @@ func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) String() st } func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_enumTypes[0].Descriptor() } func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_enumTypes[0] } func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Number() protoreflect.EnumNumber { @@ -157,7 +157,7 @@ func (x ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) Number() pr // Deprecated: Use ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError.Descriptor instead. func (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible conversion value rule set errors. @@ -169,7 +169,7 @@ type ConversionValueRuleSetErrorEnum struct { func (x *ConversionValueRuleSetErrorEnum) Reset() { *x = ConversionValueRuleSetErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -181,7 +181,7 @@ func (x *ConversionValueRuleSetErrorEnum) String() string { func (*ConversionValueRuleSetErrorEnum) ProtoMessage() {} func (x *ConversionValueRuleSetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -194,19 +194,19 @@ func (x *ConversionValueRuleSetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSetErrorEnum.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9a, 0x05, 0x0a, 0x1f, 0x43, 0x6f, 0x6e, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x9a, 0x05, 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, 0xf6, 0x04, 0x0a, 0x1b, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x61, 0x6c, 0x75, 0x65, @@ -250,42 +250,42 @@ var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_r 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x43, 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x0f, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20, 0x43, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_goTypes = []any{ - (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 0: google.ads.googleads.v21.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError - (*ConversionValueRuleSetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ConversionValueRuleSetErrorEnum +var file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_goTypes = []any{ + (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 0: google.ads.googleads.v22.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError + (*ConversionValueRuleSetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ConversionValueRuleSetErrorEnum } -var file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -293,27 +293,27 @@ var file_google_ads_googleads_v21_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_v21_errors_conversion_value_rule_set_error_proto_init() } -func file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_init() { - if File_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_init() } +func file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_init() { + if File_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto = out.File - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto = out.File + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 228579e1..081adb21 100644 --- a/errors/country_code_error.pb.go +++ b/errors/country_code_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/country_code_error.proto +// source: google/ads/googleads/v22/errors/country_code_error.proto package errors @@ -72,11 +72,11 @@ func (x CountryCodeErrorEnum_CountryCodeError) String() string { } func (CountryCodeErrorEnum_CountryCodeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_country_code_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_country_code_error_proto_enumTypes[0].Descriptor() } func (CountryCodeErrorEnum_CountryCodeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_country_code_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_country_code_error_proto_enumTypes[0] } func (x CountryCodeErrorEnum_CountryCodeError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_country_code_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_country_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_country_code_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *CountryCodeErrorEnum) String() string { func (*CountryCodeErrorEnum) ProtoMessage() {} func (x *CountryCodeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_country_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_country_code_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *CountryCodeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CountryCodeErrorEnum.ProtoReflect.Descriptor instead. func (*CountryCodeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_country_code_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_country_code_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_country_code_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x62, 0x0a, 0x14, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,42 +141,42 @@ var file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc = stri 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_country_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_country_code_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_country_code_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_country_code_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_country_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_country_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_country_code_error_proto_goTypes = []any{ - (CountryCodeErrorEnum_CountryCodeError)(0), // 0: google.ads.googleads.v21.errors.CountryCodeErrorEnum.CountryCodeError - (*CountryCodeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CountryCodeErrorEnum +var file_google_ads_googleads_v22_errors_country_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_country_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_country_code_error_proto_goTypes = []any{ + (CountryCodeErrorEnum_CountryCodeError)(0), // 0: google.ads.googleads.v22.errors.CountryCodeErrorEnum.CountryCodeError + (*CountryCodeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CountryCodeErrorEnum } -var file_google_ads_googleads_v21_errors_country_code_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_errors_country_code_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_country_code_error_proto_init() } -func file_google_ads_googleads_v21_errors_country_code_error_proto_init() { - if File_google_ads_googleads_v21_errors_country_code_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_country_code_error_proto_init() } +func file_google_ads_googleads_v22_errors_country_code_error_proto_init() { + if File_google_ads_googleads_v22_errors_country_code_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_country_code_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_country_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_country_code_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_country_code_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_country_code_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_country_code_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_country_code_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_country_code_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_country_code_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_country_code_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_country_code_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_country_code_error_proto = out.File - file_google_ads_googleads_v21_errors_country_code_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_country_code_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_country_code_error_proto = out.File + file_google_ads_googleads_v22_errors_country_code_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_country_code_error_proto_depIdxs = nil } diff --git a/errors/criterion_error.pb.go b/errors/criterion_error.pb.go index 756970c9..a20d941f 100644 --- a/errors/criterion_error.pb.go +++ b/errors/criterion_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/criterion_error.proto +// source: google/ads/googleads/v22/errors/criterion_error.proto package errors @@ -406,6 +406,10 @@ const ( // The operation failed because the campaign is missing the // self-declaration on political advertising status in the EU. CriterionErrorEnum_MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION CriterionErrorEnum_CriterionError = 176 + // Targeting this UserList is not allowed for this campaign type. + CriterionErrorEnum_INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST CriterionErrorEnum_CriterionError = 177 + // The user list cannot be used while it is pending privacy review. + CriterionErrorEnum_CANNOT_ADD_USER_LIST_PENDING_PRIVACY_REVIEW CriterionErrorEnum_CriterionError = 178 ) // Enum value maps for CriterionErrorEnum_CriterionError. @@ -570,6 +574,8 @@ var ( 174: "AI_MAX_MUST_BE_ENABLED", 175: "NOT_AVAILABLE_FOR_AI_MAX_CAMPAIGNS", 176: "MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION", + 177: "INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST", + 178: "CANNOT_ADD_USER_LIST_PENDING_PRIVACY_REVIEW", } CriterionErrorEnum_CriterionError_value = map[string]int32{ "UNSPECIFIED": 0, @@ -731,6 +737,8 @@ var ( "AI_MAX_MUST_BE_ENABLED": 174, "NOT_AVAILABLE_FOR_AI_MAX_CAMPAIGNS": 175, "MISSING_EU_POLITICAL_ADVERTISING_SELF_DECLARATION": 176, + "INVALID_CAMPAIGN_TYPE_FOR_THIRD_PARTY_PARTNER_DATA_LIST": 177, + "CANNOT_ADD_USER_LIST_PENDING_PRIVACY_REVIEW": 178, } ) @@ -745,11 +753,11 @@ func (x CriterionErrorEnum_CriterionError) String() string { } func (CriterionErrorEnum_CriterionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_criterion_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_criterion_error_proto_enumTypes[0].Descriptor() } func (CriterionErrorEnum_CriterionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_criterion_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_criterion_error_proto_enumTypes[0] } func (x CriterionErrorEnum_CriterionError) Number() protoreflect.EnumNumber { @@ -758,7 +766,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_v21_errors_criterion_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible criterion errors. @@ -770,7 +778,7 @@ type CriterionErrorEnum struct { func (x *CriterionErrorEnum) Reset() { *x = CriterionErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_criterion_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -782,7 +790,7 @@ func (x *CriterionErrorEnum) String() string { func (*CriterionErrorEnum) ProtoMessage() {} func (x *CriterionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_criterion_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -795,20 +803,20 @@ func (x *CriterionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionErrorEnum.ProtoReflect.Descriptor instead. func (*CriterionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_criterion_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_criterion_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_criterion_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x98, 0x33, 0x0a, 0x12, 0x43, 0x72, 0x69, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x88, 0x34, 0x0a, 0x12, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, - 0x81, 0x33, 0x0a, 0x0e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, + 0xf1, 0x33, 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, 0x44, 0x10, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x1a, 0x0a, 0x16, 0x43, 0x4f, 0x4e, 0x43, 0x52, 0x45, 0x54, 0x45, 0x5f, 0x54, 0x59, 0x50, @@ -1216,44 +1224,51 @@ var file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc = string( 0x49, 0x53, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x45, 0x55, 0x5f, 0x50, 0x4f, 0x4c, 0x49, 0x54, 0x49, 0x43, 0x41, 0x4c, 0x5f, 0x41, 0x44, 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x44, 0x45, 0x43, 0x4c, 0x41, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, - 0x10, 0xb0, 0x01, 0x42, 0xf3, 0x01, 0x0a, 0x23, 0x63, 0x6f, 0x6d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x10, 0xb0, 0x01, 0x12, 0x3c, 0x0a, 0x37, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x43, + 0x41, 0x4d, 0x50, 0x41, 0x49, 0x47, 0x4e, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x46, 0x4f, 0x52, + 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x50, 0x41, 0x52, + 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x10, 0xb1, + 0x01, 0x12, 0x30, 0x0a, 0x2b, 0x43, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x44, 0x44, 0x5f, + 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x50, 0x45, 0x4e, 0x44, 0x49, 0x4e, + 0x47, 0x5f, 0x50, 0x52, 0x49, 0x56, 0x41, 0x43, 0x59, 0x5f, 0x52, 0x45, 0x56, 0x49, 0x45, 0x57, + 0x10, 0xb2, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x43, 0x72, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_criterion_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_criterion_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_criterion_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_criterion_error_proto_goTypes = []any{ - (CriterionErrorEnum_CriterionError)(0), // 0: google.ads.googleads.v21.errors.CriterionErrorEnum.CriterionError - (*CriterionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CriterionErrorEnum +var file_google_ads_googleads_v22_errors_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_criterion_error_proto_goTypes = []any{ + (CriterionErrorEnum_CriterionError)(0), // 0: google.ads.googleads.v22.errors.CriterionErrorEnum.CriterionError + (*CriterionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CriterionErrorEnum } -var file_google_ads_googleads_v21_errors_criterion_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -1261,27 +1276,27 @@ var file_google_ads_googleads_v21_errors_criterion_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_criterion_error_proto_init() } -func file_google_ads_googleads_v21_errors_criterion_error_proto_init() { - if File_google_ads_googleads_v21_errors_criterion_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_criterion_error_proto_init() } +func file_google_ads_googleads_v22_errors_criterion_error_proto_init() { + if File_google_ads_googleads_v22_errors_criterion_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_criterion_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_criterion_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_criterion_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_criterion_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_criterion_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_criterion_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_criterion_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_criterion_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_criterion_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_criterion_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_criterion_error_proto = out.File - file_google_ads_googleads_v21_errors_criterion_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_criterion_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_criterion_error_proto = out.File + file_google_ads_googleads_v22_errors_criterion_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_criterion_error_proto_depIdxs = nil } diff --git a/errors/currency_code_error.pb.go b/errors/currency_code_error.pb.go index bfdc23c3..d3f8e6a1 100644 --- a/errors/currency_code_error.pb.go +++ b/errors/currency_code_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/currency_code_error.proto +// source: google/ads/googleads/v22/errors/currency_code_error.proto package errors @@ -72,11 +72,11 @@ func (x CurrencyCodeErrorEnum_CurrencyCodeError) String() string { } func (CurrencyCodeErrorEnum_CurrencyCodeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_currency_code_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_currency_code_error_proto_enumTypes[0].Descriptor() } func (CurrencyCodeErrorEnum_CurrencyCodeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_currency_code_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_currency_code_error_proto_enumTypes[0] } func (x CurrencyCodeErrorEnum_CurrencyCodeError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_currency_code_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_currency_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_currency_code_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *CurrencyCodeErrorEnum) String() string { func (*CurrencyCodeErrorEnum) ProtoMessage() {} func (x *CurrencyCodeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_currency_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_currency_code_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *CurrencyCodeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CurrencyCodeErrorEnum.ProtoReflect.Descriptor instead. func (*CurrencyCodeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_currency_code_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_currency_code_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5b, 0x0a, 0x15, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,42 +141,42 @@ var file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_currency_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_currency_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_currency_code_error_proto_goTypes = []any{ - (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 0: google.ads.googleads.v21.errors.CurrencyCodeErrorEnum.CurrencyCodeError - (*CurrencyCodeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CurrencyCodeErrorEnum +var file_google_ads_googleads_v22_errors_currency_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_currency_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_currency_code_error_proto_goTypes = []any{ + (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 0: google.ads.googleads.v22.errors.CurrencyCodeErrorEnum.CurrencyCodeError + (*CurrencyCodeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CurrencyCodeErrorEnum } -var file_google_ads_googleads_v21_errors_currency_code_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_errors_currency_code_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_currency_code_error_proto_init() } -func file_google_ads_googleads_v21_errors_currency_code_error_proto_init() { - if File_google_ads_googleads_v21_errors_currency_code_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_currency_code_error_proto_init() } +func file_google_ads_googleads_v22_errors_currency_code_error_proto_init() { + if File_google_ads_googleads_v22_errors_currency_code_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_currency_code_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_currency_code_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_currency_code_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_currency_code_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_currency_code_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_currency_code_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_currency_code_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_currency_code_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_currency_code_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_currency_code_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_currency_code_error_proto = out.File - file_google_ads_googleads_v21_errors_currency_code_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_currency_code_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_currency_code_error_proto = out.File + file_google_ads_googleads_v22_errors_currency_code_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_currency_code_error_proto_depIdxs = nil } diff --git a/errors/currency_error.pb.go b/errors/currency_error.pb.go index fb59b648..87f7726f 100644 --- a/errors/currency_error.pb.go +++ b/errors/currency_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/currency_error.proto +// source: google/ads/googleads/v22/errors/currency_error.proto package errors @@ -72,11 +72,11 @@ func (x CurrencyErrorEnum_CurrencyError) String() string { } func (CurrencyErrorEnum_CurrencyError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_currency_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_currency_error_proto_enumTypes[0].Descriptor() } func (CurrencyErrorEnum_CurrencyError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_currency_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_currency_error_proto_enumTypes[0] } func (x CurrencyErrorEnum_CurrencyError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_currency_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_currency_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_currency_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *CurrencyErrorEnum) String() string { func (*CurrencyErrorEnum) ProtoMessage() {} func (x *CurrencyErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_currency_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_currency_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *CurrencyErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CurrencyErrorEnum.ProtoReflect.Descriptor instead. func (*CurrencyErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_currency_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_currency_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_currency_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_currency_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_currency_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_currency_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_currency_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_currency_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_currency_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_currency_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_currency_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_currency_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_currency_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_currency_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_currency_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_currency_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_currency_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_currency_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_currency_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_currency_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_currency_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_currency_error_proto_goTypes = []any{ - (CurrencyErrorEnum_CurrencyError)(0), // 0: google.ads.googleads.v21.errors.CurrencyErrorEnum.CurrencyError - (*CurrencyErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CurrencyErrorEnum +var file_google_ads_googleads_v22_errors_currency_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_currency_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_currency_error_proto_goTypes = []any{ + (CurrencyErrorEnum_CurrencyError)(0), // 0: google.ads.googleads.v22.errors.CurrencyErrorEnum.CurrencyError + (*CurrencyErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CurrencyErrorEnum } -var file_google_ads_googleads_v21_errors_currency_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_errors_currency_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_currency_error_proto_init() } -func file_google_ads_googleads_v21_errors_currency_error_proto_init() { - if File_google_ads_googleads_v21_errors_currency_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_currency_error_proto_init() } +func file_google_ads_googleads_v22_errors_currency_error_proto_init() { + if File_google_ads_googleads_v22_errors_currency_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_currency_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_currency_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_currency_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_currency_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_currency_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_currency_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_currency_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_currency_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_currency_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_currency_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_currency_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_currency_error_proto = out.File - file_google_ads_googleads_v21_errors_currency_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_currency_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_currency_error_proto = out.File + file_google_ads_googleads_v22_errors_currency_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_currency_error_proto_depIdxs = nil } diff --git a/errors/custom_audience_error.pb.go b/errors/custom_audience_error.pb.go index 69a586bb..fe62188b 100644 --- a/errors/custom_audience_error.pb.go +++ b/errors/custom_audience_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/custom_audience_error.proto +// source: google/ads/googleads/v22/errors/custom_audience_error.proto package errors @@ -100,11 +100,11 @@ func (x CustomAudienceErrorEnum_CustomAudienceError) String() string { } func (CustomAudienceErrorEnum_CustomAudienceError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_custom_audience_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_custom_audience_error_proto_enumTypes[0].Descriptor() } func (CustomAudienceErrorEnum_CustomAudienceError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_custom_audience_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_custom_audience_error_proto_enumTypes[0] } func (x CustomAudienceErrorEnum_CustomAudienceError) Number() protoreflect.EnumNumber { @@ -113,7 +113,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_v21_errors_custom_audience_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_custom_audience_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_audience_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *CustomAudienceErrorEnum) String() string { func (*CustomAudienceErrorEnum) ProtoMessage() {} func (x *CustomAudienceErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_custom_audience_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_audience_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,18 +150,18 @@ func (x *CustomAudienceErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceErrorEnum.ProtoReflect.Descriptor instead. func (*CustomAudienceErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_custom_audience_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_custom_audience_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc5, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -184,42 +184,42 @@ var file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_custom_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_custom_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_custom_audience_error_proto_goTypes = []any{ - (CustomAudienceErrorEnum_CustomAudienceError)(0), // 0: google.ads.googleads.v21.errors.CustomAudienceErrorEnum.CustomAudienceError - (*CustomAudienceErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomAudienceErrorEnum +var file_google_ads_googleads_v22_errors_custom_audience_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_custom_audience_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_custom_audience_error_proto_goTypes = []any{ + (CustomAudienceErrorEnum_CustomAudienceError)(0), // 0: google.ads.googleads.v22.errors.CustomAudienceErrorEnum.CustomAudienceError + (*CustomAudienceErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomAudienceErrorEnum } -var file_google_ads_googleads_v21_errors_custom_audience_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -227,27 +227,27 @@ var file_google_ads_googleads_v21_errors_custom_audience_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_custom_audience_error_proto_init() } -func file_google_ads_googleads_v21_errors_custom_audience_error_proto_init() { - if File_google_ads_googleads_v21_errors_custom_audience_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_custom_audience_error_proto_init() } +func file_google_ads_googleads_v22_errors_custom_audience_error_proto_init() { + if File_google_ads_googleads_v22_errors_custom_audience_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_audience_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_audience_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_custom_audience_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_custom_audience_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_custom_audience_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_custom_audience_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_custom_audience_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_custom_audience_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_custom_audience_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_custom_audience_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_custom_audience_error_proto = out.File - file_google_ads_googleads_v21_errors_custom_audience_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_custom_audience_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_custom_audience_error_proto = out.File + file_google_ads_googleads_v22_errors_custom_audience_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 9fa6857f..bff677d7 100644 --- a/errors/custom_conversion_goal_error.pb.go +++ b/errors/custom_conversion_goal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/custom_conversion_goal_error.proto +// source: google/ads/googleads/v22/errors/custom_conversion_goal_error.proto package errors @@ -95,11 +95,11 @@ func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) String() string } func (CustomConversionGoalErrorEnum_CustomConversionGoalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_enumTypes[0].Descriptor() } func (CustomConversionGoalErrorEnum_CustomConversionGoalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_enumTypes[0] } func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) Number() protoreflect.EnumNumber { @@ -108,7 +108,7 @@ func (x CustomConversionGoalErrorEnum_CustomConversionGoalError) Number() protor // Deprecated: Use CustomConversionGoalErrorEnum_CustomConversionGoalError.Descriptor instead. func (CustomConversionGoalErrorEnum_CustomConversionGoalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *CustomConversionGoalErrorEnum) String() string { func (*CustomConversionGoalErrorEnum) ProtoMessage() {} func (x *CustomConversionGoalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,18 +145,18 @@ func (x *CustomConversionGoalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoalErrorEnum.ProtoReflect.Descriptor instead. func (*CustomConversionGoalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -180,43 +180,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_goTypes = []any{ - (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 0: google.ads.googleads.v21.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError - (*CustomConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomConversionGoalErrorEnum +var file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_goTypes = []any{ + (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 0: google.ads.googleads.v22.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError + (*CustomConversionGoalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomConversionGoalErrorEnum } -var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -224,27 +224,27 @@ var file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_init() } -func file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_init() { - if File_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_init() } +func file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_init() { + if File_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto = out.File - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto = out.File + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 67fc7f51..55721dc1 100644 --- a/errors/custom_interest_error.pb.go +++ b/errors/custom_interest_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/custom_interest_error.proto +// source: google/ads/googleads/v22/errors/custom_interest_error.proto package errors @@ -97,11 +97,11 @@ func (x CustomInterestErrorEnum_CustomInterestError) String() string { } func (CustomInterestErrorEnum_CustomInterestError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_custom_interest_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_custom_interest_error_proto_enumTypes[0].Descriptor() } func (CustomInterestErrorEnum_CustomInterestError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_custom_interest_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_custom_interest_error_proto_enumTypes[0] } func (x CustomInterestErrorEnum_CustomInterestError) Number() protoreflect.EnumNumber { @@ -110,7 +110,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_v21_errors_custom_interest_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_custom_interest_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_interest_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *CustomInterestErrorEnum) String() string { func (*CustomInterestErrorEnum) ProtoMessage() {} func (x *CustomInterestErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_custom_interest_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_custom_interest_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,18 +147,18 @@ func (x *CustomInterestErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestErrorEnum.ProtoReflect.Descriptor instead. func (*CustomInterestErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_custom_interest_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_custom_interest_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd9, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -182,42 +182,42 @@ var file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_custom_interest_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_custom_interest_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_custom_interest_error_proto_goTypes = []any{ - (CustomInterestErrorEnum_CustomInterestError)(0), // 0: google.ads.googleads.v21.errors.CustomInterestErrorEnum.CustomInterestError - (*CustomInterestErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomInterestErrorEnum +var file_google_ads_googleads_v22_errors_custom_interest_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_custom_interest_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_custom_interest_error_proto_goTypes = []any{ + (CustomInterestErrorEnum_CustomInterestError)(0), // 0: google.ads.googleads.v22.errors.CustomInterestErrorEnum.CustomInterestError + (*CustomInterestErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomInterestErrorEnum } -var file_google_ads_googleads_v21_errors_custom_interest_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -225,27 +225,27 @@ var file_google_ads_googleads_v21_errors_custom_interest_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_custom_interest_error_proto_init() } -func file_google_ads_googleads_v21_errors_custom_interest_error_proto_init() { - if File_google_ads_googleads_v21_errors_custom_interest_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_custom_interest_error_proto_init() } +func file_google_ads_googleads_v22_errors_custom_interest_error_proto_init() { + if File_google_ads_googleads_v22_errors_custom_interest_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_custom_interest_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_custom_interest_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_custom_interest_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_custom_interest_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_custom_interest_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_custom_interest_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_custom_interest_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_custom_interest_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_custom_interest_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_custom_interest_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_custom_interest_error_proto = out.File - file_google_ads_googleads_v21_errors_custom_interest_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_custom_interest_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_custom_interest_error_proto = out.File + file_google_ads_googleads_v22_errors_custom_interest_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 5e71caff..76af988a 100644 --- a/errors/customer_client_link_error.pb.go +++ b/errors/customer_client_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_client_link_error.proto +// source: google/ads/googleads/v22/errors/customer_client_link_error.proto package errors @@ -100,11 +100,11 @@ func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) String() string { } func (CustomerClientLinkErrorEnum_CustomerClientLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_client_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_client_link_error_proto_enumTypes[0].Descriptor() } func (CustomerClientLinkErrorEnum_CustomerClientLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_client_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_client_link_error_proto_enumTypes[0] } func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) Number() protoreflect.EnumNumber { @@ -113,7 +113,7 @@ func (x CustomerClientLinkErrorEnum_CustomerClientLinkError) Number() protorefle // Deprecated: Use CustomerClientLinkErrorEnum_CustomerClientLinkError.Descriptor instead. func (CustomerClientLinkErrorEnum_CustomerClientLinkError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_client_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_client_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *CustomerClientLinkErrorEnum) String() string { func (*CustomerClientLinkErrorEnum) ProtoMessage() {} func (x *CustomerClientLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_client_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_client_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,18 +150,18 @@ func (x *CustomerClientLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClientLinkErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerClientLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_client_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_client_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,42 +189,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x43, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_goTypes = []any{ - (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 0: google.ads.googleads.v21.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError - (*CustomerClientLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerClientLinkErrorEnum +var file_google_ads_googleads_v22_errors_customer_client_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_client_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_client_link_error_proto_goTypes = []any{ + (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 0: google.ads.googleads.v22.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError + (*CustomerClientLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerClientLinkErrorEnum } -var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -232,27 +232,27 @@ var file_google_ads_googleads_v21_errors_customer_client_link_error_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_client_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_client_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_client_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_client_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_client_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_client_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_client_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_client_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_client_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_client_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_client_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_client_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_client_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_client_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_client_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_client_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_client_link_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_client_link_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 d8ba5e53..08316843 100644 --- a/errors/customer_customizer_error.pb.go +++ b/errors/customer_customizer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_customizer_error.proto +// source: google/ads/googleads/v22/errors/customer_customizer_error.proto package errors @@ -68,11 +68,11 @@ func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) String() string { } func (CustomerCustomizerErrorEnum_CustomerCustomizerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_customizer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_customizer_error_proto_enumTypes[0].Descriptor() } func (CustomerCustomizerErrorEnum_CustomerCustomizerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_customizer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_customizer_error_proto_enumTypes[0] } func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) Number() protoreflect.EnumNumber { @@ -81,7 +81,7 @@ func (x CustomerCustomizerErrorEnum_CustomerCustomizerError) Number() protorefle // Deprecated: Use CustomerCustomizerErrorEnum_CustomerCustomizerError.Descriptor instead. func (CustomerCustomizerErrorEnum_CustomerCustomizerError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_customizer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *CustomerCustomizerErrorEnum) String() string { func (*CustomerCustomizerErrorEnum) ProtoMessage() {} func (x *CustomerCustomizerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_customizer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_customizer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,18 +118,18 @@ func (x *CustomerCustomizerErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerCustomizerErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerCustomizerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_customizer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_customizer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -137,43 +137,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_goTypes = []any{ - (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 0: google.ads.googleads.v21.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError - (*CustomerCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerCustomizerErrorEnum +var file_google_ads_googleads_v22_errors_customer_customizer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_customizer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_customizer_error_proto_goTypes = []any{ + (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 0: google.ads.googleads.v22.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError + (*CustomerCustomizerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerCustomizerErrorEnum } -var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -181,27 +181,27 @@ var file_google_ads_googleads_v21_errors_customer_customizer_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_customizer_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_customizer_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_customizer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_customizer_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_customizer_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_customizer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_customizer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_customizer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_customizer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_customizer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_customizer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_customizer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_customizer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_customizer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_customizer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_customizer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_customizer_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_customizer_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_depIdxs = nil } diff --git a/errors/customer_error.pb.go b/errors/customer_error.pb.go index bcc10ab7..0d2dc462 100644 --- a/errors/customer_error.pb.go +++ b/errors/customer_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_error.proto +// source: google/ads/googleads/v22/errors/customer_error.proto package errors @@ -86,11 +86,11 @@ func (x CustomerErrorEnum_CustomerError) String() string { } func (CustomerErrorEnum_CustomerError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_error_proto_enumTypes[0].Descriptor() } func (CustomerErrorEnum_CustomerError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_error_proto_enumTypes[0] } func (x CustomerErrorEnum_CustomerError) Number() protoreflect.EnumNumber { @@ -99,7 +99,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_v21_errors_customer_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_customer_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible customer errors. @@ -111,7 +111,7 @@ type CustomerErrorEnum struct { func (x *CustomerErrorEnum) Reset() { *x = CustomerErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_customer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *CustomerErrorEnum) String() string { func (*CustomerErrorEnum) ProtoMessage() {} func (x *CustomerErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,17 +136,17 @@ func (x *CustomerErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc7, 0x01, 0x0a, 0x11, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xb1, 0x01, 0x0a, 0x0d, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, @@ -162,41 +162,41 @@ var file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc = string([ 0x5f, 0x49, 0x4e, 0x45, 0x4c, 0x49, 0x47, 0x49, 0x42, 0x4c, 0x45, 0x5f, 0x4d, 0x43, 0x43, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_error_proto_goTypes = []any{ - (CustomerErrorEnum_CustomerError)(0), // 0: google.ads.googleads.v21.errors.CustomerErrorEnum.CustomerError - (*CustomerErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerErrorEnum +var file_google_ads_googleads_v22_errors_customer_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_error_proto_goTypes = []any{ + (CustomerErrorEnum_CustomerError)(0), // 0: google.ads.googleads.v22.errors.CustomerErrorEnum.CustomerError + (*CustomerErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerErrorEnum } -var file_google_ads_googleads_v21_errors_customer_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_errors_customer_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_customer_error_proto_depIdxs = nil } diff --git a/errors/customer_feed_error.pb.go b/errors/customer_feed_error.pb.go index a08ad2c5..c3513ca9 100644 --- a/errors/customer_feed_error.pb.go +++ b/errors/customer_feed_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_feed_error.proto +// source: google/ads/googleads/v22/errors/customer_feed_error.proto package errors @@ -97,11 +97,11 @@ func (x CustomerFeedErrorEnum_CustomerFeedError) String() string { } func (CustomerFeedErrorEnum_CustomerFeedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_feed_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_feed_error_proto_enumTypes[0].Descriptor() } func (CustomerFeedErrorEnum_CustomerFeedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_feed_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_feed_error_proto_enumTypes[0] } func (x CustomerFeedErrorEnum_CustomerFeedError) Number() protoreflect.EnumNumber { @@ -110,7 +110,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_v21_errors_customer_feed_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_feed_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *CustomerFeedErrorEnum) String() string { func (*CustomerFeedErrorEnum) ProtoMessage() {} func (x *CustomerFeedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_feed_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,18 +147,18 @@ func (x *CustomerFeedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerFeedErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerFeedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_feed_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_feed_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf7, 0x02, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -184,42 +184,42 @@ var file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_feed_error_proto_goTypes = []any{ - (CustomerFeedErrorEnum_CustomerFeedError)(0), // 0: google.ads.googleads.v21.errors.CustomerFeedErrorEnum.CustomerFeedError - (*CustomerFeedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerFeedErrorEnum +var file_google_ads_googleads_v22_errors_customer_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_feed_error_proto_goTypes = []any{ + (CustomerFeedErrorEnum_CustomerFeedError)(0), // 0: google.ads.googleads.v22.errors.CustomerFeedErrorEnum.CustomerFeedError + (*CustomerFeedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerFeedErrorEnum } -var file_google_ads_googleads_v21_errors_customer_feed_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -227,27 +227,27 @@ var file_google_ads_googleads_v21_errors_customer_feed_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_feed_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_feed_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_feed_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_feed_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_feed_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_feed_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_feed_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_feed_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_feed_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_feed_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_feed_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_feed_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_feed_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_feed_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_feed_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_feed_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_feed_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_feed_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_feed_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_feed_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_feed_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 887de72f..b642b4d3 100644 --- a/errors/customer_lifecycle_goal_error.pb.go +++ b/errors/customer_lifecycle_goal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_lifecycle_goal_error.proto +// source: google/ads/googleads/v22/errors/customer_lifecycle_goal_error.proto package errors @@ -112,11 +112,11 @@ func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) String() stri } func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_enumTypes[0].Descriptor() } func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_enumTypes[0] } func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Number() protoreflect.EnumNumber { @@ -125,7 +125,7 @@ func (x CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) Number() prot // Deprecated: Use CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError.Descriptor instead. func (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *CustomerLifecycleGoalErrorEnum) String() string { func (*CustomerLifecycleGoalErrorEnum) ProtoMessage() {} func (x *CustomerLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,18 +162,18 @@ func (x *CustomerLifecycleGoalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLifecycleGoalErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerLifecycleGoalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -202,43 +202,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_goTypes = []any{ - (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 0: google.ads.googleads.v21.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError - (*CustomerLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerLifecycleGoalErrorEnum +var file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_goTypes = []any{ + (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 0: google.ads.googleads.v22.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError + (*CustomerLifecycleGoalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerLifecycleGoalErrorEnum } -var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -246,27 +246,27 @@ var file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 22fc6523..fc8cc43a 100644 --- a/errors/customer_manager_link_error.pb.go +++ b/errors/customer_manager_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_manager_link_error.proto +// source: google/ads/googleads/v22/errors/customer_manager_link_error.proto package errors @@ -108,11 +108,11 @@ func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) String() string { } func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_enumTypes[0].Descriptor() } func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_enumTypes[0] } func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Number() protoreflect.EnumNumber { @@ -121,7 +121,7 @@ func (x CustomerManagerLinkErrorEnum_CustomerManagerLinkError) Number() protoref // Deprecated: Use CustomerManagerLinkErrorEnum_CustomerManagerLinkError.Descriptor instead. func (CustomerManagerLinkErrorEnum_CustomerManagerLinkError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *CustomerManagerLinkErrorEnum) String() string { func (*CustomerManagerLinkErrorEnum) ProtoMessage() {} func (x *CustomerManagerLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,18 +158,18 @@ func (x *CustomerManagerLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerManagerLinkErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerManagerLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_manager_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_manager_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -201,42 +201,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_goTypes = []any{ - (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 0: google.ads.googleads.v21.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError - (*CustomerManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerManagerLinkErrorEnum +var file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_goTypes = []any{ + (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 0: google.ads.googleads.v22.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError + (*CustomerManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerManagerLinkErrorEnum } -var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -244,27 +244,27 @@ var file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_manager_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_manager_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_manager_link_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_manager_link_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 520fd535..88c11c9a 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 @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_sk_ad_network_conversion_value_schema_error.proto +// source: google/ads/googleads/v22/errors/customer_sk_ad_network_conversion_value_schema_error.proto package errors @@ -92,11 +92,11 @@ func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkCon } func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0].Descriptor() } func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes[0] } func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkCon // Deprecated: Use CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError.Descriptor instead. func (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) String() string { func (*CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,20 +143,20 @@ func (x *CustomerSkAdNetworkConversionValueSchemaErrorEnum) ProtoReflect() proto // Deprecated: Use CustomerSkAdNetworkConversionValueSchemaErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchemaErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x02, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -175,7 +175,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,36 +183,36 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = []any{ - (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 0: google.ads.googleads.v21.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError - (*CustomerSkAdNetworkConversionValueSchemaErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum +var file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = []any{ + (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 0: google.ads.googleads.v22.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError + (*CustomerSkAdNetworkConversionValueSchemaErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum } -var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -221,28 +221,28 @@ var file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value } func init() { - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto != nil { +func file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 05fbb3ed..9d307cfe 100644 --- a/errors/customer_user_access_error.pb.go +++ b/errors/customer_user_access_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customer_user_access_error.proto +// source: google/ads/googleads/v22/errors/customer_user_access_error.proto package errors @@ -89,11 +89,11 @@ func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) String() string { } func (CustomerUserAccessErrorEnum_CustomerUserAccessError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customer_user_access_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customer_user_access_error_proto_enumTypes[0].Descriptor() } func (CustomerUserAccessErrorEnum_CustomerUserAccessError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customer_user_access_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customer_user_access_error_proto_enumTypes[0] } func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) Number() protoreflect.EnumNumber { @@ -102,7 +102,7 @@ func (x CustomerUserAccessErrorEnum_CustomerUserAccessError) Number() protorefle // Deprecated: Use CustomerUserAccessErrorEnum_CustomerUserAccessError.Descriptor instead. func (CustomerUserAccessErrorEnum_CustomerUserAccessError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customer_user_access_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_user_access_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *CustomerUserAccessErrorEnum) String() string { func (*CustomerUserAccessErrorEnum) ProtoMessage() {} func (x *CustomerUserAccessErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customer_user_access_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customer_user_access_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,18 +139,18 @@ func (x *CustomerUserAccessErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccessErrorEnum.ProtoReflect.Descriptor instead. func (*CustomerUserAccessErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customer_user_access_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customer_user_access_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,43 +167,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_goTypes = []any{ - (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 0: google.ads.googleads.v21.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError - (*CustomerUserAccessErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomerUserAccessErrorEnum +var file_google_ads_googleads_v22_errors_customer_user_access_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customer_user_access_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customer_user_access_error_proto_goTypes = []any{ + (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 0: google.ads.googleads.v22.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError + (*CustomerUserAccessErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomerUserAccessErrorEnum } -var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,27 +211,27 @@ var file_google_ads_googleads_v21_errors_customer_user_access_error_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customer_user_access_error_proto_init() } -func file_google_ads_googleads_v21_errors_customer_user_access_error_proto_init() { - if File_google_ads_googleads_v21_errors_customer_user_access_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customer_user_access_error_proto_init() } +func file_google_ads_googleads_v22_errors_customer_user_access_error_proto_init() { + if File_google_ads_googleads_v22_errors_customer_user_access_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customer_user_access_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customer_user_access_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customer_user_access_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customer_user_access_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customer_user_access_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customer_user_access_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customer_user_access_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customer_user_access_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customer_user_access_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customer_user_access_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customer_user_access_error_proto = out.File - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customer_user_access_error_proto = out.File + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 5519ba3d..e06b72f0 100644 --- a/errors/customizer_attribute_error.pb.go +++ b/errors/customizer_attribute_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/customizer_attribute_error.proto +// source: google/ads/googleads/v22/errors/customizer_attribute_error.proto package errors @@ -73,11 +73,11 @@ func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) String() string { } func (CustomizerAttributeErrorEnum_CustomizerAttributeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_enumTypes[0].Descriptor() } func (CustomizerAttributeErrorEnum_CustomizerAttributeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_enumTypes[0] } func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) Number() protoreflect.EnumNumber { @@ -86,7 +86,7 @@ func (x CustomizerAttributeErrorEnum_CustomizerAttributeError) Number() protoref // Deprecated: Use CustomizerAttributeErrorEnum_CustomizerAttributeError.Descriptor instead. func (CustomizerAttributeErrorEnum_CustomizerAttributeError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *CustomizerAttributeErrorEnum) String() string { func (*CustomizerAttributeErrorEnum) ProtoMessage() {} func (x *CustomizerAttributeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *CustomizerAttributeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttributeErrorEnum.ProtoReflect.Descriptor instead. func (*CustomizerAttributeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_customizer_attribute_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_customizer_attribute_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -145,42 +145,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_goTypes = []any{ - (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 0: google.ads.googleads.v21.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError - (*CustomizerAttributeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.CustomizerAttributeErrorEnum +var file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_goTypes = []any{ + (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 0: google.ads.googleads.v22.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError + (*CustomizerAttributeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.CustomizerAttributeErrorEnum } -var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_init() } -func file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_init() { - if File_google_ads_googleads_v21_errors_customizer_attribute_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_init() } +func file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_init() { + if File_google_ads_googleads_v22_errors_customizer_attribute_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_customizer_attribute_error_proto = out.File - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_customizer_attribute_error_proto = out.File + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_depIdxs = nil } diff --git a/errors/data_link_error.pb.go b/errors/data_link_error.pb.go index 890d40f8..67731ae7 100644 --- a/errors/data_link_error.pb.go +++ b/errors/data_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/data_link_error.proto +// source: google/ads/googleads/v22/errors/data_link_error.proto package errors @@ -98,11 +98,11 @@ func (x DataLinkErrorEnum_DataLinkError) String() string { } func (DataLinkErrorEnum_DataLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_data_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_data_link_error_proto_enumTypes[0].Descriptor() } func (DataLinkErrorEnum_DataLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_data_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_data_link_error_proto_enumTypes[0] } func (x DataLinkErrorEnum_DataLinkError) Number() protoreflect.EnumNumber { @@ -111,7 +111,7 @@ func (x DataLinkErrorEnum_DataLinkError) Number() protoreflect.EnumNumber { // Deprecated: Use DataLinkErrorEnum_DataLinkError.Descriptor instead. func (DataLinkErrorEnum_DataLinkError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible DataLink errors. @@ -123,7 +123,7 @@ type DataLinkErrorEnum struct { func (x *DataLinkErrorEnum) Reset() { *x = DataLinkErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_data_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_data_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *DataLinkErrorEnum) String() string { func (*DataLinkErrorEnum) ProtoMessage() {} func (x *DataLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_data_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_data_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,18 +148,18 @@ func (x *DataLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DataLinkErrorEnum.ProtoReflect.Descriptor instead. func (*DataLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_data_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_data_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_data_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x02, 0x0a, 0x11, 0x44, 0x61, 0x74, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8c, 0x02, 0x0a, 0x11, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf6, 0x01, 0x0a, 0x0d, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x0f, 0x0a, 0x0b, 0x55, 0x4e, 0x53, 0x50, 0x45, 0x43, 0x49, 0x46, 0x49, 0x45, 0x44, 0x10, @@ -178,42 +178,42 @@ var file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc = string( 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x4e, 0x41, 0x4d, 0x45, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x44, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_data_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_data_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_data_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_data_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_data_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_data_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_data_link_error_proto_goTypes = []any{ - (DataLinkErrorEnum_DataLinkError)(0), // 0: google.ads.googleads.v21.errors.DataLinkErrorEnum.DataLinkError - (*DataLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.DataLinkErrorEnum +var file_google_ads_googleads_v22_errors_data_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_data_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_data_link_error_proto_goTypes = []any{ + (DataLinkErrorEnum_DataLinkError)(0), // 0: google.ads.googleads.v22.errors.DataLinkErrorEnum.DataLinkError + (*DataLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.DataLinkErrorEnum } -var file_google_ads_googleads_v21_errors_data_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_data_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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_errors_data_link_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_data_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_data_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_data_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_data_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_data_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_data_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_data_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_data_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_data_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_data_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_data_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_data_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_data_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_data_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_data_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_data_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_data_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_data_link_error_proto = out.File - file_google_ads_googleads_v21_errors_data_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_data_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_data_link_error_proto = out.File + file_google_ads_googleads_v22_errors_data_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_data_link_error_proto_depIdxs = nil } diff --git a/errors/database_error.pb.go b/errors/database_error.pb.go index 8c92d8dd..7bed9679 100644 --- a/errors/database_error.pb.go +++ b/errors/database_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/database_error.proto +// source: google/ads/googleads/v22/errors/database_error.proto package errors @@ -83,11 +83,11 @@ func (x DatabaseErrorEnum_DatabaseError) String() string { } func (DatabaseErrorEnum_DatabaseError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_database_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_database_error_proto_enumTypes[0].Descriptor() } func (DatabaseErrorEnum_DatabaseError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_database_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_database_error_proto_enumTypes[0] } func (x DatabaseErrorEnum_DatabaseError) Number() protoreflect.EnumNumber { @@ -96,7 +96,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_v21_errors_database_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_database_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_database_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -120,7 +120,7 @@ func (x *DatabaseErrorEnum) String() string { func (*DatabaseErrorEnum) ProtoMessage() {} func (x *DatabaseErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_database_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_database_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -133,17 +133,17 @@ func (x *DatabaseErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DatabaseErrorEnum.ProtoReflect.Descriptor instead. func (*DatabaseErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_database_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_database_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_database_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_database_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_database_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_database_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,41 +156,41 @@ var file_google_ads_googleads_v21_errors_database_error_proto_rawDesc = string([ 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x44, 0x61, 0x74, 0x61, 0x62, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_database_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_database_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_database_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_database_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_database_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_database_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_database_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_database_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_database_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_database_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_database_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_database_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_database_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_database_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_database_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_database_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_database_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_database_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_database_error_proto_goTypes = []any{ - (DatabaseErrorEnum_DatabaseError)(0), // 0: google.ads.googleads.v21.errors.DatabaseErrorEnum.DatabaseError - (*DatabaseErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.DatabaseErrorEnum +var file_google_ads_googleads_v22_errors_database_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_database_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_database_error_proto_goTypes = []any{ + (DatabaseErrorEnum_DatabaseError)(0), // 0: google.ads.googleads.v22.errors.DatabaseErrorEnum.DatabaseError + (*DatabaseErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.DatabaseErrorEnum } -var file_google_ads_googleads_v21_errors_database_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_errors_database_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_database_error_proto_init() } -func file_google_ads_googleads_v21_errors_database_error_proto_init() { - if File_google_ads_googleads_v21_errors_database_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_database_error_proto_init() } +func file_google_ads_googleads_v22_errors_database_error_proto_init() { + if File_google_ads_googleads_v22_errors_database_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_database_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_database_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_database_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_database_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_database_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_database_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_database_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_database_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_database_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_database_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_database_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_database_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_database_error_proto = out.File - file_google_ads_googleads_v21_errors_database_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_database_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_database_error_proto = out.File + file_google_ads_googleads_v22_errors_database_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_database_error_proto_depIdxs = nil } diff --git a/errors/date_error.pb.go b/errors/date_error.pb.go index 3fb411a4..0d22fb5b 100644 --- a/errors/date_error.pb.go +++ b/errors/date_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/date_error.proto +// source: google/ads/googleads/v22/errors/date_error.proto package errors @@ -108,11 +108,11 @@ func (x DateErrorEnum_DateError) String() string { } func (DateErrorEnum_DateError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_date_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_date_error_proto_enumTypes[0].Descriptor() } func (DateErrorEnum_DateError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_date_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_date_error_proto_enumTypes[0] } func (x DateErrorEnum_DateError) Number() protoreflect.EnumNumber { @@ -121,7 +121,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_v21_errors_date_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_date_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_date_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *DateErrorEnum) String() string { func (*DateErrorEnum) ProtoMessage() {} func (x *DateErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_date_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_date_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,17 +158,17 @@ func (x *DateErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DateErrorEnum.ProtoReflect.Descriptor instead. func (*DateErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_date_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_date_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_date_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_date_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_date_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_date_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -199,41 +199,41 @@ var file_google_ads_googleads_v21_errors_date_error_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x44, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_date_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_date_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_date_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_date_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_date_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_date_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_date_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_date_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_date_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_date_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_date_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_date_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_date_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_date_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_date_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_date_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_date_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_date_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_date_error_proto_goTypes = []any{ - (DateErrorEnum_DateError)(0), // 0: google.ads.googleads.v21.errors.DateErrorEnum.DateError - (*DateErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.DateErrorEnum +var file_google_ads_googleads_v22_errors_date_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_date_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_date_error_proto_goTypes = []any{ + (DateErrorEnum_DateError)(0), // 0: google.ads.googleads.v22.errors.DateErrorEnum.DateError + (*DateErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.DateErrorEnum } -var file_google_ads_googleads_v21_errors_date_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -241,27 +241,27 @@ var file_google_ads_googleads_v21_errors_date_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_date_error_proto_init() } -func file_google_ads_googleads_v21_errors_date_error_proto_init() { - if File_google_ads_googleads_v21_errors_date_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_date_error_proto_init() } +func file_google_ads_googleads_v22_errors_date_error_proto_init() { + if File_google_ads_googleads_v22_errors_date_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_date_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_date_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_date_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_date_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_date_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_date_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_date_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_date_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_date_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_date_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_date_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_date_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_date_error_proto = out.File - file_google_ads_googleads_v21_errors_date_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_date_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_date_error_proto = out.File + file_google_ads_googleads_v22_errors_date_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_date_error_proto_depIdxs = nil } diff --git a/errors/date_range_error.pb.go b/errors/date_range_error.pb.go index bf8d5195..a58b290f 100644 --- a/errors/date_range_error.pb.go +++ b/errors/date_range_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/date_range_error.proto +// source: google/ads/googleads/v22/errors/date_range_error.proto package errors @@ -88,11 +88,11 @@ func (x DateRangeErrorEnum_DateRangeError) String() string { } func (DateRangeErrorEnum_DateRangeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_date_range_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_date_range_error_proto_enumTypes[0].Descriptor() } func (DateRangeErrorEnum_DateRangeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_date_range_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_date_range_error_proto_enumTypes[0] } func (x DateRangeErrorEnum_DateRangeError) Number() protoreflect.EnumNumber { @@ -101,7 +101,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_v21_errors_date_range_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_date_range_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_date_range_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *DateRangeErrorEnum) String() string { func (*DateRangeErrorEnum) ProtoMessage() {} func (x *DateRangeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_date_range_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_date_range_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,18 +138,18 @@ func (x *DateRangeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DateRangeErrorEnum.ProtoReflect.Descriptor instead. func (*DateRangeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_date_range_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_date_range_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_date_range_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe6, 0x01, 0x0a, 0x12, 0x44, 0x61, + 0x32, 0x32, 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, @@ -166,41 +166,41 @@ var file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x44, 0x61, 0x74, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_date_range_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_date_range_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_date_range_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_date_range_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_date_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_date_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_date_range_error_proto_goTypes = []any{ - (DateRangeErrorEnum_DateRangeError)(0), // 0: google.ads.googleads.v21.errors.DateRangeErrorEnum.DateRangeError - (*DateRangeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.DateRangeErrorEnum +var file_google_ads_googleads_v22_errors_date_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_date_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_date_range_error_proto_goTypes = []any{ + (DateRangeErrorEnum_DateRangeError)(0), // 0: google.ads.googleads.v22.errors.DateRangeErrorEnum.DateRangeError + (*DateRangeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.DateRangeErrorEnum } -var file_google_ads_googleads_v21_errors_date_range_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_errors_date_range_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_date_range_error_proto_init() } -func file_google_ads_googleads_v21_errors_date_range_error_proto_init() { - if File_google_ads_googleads_v21_errors_date_range_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_date_range_error_proto_init() } +func file_google_ads_googleads_v22_errors_date_range_error_proto_init() { + if File_google_ads_googleads_v22_errors_date_range_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_date_range_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_date_range_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_date_range_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_date_range_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_date_range_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_date_range_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_date_range_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_date_range_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_date_range_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_date_range_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_date_range_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_date_range_error_proto = out.File - file_google_ads_googleads_v21_errors_date_range_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_date_range_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_date_range_error_proto = out.File + file_google_ads_googleads_v22_errors_date_range_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_date_range_error_proto_depIdxs = nil } diff --git a/errors/distinct_error.pb.go b/errors/distinct_error.pb.go index 87fe5dd3..1a5832ce 100644 --- a/errors/distinct_error.pb.go +++ b/errors/distinct_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/distinct_error.proto +// source: google/ads/googleads/v22/errors/distinct_error.proto package errors @@ -76,11 +76,11 @@ func (x DistinctErrorEnum_DistinctError) String() string { } func (DistinctErrorEnum_DistinctError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_distinct_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_distinct_error_proto_enumTypes[0].Descriptor() } func (DistinctErrorEnum_DistinctError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_distinct_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_distinct_error_proto_enumTypes[0] } func (x DistinctErrorEnum_DistinctError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_distinct_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_distinct_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_distinct_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *DistinctErrorEnum) String() string { func (*DistinctErrorEnum) ProtoMessage() {} func (x *DistinctErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_distinct_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_distinct_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *DistinctErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use DistinctErrorEnum.ProtoReflect.Descriptor instead. func (*DistinctErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_distinct_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_distinct_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_distinct_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_distinct_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_distinct_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_distinct_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_distinct_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_distinct_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_distinct_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_distinct_error_proto_goTypes = []any{ - (DistinctErrorEnum_DistinctError)(0), // 0: google.ads.googleads.v21.errors.DistinctErrorEnum.DistinctError - (*DistinctErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.DistinctErrorEnum +var file_google_ads_googleads_v22_errors_distinct_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_distinct_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_distinct_error_proto_goTypes = []any{ + (DistinctErrorEnum_DistinctError)(0), // 0: google.ads.googleads.v22.errors.DistinctErrorEnum.DistinctError + (*DistinctErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.DistinctErrorEnum } -var file_google_ads_googleads_v21_errors_distinct_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_distinct_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_distinct_error_proto_init() } -func file_google_ads_googleads_v21_errors_distinct_error_proto_init() { - if File_google_ads_googleads_v21_errors_distinct_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_distinct_error_proto_init() } +func file_google_ads_googleads_v22_errors_distinct_error_proto_init() { + if File_google_ads_googleads_v22_errors_distinct_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_distinct_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_distinct_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_distinct_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_distinct_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_distinct_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_distinct_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_distinct_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_distinct_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_distinct_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_distinct_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_distinct_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_distinct_error_proto = out.File - file_google_ads_googleads_v21_errors_distinct_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_distinct_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_distinct_error_proto = out.File + file_google_ads_googleads_v22_errors_distinct_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_distinct_error_proto_depIdxs = nil } diff --git a/errors/enum_error.pb.go b/errors/enum_error.pb.go index 10ccac6a..cbb46030 100644 --- a/errors/enum_error.pb.go +++ b/errors/enum_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/enum_error.proto +// source: google/ads/googleads/v22/errors/enum_error.proto package errors @@ -72,11 +72,11 @@ func (x EnumErrorEnum_EnumError) String() string { } func (EnumErrorEnum_EnumError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_enum_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_enum_error_proto_enumTypes[0].Descriptor() } func (EnumErrorEnum_EnumError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_enum_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_enum_error_proto_enumTypes[0] } func (x EnumErrorEnum_EnumError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_enum_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_enum_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_enum_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *EnumErrorEnum) String() string { func (*EnumErrorEnum) ProtoMessage() {} func (x *EnumErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_enum_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_enum_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *EnumErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use EnumErrorEnum.ProtoReflect.Descriptor instead. func (*EnumErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_enum_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_enum_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_enum_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_enum_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_enum_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -140,42 +140,42 @@ var file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_enum_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_enum_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_enum_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_enum_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_enum_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_enum_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_enum_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_enum_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_enum_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_enum_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_enum_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_enum_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_enum_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_enum_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_enum_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_enum_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_enum_error_proto_goTypes = []any{ - (EnumErrorEnum_EnumError)(0), // 0: google.ads.googleads.v21.errors.EnumErrorEnum.EnumError - (*EnumErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.EnumErrorEnum +var file_google_ads_googleads_v22_errors_enum_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_enum_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_enum_error_proto_goTypes = []any{ + (EnumErrorEnum_EnumError)(0), // 0: google.ads.googleads.v22.errors.EnumErrorEnum.EnumError + (*EnumErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.EnumErrorEnum } -var file_google_ads_googleads_v21_errors_enum_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_errors_enum_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_enum_error_proto_init() } -func file_google_ads_googleads_v21_errors_enum_error_proto_init() { - if File_google_ads_googleads_v21_errors_enum_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_enum_error_proto_init() } +func file_google_ads_googleads_v22_errors_enum_error_proto_init() { + if File_google_ads_googleads_v22_errors_enum_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_enum_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_enum_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_enum_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_enum_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_enum_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_enum_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_enum_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_enum_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_enum_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_enum_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_enum_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_enum_error_proto = out.File - file_google_ads_googleads_v21_errors_enum_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_enum_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_enum_error_proto = out.File + file_google_ads_googleads_v22_errors_enum_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_enum_error_proto_depIdxs = nil } diff --git a/errors/errors.pb.go b/errors/errors.pb.go index cde82265..4acac334 100644 --- a/errors/errors.pb.go +++ b/errors/errors.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/errors.proto +// source: google/ads/googleads/v22/errors/errors.proto package errors @@ -79,11 +79,11 @@ func (x QuotaErrorDetails_QuotaRateScope) String() string { } func (QuotaErrorDetails_QuotaRateScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_errors_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_errors_proto_enumTypes[0].Descriptor() } func (QuotaErrorDetails_QuotaRateScope) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_errors_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_errors_proto_enumTypes[0] } func (x QuotaErrorDetails_QuotaRateScope) Number() protoreflect.EnumNumber { @@ -92,7 +92,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_v21_errors_errors_proto_rawDescGZIP(), []int{7, 0} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{7, 0} } // Describes how a GoogleAds API call failed. It's returned inside @@ -109,7 +109,7 @@ type GoogleAdsFailure struct { func (x *GoogleAdsFailure) Reset() { *x = GoogleAdsFailure{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *GoogleAdsFailure) String() string { func (*GoogleAdsFailure) ProtoMessage() {} func (x *GoogleAdsFailure) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,7 +134,7 @@ func (x *GoogleAdsFailure) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsFailure.ProtoReflect.Descriptor instead. func (*GoogleAdsFailure) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{0} } func (x *GoogleAdsFailure) GetErrors() []*GoogleAdsError { @@ -171,7 +171,7 @@ type GoogleAdsError struct { func (x *GoogleAdsError) Reset() { *x = GoogleAdsError{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *GoogleAdsError) String() string { func (*GoogleAdsError) ProtoMessage() {} func (x *GoogleAdsError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,7 +196,7 @@ func (x *GoogleAdsError) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsError.ProtoReflect.Descriptor instead. func (*GoogleAdsError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{1} } func (x *GoogleAdsError) GetErrorCode() *ErrorCode { @@ -400,7 +400,10 @@ type ErrorCode struct { // *ErrorCode_ShoppingProductError // *ErrorCode_AutomaticallyCreatedAssetRemovalError // *ErrorCode_ShareablePreviewError + // *ErrorCode_CampaignGoalConfigError + // *ErrorCode_GoalError // *ErrorCode_BrandGuidelinesMigrationError + // *ErrorCode_AssetGenerationError ErrorCode isErrorCode_ErrorCode `protobuf_oneof:"error_code"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -408,7 +411,7 @@ type ErrorCode struct { func (x *ErrorCode) Reset() { *x = ErrorCode{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -420,7 +423,7 @@ func (x *ErrorCode) String() string { func (*ErrorCode) ProtoMessage() {} func (x *ErrorCode) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -433,7 +436,7 @@ func (x *ErrorCode) ProtoReflect() protoreflect.Message { // Deprecated: Use ErrorCode.ProtoReflect.Descriptor instead. func (*ErrorCode) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{2} } func (x *ErrorCode) GetErrorCode() isErrorCode_ErrorCode { @@ -1874,6 +1877,24 @@ func (x *ErrorCode) GetShareablePreviewError() ShareablePreviewErrorEnum_Shareab return ShareablePreviewErrorEnum_UNSPECIFIED } +func (x *ErrorCode) GetCampaignGoalConfigError() CampaignGoalConfigErrorEnum_CampaignGoalConfigError { + if x != nil { + if x, ok := x.ErrorCode.(*ErrorCode_CampaignGoalConfigError); ok { + return x.CampaignGoalConfigError + } + } + return CampaignGoalConfigErrorEnum_UNSPECIFIED +} + +func (x *ErrorCode) GetGoalError() GoalErrorEnum_GoalError { + if x != nil { + if x, ok := x.ErrorCode.(*ErrorCode_GoalError); ok { + return x.GoalError + } + } + return GoalErrorEnum_UNSPECIFIED +} + func (x *ErrorCode) GetBrandGuidelinesMigrationError() BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError { if x != nil { if x, ok := x.ErrorCode.(*ErrorCode_BrandGuidelinesMigrationError); ok { @@ -1883,808 +1904,832 @@ func (x *ErrorCode) GetBrandGuidelinesMigrationError() BrandGuidelinesMigrationE return BrandGuidelinesMigrationErrorEnum_UNSPECIFIED } +func (x *ErrorCode) GetAssetGenerationError() AssetGenerationErrorEnum_AssetGenerationError { + if x != nil { + if x, ok := x.ErrorCode.(*ErrorCode_AssetGenerationError); ok { + return x.AssetGenerationError + } + } + return AssetGenerationErrorEnum_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.v21.errors.RequestErrorEnum_RequestError,oneof"` + RequestError RequestErrorEnum_RequestError `protobuf:"varint,1,opt,name=request_error,json=requestError,proto3,enum=google.ads.googleads.v22.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.v21.errors.BiddingStrategyErrorEnum_BiddingStrategyError,oneof"` + BiddingStrategyError BiddingStrategyErrorEnum_BiddingStrategyError `protobuf:"varint,2,opt,name=bidding_strategy_error,json=biddingStrategyError,proto3,enum=google.ads.googleads.v22.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.v21.errors.UrlFieldErrorEnum_UrlFieldError,oneof"` + UrlFieldError UrlFieldErrorEnum_UrlFieldError `protobuf:"varint,3,opt,name=url_field_error,json=urlFieldError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ListOperationErrorEnum_ListOperationError,oneof"` + ListOperationError ListOperationErrorEnum_ListOperationError `protobuf:"varint,4,opt,name=list_operation_error,json=listOperationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.QueryErrorEnum_QueryError,oneof"` + QueryError QueryErrorEnum_QueryError `protobuf:"varint,5,opt,name=query_error,json=queryError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MutateErrorEnum_MutateError,oneof"` + MutateError MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FieldMaskErrorEnum_FieldMaskError,oneof"` + FieldMaskError FieldMaskErrorEnum_FieldMaskError `protobuf:"varint,8,opt,name=field_mask_error,json=fieldMaskError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AuthorizationErrorEnum_AuthorizationError,oneof"` + AuthorizationError AuthorizationErrorEnum_AuthorizationError `protobuf:"varint,9,opt,name=authorization_error,json=authorizationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.InternalErrorEnum_InternalError,oneof"` + InternalError InternalErrorEnum_InternalError `protobuf:"varint,10,opt,name=internal_error,json=internalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.QuotaErrorEnum_QuotaError,oneof"` + QuotaError QuotaErrorEnum_QuotaError `protobuf:"varint,11,opt,name=quota_error,json=quotaError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdErrorEnum_AdError,oneof"` + AdError AdErrorEnum_AdError `protobuf:"varint,12,opt,name=ad_error,json=adError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupErrorEnum_AdGroupError,oneof"` + AdGroupError AdGroupErrorEnum_AdGroupError `protobuf:"varint,13,opt,name=ad_group_error,json=adGroupError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignBudgetErrorEnum_CampaignBudgetError,oneof"` + CampaignBudgetError CampaignBudgetErrorEnum_CampaignBudgetError `protobuf:"varint,14,opt,name=campaign_budget_error,json=campaignBudgetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignErrorEnum_CampaignError,oneof"` + CampaignError CampaignErrorEnum_CampaignError `protobuf:"varint,15,opt,name=campaign_error,json=campaignError,proto3,enum=google.ads.googleads.v22.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.v21.errors.VideoCampaignErrorEnum_VideoCampaignError,oneof"` + VideoCampaignError VideoCampaignErrorEnum_VideoCampaignError `protobuf:"varint,182,opt,name=video_campaign_error,json=videoCampaignError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AuthenticationErrorEnum_AuthenticationError,oneof"` + AuthenticationError AuthenticationErrorEnum_AuthenticationError `protobuf:"varint,17,opt,name=authentication_error,json=authenticationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError,oneof"` + AdGroupCriterionCustomizerError AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError `protobuf:"varint,161,opt,name=ad_group_criterion_customizer_error,json=adGroupCriterionCustomizerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupCriterionErrorEnum_AdGroupCriterionError,oneof"` + AdGroupCriterionError AdGroupCriterionErrorEnum_AdGroupCriterionError `protobuf:"varint,18,opt,name=ad_group_criterion_error,json=adGroupCriterionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupCustomizerErrorEnum_AdGroupCustomizerError,oneof"` + AdGroupCustomizerError AdGroupCustomizerErrorEnum_AdGroupCustomizerError `protobuf:"varint,159,opt,name=ad_group_customizer_error,json=adGroupCustomizerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdCustomizerErrorEnum_AdCustomizerError,oneof"` + AdCustomizerError AdCustomizerErrorEnum_AdCustomizerError `protobuf:"varint,19,opt,name=ad_customizer_error,json=adCustomizerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupAdErrorEnum_AdGroupAdError,oneof"` + AdGroupAdError AdGroupAdErrorEnum_AdGroupAdError `protobuf:"varint,21,opt,name=ad_group_ad_error,json=adGroupAdError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdSharingErrorEnum_AdSharingError,oneof"` + AdSharingError AdSharingErrorEnum_AdSharingError `protobuf:"varint,24,opt,name=ad_sharing_error,json=adSharingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdxErrorEnum_AdxError,oneof"` + AdxError AdxErrorEnum_AdxError `protobuf:"varint,25,opt,name=adx_error,json=adxError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetErrorEnum_AssetError,oneof"` + AssetError AssetErrorEnum_AssetError `protobuf:"varint,107,opt,name=asset_error,json=assetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetGroupAssetErrorEnum_AssetGroupAssetError,oneof"` + AssetGroupAssetError AssetGroupAssetErrorEnum_AssetGroupAssetError `protobuf:"varint,149,opt,name=asset_group_asset_error,json=assetGroupAssetError,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.errors.AssetGroupErrorEnum_AssetGroupError,oneof"` + AssetGroupError AssetGroupErrorEnum_AssetGroupError `protobuf:"varint,148,opt,name=asset_group_error,json=assetGroupError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetSetAssetErrorEnum_AssetSetAssetError,oneof"` + AssetSetAssetError AssetSetAssetErrorEnum_AssetSetAssetError `protobuf:"varint,153,opt,name=asset_set_asset_error,json=assetSetAssetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetSetLinkErrorEnum_AssetSetLinkError,oneof"` + AssetSetLinkError AssetSetLinkErrorEnum_AssetSetLinkError `protobuf:"varint,154,opt,name=asset_set_link_error,json=assetSetLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetSetErrorEnum_AssetSetError,oneof"` + AssetSetError AssetSetErrorEnum_AssetSetError `protobuf:"varint,152,opt,name=asset_set_error,json=assetSetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.BiddingErrorEnum_BiddingError,oneof"` + BiddingError BiddingErrorEnum_BiddingError `protobuf:"varint,26,opt,name=bidding_error,json=biddingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignCriterionErrorEnum_CampaignCriterionError,oneof"` + CampaignCriterionError CampaignCriterionErrorEnum_CampaignCriterionError `protobuf:"varint,29,opt,name=campaign_criterion_error,json=campaignCriterionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignConversionGoalErrorEnum_CampaignConversionGoalError,oneof"` + CampaignConversionGoalError CampaignConversionGoalErrorEnum_CampaignConversionGoalError `protobuf:"varint,166,opt,name=campaign_conversion_goal_error,json=campaignConversionGoalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignCustomizerErrorEnum_CampaignCustomizerError,oneof"` + CampaignCustomizerError CampaignCustomizerErrorEnum_CampaignCustomizerError `protobuf:"varint,160,opt,name=campaign_customizer_error,json=campaignCustomizerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"` + CollectionSizeError CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,31,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError,oneof"` + ConversionGoalCampaignConfigError ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError `protobuf:"varint,165,opt,name=conversion_goal_campaign_config_error,json=conversionGoalCampaignConfigError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CountryCodeErrorEnum_CountryCodeError,oneof"` + CountryCodeError CountryCodeErrorEnum_CountryCodeError `protobuf:"varint,109,opt,name=country_code_error,json=countryCodeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CriterionErrorEnum_CriterionError,oneof"` + CriterionError CriterionErrorEnum_CriterionError `protobuf:"varint,32,opt,name=criterion_error,json=criterionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomConversionGoalErrorEnum_CustomConversionGoalError,oneof"` + CustomConversionGoalError CustomConversionGoalErrorEnum_CustomConversionGoalError `protobuf:"varint,150,opt,name=custom_conversion_goal_error,json=customConversionGoalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerCustomizerErrorEnum_CustomerCustomizerError,oneof"` + CustomerCustomizerError CustomerCustomizerErrorEnum_CustomerCustomizerError `protobuf:"varint,158,opt,name=customer_customizer_error,json=customerCustomizerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerErrorEnum_CustomerError,oneof"` + CustomerError CustomerErrorEnum_CustomerError `protobuf:"varint,90,opt,name=customer_error,json=customerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomizerAttributeErrorEnum_CustomizerAttributeError,oneof"` + CustomizerAttributeError CustomizerAttributeErrorEnum_CustomizerAttributeError `protobuf:"varint,151,opt,name=customizer_attribute_error,json=customizerAttributeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DateErrorEnum_DateError,oneof"` + DateError DateErrorEnum_DateError `protobuf:"varint,33,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DateRangeErrorEnum_DateRangeError,oneof"` + DateRangeError DateRangeErrorEnum_DateRangeError `protobuf:"varint,34,opt,name=date_range_error,json=dateRangeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DistinctErrorEnum_DistinctError,oneof"` + DistinctError DistinctErrorEnum_DistinctError `protobuf:"varint,35,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError,oneof"` + FeedAttributeReferenceError FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError `protobuf:"varint,36,opt,name=feed_attribute_reference_error,json=feedAttributeReferenceError,proto3,enum=google.ads.googleads.v22.errors.FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError,oneof"` } type ErrorCode_FinalUrlExpansionAssetViewError struct { // The reasons for the final url expansion asset view error - FinalUrlExpansionAssetViewError FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError `protobuf:"varint,193,opt,name=final_url_expansion_asset_view_error,json=finalUrlExpansionAssetViewError,proto3,enum=google.ads.googleads.v21.errors.FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError,oneof"` + FinalUrlExpansionAssetViewError FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError `protobuf:"varint,193,opt,name=final_url_expansion_asset_view_error,json=finalUrlExpansionAssetViewError,proto3,enum=google.ads.googleads.v22.errors.FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError,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.v21.errors.FunctionErrorEnum_FunctionError,oneof"` + FunctionError FunctionErrorEnum_FunctionError `protobuf:"varint,37,opt,name=function_error,json=functionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FunctionParsingErrorEnum_FunctionParsingError,oneof"` + FunctionParsingError FunctionParsingErrorEnum_FunctionParsingError `protobuf:"varint,38,opt,name=function_parsing_error,json=functionParsingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.IdErrorEnum_IdError,oneof"` + IdError IdErrorEnum_IdError `protobuf:"varint,39,opt,name=id_error,json=idError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ImageErrorEnum_ImageError,oneof"` + ImageError ImageErrorEnum_ImageError `protobuf:"varint,40,opt,name=image_error,json=imageError,proto3,enum=google.ads.googleads.v22.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.v21.errors.LanguageCodeErrorEnum_LanguageCodeError,oneof"` + LanguageCodeError LanguageCodeErrorEnum_LanguageCodeError `protobuf:"varint,110,opt,name=language_code_error,json=languageCodeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MediaBundleErrorEnum_MediaBundleError,oneof"` + MediaBundleError MediaBundleErrorEnum_MediaBundleError `protobuf:"varint,42,opt,name=media_bundle_error,json=mediaBundleError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MediaUploadErrorEnum_MediaUploadError,oneof"` + MediaUploadError MediaUploadErrorEnum_MediaUploadError `protobuf:"varint,116,opt,name=media_upload_error,json=mediaUploadError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MediaFileErrorEnum_MediaFileError,oneof"` + MediaFileError MediaFileErrorEnum_MediaFileError `protobuf:"varint,86,opt,name=media_file_error,json=mediaFileError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MerchantCenterErrorEnum_MerchantCenterError,oneof"` + MerchantCenterError MerchantCenterErrorEnum_MerchantCenterError `protobuf:"varint,162,opt,name=merchant_center_error,json=merchantCenterError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MultiplierErrorEnum_MultiplierError,oneof"` + MultiplierError MultiplierErrorEnum_MultiplierError `protobuf:"varint,44,opt,name=multiplier_error,json=multiplierError,proto3,enum=google.ads.googleads.v22.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.v21.errors.NewResourceCreationErrorEnum_NewResourceCreationError,oneof"` + NewResourceCreationError NewResourceCreationErrorEnum_NewResourceCreationError `protobuf:"varint,45,opt,name=new_resource_creation_error,json=newResourceCreationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.NotEmptyErrorEnum_NotEmptyError,oneof"` + NotEmptyError NotEmptyErrorEnum_NotEmptyError `protobuf:"varint,46,opt,name=not_empty_error,json=notEmptyError,proto3,enum=google.ads.googleads.v22.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.v21.errors.NullErrorEnum_NullError,oneof"` + NullError NullErrorEnum_NullError `protobuf:"varint,47,opt,name=null_error,json=nullError,proto3,enum=google.ads.googleads.v22.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.v21.errors.OperatorErrorEnum_OperatorError,oneof"` + OperatorError OperatorErrorEnum_OperatorError `protobuf:"varint,48,opt,name=operator_error,json=operatorError,proto3,enum=google.ads.googleads.v22.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.v21.errors.RangeErrorEnum_RangeError,oneof"` + RangeError RangeErrorEnum_RangeError `protobuf:"varint,49,opt,name=range_error,json=rangeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.RecommendationErrorEnum_RecommendationError,oneof"` + RecommendationError RecommendationErrorEnum_RecommendationError `protobuf:"varint,58,opt,name=recommendation_error,json=recommendationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError,oneof"` + RecommendationSubscriptionError RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError `protobuf:"varint,180,opt,name=recommendation_subscription_error,json=recommendationSubscriptionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.RegionCodeErrorEnum_RegionCodeError,oneof"` + RegionCodeError RegionCodeErrorEnum_RegionCodeError `protobuf:"varint,51,opt,name=region_code_error,json=regionCodeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SettingErrorEnum_SettingError,oneof"` + SettingError SettingErrorEnum_SettingError `protobuf:"varint,52,opt,name=setting_error,json=settingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.StringFormatErrorEnum_StringFormatError,oneof"` + StringFormatError StringFormatErrorEnum_StringFormatError `protobuf:"varint,53,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v22.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.v21.errors.StringLengthErrorEnum_StringLengthError,oneof"` + StringLengthError StringLengthErrorEnum_StringLengthError `protobuf:"varint,54,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v22.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.v21.errors.OperationAccessDeniedErrorEnum_OperationAccessDeniedError,oneof"` + OperationAccessDeniedError OperationAccessDeniedErrorEnum_OperationAccessDeniedError `protobuf:"varint,55,opt,name=operation_access_denied_error,json=operationAccessDeniedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError,oneof"` + ResourceAccessDeniedError ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError `protobuf:"varint,56,opt,name=resource_access_denied_error,json=resourceAccessDeniedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError,oneof"` + ResourceCountLimitExceededError ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError `protobuf:"varint,57,opt,name=resource_count_limit_exceeded_error,json=resourceCountLimitExceededError,proto3,enum=google.ads.googleads.v22.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.v21.errors.YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError,oneof"` + YoutubeVideoRegistrationError YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError `protobuf:"varint,117,opt,name=youtube_video_registration_error,json=youtubeVideoRegistrationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupBidModifierErrorEnum_AdGroupBidModifierError,oneof"` + AdGroupBidModifierError AdGroupBidModifierErrorEnum_AdGroupBidModifierError `protobuf:"varint,59,opt,name=ad_group_bid_modifier_error,json=adGroupBidModifierError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ContextErrorEnum_ContextError,oneof"` + ContextError ContextErrorEnum_ContextError `protobuf:"varint,60,opt,name=context_error,json=contextError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FieldErrorEnum_FieldError,oneof"` + FieldError FieldErrorEnum_FieldError `protobuf:"varint,61,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SharedSetErrorEnum_SharedSetError,oneof"` + SharedSetError SharedSetErrorEnum_SharedSetError `protobuf:"varint,62,opt,name=shared_set_error,json=sharedSetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SharedCriterionErrorEnum_SharedCriterionError,oneof"` + SharedCriterionError SharedCriterionErrorEnum_SharedCriterionError `protobuf:"varint,63,opt,name=shared_criterion_error,json=sharedCriterionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignSharedSetErrorEnum_CampaignSharedSetError,oneof"` + CampaignSharedSetError CampaignSharedSetErrorEnum_CampaignSharedSetError `protobuf:"varint,64,opt,name=campaign_shared_set_error,json=campaignSharedSetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionActionErrorEnum_ConversionActionError,oneof"` + ConversionActionError ConversionActionErrorEnum_ConversionActionError `protobuf:"varint,65,opt,name=conversion_action_error,json=conversionActionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"` + ConversionAdjustmentUploadError ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,115,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionCustomVariableErrorEnum_ConversionCustomVariableError,oneof"` + ConversionCustomVariableError ConversionCustomVariableErrorEnum_ConversionCustomVariableError `protobuf:"varint,143,opt,name=conversion_custom_variable_error,json=conversionCustomVariableError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"` + ConversionUploadError ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,111,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionValueRuleErrorEnum_ConversionValueRuleError,oneof"` + ConversionValueRuleError ConversionValueRuleErrorEnum_ConversionValueRuleError `protobuf:"varint,145,opt,name=conversion_value_rule_error,json=conversionValueRuleError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError,oneof"` + ConversionValueRuleSetError ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError `protobuf:"varint,146,opt,name=conversion_value_rule_set_error,json=conversionValueRuleSetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.HeaderErrorEnum_HeaderError,oneof"` + HeaderError HeaderErrorEnum_HeaderError `protobuf:"varint,66,opt,name=header_error,json=headerError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DatabaseErrorEnum_DatabaseError,oneof"` + DatabaseError DatabaseErrorEnum_DatabaseError `protobuf:"varint,67,opt,name=database_error,json=databaseError,proto3,enum=google.ads.googleads.v22.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.v21.errors.PolicyFindingErrorEnum_PolicyFindingError,oneof"` + PolicyFindingError PolicyFindingErrorEnum_PolicyFindingError `protobuf:"varint,68,opt,name=policy_finding_error,json=policyFindingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.EnumErrorEnum_EnumError,oneof"` + EnumError EnumErrorEnum_EnumError `protobuf:"varint,70,opt,name=enum_error,json=enumError,proto3,enum=google.ads.googleads.v22.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.v21.errors.KeywordPlanErrorEnum_KeywordPlanError,oneof"` + KeywordPlanError KeywordPlanErrorEnum_KeywordPlanError `protobuf:"varint,71,opt,name=keyword_plan_error,json=keywordPlanError,proto3,enum=google.ads.googleads.v22.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.v21.errors.KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError,oneof"` + KeywordPlanCampaignError KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError `protobuf:"varint,72,opt,name=keyword_plan_campaign_error,json=keywordPlanCampaignError,proto3,enum=google.ads.googleads.v22.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.v21.errors.KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError,oneof"` + KeywordPlanCampaignKeywordError KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError `protobuf:"varint,132,opt,name=keyword_plan_campaign_keyword_error,json=keywordPlanCampaignKeywordError,proto3,enum=google.ads.googleads.v22.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.v21.errors.KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError,oneof"` + KeywordPlanAdGroupError KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError `protobuf:"varint,74,opt,name=keyword_plan_ad_group_error,json=keywordPlanAdGroupError,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.errors.KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError,oneof"` + KeywordPlanIdeaError KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError `protobuf:"varint,76,opt,name=keyword_plan_idea_error,json=keywordPlanIdeaError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AccountBudgetProposalErrorEnum_AccountBudgetProposalError,oneof"` + AccountBudgetProposalError AccountBudgetProposalErrorEnum_AccountBudgetProposalError `protobuf:"varint,77,opt,name=account_budget_proposal_error,json=accountBudgetProposalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.UserListErrorEnum_UserListError,oneof"` + UserListError UserListErrorEnum_UserListError `protobuf:"varint,78,opt,name=user_list_error,json=userListError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ChangeEventErrorEnum_ChangeEventError,oneof"` + ChangeEventError ChangeEventErrorEnum_ChangeEventError `protobuf:"varint,136,opt,name=change_event_error,json=changeEventError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ChangeStatusErrorEnum_ChangeStatusError,oneof"` + ChangeStatusError ChangeStatusErrorEnum_ChangeStatusError `protobuf:"varint,79,opt,name=change_status_error,json=changeStatusError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedErrorEnum_FeedError,oneof"` + FeedError FeedErrorEnum_FeedError `protobuf:"varint,80,opt,name=feed_error,json=feedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError,oneof"` + GeoTargetConstantSuggestionError GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError `protobuf:"varint,81,opt,name=geo_target_constant_suggestion_error,json=geoTargetConstantSuggestionError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignDraftErrorEnum_CampaignDraftError,oneof"` + CampaignDraftError CampaignDraftErrorEnum_CampaignDraftError `protobuf:"varint,82,opt,name=campaign_draft_error,json=campaignDraftError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedItemErrorEnum_FeedItemError,oneof"` + FeedItemError FeedItemErrorEnum_FeedItemError `protobuf:"varint,83,opt,name=feed_item_error,json=feedItemError,proto3,enum=google.ads.googleads.v22.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.v21.errors.LabelErrorEnum_LabelError,oneof"` + LabelError LabelErrorEnum_LabelError `protobuf:"varint,84,opt,name=label_error,json=labelError,proto3,enum=google.ads.googleads.v22.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.v21.errors.BillingSetupErrorEnum_BillingSetupError,oneof"` + BillingSetupError BillingSetupErrorEnum_BillingSetupError `protobuf:"varint,87,opt,name=billing_setup_error,json=billingSetupError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerClientLinkErrorEnum_CustomerClientLinkError,oneof"` + CustomerClientLinkError CustomerClientLinkErrorEnum_CustomerClientLinkError `protobuf:"varint,88,opt,name=customer_client_link_error,json=customerClientLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerManagerLinkErrorEnum_CustomerManagerLinkError,oneof"` + CustomerManagerLinkError CustomerManagerLinkErrorEnum_CustomerManagerLinkError `protobuf:"varint,91,opt,name=customer_manager_link_error,json=customerManagerLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedMappingErrorEnum_FeedMappingError,oneof"` + FeedMappingError FeedMappingErrorEnum_FeedMappingError `protobuf:"varint,92,opt,name=feed_mapping_error,json=feedMappingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerFeedErrorEnum_CustomerFeedError,oneof"` + CustomerFeedError CustomerFeedErrorEnum_CustomerFeedError `protobuf:"varint,93,opt,name=customer_feed_error,json=customerFeedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdGroupFeedErrorEnum_AdGroupFeedError,oneof"` + AdGroupFeedError AdGroupFeedErrorEnum_AdGroupFeedError `protobuf:"varint,94,opt,name=ad_group_feed_error,json=adGroupFeedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignFeedErrorEnum_CampaignFeedError,oneof"` + CampaignFeedError CampaignFeedErrorEnum_CampaignFeedError `protobuf:"varint,96,opt,name=campaign_feed_error,json=campaignFeedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomInterestErrorEnum_CustomInterestError,oneof"` + CustomInterestError CustomInterestErrorEnum_CustomInterestError `protobuf:"varint,97,opt,name=custom_interest_error,json=customInterestError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignExperimentErrorEnum_CampaignExperimentError,oneof"` + CampaignExperimentError CampaignExperimentErrorEnum_CampaignExperimentError `protobuf:"varint,98,opt,name=campaign_experiment_error,json=campaignExperimentError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ExtensionFeedItemErrorEnum_ExtensionFeedItemError,oneof"` + ExtensionFeedItemError ExtensionFeedItemErrorEnum_ExtensionFeedItemError `protobuf:"varint,100,opt,name=extension_feed_item_error,json=extensionFeedItemError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AdParameterErrorEnum_AdParameterError,oneof"` + AdParameterError AdParameterErrorEnum_AdParameterError `protobuf:"varint,101,opt,name=ad_parameter_error,json=adParameterError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedItemValidationErrorEnum_FeedItemValidationError,oneof"` + FeedItemValidationError FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,102,opt,name=feed_item_validation_error,json=feedItemValidationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ExtensionSettingErrorEnum_ExtensionSettingError,oneof"` + ExtensionSettingError ExtensionSettingErrorEnum_ExtensionSettingError `protobuf:"varint,103,opt,name=extension_setting_error,json=extensionSettingError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedItemSetErrorEnum_FeedItemSetError,oneof"` + FeedItemSetError FeedItemSetErrorEnum_FeedItemSetError `protobuf:"varint,140,opt,name=feed_item_set_error,json=feedItemSetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedItemSetLinkErrorEnum_FeedItemSetLinkError,oneof"` + FeedItemSetLinkError FeedItemSetLinkErrorEnum_FeedItemSetLinkError `protobuf:"varint,141,opt,name=feed_item_set_link_error,json=feedItemSetLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FeedItemTargetErrorEnum_FeedItemTargetError,oneof"` + FeedItemTargetError FeedItemTargetErrorEnum_FeedItemTargetError `protobuf:"varint,104,opt,name=feed_item_target_error,json=feedItemTargetError,proto3,enum=google.ads.googleads.v22.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.v21.errors.PolicyViolationErrorEnum_PolicyViolationError,oneof"` + PolicyViolationError PolicyViolationErrorEnum_PolicyViolationError `protobuf:"varint,105,opt,name=policy_violation_error,json=policyViolationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.PartialFailureErrorEnum_PartialFailureError,oneof"` + PartialFailureError PartialFailureErrorEnum_PartialFailureError `protobuf:"varint,112,opt,name=partial_failure_error,json=partialFailureError,proto3,enum=google.ads.googleads.v22.errors.PartialFailureErrorEnum_PartialFailureError,oneof"` } type ErrorCode_ClickViewError struct { // The reasons for the click view error - ClickViewError ClickViewErrorEnum_ClickViewError `protobuf:"varint,113,opt,name=click_view_error,json=clickViewError,proto3,enum=google.ads.googleads.v21.errors.ClickViewErrorEnum_ClickViewError,oneof"` + ClickViewError ClickViewErrorEnum_ClickViewError `protobuf:"varint,113,opt,name=click_view_error,json=clickViewError,proto3,enum=google.ads.googleads.v22.errors.ClickViewErrorEnum_ClickViewError,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.v21.errors.PolicyValidationParameterErrorEnum_PolicyValidationParameterError,oneof"` + PolicyValidationParameterError PolicyValidationParameterErrorEnum_PolicyValidationParameterError `protobuf:"varint,114,opt,name=policy_validation_parameter_error,json=policyValidationParameterError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SizeLimitErrorEnum_SizeLimitError,oneof"` + SizeLimitError SizeLimitErrorEnum_SizeLimitError `protobuf:"varint,118,opt,name=size_limit_error,json=sizeLimitError,proto3,enum=google.ads.googleads.v22.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.v21.errors.OfflineUserDataJobErrorEnum_OfflineUserDataJobError,oneof"` + OfflineUserDataJobError OfflineUserDataJobErrorEnum_OfflineUserDataJobError `protobuf:"varint,119,opt,name=offline_user_data_job_error,json=offlineUserDataJobError,proto3,enum=google.ads.googleads.v22.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.v21.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"` + NotAllowlistedError NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,137,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ManagerLinkErrorEnum_ManagerLinkError,oneof"` + ManagerLinkError ManagerLinkErrorEnum_ManagerLinkError `protobuf:"varint,121,opt,name=manager_link_error,json=managerLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CurrencyCodeErrorEnum_CurrencyCodeError,oneof"` + CurrencyCodeError CurrencyCodeErrorEnum_CurrencyCodeError `protobuf:"varint,122,opt,name=currency_code_error,json=currencyCodeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ExperimentErrorEnum_ExperimentError,oneof"` + ExperimentError ExperimentErrorEnum_ExperimentError `protobuf:"varint,123,opt,name=experiment_error,json=experimentError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AccessInvitationErrorEnum_AccessInvitationError,oneof"` + AccessInvitationError AccessInvitationErrorEnum_AccessInvitationError `protobuf:"varint,124,opt,name=access_invitation_error,json=accessInvitationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ReachPlanErrorEnum_ReachPlanError,oneof"` + ReachPlanError ReachPlanErrorEnum_ReachPlanError `protobuf:"varint,125,opt,name=reach_plan_error,json=reachPlanError,proto3,enum=google.ads.googleads.v22.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.v21.errors.InvoiceErrorEnum_InvoiceError,oneof"` + InvoiceError InvoiceErrorEnum_InvoiceError `protobuf:"varint,126,opt,name=invoice_error,json=invoiceError,proto3,enum=google.ads.googleads.v22.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.v21.errors.PaymentsAccountErrorEnum_PaymentsAccountError,oneof"` + PaymentsAccountError PaymentsAccountErrorEnum_PaymentsAccountError `protobuf:"varint,127,opt,name=payments_account_error,json=paymentsAccountError,proto3,enum=google.ads.googleads.v22.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.v21.errors.TimeZoneErrorEnum_TimeZoneError,oneof"` + TimeZoneError TimeZoneErrorEnum_TimeZoneError `protobuf:"varint,128,opt,name=time_zone_error,json=timeZoneError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetLinkErrorEnum_AssetLinkError,oneof"` + AssetLinkError AssetLinkErrorEnum_AssetLinkError `protobuf:"varint,129,opt,name=asset_link_error,json=assetLinkError,proto3,enum=google.ads.googleads.v22.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.v21.errors.UserDataErrorEnum_UserDataError,oneof"` + UserDataError UserDataErrorEnum_UserDataError `protobuf:"varint,130,opt,name=user_data_error,json=userDataError,proto3,enum=google.ads.googleads.v22.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.v21.errors.BatchJobErrorEnum_BatchJobError,oneof"` + BatchJobError BatchJobErrorEnum_BatchJobError `protobuf:"varint,131,opt,name=batch_job_error,json=batchJobError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AccountLinkErrorEnum_AccountLinkError,oneof"` + AccountLinkError AccountLinkErrorEnum_AccountLinkError `protobuf:"varint,134,opt,name=account_link_error,json=accountLinkError,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.errors.CustomerUserAccessErrorEnum_CustomerUserAccessError,oneof"` + CustomerUserAccessError CustomerUserAccessErrorEnum_CustomerUserAccessError `protobuf:"varint,138,opt,name=customer_user_access_error,json=customerUserAccessError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomAudienceErrorEnum_CustomAudienceError,oneof"` + CustomAudienceError CustomAudienceErrorEnum_CustomAudienceError `protobuf:"varint,139,opt,name=custom_audience_error,json=customAudienceError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AudienceErrorEnum_AudienceError,oneof"` + AudienceError AudienceErrorEnum_AudienceError `protobuf:"varint,164,opt,name=audience_error,json=audienceError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SearchTermInsightErrorEnum_SearchTermInsightError,oneof"` + SearchTermInsightError SearchTermInsightErrorEnum_SearchTermInsightError `protobuf:"varint,174,opt,name=search_term_insight_error,json=searchTermInsightError,proto3,enum=google.ads.googleads.v22.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.v21.errors.SmartCampaignErrorEnum_SmartCampaignError,oneof"` + SmartCampaignError SmartCampaignErrorEnum_SmartCampaignError `protobuf:"varint,147,opt,name=smart_campaign_error,json=smartCampaignError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ExperimentArmErrorEnum_ExperimentArmError,oneof"` + ExperimentArmError ExperimentArmErrorEnum_ExperimentArmError `protobuf:"varint,156,opt,name=experiment_arm_error,json=experimentArmError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AudienceInsightsErrorEnum_AudienceInsightsError,oneof"` + AudienceInsightsError AudienceInsightsErrorEnum_AudienceInsightsError `protobuf:"varint,167,opt,name=audience_insights_error,json=audienceInsightsError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ProductLinkErrorEnum_ProductLinkError,oneof"` + ProductLinkError ProductLinkErrorEnum_ProductLinkError `protobuf:"varint,169,opt,name=product_link_error,json=productLinkError,proto3,enum=google.ads.googleads.v22.errors.ProductLinkErrorEnum_ProductLinkError,oneof"` } type ErrorCode_DataLinkError struct { // The reasons for the data link error - DataLinkError DataLinkErrorEnum_DataLinkError `protobuf:"varint,187,opt,name=data_link_error,json=dataLinkError,proto3,enum=google.ads.googleads.v21.errors.DataLinkErrorEnum_DataLinkError,oneof"` + DataLinkError DataLinkErrorEnum_DataLinkError `protobuf:"varint,187,opt,name=data_link_error,json=dataLinkError,proto3,enum=google.ads.googleads.v22.errors.DataLinkErrorEnum_DataLinkError,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.v21.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.v22.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.v21.errors.CurrencyErrorEnum_CurrencyError,oneof"` + CurrencyError CurrencyErrorEnum_CurrencyError `protobuf:"varint,171,opt,name=currency_error,json=currencyError,proto3,enum=google.ads.googleads.v22.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.v21.errors.AssetGroupSignalErrorEnum_AssetGroupSignalError,oneof"` + AssetGroupSignalError AssetGroupSignalErrorEnum_AssetGroupSignalError `protobuf:"varint,176,opt,name=asset_group_signal_error,json=assetGroupSignalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ProductLinkInvitationErrorEnum_ProductLinkInvitationError,oneof"` + ProductLinkInvitationError ProductLinkInvitationErrorEnum_ProductLinkInvitationError `protobuf:"varint,177,opt,name=product_link_invitation_error,json=productLinkInvitationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError,oneof"` + CustomerLifecycleGoalError CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError `protobuf:"varint,178,opt,name=customer_lifecycle_goal_error,json=customerLifecycleGoalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError,oneof"` + CampaignLifecycleGoalError CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError `protobuf:"varint,179,opt,name=campaign_lifecycle_goal_error,json=campaignLifecycleGoalError,proto3,enum=google.ads.googleads.v22.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.v21.errors.IdentityVerificationErrorEnum_IdentityVerificationError,oneof"` + IdentityVerificationError IdentityVerificationErrorEnum_IdentityVerificationError `protobuf:"varint,181,opt,name=identity_verification_error,json=identityVerificationError,proto3,enum=google.ads.googleads.v22.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.v21.errors.UserListCustomerTypeErrorEnum_UserListCustomerTypeError,oneof"` + UserListCustomerTypeError UserListCustomerTypeErrorEnum_UserListCustomerTypeError `protobuf:"varint,183,opt,name=user_list_customer_type_error,json=userListCustomerTypeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ShoppingProductErrorEnum_ShoppingProductError,oneof"` + ShoppingProductError ShoppingProductErrorEnum_ShoppingProductError `protobuf:"varint,184,opt,name=shopping_product_error,json=shoppingProductError,proto3,enum=google.ads.googleads.v22.errors.ShoppingProductErrorEnum_ShoppingProductError,oneof"` } type ErrorCode_AutomaticallyCreatedAssetRemovalError struct { // The reasons for error in automatically created asset removal action. - AutomaticallyCreatedAssetRemovalError AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError `protobuf:"varint,185,opt,name=automatically_created_asset_removal_error,json=automaticallyCreatedAssetRemovalError,proto3,enum=google.ads.googleads.v21.errors.AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError,oneof"` + AutomaticallyCreatedAssetRemovalError AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError `protobuf:"varint,185,opt,name=automatically_created_asset_removal_error,json=automaticallyCreatedAssetRemovalError,proto3,enum=google.ads.googleads.v22.errors.AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError,oneof"` } type ErrorCode_ShareablePreviewError struct { // The reasons for the shareable preview error. - ShareablePreviewError ShareablePreviewErrorEnum_ShareablePreviewError `protobuf:"varint,186,opt,name=shareable_preview_error,json=shareablePreviewError,proto3,enum=google.ads.googleads.v21.errors.ShareablePreviewErrorEnum_ShareablePreviewError,oneof"` + ShareablePreviewError ShareablePreviewErrorEnum_ShareablePreviewError `protobuf:"varint,186,opt,name=shareable_preview_error,json=shareablePreviewError,proto3,enum=google.ads.googleads.v22.errors.ShareablePreviewErrorEnum_ShareablePreviewError,oneof"` +} + +type ErrorCode_CampaignGoalConfigError struct { + // The reasons for the campaign goal config error. + CampaignGoalConfigError CampaignGoalConfigErrorEnum_CampaignGoalConfigError `protobuf:"varint,188,opt,name=campaign_goal_config_error,json=campaignGoalConfigError,proto3,enum=google.ads.googleads.v22.errors.CampaignGoalConfigErrorEnum_CampaignGoalConfigError,oneof"` +} + +type ErrorCode_GoalError struct { + // The reasons for the goal error. + GoalError GoalErrorEnum_GoalError `protobuf:"varint,189,opt,name=goal_error,json=goalError,proto3,enum=google.ads.googleads.v22.errors.GoalErrorEnum_GoalError,oneof"` } type ErrorCode_BrandGuidelinesMigrationError struct { // The reasons for the brand guidelines migration error. - BrandGuidelinesMigrationError BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError `protobuf:"varint,191,opt,name=brand_guidelines_migration_error,json=brandGuidelinesMigrationError,proto3,enum=google.ads.googleads.v21.errors.BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError,oneof"` + BrandGuidelinesMigrationError BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError `protobuf:"varint,191,opt,name=brand_guidelines_migration_error,json=brandGuidelinesMigrationError,proto3,enum=google.ads.googleads.v22.errors.BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError,oneof"` +} + +type ErrorCode_AssetGenerationError struct { + // The reasons for the GenAI asset generation error. + AssetGenerationError AssetGenerationErrorEnum_AssetGenerationError `protobuf:"varint,194,opt,name=asset_generation_error,json=assetGenerationError,proto3,enum=google.ads.googleads.v22.errors.AssetGenerationErrorEnum_AssetGenerationError,oneof"` } func (*ErrorCode_RequestError) isErrorCode_ErrorCode() {} @@ -3005,8 +3050,14 @@ func (*ErrorCode_AutomaticallyCreatedAssetRemovalError) isErrorCode_ErrorCode() func (*ErrorCode_ShareablePreviewError) isErrorCode_ErrorCode() {} +func (*ErrorCode_CampaignGoalConfigError) isErrorCode_ErrorCode() {} + +func (*ErrorCode_GoalError) isErrorCode_ErrorCode() {} + func (*ErrorCode_BrandGuidelinesMigrationError) isErrorCode_ErrorCode() {} +func (*ErrorCode_AssetGenerationError) isErrorCode_ErrorCode() {} + // Describes the part of the request proto that caused the error. type ErrorLocation struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -3018,7 +3069,7 @@ type ErrorLocation struct { func (x *ErrorLocation) Reset() { *x = ErrorLocation{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3030,7 +3081,7 @@ func (x *ErrorLocation) String() string { func (*ErrorLocation) ProtoMessage() {} func (x *ErrorLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3043,7 +3094,7 @@ func (x *ErrorLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use ErrorLocation.ProtoReflect.Descriptor instead. func (*ErrorLocation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{3} } func (x *ErrorLocation) GetFieldPathElements() []*ErrorLocation_FieldPathElement { @@ -3076,7 +3127,7 @@ type ErrorDetails struct { func (x *ErrorDetails) Reset() { *x = ErrorDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3088,7 +3139,7 @@ func (x *ErrorDetails) String() string { func (*ErrorDetails) ProtoMessage() {} func (x *ErrorDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3101,7 +3152,7 @@ func (x *ErrorDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ErrorDetails.ProtoReflect.Descriptor instead. func (*ErrorDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{4} } func (x *ErrorDetails) GetUnpublishedErrorCode() string { @@ -3166,7 +3217,7 @@ type PolicyViolationDetails struct { func (x *PolicyViolationDetails) Reset() { *x = PolicyViolationDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3178,7 +3229,7 @@ func (x *PolicyViolationDetails) String() string { func (*PolicyViolationDetails) ProtoMessage() {} func (x *PolicyViolationDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3191,7 +3242,7 @@ func (x *PolicyViolationDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyViolationDetails.ProtoReflect.Descriptor instead. func (*PolicyViolationDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{5} } func (x *PolicyViolationDetails) GetExternalPolicyDescription() string { @@ -3237,7 +3288,7 @@ type PolicyFindingDetails struct { func (x *PolicyFindingDetails) Reset() { *x = PolicyFindingDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3249,7 +3300,7 @@ func (x *PolicyFindingDetails) String() string { func (*PolicyFindingDetails) ProtoMessage() {} func (x *PolicyFindingDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3262,7 +3313,7 @@ func (x *PolicyFindingDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyFindingDetails.ProtoReflect.Descriptor instead. func (*PolicyFindingDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{6} } func (x *PolicyFindingDetails) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -3276,7 +3327,7 @@ func (x *PolicyFindingDetails) GetPolicyTopicEntries() []*common.PolicyTopicEntr type QuotaErrorDetails struct { state protoimpl.MessageState `protogen:"open.v1"` // The rate scope of the quota limit. - RateScope QuotaErrorDetails_QuotaRateScope `protobuf:"varint,1,opt,name=rate_scope,json=rateScope,proto3,enum=google.ads.googleads.v21.errors.QuotaErrorDetails_QuotaRateScope" json:"rate_scope,omitempty"` + RateScope QuotaErrorDetails_QuotaRateScope `protobuf:"varint,1,opt,name=rate_scope,json=rateScope,proto3,enum=google.ads.googleads.v22.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"` @@ -3288,7 +3339,7 @@ type QuotaErrorDetails struct { func (x *QuotaErrorDetails) Reset() { *x = QuotaErrorDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3300,7 +3351,7 @@ func (x *QuotaErrorDetails) String() string { func (*QuotaErrorDetails) ProtoMessage() {} func (x *QuotaErrorDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3313,7 +3364,7 @@ func (x *QuotaErrorDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use QuotaErrorDetails.ProtoReflect.Descriptor instead. func (*QuotaErrorDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{7} } func (x *QuotaErrorDetails) GetRateScope() QuotaErrorDetails_QuotaRateScope { @@ -3349,7 +3400,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -3358,7 +3409,7 @@ type ResourceCountDetails struct { func (x *ResourceCountDetails) Reset() { *x = ResourceCountDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3370,7 +3421,7 @@ func (x *ResourceCountDetails) String() string { func (*ResourceCountDetails) ProtoMessage() {} func (x *ResourceCountDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3383,7 +3434,7 @@ func (x *ResourceCountDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceCountDetails.ProtoReflect.Descriptor instead. func (*ResourceCountDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{8} } func (x *ResourceCountDetails) GetEnclosingId() string { @@ -3433,7 +3484,7 @@ type BudgetPerDayMinimumErrorDetails struct { // The minimum value for the budget's amount field required by the campaign, // in micros of the advertiser currency. Only set if this error is caused by // the amount field value. - MinimumBugdetAmountMicros int64 `protobuf:"varint,3,opt,name=minimum_bugdet_amount_micros,json=minimumBugdetAmountMicros,proto3" json:"minimum_bugdet_amount_micros,omitempty"` + MinimumBudgetAmountMicros int64 `protobuf:"varint,3,opt,name=minimum_budget_amount_micros,json=minimumBudgetAmountMicros,proto3" json:"minimum_budget_amount_micros,omitempty"` // The minimum value for the budget's total_amount field required by the // campaign given its configured start and end time, in micros of the // advertiser currency. Only set if this error is caused by the total_amount @@ -3453,7 +3504,7 @@ type BudgetPerDayMinimumErrorDetails struct { func (x *BudgetPerDayMinimumErrorDetails) Reset() { *x = BudgetPerDayMinimumErrorDetails{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3465,7 +3516,7 @@ func (x *BudgetPerDayMinimumErrorDetails) String() string { func (*BudgetPerDayMinimumErrorDetails) ProtoMessage() {} func (x *BudgetPerDayMinimumErrorDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3478,7 +3529,7 @@ func (x *BudgetPerDayMinimumErrorDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use BudgetPerDayMinimumErrorDetails.ProtoReflect.Descriptor instead. func (*BudgetPerDayMinimumErrorDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{9} } func (x *BudgetPerDayMinimumErrorDetails) GetCurrencyCode() string { @@ -3495,9 +3546,9 @@ func (x *BudgetPerDayMinimumErrorDetails) GetBudgetPerDayMinimumMicros() int64 { return 0 } -func (x *BudgetPerDayMinimumErrorDetails) GetMinimumBugdetAmountMicros() int64 { +func (x *BudgetPerDayMinimumErrorDetails) GetMinimumBudgetAmountMicros() int64 { if x != nil { - return x.MinimumBugdetAmountMicros + return x.MinimumBudgetAmountMicros } return 0 } @@ -3536,7 +3587,7 @@ type ErrorLocation_FieldPathElement struct { func (x *ErrorLocation_FieldPathElement) Reset() { *x = ErrorLocation_FieldPathElement{} - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3548,7 +3599,7 @@ func (x *ErrorLocation_FieldPathElement) String() string { func (*ErrorLocation_FieldPathElement) ProtoMessage() {} func (x *ErrorLocation_FieldPathElement) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_errors_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_errors_errors_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3561,7 +3612,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_v21_errors_errors_proto_rawDescGZIP(), []int{3, 0} + return file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP(), []int{3, 0} } func (x *ErrorLocation_FieldPathElement) GetFieldName() string { @@ -3578,2688 +3629,2732 @@ func (x *ErrorLocation_FieldPathElement) GetIndex() int32 { return 0 } -var File_google_ads_googleads_v21_errors_errors_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_errors_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_errors_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_errors_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x1a, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x76, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x5f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x64, 0x78, 0x5f, 0x65, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x4f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, - 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, - 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x46, 0x67, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62, 0x72, - 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x6d, - 0x69, 0x67, 0x72, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, - 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x4f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, + 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, + 0x6c, 0x6c, 0x79, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, - 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x62, 0x72, 0x61, 0x6e, + 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x6d, 0x69, 0x67, + 0x72, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, + 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, + 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x68, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6c, 0x6c, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x35, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, 0x61, 0x74, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x64, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x6e, 0x75, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x65, 0x78, 0x70, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, 0x65, 0x72, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x65, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, + 0x32, 0x32, 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, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x67, 0x6f, + 0x61, 0x6c, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, + 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, + 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, - 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, - 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, + 0x38, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, 0x66, 0x69, 0x6c, 0x65, + 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 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, 0x3d, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x68, - 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x3c, 0x67, 0x6f, 0x6f, + 0x76, 0x32, 0x32, 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, 0x3d, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, + 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, + 0x77, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0xb9, 0xa8, 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, 0x32, 0x31, 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, 0xbc, 0xa5, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, + 0xb6, 0x01, 0x0a, 0x24, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, + 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, + 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xc1, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x2e, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, + 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, + 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, + 0x69, 0x65, 0x77, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0xb6, 0x01, - 0x0a, 0x24, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, - 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xc1, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x64, 0x2e, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, - 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, - 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, - 0x6e, 0x75, 0x6d, 0x2e, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, - 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, - 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, - 0x77, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, - 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, 0x32, 0x31, - 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, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 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, + 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x31, 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, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x6e, 0x0a, 0x10, 0x63, - 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, - 0x71, 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, 0x32, 0x31, - 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, - 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, - 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x63, 0x6c, 0x69, - 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 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, + 0x76, 0x32, 0x32, 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, 0x6e, 0x0a, + 0x10, 0x63, 0x6c, 0x69, 0x63, 0x6b, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, + 0x72, 0x18, 0x71, 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, - 0x32, 0x31, 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, 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, + 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x56, + 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6c, 0x69, + 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0e, 0x63, + 0x6c, 0x69, 0x63, 0x6b, 0x56, 0x69, 0x65, 0x77, 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, 0x32, 0x32, 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, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x6b, 0x0a, 0x0f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x18, 0xbb, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x6b, 0x0a, - 0x0f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, - 0x18, 0xbb, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, - 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, - 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x64, 0x61, 0x74, - 0x61, 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, 0x32, 0x31, 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, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, + 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, + 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x0d, 0x64, + 0x61, 0x74, 0x61, 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, 0x32, 0x32, 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, 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, + 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x6c, 0x65, 0x2e, 0x61, - 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, - 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, + 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, + 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, 0x32, 0x32, 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, 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, - 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, + 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x12, 0xcd, 0x01, 0x0a, 0x29, 0x61, - 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x5f, 0x63, 0x72, 0x65, - 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, - 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb9, 0x01, 0x20, 0x01, 0x28, 0x0e, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, - 0x73, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, - 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, - 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x74, 0x6f, - 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, - 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, - 0x72, 0x48, 0x00, 0x52, 0x25, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, - 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, - 0x6d, 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8b, 0x01, 0x0a, 0x17, 0x73, - 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, - 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xba, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, - 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, - 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, - 0x00, 0x52, 0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, - 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xac, 0x01, 0x0a, 0x20, 0x62, 0x72, 0x61, - 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x6d, 0x69, - 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xbf, 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, 0x32, 0x31, 0x2e, - 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, - 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, - 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, - 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1d, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x47, - 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 0x72, 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, 0x32, 0x31, 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, 0x87, 0x05, 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, + 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, 0x32, 0x32, 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, 0x12, 0xcd, 0x01, 0x0a, + 0x29, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x5f, 0x63, + 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, + 0x6f, 0x76, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xb9, 0x01, 0x20, 0x01, 0x28, + 0x0e, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0x2e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, + 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, + 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, + 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x25, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, + 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x8b, 0x01, 0x0a, + 0x17, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, + 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xba, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, + 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x68, 0x61, 0x72, + 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x48, 0x00, 0x52, 0x15, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x94, 0x01, 0x0a, 0x1a, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xbc, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x17, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x12, 0x5a, 0x0a, 0x0a, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, + 0xbd, 0x01, 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, 0x32, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, + 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x48, 0x00, 0x52, 0x09, 0x67, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0xac, 0x01, + 0x0a, 0x20, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, + 0x65, 0x73, 0x5f, 0x6d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x18, 0xbf, 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, 0x32, 0x31, 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, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, + 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x42, 0x72, + 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, 0x67, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, 0x52, 0x1d, 0x62, + 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x4d, 0x69, + 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x87, 0x01, 0x0a, + 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x18, 0xc2, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x48, 0x00, + 0x52, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 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, 0x32, 0x32, 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, + 0x87, 0x05, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x12, 0x8f, 0x01, 0x0a, 0x24, 0x62, 0x75, 0x64, - 0x67, 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x79, 0x5f, 0x6d, 0x69, 0x6e, 0x69, - 0x6d, 0x75, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x73, 0x18, 0x06, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x8f, 0x01, 0x0a, 0x24, 0x62, 0x75, 0x64, 0x67, + 0x65, 0x74, 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x79, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, + 0x75, 0x6d, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, + 0x18, 0x06, 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, 0x32, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, + 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x1f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x52, 0x1f, 0x62, 0x75, 0x64, 0x67, 0x65, - 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x72, - 0x72, 0x6f, 0x72, 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, 0x32, 0x31, 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, + 0x6f, 0x72, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x22, 0x9e, 0x03, - 0x0a, 0x1f, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, - 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, - 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, - 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, - 0x63, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x40, 0x0a, 0x1d, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, - 0x5f, 0x70, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x79, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, - 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x19, 0x62, - 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, 0x69, 0x6d, - 0x75, 0x6d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x3f, 0x0a, 0x1c, 0x6d, 0x69, 0x6e, 0x69, - 0x6d, 0x75, 0x6d, 0x5f, 0x62, 0x75, 0x67, 0x64, 0x65, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, - 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x19, - 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x42, 0x75, 0x67, 0x64, 0x65, 0x74, 0x41, 0x6d, 0x6f, - 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x4a, 0x0a, 0x22, 0x6d, 0x69, 0x6e, - 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1e, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x42, 0x75, - 0x64, 0x67, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, - 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x3d, 0x0a, 0x1b, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, - 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x66, 0x61, 0x69, 0x6c, - 0x65, 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x12, 0x48, 0x0a, 0x21, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x62, - 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x61, 0x6d, 0x6f, 0x75, - 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x1d, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x54, 0x6f, 0x74, - 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x65, - 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, - 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, - 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, - 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, - 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x22, 0x9e, 0x03, 0x0a, + 0x1f, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, + 0x69, 0x6d, 0x75, 0x6d, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, + 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, + 0x79, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x40, 0x0a, 0x1d, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, + 0x70, 0x65, 0x72, 0x5f, 0x64, 0x61, 0x79, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, + 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x19, 0x62, 0x75, + 0x64, 0x67, 0x65, 0x74, 0x50, 0x65, 0x72, 0x44, 0x61, 0x79, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, + 0x6d, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x3f, 0x0a, 0x1c, 0x6d, 0x69, 0x6e, 0x69, 0x6d, + 0x75, 0x6d, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x19, 0x6d, + 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x41, 0x6d, 0x6f, 0x75, + 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x4a, 0x0a, 0x22, 0x6d, 0x69, 0x6e, 0x69, + 0x6d, 0x75, 0x6d, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, + 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x03, 0x52, 0x1e, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x42, 0x75, 0x64, + 0x67, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, + 0x63, 0x72, 0x6f, 0x73, 0x12, 0x3d, 0x0a, 0x1b, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x62, + 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x5f, 0x6d, 0x69, 0x63, + 0x72, 0x6f, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x18, 0x66, 0x61, 0x69, 0x6c, 0x65, + 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, + 0x72, 0x6f, 0x73, 0x12, 0x48, 0x0a, 0x21, 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x5f, 0x62, 0x75, + 0x64, 0x67, 0x65, 0x74, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x61, 0x6d, 0x6f, 0x75, 0x6e, + 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x1d, + 0x66, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, 0x54, 0x6f, 0x74, 0x61, + 0x6c, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x72, + 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, + 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, + 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_errors_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_errors_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_errors_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_errors_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_errors_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_errors_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_errors_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_errors_proto_rawDesc), len(file_google_ads_googleads_v21_errors_errors_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_errors_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_errors_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_errors_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_errors_proto_rawDesc), len(file_google_ads_googleads_v22_errors_errors_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_errors_proto_rawDescData -} - -var file_google_ads_googleads_v21_errors_errors_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_errors_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_google_ads_googleads_v21_errors_errors_proto_goTypes = []any{ - (QuotaErrorDetails_QuotaRateScope)(0), // 0: google.ads.googleads.v21.errors.QuotaErrorDetails.QuotaRateScope - (*GoogleAdsFailure)(nil), // 1: google.ads.googleads.v21.errors.GoogleAdsFailure - (*GoogleAdsError)(nil), // 2: google.ads.googleads.v21.errors.GoogleAdsError - (*ErrorCode)(nil), // 3: google.ads.googleads.v21.errors.ErrorCode - (*ErrorLocation)(nil), // 4: google.ads.googleads.v21.errors.ErrorLocation - (*ErrorDetails)(nil), // 5: google.ads.googleads.v21.errors.ErrorDetails - (*PolicyViolationDetails)(nil), // 6: google.ads.googleads.v21.errors.PolicyViolationDetails - (*PolicyFindingDetails)(nil), // 7: google.ads.googleads.v21.errors.PolicyFindingDetails - (*QuotaErrorDetails)(nil), // 8: google.ads.googleads.v21.errors.QuotaErrorDetails - (*ResourceCountDetails)(nil), // 9: google.ads.googleads.v21.errors.ResourceCountDetails - (*BudgetPerDayMinimumErrorDetails)(nil), // 10: google.ads.googleads.v21.errors.BudgetPerDayMinimumErrorDetails - (*ErrorLocation_FieldPathElement)(nil), // 11: google.ads.googleads.v21.errors.ErrorLocation.FieldPathElement - (*common.Value)(nil), // 12: google.ads.googleads.v21.common.Value - (RequestErrorEnum_RequestError)(0), // 13: google.ads.googleads.v21.errors.RequestErrorEnum.RequestError - (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 14: google.ads.googleads.v21.errors.BiddingStrategyErrorEnum.BiddingStrategyError - (UrlFieldErrorEnum_UrlFieldError)(0), // 15: google.ads.googleads.v21.errors.UrlFieldErrorEnum.UrlFieldError - (ListOperationErrorEnum_ListOperationError)(0), // 16: google.ads.googleads.v21.errors.ListOperationErrorEnum.ListOperationError - (QueryErrorEnum_QueryError)(0), // 17: google.ads.googleads.v21.errors.QueryErrorEnum.QueryError - (MutateErrorEnum_MutateError)(0), // 18: google.ads.googleads.v21.errors.MutateErrorEnum.MutateError - (FieldMaskErrorEnum_FieldMaskError)(0), // 19: google.ads.googleads.v21.errors.FieldMaskErrorEnum.FieldMaskError - (AuthorizationErrorEnum_AuthorizationError)(0), // 20: google.ads.googleads.v21.errors.AuthorizationErrorEnum.AuthorizationError - (InternalErrorEnum_InternalError)(0), // 21: google.ads.googleads.v21.errors.InternalErrorEnum.InternalError - (QuotaErrorEnum_QuotaError)(0), // 22: google.ads.googleads.v21.errors.QuotaErrorEnum.QuotaError - (AdErrorEnum_AdError)(0), // 23: google.ads.googleads.v21.errors.AdErrorEnum.AdError - (AdGroupErrorEnum_AdGroupError)(0), // 24: google.ads.googleads.v21.errors.AdGroupErrorEnum.AdGroupError - (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 25: google.ads.googleads.v21.errors.CampaignBudgetErrorEnum.CampaignBudgetError - (CampaignErrorEnum_CampaignError)(0), // 26: google.ads.googleads.v21.errors.CampaignErrorEnum.CampaignError - (VideoCampaignErrorEnum_VideoCampaignError)(0), // 27: google.ads.googleads.v21.errors.VideoCampaignErrorEnum.VideoCampaignError - (AuthenticationErrorEnum_AuthenticationError)(0), // 28: google.ads.googleads.v21.errors.AuthenticationErrorEnum.AuthenticationError - (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 29: google.ads.googleads.v21.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError - (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 30: google.ads.googleads.v21.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError - (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 31: google.ads.googleads.v21.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError - (AdCustomizerErrorEnum_AdCustomizerError)(0), // 32: google.ads.googleads.v21.errors.AdCustomizerErrorEnum.AdCustomizerError - (AdGroupAdErrorEnum_AdGroupAdError)(0), // 33: google.ads.googleads.v21.errors.AdGroupAdErrorEnum.AdGroupAdError - (AdSharingErrorEnum_AdSharingError)(0), // 34: google.ads.googleads.v21.errors.AdSharingErrorEnum.AdSharingError - (AdxErrorEnum_AdxError)(0), // 35: google.ads.googleads.v21.errors.AdxErrorEnum.AdxError - (AssetErrorEnum_AssetError)(0), // 36: google.ads.googleads.v21.errors.AssetErrorEnum.AssetError - (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 37: google.ads.googleads.v21.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError - (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 38: google.ads.googleads.v21.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError - (AssetGroupErrorEnum_AssetGroupError)(0), // 39: google.ads.googleads.v21.errors.AssetGroupErrorEnum.AssetGroupError - (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 40: google.ads.googleads.v21.errors.AssetSetAssetErrorEnum.AssetSetAssetError - (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 41: google.ads.googleads.v21.errors.AssetSetLinkErrorEnum.AssetSetLinkError - (AssetSetErrorEnum_AssetSetError)(0), // 42: google.ads.googleads.v21.errors.AssetSetErrorEnum.AssetSetError - (BiddingErrorEnum_BiddingError)(0), // 43: google.ads.googleads.v21.errors.BiddingErrorEnum.BiddingError - (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 44: google.ads.googleads.v21.errors.CampaignCriterionErrorEnum.CampaignCriterionError - (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 45: google.ads.googleads.v21.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError - (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 46: google.ads.googleads.v21.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError - (CollectionSizeErrorEnum_CollectionSizeError)(0), // 47: google.ads.googleads.v21.errors.CollectionSizeErrorEnum.CollectionSizeError - (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 48: google.ads.googleads.v21.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError - (CountryCodeErrorEnum_CountryCodeError)(0), // 49: google.ads.googleads.v21.errors.CountryCodeErrorEnum.CountryCodeError - (CriterionErrorEnum_CriterionError)(0), // 50: google.ads.googleads.v21.errors.CriterionErrorEnum.CriterionError - (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 51: google.ads.googleads.v21.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError - (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 52: google.ads.googleads.v21.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError - (CustomerErrorEnum_CustomerError)(0), // 53: google.ads.googleads.v21.errors.CustomerErrorEnum.CustomerError - (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 54: google.ads.googleads.v21.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError - (DateErrorEnum_DateError)(0), // 55: google.ads.googleads.v21.errors.DateErrorEnum.DateError - (DateRangeErrorEnum_DateRangeError)(0), // 56: google.ads.googleads.v21.errors.DateRangeErrorEnum.DateRangeError - (DistinctErrorEnum_DistinctError)(0), // 57: google.ads.googleads.v21.errors.DistinctErrorEnum.DistinctError - (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 58: google.ads.googleads.v21.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError - (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError)(0), // 59: google.ads.googleads.v21.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError - (FunctionErrorEnum_FunctionError)(0), // 60: google.ads.googleads.v21.errors.FunctionErrorEnum.FunctionError - (FunctionParsingErrorEnum_FunctionParsingError)(0), // 61: google.ads.googleads.v21.errors.FunctionParsingErrorEnum.FunctionParsingError - (IdErrorEnum_IdError)(0), // 62: google.ads.googleads.v21.errors.IdErrorEnum.IdError - (ImageErrorEnum_ImageError)(0), // 63: google.ads.googleads.v21.errors.ImageErrorEnum.ImageError - (LanguageCodeErrorEnum_LanguageCodeError)(0), // 64: google.ads.googleads.v21.errors.LanguageCodeErrorEnum.LanguageCodeError - (MediaBundleErrorEnum_MediaBundleError)(0), // 65: google.ads.googleads.v21.errors.MediaBundleErrorEnum.MediaBundleError - (MediaUploadErrorEnum_MediaUploadError)(0), // 66: google.ads.googleads.v21.errors.MediaUploadErrorEnum.MediaUploadError - (MediaFileErrorEnum_MediaFileError)(0), // 67: google.ads.googleads.v21.errors.MediaFileErrorEnum.MediaFileError - (MerchantCenterErrorEnum_MerchantCenterError)(0), // 68: google.ads.googleads.v21.errors.MerchantCenterErrorEnum.MerchantCenterError - (MultiplierErrorEnum_MultiplierError)(0), // 69: google.ads.googleads.v21.errors.MultiplierErrorEnum.MultiplierError - (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 70: google.ads.googleads.v21.errors.NewResourceCreationErrorEnum.NewResourceCreationError - (NotEmptyErrorEnum_NotEmptyError)(0), // 71: google.ads.googleads.v21.errors.NotEmptyErrorEnum.NotEmptyError - (NullErrorEnum_NullError)(0), // 72: google.ads.googleads.v21.errors.NullErrorEnum.NullError - (OperatorErrorEnum_OperatorError)(0), // 73: google.ads.googleads.v21.errors.OperatorErrorEnum.OperatorError - (RangeErrorEnum_RangeError)(0), // 74: google.ads.googleads.v21.errors.RangeErrorEnum.RangeError - (RecommendationErrorEnum_RecommendationError)(0), // 75: google.ads.googleads.v21.errors.RecommendationErrorEnum.RecommendationError - (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 76: google.ads.googleads.v21.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError - (RegionCodeErrorEnum_RegionCodeError)(0), // 77: google.ads.googleads.v21.errors.RegionCodeErrorEnum.RegionCodeError - (SettingErrorEnum_SettingError)(0), // 78: google.ads.googleads.v21.errors.SettingErrorEnum.SettingError - (StringFormatErrorEnum_StringFormatError)(0), // 79: google.ads.googleads.v21.errors.StringFormatErrorEnum.StringFormatError - (StringLengthErrorEnum_StringLengthError)(0), // 80: google.ads.googleads.v21.errors.StringLengthErrorEnum.StringLengthError - (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 81: google.ads.googleads.v21.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError - (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 82: google.ads.googleads.v21.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError - (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 83: google.ads.googleads.v21.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError - (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 84: google.ads.googleads.v21.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError - (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 85: google.ads.googleads.v21.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError - (ContextErrorEnum_ContextError)(0), // 86: google.ads.googleads.v21.errors.ContextErrorEnum.ContextError - (FieldErrorEnum_FieldError)(0), // 87: google.ads.googleads.v21.errors.FieldErrorEnum.FieldError - (SharedSetErrorEnum_SharedSetError)(0), // 88: google.ads.googleads.v21.errors.SharedSetErrorEnum.SharedSetError - (SharedCriterionErrorEnum_SharedCriterionError)(0), // 89: google.ads.googleads.v21.errors.SharedCriterionErrorEnum.SharedCriterionError - (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 90: google.ads.googleads.v21.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError - (ConversionActionErrorEnum_ConversionActionError)(0), // 91: google.ads.googleads.v21.errors.ConversionActionErrorEnum.ConversionActionError - (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 92: google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 93: google.ads.googleads.v21.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError - (ConversionUploadErrorEnum_ConversionUploadError)(0), // 94: google.ads.googleads.v21.errors.ConversionUploadErrorEnum.ConversionUploadError - (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 95: google.ads.googleads.v21.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError - (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 96: google.ads.googleads.v21.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError - (HeaderErrorEnum_HeaderError)(0), // 97: google.ads.googleads.v21.errors.HeaderErrorEnum.HeaderError - (DatabaseErrorEnum_DatabaseError)(0), // 98: google.ads.googleads.v21.errors.DatabaseErrorEnum.DatabaseError - (PolicyFindingErrorEnum_PolicyFindingError)(0), // 99: google.ads.googleads.v21.errors.PolicyFindingErrorEnum.PolicyFindingError - (EnumErrorEnum_EnumError)(0), // 100: google.ads.googleads.v21.errors.EnumErrorEnum.EnumError - (KeywordPlanErrorEnum_KeywordPlanError)(0), // 101: google.ads.googleads.v21.errors.KeywordPlanErrorEnum.KeywordPlanError - (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 102: google.ads.googleads.v21.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError - (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 103: google.ads.googleads.v21.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError - (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 104: google.ads.googleads.v21.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError - (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 105: google.ads.googleads.v21.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError - (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 106: google.ads.googleads.v21.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError - (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 107: google.ads.googleads.v21.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError - (UserListErrorEnum_UserListError)(0), // 108: google.ads.googleads.v21.errors.UserListErrorEnum.UserListError - (ChangeEventErrorEnum_ChangeEventError)(0), // 109: google.ads.googleads.v21.errors.ChangeEventErrorEnum.ChangeEventError - (ChangeStatusErrorEnum_ChangeStatusError)(0), // 110: google.ads.googleads.v21.errors.ChangeStatusErrorEnum.ChangeStatusError - (FeedErrorEnum_FeedError)(0), // 111: google.ads.googleads.v21.errors.FeedErrorEnum.FeedError - (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 112: google.ads.googleads.v21.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError - (CampaignDraftErrorEnum_CampaignDraftError)(0), // 113: google.ads.googleads.v21.errors.CampaignDraftErrorEnum.CampaignDraftError - (FeedItemErrorEnum_FeedItemError)(0), // 114: google.ads.googleads.v21.errors.FeedItemErrorEnum.FeedItemError - (LabelErrorEnum_LabelError)(0), // 115: google.ads.googleads.v21.errors.LabelErrorEnum.LabelError - (BillingSetupErrorEnum_BillingSetupError)(0), // 116: google.ads.googleads.v21.errors.BillingSetupErrorEnum.BillingSetupError - (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 117: google.ads.googleads.v21.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError - (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 118: google.ads.googleads.v21.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError - (FeedMappingErrorEnum_FeedMappingError)(0), // 119: google.ads.googleads.v21.errors.FeedMappingErrorEnum.FeedMappingError - (CustomerFeedErrorEnum_CustomerFeedError)(0), // 120: google.ads.googleads.v21.errors.CustomerFeedErrorEnum.CustomerFeedError - (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 121: google.ads.googleads.v21.errors.AdGroupFeedErrorEnum.AdGroupFeedError - (CampaignFeedErrorEnum_CampaignFeedError)(0), // 122: google.ads.googleads.v21.errors.CampaignFeedErrorEnum.CampaignFeedError - (CustomInterestErrorEnum_CustomInterestError)(0), // 123: google.ads.googleads.v21.errors.CustomInterestErrorEnum.CustomInterestError - (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 124: google.ads.googleads.v21.errors.CampaignExperimentErrorEnum.CampaignExperimentError - (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 125: google.ads.googleads.v21.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError - (AdParameterErrorEnum_AdParameterError)(0), // 126: google.ads.googleads.v21.errors.AdParameterErrorEnum.AdParameterError - (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 127: google.ads.googleads.v21.errors.FeedItemValidationErrorEnum.FeedItemValidationError - (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 128: google.ads.googleads.v21.errors.ExtensionSettingErrorEnum.ExtensionSettingError - (FeedItemSetErrorEnum_FeedItemSetError)(0), // 129: google.ads.googleads.v21.errors.FeedItemSetErrorEnum.FeedItemSetError - (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 130: google.ads.googleads.v21.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError - (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 131: google.ads.googleads.v21.errors.FeedItemTargetErrorEnum.FeedItemTargetError - (PolicyViolationErrorEnum_PolicyViolationError)(0), // 132: google.ads.googleads.v21.errors.PolicyViolationErrorEnum.PolicyViolationError - (PartialFailureErrorEnum_PartialFailureError)(0), // 133: google.ads.googleads.v21.errors.PartialFailureErrorEnum.PartialFailureError - (ClickViewErrorEnum_ClickViewError)(0), // 134: google.ads.googleads.v21.errors.ClickViewErrorEnum.ClickViewError - (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 135: google.ads.googleads.v21.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError - (SizeLimitErrorEnum_SizeLimitError)(0), // 136: google.ads.googleads.v21.errors.SizeLimitErrorEnum.SizeLimitError - (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 137: google.ads.googleads.v21.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError - (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 138: google.ads.googleads.v21.errors.NotAllowlistedErrorEnum.NotAllowlistedError - (ManagerLinkErrorEnum_ManagerLinkError)(0), // 139: google.ads.googleads.v21.errors.ManagerLinkErrorEnum.ManagerLinkError - (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 140: google.ads.googleads.v21.errors.CurrencyCodeErrorEnum.CurrencyCodeError - (ExperimentErrorEnum_ExperimentError)(0), // 141: google.ads.googleads.v21.errors.ExperimentErrorEnum.ExperimentError - (AccessInvitationErrorEnum_AccessInvitationError)(0), // 142: google.ads.googleads.v21.errors.AccessInvitationErrorEnum.AccessInvitationError - (ReachPlanErrorEnum_ReachPlanError)(0), // 143: google.ads.googleads.v21.errors.ReachPlanErrorEnum.ReachPlanError - (InvoiceErrorEnum_InvoiceError)(0), // 144: google.ads.googleads.v21.errors.InvoiceErrorEnum.InvoiceError - (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 145: google.ads.googleads.v21.errors.PaymentsAccountErrorEnum.PaymentsAccountError - (TimeZoneErrorEnum_TimeZoneError)(0), // 146: google.ads.googleads.v21.errors.TimeZoneErrorEnum.TimeZoneError - (AssetLinkErrorEnum_AssetLinkError)(0), // 147: google.ads.googleads.v21.errors.AssetLinkErrorEnum.AssetLinkError - (UserDataErrorEnum_UserDataError)(0), // 148: google.ads.googleads.v21.errors.UserDataErrorEnum.UserDataError - (BatchJobErrorEnum_BatchJobError)(0), // 149: google.ads.googleads.v21.errors.BatchJobErrorEnum.BatchJobError - (AccountLinkErrorEnum_AccountLinkError)(0), // 150: google.ads.googleads.v21.errors.AccountLinkErrorEnum.AccountLinkError - (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 151: google.ads.googleads.v21.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError - (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 152: google.ads.googleads.v21.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError - (CustomAudienceErrorEnum_CustomAudienceError)(0), // 153: google.ads.googleads.v21.errors.CustomAudienceErrorEnum.CustomAudienceError - (AudienceErrorEnum_AudienceError)(0), // 154: google.ads.googleads.v21.errors.AudienceErrorEnum.AudienceError - (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 155: google.ads.googleads.v21.errors.SearchTermInsightErrorEnum.SearchTermInsightError - (SmartCampaignErrorEnum_SmartCampaignError)(0), // 156: google.ads.googleads.v21.errors.SmartCampaignErrorEnum.SmartCampaignError - (ExperimentArmErrorEnum_ExperimentArmError)(0), // 157: google.ads.googleads.v21.errors.ExperimentArmErrorEnum.ExperimentArmError - (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 158: google.ads.googleads.v21.errors.AudienceInsightsErrorEnum.AudienceInsightsError - (ProductLinkErrorEnum_ProductLinkError)(0), // 159: google.ads.googleads.v21.errors.ProductLinkErrorEnum.ProductLinkError - (DataLinkErrorEnum_DataLinkError)(0), // 160: google.ads.googleads.v21.errors.DataLinkErrorEnum.DataLinkError - (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 161: google.ads.googleads.v21.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError - (CurrencyErrorEnum_CurrencyError)(0), // 162: google.ads.googleads.v21.errors.CurrencyErrorEnum.CurrencyError - (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 163: google.ads.googleads.v21.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError - (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 164: google.ads.googleads.v21.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError - (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 165: google.ads.googleads.v21.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError - (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 166: google.ads.googleads.v21.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError - (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 167: google.ads.googleads.v21.errors.IdentityVerificationErrorEnum.IdentityVerificationError - (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 168: google.ads.googleads.v21.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError - (ShoppingProductErrorEnum_ShoppingProductError)(0), // 169: google.ads.googleads.v21.errors.ShoppingProductErrorEnum.ShoppingProductError - (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError)(0), // 170: google.ads.googleads.v21.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError - (ShareablePreviewErrorEnum_ShareablePreviewError)(0), // 171: google.ads.googleads.v21.errors.ShareablePreviewErrorEnum.ShareablePreviewError - (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError)(0), // 172: google.ads.googleads.v21.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError - (*common.PolicyViolationKey)(nil), // 173: google.ads.googleads.v21.common.PolicyViolationKey - (*common.PolicyTopicEntry)(nil), // 174: google.ads.googleads.v21.common.PolicyTopicEntry - (*durationpb.Duration)(nil), // 175: google.protobuf.Duration - (enums.ResourceLimitTypeEnum_ResourceLimitType)(0), // 176: google.ads.googleads.v21.enums.ResourceLimitTypeEnum.ResourceLimitType -} -var file_google_ads_googleads_v21_errors_errors_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.errors.GoogleAdsFailure.errors:type_name -> google.ads.googleads.v21.errors.GoogleAdsError - 3, // 1: google.ads.googleads.v21.errors.GoogleAdsError.error_code:type_name -> google.ads.googleads.v21.errors.ErrorCode - 12, // 2: google.ads.googleads.v21.errors.GoogleAdsError.trigger:type_name -> google.ads.googleads.v21.common.Value - 4, // 3: google.ads.googleads.v21.errors.GoogleAdsError.location:type_name -> google.ads.googleads.v21.errors.ErrorLocation - 5, // 4: google.ads.googleads.v21.errors.GoogleAdsError.details:type_name -> google.ads.googleads.v21.errors.ErrorDetails - 13, // 5: google.ads.googleads.v21.errors.ErrorCode.request_error:type_name -> google.ads.googleads.v21.errors.RequestErrorEnum.RequestError - 14, // 6: google.ads.googleads.v21.errors.ErrorCode.bidding_strategy_error:type_name -> google.ads.googleads.v21.errors.BiddingStrategyErrorEnum.BiddingStrategyError - 15, // 7: google.ads.googleads.v21.errors.ErrorCode.url_field_error:type_name -> google.ads.googleads.v21.errors.UrlFieldErrorEnum.UrlFieldError - 16, // 8: google.ads.googleads.v21.errors.ErrorCode.list_operation_error:type_name -> google.ads.googleads.v21.errors.ListOperationErrorEnum.ListOperationError - 17, // 9: google.ads.googleads.v21.errors.ErrorCode.query_error:type_name -> google.ads.googleads.v21.errors.QueryErrorEnum.QueryError - 18, // 10: google.ads.googleads.v21.errors.ErrorCode.mutate_error:type_name -> google.ads.googleads.v21.errors.MutateErrorEnum.MutateError - 19, // 11: google.ads.googleads.v21.errors.ErrorCode.field_mask_error:type_name -> google.ads.googleads.v21.errors.FieldMaskErrorEnum.FieldMaskError - 20, // 12: google.ads.googleads.v21.errors.ErrorCode.authorization_error:type_name -> google.ads.googleads.v21.errors.AuthorizationErrorEnum.AuthorizationError - 21, // 13: google.ads.googleads.v21.errors.ErrorCode.internal_error:type_name -> google.ads.googleads.v21.errors.InternalErrorEnum.InternalError - 22, // 14: google.ads.googleads.v21.errors.ErrorCode.quota_error:type_name -> google.ads.googleads.v21.errors.QuotaErrorEnum.QuotaError - 23, // 15: google.ads.googleads.v21.errors.ErrorCode.ad_error:type_name -> google.ads.googleads.v21.errors.AdErrorEnum.AdError - 24, // 16: google.ads.googleads.v21.errors.ErrorCode.ad_group_error:type_name -> google.ads.googleads.v21.errors.AdGroupErrorEnum.AdGroupError - 25, // 17: google.ads.googleads.v21.errors.ErrorCode.campaign_budget_error:type_name -> google.ads.googleads.v21.errors.CampaignBudgetErrorEnum.CampaignBudgetError - 26, // 18: google.ads.googleads.v21.errors.ErrorCode.campaign_error:type_name -> google.ads.googleads.v21.errors.CampaignErrorEnum.CampaignError - 27, // 19: google.ads.googleads.v21.errors.ErrorCode.video_campaign_error:type_name -> google.ads.googleads.v21.errors.VideoCampaignErrorEnum.VideoCampaignError - 28, // 20: google.ads.googleads.v21.errors.ErrorCode.authentication_error:type_name -> google.ads.googleads.v21.errors.AuthenticationErrorEnum.AuthenticationError - 29, // 21: google.ads.googleads.v21.errors.ErrorCode.ad_group_criterion_customizer_error:type_name -> google.ads.googleads.v21.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError - 30, // 22: google.ads.googleads.v21.errors.ErrorCode.ad_group_criterion_error:type_name -> google.ads.googleads.v21.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError - 31, // 23: google.ads.googleads.v21.errors.ErrorCode.ad_group_customizer_error:type_name -> google.ads.googleads.v21.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError - 32, // 24: google.ads.googleads.v21.errors.ErrorCode.ad_customizer_error:type_name -> google.ads.googleads.v21.errors.AdCustomizerErrorEnum.AdCustomizerError - 33, // 25: google.ads.googleads.v21.errors.ErrorCode.ad_group_ad_error:type_name -> google.ads.googleads.v21.errors.AdGroupAdErrorEnum.AdGroupAdError - 34, // 26: google.ads.googleads.v21.errors.ErrorCode.ad_sharing_error:type_name -> google.ads.googleads.v21.errors.AdSharingErrorEnum.AdSharingError - 35, // 27: google.ads.googleads.v21.errors.ErrorCode.adx_error:type_name -> google.ads.googleads.v21.errors.AdxErrorEnum.AdxError - 36, // 28: google.ads.googleads.v21.errors.ErrorCode.asset_error:type_name -> google.ads.googleads.v21.errors.AssetErrorEnum.AssetError - 37, // 29: google.ads.googleads.v21.errors.ErrorCode.asset_group_asset_error:type_name -> google.ads.googleads.v21.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError - 38, // 30: google.ads.googleads.v21.errors.ErrorCode.asset_group_listing_group_filter_error:type_name -> google.ads.googleads.v21.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError - 39, // 31: google.ads.googleads.v21.errors.ErrorCode.asset_group_error:type_name -> google.ads.googleads.v21.errors.AssetGroupErrorEnum.AssetGroupError - 40, // 32: google.ads.googleads.v21.errors.ErrorCode.asset_set_asset_error:type_name -> google.ads.googleads.v21.errors.AssetSetAssetErrorEnum.AssetSetAssetError - 41, // 33: google.ads.googleads.v21.errors.ErrorCode.asset_set_link_error:type_name -> google.ads.googleads.v21.errors.AssetSetLinkErrorEnum.AssetSetLinkError - 42, // 34: google.ads.googleads.v21.errors.ErrorCode.asset_set_error:type_name -> google.ads.googleads.v21.errors.AssetSetErrorEnum.AssetSetError - 43, // 35: google.ads.googleads.v21.errors.ErrorCode.bidding_error:type_name -> google.ads.googleads.v21.errors.BiddingErrorEnum.BiddingError - 44, // 36: google.ads.googleads.v21.errors.ErrorCode.campaign_criterion_error:type_name -> google.ads.googleads.v21.errors.CampaignCriterionErrorEnum.CampaignCriterionError - 45, // 37: google.ads.googleads.v21.errors.ErrorCode.campaign_conversion_goal_error:type_name -> google.ads.googleads.v21.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError - 46, // 38: google.ads.googleads.v21.errors.ErrorCode.campaign_customizer_error:type_name -> google.ads.googleads.v21.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError - 47, // 39: google.ads.googleads.v21.errors.ErrorCode.collection_size_error:type_name -> google.ads.googleads.v21.errors.CollectionSizeErrorEnum.CollectionSizeError - 48, // 40: google.ads.googleads.v21.errors.ErrorCode.conversion_goal_campaign_config_error:type_name -> google.ads.googleads.v21.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError - 49, // 41: google.ads.googleads.v21.errors.ErrorCode.country_code_error:type_name -> google.ads.googleads.v21.errors.CountryCodeErrorEnum.CountryCodeError - 50, // 42: google.ads.googleads.v21.errors.ErrorCode.criterion_error:type_name -> google.ads.googleads.v21.errors.CriterionErrorEnum.CriterionError - 51, // 43: google.ads.googleads.v21.errors.ErrorCode.custom_conversion_goal_error:type_name -> google.ads.googleads.v21.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError - 52, // 44: google.ads.googleads.v21.errors.ErrorCode.customer_customizer_error:type_name -> google.ads.googleads.v21.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError - 53, // 45: google.ads.googleads.v21.errors.ErrorCode.customer_error:type_name -> google.ads.googleads.v21.errors.CustomerErrorEnum.CustomerError - 54, // 46: google.ads.googleads.v21.errors.ErrorCode.customizer_attribute_error:type_name -> google.ads.googleads.v21.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError - 55, // 47: google.ads.googleads.v21.errors.ErrorCode.date_error:type_name -> google.ads.googleads.v21.errors.DateErrorEnum.DateError - 56, // 48: google.ads.googleads.v21.errors.ErrorCode.date_range_error:type_name -> google.ads.googleads.v21.errors.DateRangeErrorEnum.DateRangeError - 57, // 49: google.ads.googleads.v21.errors.ErrorCode.distinct_error:type_name -> google.ads.googleads.v21.errors.DistinctErrorEnum.DistinctError - 58, // 50: google.ads.googleads.v21.errors.ErrorCode.feed_attribute_reference_error:type_name -> google.ads.googleads.v21.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError - 59, // 51: google.ads.googleads.v21.errors.ErrorCode.final_url_expansion_asset_view_error:type_name -> google.ads.googleads.v21.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError - 60, // 52: google.ads.googleads.v21.errors.ErrorCode.function_error:type_name -> google.ads.googleads.v21.errors.FunctionErrorEnum.FunctionError - 61, // 53: google.ads.googleads.v21.errors.ErrorCode.function_parsing_error:type_name -> google.ads.googleads.v21.errors.FunctionParsingErrorEnum.FunctionParsingError - 62, // 54: google.ads.googleads.v21.errors.ErrorCode.id_error:type_name -> google.ads.googleads.v21.errors.IdErrorEnum.IdError - 63, // 55: google.ads.googleads.v21.errors.ErrorCode.image_error:type_name -> google.ads.googleads.v21.errors.ImageErrorEnum.ImageError - 64, // 56: google.ads.googleads.v21.errors.ErrorCode.language_code_error:type_name -> google.ads.googleads.v21.errors.LanguageCodeErrorEnum.LanguageCodeError - 65, // 57: google.ads.googleads.v21.errors.ErrorCode.media_bundle_error:type_name -> google.ads.googleads.v21.errors.MediaBundleErrorEnum.MediaBundleError - 66, // 58: google.ads.googleads.v21.errors.ErrorCode.media_upload_error:type_name -> google.ads.googleads.v21.errors.MediaUploadErrorEnum.MediaUploadError - 67, // 59: google.ads.googleads.v21.errors.ErrorCode.media_file_error:type_name -> google.ads.googleads.v21.errors.MediaFileErrorEnum.MediaFileError - 68, // 60: google.ads.googleads.v21.errors.ErrorCode.merchant_center_error:type_name -> google.ads.googleads.v21.errors.MerchantCenterErrorEnum.MerchantCenterError - 69, // 61: google.ads.googleads.v21.errors.ErrorCode.multiplier_error:type_name -> google.ads.googleads.v21.errors.MultiplierErrorEnum.MultiplierError - 70, // 62: google.ads.googleads.v21.errors.ErrorCode.new_resource_creation_error:type_name -> google.ads.googleads.v21.errors.NewResourceCreationErrorEnum.NewResourceCreationError - 71, // 63: google.ads.googleads.v21.errors.ErrorCode.not_empty_error:type_name -> google.ads.googleads.v21.errors.NotEmptyErrorEnum.NotEmptyError - 72, // 64: google.ads.googleads.v21.errors.ErrorCode.null_error:type_name -> google.ads.googleads.v21.errors.NullErrorEnum.NullError - 73, // 65: google.ads.googleads.v21.errors.ErrorCode.operator_error:type_name -> google.ads.googleads.v21.errors.OperatorErrorEnum.OperatorError - 74, // 66: google.ads.googleads.v21.errors.ErrorCode.range_error:type_name -> google.ads.googleads.v21.errors.RangeErrorEnum.RangeError - 75, // 67: google.ads.googleads.v21.errors.ErrorCode.recommendation_error:type_name -> google.ads.googleads.v21.errors.RecommendationErrorEnum.RecommendationError - 76, // 68: google.ads.googleads.v21.errors.ErrorCode.recommendation_subscription_error:type_name -> google.ads.googleads.v21.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError - 77, // 69: google.ads.googleads.v21.errors.ErrorCode.region_code_error:type_name -> google.ads.googleads.v21.errors.RegionCodeErrorEnum.RegionCodeError - 78, // 70: google.ads.googleads.v21.errors.ErrorCode.setting_error:type_name -> google.ads.googleads.v21.errors.SettingErrorEnum.SettingError - 79, // 71: google.ads.googleads.v21.errors.ErrorCode.string_format_error:type_name -> google.ads.googleads.v21.errors.StringFormatErrorEnum.StringFormatError - 80, // 72: google.ads.googleads.v21.errors.ErrorCode.string_length_error:type_name -> google.ads.googleads.v21.errors.StringLengthErrorEnum.StringLengthError - 81, // 73: google.ads.googleads.v21.errors.ErrorCode.operation_access_denied_error:type_name -> google.ads.googleads.v21.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError - 82, // 74: google.ads.googleads.v21.errors.ErrorCode.resource_access_denied_error:type_name -> google.ads.googleads.v21.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError - 83, // 75: google.ads.googleads.v21.errors.ErrorCode.resource_count_limit_exceeded_error:type_name -> google.ads.googleads.v21.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError - 84, // 76: google.ads.googleads.v21.errors.ErrorCode.youtube_video_registration_error:type_name -> google.ads.googleads.v21.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError - 85, // 77: google.ads.googleads.v21.errors.ErrorCode.ad_group_bid_modifier_error:type_name -> google.ads.googleads.v21.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError - 86, // 78: google.ads.googleads.v21.errors.ErrorCode.context_error:type_name -> google.ads.googleads.v21.errors.ContextErrorEnum.ContextError - 87, // 79: google.ads.googleads.v21.errors.ErrorCode.field_error:type_name -> google.ads.googleads.v21.errors.FieldErrorEnum.FieldError - 88, // 80: google.ads.googleads.v21.errors.ErrorCode.shared_set_error:type_name -> google.ads.googleads.v21.errors.SharedSetErrorEnum.SharedSetError - 89, // 81: google.ads.googleads.v21.errors.ErrorCode.shared_criterion_error:type_name -> google.ads.googleads.v21.errors.SharedCriterionErrorEnum.SharedCriterionError - 90, // 82: google.ads.googleads.v21.errors.ErrorCode.campaign_shared_set_error:type_name -> google.ads.googleads.v21.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError - 91, // 83: google.ads.googleads.v21.errors.ErrorCode.conversion_action_error:type_name -> google.ads.googleads.v21.errors.ConversionActionErrorEnum.ConversionActionError - 92, // 84: google.ads.googleads.v21.errors.ErrorCode.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - 93, // 85: google.ads.googleads.v21.errors.ErrorCode.conversion_custom_variable_error:type_name -> google.ads.googleads.v21.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError - 94, // 86: google.ads.googleads.v21.errors.ErrorCode.conversion_upload_error:type_name -> google.ads.googleads.v21.errors.ConversionUploadErrorEnum.ConversionUploadError - 95, // 87: google.ads.googleads.v21.errors.ErrorCode.conversion_value_rule_error:type_name -> google.ads.googleads.v21.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError - 96, // 88: google.ads.googleads.v21.errors.ErrorCode.conversion_value_rule_set_error:type_name -> google.ads.googleads.v21.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError - 97, // 89: google.ads.googleads.v21.errors.ErrorCode.header_error:type_name -> google.ads.googleads.v21.errors.HeaderErrorEnum.HeaderError - 98, // 90: google.ads.googleads.v21.errors.ErrorCode.database_error:type_name -> google.ads.googleads.v21.errors.DatabaseErrorEnum.DatabaseError - 99, // 91: google.ads.googleads.v21.errors.ErrorCode.policy_finding_error:type_name -> google.ads.googleads.v21.errors.PolicyFindingErrorEnum.PolicyFindingError - 100, // 92: google.ads.googleads.v21.errors.ErrorCode.enum_error:type_name -> google.ads.googleads.v21.errors.EnumErrorEnum.EnumError - 101, // 93: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanErrorEnum.KeywordPlanError - 102, // 94: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_campaign_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError - 103, // 95: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_campaign_keyword_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError - 104, // 96: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_ad_group_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError - 105, // 97: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_ad_group_keyword_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError - 106, // 98: google.ads.googleads.v21.errors.ErrorCode.keyword_plan_idea_error:type_name -> google.ads.googleads.v21.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError - 107, // 99: google.ads.googleads.v21.errors.ErrorCode.account_budget_proposal_error:type_name -> google.ads.googleads.v21.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError - 108, // 100: google.ads.googleads.v21.errors.ErrorCode.user_list_error:type_name -> google.ads.googleads.v21.errors.UserListErrorEnum.UserListError - 109, // 101: google.ads.googleads.v21.errors.ErrorCode.change_event_error:type_name -> google.ads.googleads.v21.errors.ChangeEventErrorEnum.ChangeEventError - 110, // 102: google.ads.googleads.v21.errors.ErrorCode.change_status_error:type_name -> google.ads.googleads.v21.errors.ChangeStatusErrorEnum.ChangeStatusError - 111, // 103: google.ads.googleads.v21.errors.ErrorCode.feed_error:type_name -> google.ads.googleads.v21.errors.FeedErrorEnum.FeedError - 112, // 104: google.ads.googleads.v21.errors.ErrorCode.geo_target_constant_suggestion_error:type_name -> google.ads.googleads.v21.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError - 113, // 105: google.ads.googleads.v21.errors.ErrorCode.campaign_draft_error:type_name -> google.ads.googleads.v21.errors.CampaignDraftErrorEnum.CampaignDraftError - 114, // 106: google.ads.googleads.v21.errors.ErrorCode.feed_item_error:type_name -> google.ads.googleads.v21.errors.FeedItemErrorEnum.FeedItemError - 115, // 107: google.ads.googleads.v21.errors.ErrorCode.label_error:type_name -> google.ads.googleads.v21.errors.LabelErrorEnum.LabelError - 116, // 108: google.ads.googleads.v21.errors.ErrorCode.billing_setup_error:type_name -> google.ads.googleads.v21.errors.BillingSetupErrorEnum.BillingSetupError - 117, // 109: google.ads.googleads.v21.errors.ErrorCode.customer_client_link_error:type_name -> google.ads.googleads.v21.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError - 118, // 110: google.ads.googleads.v21.errors.ErrorCode.customer_manager_link_error:type_name -> google.ads.googleads.v21.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError - 119, // 111: google.ads.googleads.v21.errors.ErrorCode.feed_mapping_error:type_name -> google.ads.googleads.v21.errors.FeedMappingErrorEnum.FeedMappingError - 120, // 112: google.ads.googleads.v21.errors.ErrorCode.customer_feed_error:type_name -> google.ads.googleads.v21.errors.CustomerFeedErrorEnum.CustomerFeedError - 121, // 113: google.ads.googleads.v21.errors.ErrorCode.ad_group_feed_error:type_name -> google.ads.googleads.v21.errors.AdGroupFeedErrorEnum.AdGroupFeedError - 122, // 114: google.ads.googleads.v21.errors.ErrorCode.campaign_feed_error:type_name -> google.ads.googleads.v21.errors.CampaignFeedErrorEnum.CampaignFeedError - 123, // 115: google.ads.googleads.v21.errors.ErrorCode.custom_interest_error:type_name -> google.ads.googleads.v21.errors.CustomInterestErrorEnum.CustomInterestError - 124, // 116: google.ads.googleads.v21.errors.ErrorCode.campaign_experiment_error:type_name -> google.ads.googleads.v21.errors.CampaignExperimentErrorEnum.CampaignExperimentError - 125, // 117: google.ads.googleads.v21.errors.ErrorCode.extension_feed_item_error:type_name -> google.ads.googleads.v21.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError - 126, // 118: google.ads.googleads.v21.errors.ErrorCode.ad_parameter_error:type_name -> google.ads.googleads.v21.errors.AdParameterErrorEnum.AdParameterError - 127, // 119: google.ads.googleads.v21.errors.ErrorCode.feed_item_validation_error:type_name -> google.ads.googleads.v21.errors.FeedItemValidationErrorEnum.FeedItemValidationError - 128, // 120: google.ads.googleads.v21.errors.ErrorCode.extension_setting_error:type_name -> google.ads.googleads.v21.errors.ExtensionSettingErrorEnum.ExtensionSettingError - 129, // 121: google.ads.googleads.v21.errors.ErrorCode.feed_item_set_error:type_name -> google.ads.googleads.v21.errors.FeedItemSetErrorEnum.FeedItemSetError - 130, // 122: google.ads.googleads.v21.errors.ErrorCode.feed_item_set_link_error:type_name -> google.ads.googleads.v21.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError - 131, // 123: google.ads.googleads.v21.errors.ErrorCode.feed_item_target_error:type_name -> google.ads.googleads.v21.errors.FeedItemTargetErrorEnum.FeedItemTargetError - 132, // 124: google.ads.googleads.v21.errors.ErrorCode.policy_violation_error:type_name -> google.ads.googleads.v21.errors.PolicyViolationErrorEnum.PolicyViolationError - 133, // 125: google.ads.googleads.v21.errors.ErrorCode.partial_failure_error:type_name -> google.ads.googleads.v21.errors.PartialFailureErrorEnum.PartialFailureError - 134, // 126: google.ads.googleads.v21.errors.ErrorCode.click_view_error:type_name -> google.ads.googleads.v21.errors.ClickViewErrorEnum.ClickViewError - 135, // 127: google.ads.googleads.v21.errors.ErrorCode.policy_validation_parameter_error:type_name -> google.ads.googleads.v21.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError - 136, // 128: google.ads.googleads.v21.errors.ErrorCode.size_limit_error:type_name -> google.ads.googleads.v21.errors.SizeLimitErrorEnum.SizeLimitError - 137, // 129: google.ads.googleads.v21.errors.ErrorCode.offline_user_data_job_error:type_name -> google.ads.googleads.v21.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError - 138, // 130: google.ads.googleads.v21.errors.ErrorCode.not_allowlisted_error:type_name -> google.ads.googleads.v21.errors.NotAllowlistedErrorEnum.NotAllowlistedError - 139, // 131: google.ads.googleads.v21.errors.ErrorCode.manager_link_error:type_name -> google.ads.googleads.v21.errors.ManagerLinkErrorEnum.ManagerLinkError - 140, // 132: google.ads.googleads.v21.errors.ErrorCode.currency_code_error:type_name -> google.ads.googleads.v21.errors.CurrencyCodeErrorEnum.CurrencyCodeError - 141, // 133: google.ads.googleads.v21.errors.ErrorCode.experiment_error:type_name -> google.ads.googleads.v21.errors.ExperimentErrorEnum.ExperimentError - 142, // 134: google.ads.googleads.v21.errors.ErrorCode.access_invitation_error:type_name -> google.ads.googleads.v21.errors.AccessInvitationErrorEnum.AccessInvitationError - 143, // 135: google.ads.googleads.v21.errors.ErrorCode.reach_plan_error:type_name -> google.ads.googleads.v21.errors.ReachPlanErrorEnum.ReachPlanError - 144, // 136: google.ads.googleads.v21.errors.ErrorCode.invoice_error:type_name -> google.ads.googleads.v21.errors.InvoiceErrorEnum.InvoiceError - 145, // 137: google.ads.googleads.v21.errors.ErrorCode.payments_account_error:type_name -> google.ads.googleads.v21.errors.PaymentsAccountErrorEnum.PaymentsAccountError - 146, // 138: google.ads.googleads.v21.errors.ErrorCode.time_zone_error:type_name -> google.ads.googleads.v21.errors.TimeZoneErrorEnum.TimeZoneError - 147, // 139: google.ads.googleads.v21.errors.ErrorCode.asset_link_error:type_name -> google.ads.googleads.v21.errors.AssetLinkErrorEnum.AssetLinkError - 148, // 140: google.ads.googleads.v21.errors.ErrorCode.user_data_error:type_name -> google.ads.googleads.v21.errors.UserDataErrorEnum.UserDataError - 149, // 141: google.ads.googleads.v21.errors.ErrorCode.batch_job_error:type_name -> google.ads.googleads.v21.errors.BatchJobErrorEnum.BatchJobError - 150, // 142: google.ads.googleads.v21.errors.ErrorCode.account_link_error:type_name -> google.ads.googleads.v21.errors.AccountLinkErrorEnum.AccountLinkError - 151, // 143: google.ads.googleads.v21.errors.ErrorCode.third_party_app_analytics_link_error:type_name -> google.ads.googleads.v21.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError - 152, // 144: google.ads.googleads.v21.errors.ErrorCode.customer_user_access_error:type_name -> google.ads.googleads.v21.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError - 153, // 145: google.ads.googleads.v21.errors.ErrorCode.custom_audience_error:type_name -> google.ads.googleads.v21.errors.CustomAudienceErrorEnum.CustomAudienceError - 154, // 146: google.ads.googleads.v21.errors.ErrorCode.audience_error:type_name -> google.ads.googleads.v21.errors.AudienceErrorEnum.AudienceError - 155, // 147: google.ads.googleads.v21.errors.ErrorCode.search_term_insight_error:type_name -> google.ads.googleads.v21.errors.SearchTermInsightErrorEnum.SearchTermInsightError - 156, // 148: google.ads.googleads.v21.errors.ErrorCode.smart_campaign_error:type_name -> google.ads.googleads.v21.errors.SmartCampaignErrorEnum.SmartCampaignError - 157, // 149: google.ads.googleads.v21.errors.ErrorCode.experiment_arm_error:type_name -> google.ads.googleads.v21.errors.ExperimentArmErrorEnum.ExperimentArmError - 158, // 150: google.ads.googleads.v21.errors.ErrorCode.audience_insights_error:type_name -> google.ads.googleads.v21.errors.AudienceInsightsErrorEnum.AudienceInsightsError - 159, // 151: google.ads.googleads.v21.errors.ErrorCode.product_link_error:type_name -> google.ads.googleads.v21.errors.ProductLinkErrorEnum.ProductLinkError - 160, // 152: google.ads.googleads.v21.errors.ErrorCode.data_link_error:type_name -> google.ads.googleads.v21.errors.DataLinkErrorEnum.DataLinkError - 161, // 153: google.ads.googleads.v21.errors.ErrorCode.customer_sk_ad_network_conversion_value_schema_error:type_name -> google.ads.googleads.v21.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError - 162, // 154: google.ads.googleads.v21.errors.ErrorCode.currency_error:type_name -> google.ads.googleads.v21.errors.CurrencyErrorEnum.CurrencyError - 163, // 155: google.ads.googleads.v21.errors.ErrorCode.asset_group_signal_error:type_name -> google.ads.googleads.v21.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError - 164, // 156: google.ads.googleads.v21.errors.ErrorCode.product_link_invitation_error:type_name -> google.ads.googleads.v21.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError - 165, // 157: google.ads.googleads.v21.errors.ErrorCode.customer_lifecycle_goal_error:type_name -> google.ads.googleads.v21.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError - 166, // 158: google.ads.googleads.v21.errors.ErrorCode.campaign_lifecycle_goal_error:type_name -> google.ads.googleads.v21.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError - 167, // 159: google.ads.googleads.v21.errors.ErrorCode.identity_verification_error:type_name -> google.ads.googleads.v21.errors.IdentityVerificationErrorEnum.IdentityVerificationError - 168, // 160: google.ads.googleads.v21.errors.ErrorCode.user_list_customer_type_error:type_name -> google.ads.googleads.v21.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError - 169, // 161: google.ads.googleads.v21.errors.ErrorCode.shopping_product_error:type_name -> google.ads.googleads.v21.errors.ShoppingProductErrorEnum.ShoppingProductError - 170, // 162: google.ads.googleads.v21.errors.ErrorCode.automatically_created_asset_removal_error:type_name -> google.ads.googleads.v21.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError - 171, // 163: google.ads.googleads.v21.errors.ErrorCode.shareable_preview_error:type_name -> google.ads.googleads.v21.errors.ShareablePreviewErrorEnum.ShareablePreviewError - 172, // 164: google.ads.googleads.v21.errors.ErrorCode.brand_guidelines_migration_error:type_name -> google.ads.googleads.v21.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError - 11, // 165: google.ads.googleads.v21.errors.ErrorLocation.field_path_elements:type_name -> google.ads.googleads.v21.errors.ErrorLocation.FieldPathElement - 6, // 166: google.ads.googleads.v21.errors.ErrorDetails.policy_violation_details:type_name -> google.ads.googleads.v21.errors.PolicyViolationDetails - 7, // 167: google.ads.googleads.v21.errors.ErrorDetails.policy_finding_details:type_name -> google.ads.googleads.v21.errors.PolicyFindingDetails - 8, // 168: google.ads.googleads.v21.errors.ErrorDetails.quota_error_details:type_name -> google.ads.googleads.v21.errors.QuotaErrorDetails - 9, // 169: google.ads.googleads.v21.errors.ErrorDetails.resource_count_details:type_name -> google.ads.googleads.v21.errors.ResourceCountDetails - 10, // 170: google.ads.googleads.v21.errors.ErrorDetails.budget_per_day_minimum_error_details:type_name -> google.ads.googleads.v21.errors.BudgetPerDayMinimumErrorDetails - 173, // 171: google.ads.googleads.v21.errors.PolicyViolationDetails.key:type_name -> google.ads.googleads.v21.common.PolicyViolationKey - 174, // 172: google.ads.googleads.v21.errors.PolicyFindingDetails.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 0, // 173: google.ads.googleads.v21.errors.QuotaErrorDetails.rate_scope:type_name -> google.ads.googleads.v21.errors.QuotaErrorDetails.QuotaRateScope - 175, // 174: google.ads.googleads.v21.errors.QuotaErrorDetails.retry_delay:type_name -> google.protobuf.Duration - 176, // 175: google.ads.googleads.v21.errors.ResourceCountDetails.limit_type:type_name -> google.ads.googleads.v21.enums.ResourceLimitTypeEnum.ResourceLimitType - 176, // [176:176] is the sub-list for method output_type - 176, // [176:176] is the sub-list for method input_type - 176, // [176:176] is the sub-list for extension type_name - 176, // [176:176] is the sub-list for extension extendee - 0, // [0:176] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_errors_errors_proto_init() } -func file_google_ads_googleads_v21_errors_errors_proto_init() { - if File_google_ads_googleads_v21_errors_errors_proto != nil { + return file_google_ads_googleads_v22_errors_errors_proto_rawDescData +} + +var file_google_ads_googleads_v22_errors_errors_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_errors_proto_msgTypes = make([]protoimpl.MessageInfo, 11) +var file_google_ads_googleads_v22_errors_errors_proto_goTypes = []any{ + (QuotaErrorDetails_QuotaRateScope)(0), // 0: google.ads.googleads.v22.errors.QuotaErrorDetails.QuotaRateScope + (*GoogleAdsFailure)(nil), // 1: google.ads.googleads.v22.errors.GoogleAdsFailure + (*GoogleAdsError)(nil), // 2: google.ads.googleads.v22.errors.GoogleAdsError + (*ErrorCode)(nil), // 3: google.ads.googleads.v22.errors.ErrorCode + (*ErrorLocation)(nil), // 4: google.ads.googleads.v22.errors.ErrorLocation + (*ErrorDetails)(nil), // 5: google.ads.googleads.v22.errors.ErrorDetails + (*PolicyViolationDetails)(nil), // 6: google.ads.googleads.v22.errors.PolicyViolationDetails + (*PolicyFindingDetails)(nil), // 7: google.ads.googleads.v22.errors.PolicyFindingDetails + (*QuotaErrorDetails)(nil), // 8: google.ads.googleads.v22.errors.QuotaErrorDetails + (*ResourceCountDetails)(nil), // 9: google.ads.googleads.v22.errors.ResourceCountDetails + (*BudgetPerDayMinimumErrorDetails)(nil), // 10: google.ads.googleads.v22.errors.BudgetPerDayMinimumErrorDetails + (*ErrorLocation_FieldPathElement)(nil), // 11: google.ads.googleads.v22.errors.ErrorLocation.FieldPathElement + (*common.Value)(nil), // 12: google.ads.googleads.v22.common.Value + (RequestErrorEnum_RequestError)(0), // 13: google.ads.googleads.v22.errors.RequestErrorEnum.RequestError + (BiddingStrategyErrorEnum_BiddingStrategyError)(0), // 14: google.ads.googleads.v22.errors.BiddingStrategyErrorEnum.BiddingStrategyError + (UrlFieldErrorEnum_UrlFieldError)(0), // 15: google.ads.googleads.v22.errors.UrlFieldErrorEnum.UrlFieldError + (ListOperationErrorEnum_ListOperationError)(0), // 16: google.ads.googleads.v22.errors.ListOperationErrorEnum.ListOperationError + (QueryErrorEnum_QueryError)(0), // 17: google.ads.googleads.v22.errors.QueryErrorEnum.QueryError + (MutateErrorEnum_MutateError)(0), // 18: google.ads.googleads.v22.errors.MutateErrorEnum.MutateError + (FieldMaskErrorEnum_FieldMaskError)(0), // 19: google.ads.googleads.v22.errors.FieldMaskErrorEnum.FieldMaskError + (AuthorizationErrorEnum_AuthorizationError)(0), // 20: google.ads.googleads.v22.errors.AuthorizationErrorEnum.AuthorizationError + (InternalErrorEnum_InternalError)(0), // 21: google.ads.googleads.v22.errors.InternalErrorEnum.InternalError + (QuotaErrorEnum_QuotaError)(0), // 22: google.ads.googleads.v22.errors.QuotaErrorEnum.QuotaError + (AdErrorEnum_AdError)(0), // 23: google.ads.googleads.v22.errors.AdErrorEnum.AdError + (AdGroupErrorEnum_AdGroupError)(0), // 24: google.ads.googleads.v22.errors.AdGroupErrorEnum.AdGroupError + (CampaignBudgetErrorEnum_CampaignBudgetError)(0), // 25: google.ads.googleads.v22.errors.CampaignBudgetErrorEnum.CampaignBudgetError + (CampaignErrorEnum_CampaignError)(0), // 26: google.ads.googleads.v22.errors.CampaignErrorEnum.CampaignError + (VideoCampaignErrorEnum_VideoCampaignError)(0), // 27: google.ads.googleads.v22.errors.VideoCampaignErrorEnum.VideoCampaignError + (AuthenticationErrorEnum_AuthenticationError)(0), // 28: google.ads.googleads.v22.errors.AuthenticationErrorEnum.AuthenticationError + (AdGroupCriterionCustomizerErrorEnum_AdGroupCriterionCustomizerError)(0), // 29: google.ads.googleads.v22.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError + (AdGroupCriterionErrorEnum_AdGroupCriterionError)(0), // 30: google.ads.googleads.v22.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError + (AdGroupCustomizerErrorEnum_AdGroupCustomizerError)(0), // 31: google.ads.googleads.v22.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError + (AdCustomizerErrorEnum_AdCustomizerError)(0), // 32: google.ads.googleads.v22.errors.AdCustomizerErrorEnum.AdCustomizerError + (AdGroupAdErrorEnum_AdGroupAdError)(0), // 33: google.ads.googleads.v22.errors.AdGroupAdErrorEnum.AdGroupAdError + (AdSharingErrorEnum_AdSharingError)(0), // 34: google.ads.googleads.v22.errors.AdSharingErrorEnum.AdSharingError + (AdxErrorEnum_AdxError)(0), // 35: google.ads.googleads.v22.errors.AdxErrorEnum.AdxError + (AssetErrorEnum_AssetError)(0), // 36: google.ads.googleads.v22.errors.AssetErrorEnum.AssetError + (AssetGroupAssetErrorEnum_AssetGroupAssetError)(0), // 37: google.ads.googleads.v22.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError + (AssetGroupListingGroupFilterErrorEnum_AssetGroupListingGroupFilterError)(0), // 38: google.ads.googleads.v22.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError + (AssetGroupErrorEnum_AssetGroupError)(0), // 39: google.ads.googleads.v22.errors.AssetGroupErrorEnum.AssetGroupError + (AssetSetAssetErrorEnum_AssetSetAssetError)(0), // 40: google.ads.googleads.v22.errors.AssetSetAssetErrorEnum.AssetSetAssetError + (AssetSetLinkErrorEnum_AssetSetLinkError)(0), // 41: google.ads.googleads.v22.errors.AssetSetLinkErrorEnum.AssetSetLinkError + (AssetSetErrorEnum_AssetSetError)(0), // 42: google.ads.googleads.v22.errors.AssetSetErrorEnum.AssetSetError + (BiddingErrorEnum_BiddingError)(0), // 43: google.ads.googleads.v22.errors.BiddingErrorEnum.BiddingError + (CampaignCriterionErrorEnum_CampaignCriterionError)(0), // 44: google.ads.googleads.v22.errors.CampaignCriterionErrorEnum.CampaignCriterionError + (CampaignConversionGoalErrorEnum_CampaignConversionGoalError)(0), // 45: google.ads.googleads.v22.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError + (CampaignCustomizerErrorEnum_CampaignCustomizerError)(0), // 46: google.ads.googleads.v22.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError + (CollectionSizeErrorEnum_CollectionSizeError)(0), // 47: google.ads.googleads.v22.errors.CollectionSizeErrorEnum.CollectionSizeError + (ConversionGoalCampaignConfigErrorEnum_ConversionGoalCampaignConfigError)(0), // 48: google.ads.googleads.v22.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError + (CountryCodeErrorEnum_CountryCodeError)(0), // 49: google.ads.googleads.v22.errors.CountryCodeErrorEnum.CountryCodeError + (CriterionErrorEnum_CriterionError)(0), // 50: google.ads.googleads.v22.errors.CriterionErrorEnum.CriterionError + (CustomConversionGoalErrorEnum_CustomConversionGoalError)(0), // 51: google.ads.googleads.v22.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError + (CustomerCustomizerErrorEnum_CustomerCustomizerError)(0), // 52: google.ads.googleads.v22.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError + (CustomerErrorEnum_CustomerError)(0), // 53: google.ads.googleads.v22.errors.CustomerErrorEnum.CustomerError + (CustomizerAttributeErrorEnum_CustomizerAttributeError)(0), // 54: google.ads.googleads.v22.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError + (DateErrorEnum_DateError)(0), // 55: google.ads.googleads.v22.errors.DateErrorEnum.DateError + (DateRangeErrorEnum_DateRangeError)(0), // 56: google.ads.googleads.v22.errors.DateRangeErrorEnum.DateRangeError + (DistinctErrorEnum_DistinctError)(0), // 57: google.ads.googleads.v22.errors.DistinctErrorEnum.DistinctError + (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 58: google.ads.googleads.v22.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError + (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError)(0), // 59: google.ads.googleads.v22.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError + (FunctionErrorEnum_FunctionError)(0), // 60: google.ads.googleads.v22.errors.FunctionErrorEnum.FunctionError + (FunctionParsingErrorEnum_FunctionParsingError)(0), // 61: google.ads.googleads.v22.errors.FunctionParsingErrorEnum.FunctionParsingError + (IdErrorEnum_IdError)(0), // 62: google.ads.googleads.v22.errors.IdErrorEnum.IdError + (ImageErrorEnum_ImageError)(0), // 63: google.ads.googleads.v22.errors.ImageErrorEnum.ImageError + (LanguageCodeErrorEnum_LanguageCodeError)(0), // 64: google.ads.googleads.v22.errors.LanguageCodeErrorEnum.LanguageCodeError + (MediaBundleErrorEnum_MediaBundleError)(0), // 65: google.ads.googleads.v22.errors.MediaBundleErrorEnum.MediaBundleError + (MediaUploadErrorEnum_MediaUploadError)(0), // 66: google.ads.googleads.v22.errors.MediaUploadErrorEnum.MediaUploadError + (MediaFileErrorEnum_MediaFileError)(0), // 67: google.ads.googleads.v22.errors.MediaFileErrorEnum.MediaFileError + (MerchantCenterErrorEnum_MerchantCenterError)(0), // 68: google.ads.googleads.v22.errors.MerchantCenterErrorEnum.MerchantCenterError + (MultiplierErrorEnum_MultiplierError)(0), // 69: google.ads.googleads.v22.errors.MultiplierErrorEnum.MultiplierError + (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 70: google.ads.googleads.v22.errors.NewResourceCreationErrorEnum.NewResourceCreationError + (NotEmptyErrorEnum_NotEmptyError)(0), // 71: google.ads.googleads.v22.errors.NotEmptyErrorEnum.NotEmptyError + (NullErrorEnum_NullError)(0), // 72: google.ads.googleads.v22.errors.NullErrorEnum.NullError + (OperatorErrorEnum_OperatorError)(0), // 73: google.ads.googleads.v22.errors.OperatorErrorEnum.OperatorError + (RangeErrorEnum_RangeError)(0), // 74: google.ads.googleads.v22.errors.RangeErrorEnum.RangeError + (RecommendationErrorEnum_RecommendationError)(0), // 75: google.ads.googleads.v22.errors.RecommendationErrorEnum.RecommendationError + (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 76: google.ads.googleads.v22.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError + (RegionCodeErrorEnum_RegionCodeError)(0), // 77: google.ads.googleads.v22.errors.RegionCodeErrorEnum.RegionCodeError + (SettingErrorEnum_SettingError)(0), // 78: google.ads.googleads.v22.errors.SettingErrorEnum.SettingError + (StringFormatErrorEnum_StringFormatError)(0), // 79: google.ads.googleads.v22.errors.StringFormatErrorEnum.StringFormatError + (StringLengthErrorEnum_StringLengthError)(0), // 80: google.ads.googleads.v22.errors.StringLengthErrorEnum.StringLengthError + (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 81: google.ads.googleads.v22.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError + (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 82: google.ads.googleads.v22.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError + (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 83: google.ads.googleads.v22.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError + (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 84: google.ads.googleads.v22.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError + (AdGroupBidModifierErrorEnum_AdGroupBidModifierError)(0), // 85: google.ads.googleads.v22.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError + (ContextErrorEnum_ContextError)(0), // 86: google.ads.googleads.v22.errors.ContextErrorEnum.ContextError + (FieldErrorEnum_FieldError)(0), // 87: google.ads.googleads.v22.errors.FieldErrorEnum.FieldError + (SharedSetErrorEnum_SharedSetError)(0), // 88: google.ads.googleads.v22.errors.SharedSetErrorEnum.SharedSetError + (SharedCriterionErrorEnum_SharedCriterionError)(0), // 89: google.ads.googleads.v22.errors.SharedCriterionErrorEnum.SharedCriterionError + (CampaignSharedSetErrorEnum_CampaignSharedSetError)(0), // 90: google.ads.googleads.v22.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError + (ConversionActionErrorEnum_ConversionActionError)(0), // 91: google.ads.googleads.v22.errors.ConversionActionErrorEnum.ConversionActionError + (ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 92: google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + (ConversionCustomVariableErrorEnum_ConversionCustomVariableError)(0), // 93: google.ads.googleads.v22.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError + (ConversionUploadErrorEnum_ConversionUploadError)(0), // 94: google.ads.googleads.v22.errors.ConversionUploadErrorEnum.ConversionUploadError + (ConversionValueRuleErrorEnum_ConversionValueRuleError)(0), // 95: google.ads.googleads.v22.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError + (ConversionValueRuleSetErrorEnum_ConversionValueRuleSetError)(0), // 96: google.ads.googleads.v22.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError + (HeaderErrorEnum_HeaderError)(0), // 97: google.ads.googleads.v22.errors.HeaderErrorEnum.HeaderError + (DatabaseErrorEnum_DatabaseError)(0), // 98: google.ads.googleads.v22.errors.DatabaseErrorEnum.DatabaseError + (PolicyFindingErrorEnum_PolicyFindingError)(0), // 99: google.ads.googleads.v22.errors.PolicyFindingErrorEnum.PolicyFindingError + (EnumErrorEnum_EnumError)(0), // 100: google.ads.googleads.v22.errors.EnumErrorEnum.EnumError + (KeywordPlanErrorEnum_KeywordPlanError)(0), // 101: google.ads.googleads.v22.errors.KeywordPlanErrorEnum.KeywordPlanError + (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 102: google.ads.googleads.v22.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError + (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 103: google.ads.googleads.v22.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError + (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 104: google.ads.googleads.v22.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError + (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 105: google.ads.googleads.v22.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError + (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 106: google.ads.googleads.v22.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError + (AccountBudgetProposalErrorEnum_AccountBudgetProposalError)(0), // 107: google.ads.googleads.v22.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError + (UserListErrorEnum_UserListError)(0), // 108: google.ads.googleads.v22.errors.UserListErrorEnum.UserListError + (ChangeEventErrorEnum_ChangeEventError)(0), // 109: google.ads.googleads.v22.errors.ChangeEventErrorEnum.ChangeEventError + (ChangeStatusErrorEnum_ChangeStatusError)(0), // 110: google.ads.googleads.v22.errors.ChangeStatusErrorEnum.ChangeStatusError + (FeedErrorEnum_FeedError)(0), // 111: google.ads.googleads.v22.errors.FeedErrorEnum.FeedError + (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 112: google.ads.googleads.v22.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError + (CampaignDraftErrorEnum_CampaignDraftError)(0), // 113: google.ads.googleads.v22.errors.CampaignDraftErrorEnum.CampaignDraftError + (FeedItemErrorEnum_FeedItemError)(0), // 114: google.ads.googleads.v22.errors.FeedItemErrorEnum.FeedItemError + (LabelErrorEnum_LabelError)(0), // 115: google.ads.googleads.v22.errors.LabelErrorEnum.LabelError + (BillingSetupErrorEnum_BillingSetupError)(0), // 116: google.ads.googleads.v22.errors.BillingSetupErrorEnum.BillingSetupError + (CustomerClientLinkErrorEnum_CustomerClientLinkError)(0), // 117: google.ads.googleads.v22.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError + (CustomerManagerLinkErrorEnum_CustomerManagerLinkError)(0), // 118: google.ads.googleads.v22.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError + (FeedMappingErrorEnum_FeedMappingError)(0), // 119: google.ads.googleads.v22.errors.FeedMappingErrorEnum.FeedMappingError + (CustomerFeedErrorEnum_CustomerFeedError)(0), // 120: google.ads.googleads.v22.errors.CustomerFeedErrorEnum.CustomerFeedError + (AdGroupFeedErrorEnum_AdGroupFeedError)(0), // 121: google.ads.googleads.v22.errors.AdGroupFeedErrorEnum.AdGroupFeedError + (CampaignFeedErrorEnum_CampaignFeedError)(0), // 122: google.ads.googleads.v22.errors.CampaignFeedErrorEnum.CampaignFeedError + (CustomInterestErrorEnum_CustomInterestError)(0), // 123: google.ads.googleads.v22.errors.CustomInterestErrorEnum.CustomInterestError + (CampaignExperimentErrorEnum_CampaignExperimentError)(0), // 124: google.ads.googleads.v22.errors.CampaignExperimentErrorEnum.CampaignExperimentError + (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 125: google.ads.googleads.v22.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError + (AdParameterErrorEnum_AdParameterError)(0), // 126: google.ads.googleads.v22.errors.AdParameterErrorEnum.AdParameterError + (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 127: google.ads.googleads.v22.errors.FeedItemValidationErrorEnum.FeedItemValidationError + (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 128: google.ads.googleads.v22.errors.ExtensionSettingErrorEnum.ExtensionSettingError + (FeedItemSetErrorEnum_FeedItemSetError)(0), // 129: google.ads.googleads.v22.errors.FeedItemSetErrorEnum.FeedItemSetError + (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 130: google.ads.googleads.v22.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError + (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 131: google.ads.googleads.v22.errors.FeedItemTargetErrorEnum.FeedItemTargetError + (PolicyViolationErrorEnum_PolicyViolationError)(0), // 132: google.ads.googleads.v22.errors.PolicyViolationErrorEnum.PolicyViolationError + (PartialFailureErrorEnum_PartialFailureError)(0), // 133: google.ads.googleads.v22.errors.PartialFailureErrorEnum.PartialFailureError + (ClickViewErrorEnum_ClickViewError)(0), // 134: google.ads.googleads.v22.errors.ClickViewErrorEnum.ClickViewError + (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 135: google.ads.googleads.v22.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError + (SizeLimitErrorEnum_SizeLimitError)(0), // 136: google.ads.googleads.v22.errors.SizeLimitErrorEnum.SizeLimitError + (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 137: google.ads.googleads.v22.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError + (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 138: google.ads.googleads.v22.errors.NotAllowlistedErrorEnum.NotAllowlistedError + (ManagerLinkErrorEnum_ManagerLinkError)(0), // 139: google.ads.googleads.v22.errors.ManagerLinkErrorEnum.ManagerLinkError + (CurrencyCodeErrorEnum_CurrencyCodeError)(0), // 140: google.ads.googleads.v22.errors.CurrencyCodeErrorEnum.CurrencyCodeError + (ExperimentErrorEnum_ExperimentError)(0), // 141: google.ads.googleads.v22.errors.ExperimentErrorEnum.ExperimentError + (AccessInvitationErrorEnum_AccessInvitationError)(0), // 142: google.ads.googleads.v22.errors.AccessInvitationErrorEnum.AccessInvitationError + (ReachPlanErrorEnum_ReachPlanError)(0), // 143: google.ads.googleads.v22.errors.ReachPlanErrorEnum.ReachPlanError + (InvoiceErrorEnum_InvoiceError)(0), // 144: google.ads.googleads.v22.errors.InvoiceErrorEnum.InvoiceError + (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 145: google.ads.googleads.v22.errors.PaymentsAccountErrorEnum.PaymentsAccountError + (TimeZoneErrorEnum_TimeZoneError)(0), // 146: google.ads.googleads.v22.errors.TimeZoneErrorEnum.TimeZoneError + (AssetLinkErrorEnum_AssetLinkError)(0), // 147: google.ads.googleads.v22.errors.AssetLinkErrorEnum.AssetLinkError + (UserDataErrorEnum_UserDataError)(0), // 148: google.ads.googleads.v22.errors.UserDataErrorEnum.UserDataError + (BatchJobErrorEnum_BatchJobError)(0), // 149: google.ads.googleads.v22.errors.BatchJobErrorEnum.BatchJobError + (AccountLinkErrorEnum_AccountLinkError)(0), // 150: google.ads.googleads.v22.errors.AccountLinkErrorEnum.AccountLinkError + (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 151: google.ads.googleads.v22.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError + (CustomerUserAccessErrorEnum_CustomerUserAccessError)(0), // 152: google.ads.googleads.v22.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError + (CustomAudienceErrorEnum_CustomAudienceError)(0), // 153: google.ads.googleads.v22.errors.CustomAudienceErrorEnum.CustomAudienceError + (AudienceErrorEnum_AudienceError)(0), // 154: google.ads.googleads.v22.errors.AudienceErrorEnum.AudienceError + (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 155: google.ads.googleads.v22.errors.SearchTermInsightErrorEnum.SearchTermInsightError + (SmartCampaignErrorEnum_SmartCampaignError)(0), // 156: google.ads.googleads.v22.errors.SmartCampaignErrorEnum.SmartCampaignError + (ExperimentArmErrorEnum_ExperimentArmError)(0), // 157: google.ads.googleads.v22.errors.ExperimentArmErrorEnum.ExperimentArmError + (AudienceInsightsErrorEnum_AudienceInsightsError)(0), // 158: google.ads.googleads.v22.errors.AudienceInsightsErrorEnum.AudienceInsightsError + (ProductLinkErrorEnum_ProductLinkError)(0), // 159: google.ads.googleads.v22.errors.ProductLinkErrorEnum.ProductLinkError + (DataLinkErrorEnum_DataLinkError)(0), // 160: google.ads.googleads.v22.errors.DataLinkErrorEnum.DataLinkError + (CustomerSkAdNetworkConversionValueSchemaErrorEnum_CustomerSkAdNetworkConversionValueSchemaError)(0), // 161: google.ads.googleads.v22.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError + (CurrencyErrorEnum_CurrencyError)(0), // 162: google.ads.googleads.v22.errors.CurrencyErrorEnum.CurrencyError + (AssetGroupSignalErrorEnum_AssetGroupSignalError)(0), // 163: google.ads.googleads.v22.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError + (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 164: google.ads.googleads.v22.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError + (CustomerLifecycleGoalErrorEnum_CustomerLifecycleGoalError)(0), // 165: google.ads.googleads.v22.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError + (CampaignLifecycleGoalErrorEnum_CampaignLifecycleGoalError)(0), // 166: google.ads.googleads.v22.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError + (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 167: google.ads.googleads.v22.errors.IdentityVerificationErrorEnum.IdentityVerificationError + (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 168: google.ads.googleads.v22.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError + (ShoppingProductErrorEnum_ShoppingProductError)(0), // 169: google.ads.googleads.v22.errors.ShoppingProductErrorEnum.ShoppingProductError + (AutomaticallyCreatedAssetRemovalErrorEnum_AutomaticallyCreatedAssetRemovalError)(0), // 170: google.ads.googleads.v22.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError + (ShareablePreviewErrorEnum_ShareablePreviewError)(0), // 171: google.ads.googleads.v22.errors.ShareablePreviewErrorEnum.ShareablePreviewError + (CampaignGoalConfigErrorEnum_CampaignGoalConfigError)(0), // 172: google.ads.googleads.v22.errors.CampaignGoalConfigErrorEnum.CampaignGoalConfigError + (GoalErrorEnum_GoalError)(0), // 173: google.ads.googleads.v22.errors.GoalErrorEnum.GoalError + (BrandGuidelinesMigrationErrorEnum_BrandGuidelinesMigrationError)(0), // 174: google.ads.googleads.v22.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError + (AssetGenerationErrorEnum_AssetGenerationError)(0), // 175: google.ads.googleads.v22.errors.AssetGenerationErrorEnum.AssetGenerationError + (*common.PolicyViolationKey)(nil), // 176: google.ads.googleads.v22.common.PolicyViolationKey + (*common.PolicyTopicEntry)(nil), // 177: google.ads.googleads.v22.common.PolicyTopicEntry + (*durationpb.Duration)(nil), // 178: google.protobuf.Duration + (enums.ResourceLimitTypeEnum_ResourceLimitType)(0), // 179: google.ads.googleads.v22.enums.ResourceLimitTypeEnum.ResourceLimitType +} +var file_google_ads_googleads_v22_errors_errors_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.errors.GoogleAdsFailure.errors:type_name -> google.ads.googleads.v22.errors.GoogleAdsError + 3, // 1: google.ads.googleads.v22.errors.GoogleAdsError.error_code:type_name -> google.ads.googleads.v22.errors.ErrorCode + 12, // 2: google.ads.googleads.v22.errors.GoogleAdsError.trigger:type_name -> google.ads.googleads.v22.common.Value + 4, // 3: google.ads.googleads.v22.errors.GoogleAdsError.location:type_name -> google.ads.googleads.v22.errors.ErrorLocation + 5, // 4: google.ads.googleads.v22.errors.GoogleAdsError.details:type_name -> google.ads.googleads.v22.errors.ErrorDetails + 13, // 5: google.ads.googleads.v22.errors.ErrorCode.request_error:type_name -> google.ads.googleads.v22.errors.RequestErrorEnum.RequestError + 14, // 6: google.ads.googleads.v22.errors.ErrorCode.bidding_strategy_error:type_name -> google.ads.googleads.v22.errors.BiddingStrategyErrorEnum.BiddingStrategyError + 15, // 7: google.ads.googleads.v22.errors.ErrorCode.url_field_error:type_name -> google.ads.googleads.v22.errors.UrlFieldErrorEnum.UrlFieldError + 16, // 8: google.ads.googleads.v22.errors.ErrorCode.list_operation_error:type_name -> google.ads.googleads.v22.errors.ListOperationErrorEnum.ListOperationError + 17, // 9: google.ads.googleads.v22.errors.ErrorCode.query_error:type_name -> google.ads.googleads.v22.errors.QueryErrorEnum.QueryError + 18, // 10: google.ads.googleads.v22.errors.ErrorCode.mutate_error:type_name -> google.ads.googleads.v22.errors.MutateErrorEnum.MutateError + 19, // 11: google.ads.googleads.v22.errors.ErrorCode.field_mask_error:type_name -> google.ads.googleads.v22.errors.FieldMaskErrorEnum.FieldMaskError + 20, // 12: google.ads.googleads.v22.errors.ErrorCode.authorization_error:type_name -> google.ads.googleads.v22.errors.AuthorizationErrorEnum.AuthorizationError + 21, // 13: google.ads.googleads.v22.errors.ErrorCode.internal_error:type_name -> google.ads.googleads.v22.errors.InternalErrorEnum.InternalError + 22, // 14: google.ads.googleads.v22.errors.ErrorCode.quota_error:type_name -> google.ads.googleads.v22.errors.QuotaErrorEnum.QuotaError + 23, // 15: google.ads.googleads.v22.errors.ErrorCode.ad_error:type_name -> google.ads.googleads.v22.errors.AdErrorEnum.AdError + 24, // 16: google.ads.googleads.v22.errors.ErrorCode.ad_group_error:type_name -> google.ads.googleads.v22.errors.AdGroupErrorEnum.AdGroupError + 25, // 17: google.ads.googleads.v22.errors.ErrorCode.campaign_budget_error:type_name -> google.ads.googleads.v22.errors.CampaignBudgetErrorEnum.CampaignBudgetError + 26, // 18: google.ads.googleads.v22.errors.ErrorCode.campaign_error:type_name -> google.ads.googleads.v22.errors.CampaignErrorEnum.CampaignError + 27, // 19: google.ads.googleads.v22.errors.ErrorCode.video_campaign_error:type_name -> google.ads.googleads.v22.errors.VideoCampaignErrorEnum.VideoCampaignError + 28, // 20: google.ads.googleads.v22.errors.ErrorCode.authentication_error:type_name -> google.ads.googleads.v22.errors.AuthenticationErrorEnum.AuthenticationError + 29, // 21: google.ads.googleads.v22.errors.ErrorCode.ad_group_criterion_customizer_error:type_name -> google.ads.googleads.v22.errors.AdGroupCriterionCustomizerErrorEnum.AdGroupCriterionCustomizerError + 30, // 22: google.ads.googleads.v22.errors.ErrorCode.ad_group_criterion_error:type_name -> google.ads.googleads.v22.errors.AdGroupCriterionErrorEnum.AdGroupCriterionError + 31, // 23: google.ads.googleads.v22.errors.ErrorCode.ad_group_customizer_error:type_name -> google.ads.googleads.v22.errors.AdGroupCustomizerErrorEnum.AdGroupCustomizerError + 32, // 24: google.ads.googleads.v22.errors.ErrorCode.ad_customizer_error:type_name -> google.ads.googleads.v22.errors.AdCustomizerErrorEnum.AdCustomizerError + 33, // 25: google.ads.googleads.v22.errors.ErrorCode.ad_group_ad_error:type_name -> google.ads.googleads.v22.errors.AdGroupAdErrorEnum.AdGroupAdError + 34, // 26: google.ads.googleads.v22.errors.ErrorCode.ad_sharing_error:type_name -> google.ads.googleads.v22.errors.AdSharingErrorEnum.AdSharingError + 35, // 27: google.ads.googleads.v22.errors.ErrorCode.adx_error:type_name -> google.ads.googleads.v22.errors.AdxErrorEnum.AdxError + 36, // 28: google.ads.googleads.v22.errors.ErrorCode.asset_error:type_name -> google.ads.googleads.v22.errors.AssetErrorEnum.AssetError + 37, // 29: google.ads.googleads.v22.errors.ErrorCode.asset_group_asset_error:type_name -> google.ads.googleads.v22.errors.AssetGroupAssetErrorEnum.AssetGroupAssetError + 38, // 30: google.ads.googleads.v22.errors.ErrorCode.asset_group_listing_group_filter_error:type_name -> google.ads.googleads.v22.errors.AssetGroupListingGroupFilterErrorEnum.AssetGroupListingGroupFilterError + 39, // 31: google.ads.googleads.v22.errors.ErrorCode.asset_group_error:type_name -> google.ads.googleads.v22.errors.AssetGroupErrorEnum.AssetGroupError + 40, // 32: google.ads.googleads.v22.errors.ErrorCode.asset_set_asset_error:type_name -> google.ads.googleads.v22.errors.AssetSetAssetErrorEnum.AssetSetAssetError + 41, // 33: google.ads.googleads.v22.errors.ErrorCode.asset_set_link_error:type_name -> google.ads.googleads.v22.errors.AssetSetLinkErrorEnum.AssetSetLinkError + 42, // 34: google.ads.googleads.v22.errors.ErrorCode.asset_set_error:type_name -> google.ads.googleads.v22.errors.AssetSetErrorEnum.AssetSetError + 43, // 35: google.ads.googleads.v22.errors.ErrorCode.bidding_error:type_name -> google.ads.googleads.v22.errors.BiddingErrorEnum.BiddingError + 44, // 36: google.ads.googleads.v22.errors.ErrorCode.campaign_criterion_error:type_name -> google.ads.googleads.v22.errors.CampaignCriterionErrorEnum.CampaignCriterionError + 45, // 37: google.ads.googleads.v22.errors.ErrorCode.campaign_conversion_goal_error:type_name -> google.ads.googleads.v22.errors.CampaignConversionGoalErrorEnum.CampaignConversionGoalError + 46, // 38: google.ads.googleads.v22.errors.ErrorCode.campaign_customizer_error:type_name -> google.ads.googleads.v22.errors.CampaignCustomizerErrorEnum.CampaignCustomizerError + 47, // 39: google.ads.googleads.v22.errors.ErrorCode.collection_size_error:type_name -> google.ads.googleads.v22.errors.CollectionSizeErrorEnum.CollectionSizeError + 48, // 40: google.ads.googleads.v22.errors.ErrorCode.conversion_goal_campaign_config_error:type_name -> google.ads.googleads.v22.errors.ConversionGoalCampaignConfigErrorEnum.ConversionGoalCampaignConfigError + 49, // 41: google.ads.googleads.v22.errors.ErrorCode.country_code_error:type_name -> google.ads.googleads.v22.errors.CountryCodeErrorEnum.CountryCodeError + 50, // 42: google.ads.googleads.v22.errors.ErrorCode.criterion_error:type_name -> google.ads.googleads.v22.errors.CriterionErrorEnum.CriterionError + 51, // 43: google.ads.googleads.v22.errors.ErrorCode.custom_conversion_goal_error:type_name -> google.ads.googleads.v22.errors.CustomConversionGoalErrorEnum.CustomConversionGoalError + 52, // 44: google.ads.googleads.v22.errors.ErrorCode.customer_customizer_error:type_name -> google.ads.googleads.v22.errors.CustomerCustomizerErrorEnum.CustomerCustomizerError + 53, // 45: google.ads.googleads.v22.errors.ErrorCode.customer_error:type_name -> google.ads.googleads.v22.errors.CustomerErrorEnum.CustomerError + 54, // 46: google.ads.googleads.v22.errors.ErrorCode.customizer_attribute_error:type_name -> google.ads.googleads.v22.errors.CustomizerAttributeErrorEnum.CustomizerAttributeError + 55, // 47: google.ads.googleads.v22.errors.ErrorCode.date_error:type_name -> google.ads.googleads.v22.errors.DateErrorEnum.DateError + 56, // 48: google.ads.googleads.v22.errors.ErrorCode.date_range_error:type_name -> google.ads.googleads.v22.errors.DateRangeErrorEnum.DateRangeError + 57, // 49: google.ads.googleads.v22.errors.ErrorCode.distinct_error:type_name -> google.ads.googleads.v22.errors.DistinctErrorEnum.DistinctError + 58, // 50: google.ads.googleads.v22.errors.ErrorCode.feed_attribute_reference_error:type_name -> google.ads.googleads.v22.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError + 59, // 51: google.ads.googleads.v22.errors.ErrorCode.final_url_expansion_asset_view_error:type_name -> google.ads.googleads.v22.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError + 60, // 52: google.ads.googleads.v22.errors.ErrorCode.function_error:type_name -> google.ads.googleads.v22.errors.FunctionErrorEnum.FunctionError + 61, // 53: google.ads.googleads.v22.errors.ErrorCode.function_parsing_error:type_name -> google.ads.googleads.v22.errors.FunctionParsingErrorEnum.FunctionParsingError + 62, // 54: google.ads.googleads.v22.errors.ErrorCode.id_error:type_name -> google.ads.googleads.v22.errors.IdErrorEnum.IdError + 63, // 55: google.ads.googleads.v22.errors.ErrorCode.image_error:type_name -> google.ads.googleads.v22.errors.ImageErrorEnum.ImageError + 64, // 56: google.ads.googleads.v22.errors.ErrorCode.language_code_error:type_name -> google.ads.googleads.v22.errors.LanguageCodeErrorEnum.LanguageCodeError + 65, // 57: google.ads.googleads.v22.errors.ErrorCode.media_bundle_error:type_name -> google.ads.googleads.v22.errors.MediaBundleErrorEnum.MediaBundleError + 66, // 58: google.ads.googleads.v22.errors.ErrorCode.media_upload_error:type_name -> google.ads.googleads.v22.errors.MediaUploadErrorEnum.MediaUploadError + 67, // 59: google.ads.googleads.v22.errors.ErrorCode.media_file_error:type_name -> google.ads.googleads.v22.errors.MediaFileErrorEnum.MediaFileError + 68, // 60: google.ads.googleads.v22.errors.ErrorCode.merchant_center_error:type_name -> google.ads.googleads.v22.errors.MerchantCenterErrorEnum.MerchantCenterError + 69, // 61: google.ads.googleads.v22.errors.ErrorCode.multiplier_error:type_name -> google.ads.googleads.v22.errors.MultiplierErrorEnum.MultiplierError + 70, // 62: google.ads.googleads.v22.errors.ErrorCode.new_resource_creation_error:type_name -> google.ads.googleads.v22.errors.NewResourceCreationErrorEnum.NewResourceCreationError + 71, // 63: google.ads.googleads.v22.errors.ErrorCode.not_empty_error:type_name -> google.ads.googleads.v22.errors.NotEmptyErrorEnum.NotEmptyError + 72, // 64: google.ads.googleads.v22.errors.ErrorCode.null_error:type_name -> google.ads.googleads.v22.errors.NullErrorEnum.NullError + 73, // 65: google.ads.googleads.v22.errors.ErrorCode.operator_error:type_name -> google.ads.googleads.v22.errors.OperatorErrorEnum.OperatorError + 74, // 66: google.ads.googleads.v22.errors.ErrorCode.range_error:type_name -> google.ads.googleads.v22.errors.RangeErrorEnum.RangeError + 75, // 67: google.ads.googleads.v22.errors.ErrorCode.recommendation_error:type_name -> google.ads.googleads.v22.errors.RecommendationErrorEnum.RecommendationError + 76, // 68: google.ads.googleads.v22.errors.ErrorCode.recommendation_subscription_error:type_name -> google.ads.googleads.v22.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError + 77, // 69: google.ads.googleads.v22.errors.ErrorCode.region_code_error:type_name -> google.ads.googleads.v22.errors.RegionCodeErrorEnum.RegionCodeError + 78, // 70: google.ads.googleads.v22.errors.ErrorCode.setting_error:type_name -> google.ads.googleads.v22.errors.SettingErrorEnum.SettingError + 79, // 71: google.ads.googleads.v22.errors.ErrorCode.string_format_error:type_name -> google.ads.googleads.v22.errors.StringFormatErrorEnum.StringFormatError + 80, // 72: google.ads.googleads.v22.errors.ErrorCode.string_length_error:type_name -> google.ads.googleads.v22.errors.StringLengthErrorEnum.StringLengthError + 81, // 73: google.ads.googleads.v22.errors.ErrorCode.operation_access_denied_error:type_name -> google.ads.googleads.v22.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError + 82, // 74: google.ads.googleads.v22.errors.ErrorCode.resource_access_denied_error:type_name -> google.ads.googleads.v22.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError + 83, // 75: google.ads.googleads.v22.errors.ErrorCode.resource_count_limit_exceeded_error:type_name -> google.ads.googleads.v22.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError + 84, // 76: google.ads.googleads.v22.errors.ErrorCode.youtube_video_registration_error:type_name -> google.ads.googleads.v22.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError + 85, // 77: google.ads.googleads.v22.errors.ErrorCode.ad_group_bid_modifier_error:type_name -> google.ads.googleads.v22.errors.AdGroupBidModifierErrorEnum.AdGroupBidModifierError + 86, // 78: google.ads.googleads.v22.errors.ErrorCode.context_error:type_name -> google.ads.googleads.v22.errors.ContextErrorEnum.ContextError + 87, // 79: google.ads.googleads.v22.errors.ErrorCode.field_error:type_name -> google.ads.googleads.v22.errors.FieldErrorEnum.FieldError + 88, // 80: google.ads.googleads.v22.errors.ErrorCode.shared_set_error:type_name -> google.ads.googleads.v22.errors.SharedSetErrorEnum.SharedSetError + 89, // 81: google.ads.googleads.v22.errors.ErrorCode.shared_criterion_error:type_name -> google.ads.googleads.v22.errors.SharedCriterionErrorEnum.SharedCriterionError + 90, // 82: google.ads.googleads.v22.errors.ErrorCode.campaign_shared_set_error:type_name -> google.ads.googleads.v22.errors.CampaignSharedSetErrorEnum.CampaignSharedSetError + 91, // 83: google.ads.googleads.v22.errors.ErrorCode.conversion_action_error:type_name -> google.ads.googleads.v22.errors.ConversionActionErrorEnum.ConversionActionError + 92, // 84: google.ads.googleads.v22.errors.ErrorCode.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + 93, // 85: google.ads.googleads.v22.errors.ErrorCode.conversion_custom_variable_error:type_name -> google.ads.googleads.v22.errors.ConversionCustomVariableErrorEnum.ConversionCustomVariableError + 94, // 86: google.ads.googleads.v22.errors.ErrorCode.conversion_upload_error:type_name -> google.ads.googleads.v22.errors.ConversionUploadErrorEnum.ConversionUploadError + 95, // 87: google.ads.googleads.v22.errors.ErrorCode.conversion_value_rule_error:type_name -> google.ads.googleads.v22.errors.ConversionValueRuleErrorEnum.ConversionValueRuleError + 96, // 88: google.ads.googleads.v22.errors.ErrorCode.conversion_value_rule_set_error:type_name -> google.ads.googleads.v22.errors.ConversionValueRuleSetErrorEnum.ConversionValueRuleSetError + 97, // 89: google.ads.googleads.v22.errors.ErrorCode.header_error:type_name -> google.ads.googleads.v22.errors.HeaderErrorEnum.HeaderError + 98, // 90: google.ads.googleads.v22.errors.ErrorCode.database_error:type_name -> google.ads.googleads.v22.errors.DatabaseErrorEnum.DatabaseError + 99, // 91: google.ads.googleads.v22.errors.ErrorCode.policy_finding_error:type_name -> google.ads.googleads.v22.errors.PolicyFindingErrorEnum.PolicyFindingError + 100, // 92: google.ads.googleads.v22.errors.ErrorCode.enum_error:type_name -> google.ads.googleads.v22.errors.EnumErrorEnum.EnumError + 101, // 93: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanErrorEnum.KeywordPlanError + 102, // 94: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_campaign_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError + 103, // 95: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_campaign_keyword_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError + 104, // 96: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_ad_group_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError + 105, // 97: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_ad_group_keyword_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError + 106, // 98: google.ads.googleads.v22.errors.ErrorCode.keyword_plan_idea_error:type_name -> google.ads.googleads.v22.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError + 107, // 99: google.ads.googleads.v22.errors.ErrorCode.account_budget_proposal_error:type_name -> google.ads.googleads.v22.errors.AccountBudgetProposalErrorEnum.AccountBudgetProposalError + 108, // 100: google.ads.googleads.v22.errors.ErrorCode.user_list_error:type_name -> google.ads.googleads.v22.errors.UserListErrorEnum.UserListError + 109, // 101: google.ads.googleads.v22.errors.ErrorCode.change_event_error:type_name -> google.ads.googleads.v22.errors.ChangeEventErrorEnum.ChangeEventError + 110, // 102: google.ads.googleads.v22.errors.ErrorCode.change_status_error:type_name -> google.ads.googleads.v22.errors.ChangeStatusErrorEnum.ChangeStatusError + 111, // 103: google.ads.googleads.v22.errors.ErrorCode.feed_error:type_name -> google.ads.googleads.v22.errors.FeedErrorEnum.FeedError + 112, // 104: google.ads.googleads.v22.errors.ErrorCode.geo_target_constant_suggestion_error:type_name -> google.ads.googleads.v22.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError + 113, // 105: google.ads.googleads.v22.errors.ErrorCode.campaign_draft_error:type_name -> google.ads.googleads.v22.errors.CampaignDraftErrorEnum.CampaignDraftError + 114, // 106: google.ads.googleads.v22.errors.ErrorCode.feed_item_error:type_name -> google.ads.googleads.v22.errors.FeedItemErrorEnum.FeedItemError + 115, // 107: google.ads.googleads.v22.errors.ErrorCode.label_error:type_name -> google.ads.googleads.v22.errors.LabelErrorEnum.LabelError + 116, // 108: google.ads.googleads.v22.errors.ErrorCode.billing_setup_error:type_name -> google.ads.googleads.v22.errors.BillingSetupErrorEnum.BillingSetupError + 117, // 109: google.ads.googleads.v22.errors.ErrorCode.customer_client_link_error:type_name -> google.ads.googleads.v22.errors.CustomerClientLinkErrorEnum.CustomerClientLinkError + 118, // 110: google.ads.googleads.v22.errors.ErrorCode.customer_manager_link_error:type_name -> google.ads.googleads.v22.errors.CustomerManagerLinkErrorEnum.CustomerManagerLinkError + 119, // 111: google.ads.googleads.v22.errors.ErrorCode.feed_mapping_error:type_name -> google.ads.googleads.v22.errors.FeedMappingErrorEnum.FeedMappingError + 120, // 112: google.ads.googleads.v22.errors.ErrorCode.customer_feed_error:type_name -> google.ads.googleads.v22.errors.CustomerFeedErrorEnum.CustomerFeedError + 121, // 113: google.ads.googleads.v22.errors.ErrorCode.ad_group_feed_error:type_name -> google.ads.googleads.v22.errors.AdGroupFeedErrorEnum.AdGroupFeedError + 122, // 114: google.ads.googleads.v22.errors.ErrorCode.campaign_feed_error:type_name -> google.ads.googleads.v22.errors.CampaignFeedErrorEnum.CampaignFeedError + 123, // 115: google.ads.googleads.v22.errors.ErrorCode.custom_interest_error:type_name -> google.ads.googleads.v22.errors.CustomInterestErrorEnum.CustomInterestError + 124, // 116: google.ads.googleads.v22.errors.ErrorCode.campaign_experiment_error:type_name -> google.ads.googleads.v22.errors.CampaignExperimentErrorEnum.CampaignExperimentError + 125, // 117: google.ads.googleads.v22.errors.ErrorCode.extension_feed_item_error:type_name -> google.ads.googleads.v22.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError + 126, // 118: google.ads.googleads.v22.errors.ErrorCode.ad_parameter_error:type_name -> google.ads.googleads.v22.errors.AdParameterErrorEnum.AdParameterError + 127, // 119: google.ads.googleads.v22.errors.ErrorCode.feed_item_validation_error:type_name -> google.ads.googleads.v22.errors.FeedItemValidationErrorEnum.FeedItemValidationError + 128, // 120: google.ads.googleads.v22.errors.ErrorCode.extension_setting_error:type_name -> google.ads.googleads.v22.errors.ExtensionSettingErrorEnum.ExtensionSettingError + 129, // 121: google.ads.googleads.v22.errors.ErrorCode.feed_item_set_error:type_name -> google.ads.googleads.v22.errors.FeedItemSetErrorEnum.FeedItemSetError + 130, // 122: google.ads.googleads.v22.errors.ErrorCode.feed_item_set_link_error:type_name -> google.ads.googleads.v22.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError + 131, // 123: google.ads.googleads.v22.errors.ErrorCode.feed_item_target_error:type_name -> google.ads.googleads.v22.errors.FeedItemTargetErrorEnum.FeedItemTargetError + 132, // 124: google.ads.googleads.v22.errors.ErrorCode.policy_violation_error:type_name -> google.ads.googleads.v22.errors.PolicyViolationErrorEnum.PolicyViolationError + 133, // 125: google.ads.googleads.v22.errors.ErrorCode.partial_failure_error:type_name -> google.ads.googleads.v22.errors.PartialFailureErrorEnum.PartialFailureError + 134, // 126: google.ads.googleads.v22.errors.ErrorCode.click_view_error:type_name -> google.ads.googleads.v22.errors.ClickViewErrorEnum.ClickViewError + 135, // 127: google.ads.googleads.v22.errors.ErrorCode.policy_validation_parameter_error:type_name -> google.ads.googleads.v22.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError + 136, // 128: google.ads.googleads.v22.errors.ErrorCode.size_limit_error:type_name -> google.ads.googleads.v22.errors.SizeLimitErrorEnum.SizeLimitError + 137, // 129: google.ads.googleads.v22.errors.ErrorCode.offline_user_data_job_error:type_name -> google.ads.googleads.v22.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError + 138, // 130: google.ads.googleads.v22.errors.ErrorCode.not_allowlisted_error:type_name -> google.ads.googleads.v22.errors.NotAllowlistedErrorEnum.NotAllowlistedError + 139, // 131: google.ads.googleads.v22.errors.ErrorCode.manager_link_error:type_name -> google.ads.googleads.v22.errors.ManagerLinkErrorEnum.ManagerLinkError + 140, // 132: google.ads.googleads.v22.errors.ErrorCode.currency_code_error:type_name -> google.ads.googleads.v22.errors.CurrencyCodeErrorEnum.CurrencyCodeError + 141, // 133: google.ads.googleads.v22.errors.ErrorCode.experiment_error:type_name -> google.ads.googleads.v22.errors.ExperimentErrorEnum.ExperimentError + 142, // 134: google.ads.googleads.v22.errors.ErrorCode.access_invitation_error:type_name -> google.ads.googleads.v22.errors.AccessInvitationErrorEnum.AccessInvitationError + 143, // 135: google.ads.googleads.v22.errors.ErrorCode.reach_plan_error:type_name -> google.ads.googleads.v22.errors.ReachPlanErrorEnum.ReachPlanError + 144, // 136: google.ads.googleads.v22.errors.ErrorCode.invoice_error:type_name -> google.ads.googleads.v22.errors.InvoiceErrorEnum.InvoiceError + 145, // 137: google.ads.googleads.v22.errors.ErrorCode.payments_account_error:type_name -> google.ads.googleads.v22.errors.PaymentsAccountErrorEnum.PaymentsAccountError + 146, // 138: google.ads.googleads.v22.errors.ErrorCode.time_zone_error:type_name -> google.ads.googleads.v22.errors.TimeZoneErrorEnum.TimeZoneError + 147, // 139: google.ads.googleads.v22.errors.ErrorCode.asset_link_error:type_name -> google.ads.googleads.v22.errors.AssetLinkErrorEnum.AssetLinkError + 148, // 140: google.ads.googleads.v22.errors.ErrorCode.user_data_error:type_name -> google.ads.googleads.v22.errors.UserDataErrorEnum.UserDataError + 149, // 141: google.ads.googleads.v22.errors.ErrorCode.batch_job_error:type_name -> google.ads.googleads.v22.errors.BatchJobErrorEnum.BatchJobError + 150, // 142: google.ads.googleads.v22.errors.ErrorCode.account_link_error:type_name -> google.ads.googleads.v22.errors.AccountLinkErrorEnum.AccountLinkError + 151, // 143: google.ads.googleads.v22.errors.ErrorCode.third_party_app_analytics_link_error:type_name -> google.ads.googleads.v22.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError + 152, // 144: google.ads.googleads.v22.errors.ErrorCode.customer_user_access_error:type_name -> google.ads.googleads.v22.errors.CustomerUserAccessErrorEnum.CustomerUserAccessError + 153, // 145: google.ads.googleads.v22.errors.ErrorCode.custom_audience_error:type_name -> google.ads.googleads.v22.errors.CustomAudienceErrorEnum.CustomAudienceError + 154, // 146: google.ads.googleads.v22.errors.ErrorCode.audience_error:type_name -> google.ads.googleads.v22.errors.AudienceErrorEnum.AudienceError + 155, // 147: google.ads.googleads.v22.errors.ErrorCode.search_term_insight_error:type_name -> google.ads.googleads.v22.errors.SearchTermInsightErrorEnum.SearchTermInsightError + 156, // 148: google.ads.googleads.v22.errors.ErrorCode.smart_campaign_error:type_name -> google.ads.googleads.v22.errors.SmartCampaignErrorEnum.SmartCampaignError + 157, // 149: google.ads.googleads.v22.errors.ErrorCode.experiment_arm_error:type_name -> google.ads.googleads.v22.errors.ExperimentArmErrorEnum.ExperimentArmError + 158, // 150: google.ads.googleads.v22.errors.ErrorCode.audience_insights_error:type_name -> google.ads.googleads.v22.errors.AudienceInsightsErrorEnum.AudienceInsightsError + 159, // 151: google.ads.googleads.v22.errors.ErrorCode.product_link_error:type_name -> google.ads.googleads.v22.errors.ProductLinkErrorEnum.ProductLinkError + 160, // 152: google.ads.googleads.v22.errors.ErrorCode.data_link_error:type_name -> google.ads.googleads.v22.errors.DataLinkErrorEnum.DataLinkError + 161, // 153: google.ads.googleads.v22.errors.ErrorCode.customer_sk_ad_network_conversion_value_schema_error:type_name -> google.ads.googleads.v22.errors.CustomerSkAdNetworkConversionValueSchemaErrorEnum.CustomerSkAdNetworkConversionValueSchemaError + 162, // 154: google.ads.googleads.v22.errors.ErrorCode.currency_error:type_name -> google.ads.googleads.v22.errors.CurrencyErrorEnum.CurrencyError + 163, // 155: google.ads.googleads.v22.errors.ErrorCode.asset_group_signal_error:type_name -> google.ads.googleads.v22.errors.AssetGroupSignalErrorEnum.AssetGroupSignalError + 164, // 156: google.ads.googleads.v22.errors.ErrorCode.product_link_invitation_error:type_name -> google.ads.googleads.v22.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError + 165, // 157: google.ads.googleads.v22.errors.ErrorCode.customer_lifecycle_goal_error:type_name -> google.ads.googleads.v22.errors.CustomerLifecycleGoalErrorEnum.CustomerLifecycleGoalError + 166, // 158: google.ads.googleads.v22.errors.ErrorCode.campaign_lifecycle_goal_error:type_name -> google.ads.googleads.v22.errors.CampaignLifecycleGoalErrorEnum.CampaignLifecycleGoalError + 167, // 159: google.ads.googleads.v22.errors.ErrorCode.identity_verification_error:type_name -> google.ads.googleads.v22.errors.IdentityVerificationErrorEnum.IdentityVerificationError + 168, // 160: google.ads.googleads.v22.errors.ErrorCode.user_list_customer_type_error:type_name -> google.ads.googleads.v22.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError + 169, // 161: google.ads.googleads.v22.errors.ErrorCode.shopping_product_error:type_name -> google.ads.googleads.v22.errors.ShoppingProductErrorEnum.ShoppingProductError + 170, // 162: google.ads.googleads.v22.errors.ErrorCode.automatically_created_asset_removal_error:type_name -> google.ads.googleads.v22.errors.AutomaticallyCreatedAssetRemovalErrorEnum.AutomaticallyCreatedAssetRemovalError + 171, // 163: google.ads.googleads.v22.errors.ErrorCode.shareable_preview_error:type_name -> google.ads.googleads.v22.errors.ShareablePreviewErrorEnum.ShareablePreviewError + 172, // 164: google.ads.googleads.v22.errors.ErrorCode.campaign_goal_config_error:type_name -> google.ads.googleads.v22.errors.CampaignGoalConfigErrorEnum.CampaignGoalConfigError + 173, // 165: google.ads.googleads.v22.errors.ErrorCode.goal_error:type_name -> google.ads.googleads.v22.errors.GoalErrorEnum.GoalError + 174, // 166: google.ads.googleads.v22.errors.ErrorCode.brand_guidelines_migration_error:type_name -> google.ads.googleads.v22.errors.BrandGuidelinesMigrationErrorEnum.BrandGuidelinesMigrationError + 175, // 167: google.ads.googleads.v22.errors.ErrorCode.asset_generation_error:type_name -> google.ads.googleads.v22.errors.AssetGenerationErrorEnum.AssetGenerationError + 11, // 168: google.ads.googleads.v22.errors.ErrorLocation.field_path_elements:type_name -> google.ads.googleads.v22.errors.ErrorLocation.FieldPathElement + 6, // 169: google.ads.googleads.v22.errors.ErrorDetails.policy_violation_details:type_name -> google.ads.googleads.v22.errors.PolicyViolationDetails + 7, // 170: google.ads.googleads.v22.errors.ErrorDetails.policy_finding_details:type_name -> google.ads.googleads.v22.errors.PolicyFindingDetails + 8, // 171: google.ads.googleads.v22.errors.ErrorDetails.quota_error_details:type_name -> google.ads.googleads.v22.errors.QuotaErrorDetails + 9, // 172: google.ads.googleads.v22.errors.ErrorDetails.resource_count_details:type_name -> google.ads.googleads.v22.errors.ResourceCountDetails + 10, // 173: google.ads.googleads.v22.errors.ErrorDetails.budget_per_day_minimum_error_details:type_name -> google.ads.googleads.v22.errors.BudgetPerDayMinimumErrorDetails + 176, // 174: google.ads.googleads.v22.errors.PolicyViolationDetails.key:type_name -> google.ads.googleads.v22.common.PolicyViolationKey + 177, // 175: google.ads.googleads.v22.errors.PolicyFindingDetails.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 0, // 176: google.ads.googleads.v22.errors.QuotaErrorDetails.rate_scope:type_name -> google.ads.googleads.v22.errors.QuotaErrorDetails.QuotaRateScope + 178, // 177: google.ads.googleads.v22.errors.QuotaErrorDetails.retry_delay:type_name -> google.protobuf.Duration + 179, // 178: google.ads.googleads.v22.errors.ResourceCountDetails.limit_type:type_name -> google.ads.googleads.v22.enums.ResourceLimitTypeEnum.ResourceLimitType + 179, // [179:179] is the sub-list for method output_type + 179, // [179:179] is the sub-list for method input_type + 179, // [179:179] is the sub-list for extension type_name + 179, // [179:179] is the sub-list for extension extendee + 0, // [0:179] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_errors_errors_proto_init() } +func file_google_ads_googleads_v22_errors_errors_proto_init() { + if File_google_ads_googleads_v22_errors_errors_proto != nil { return } - file_google_ads_googleads_v21_errors_access_invitation_error_proto_init() - file_google_ads_googleads_v21_errors_account_budget_proposal_error_proto_init() - file_google_ads_googleads_v21_errors_account_link_error_proto_init() - file_google_ads_googleads_v21_errors_ad_customizer_error_proto_init() - file_google_ads_googleads_v21_errors_ad_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_ad_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_bid_modifier_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_criterion_customizer_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_criterion_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_customizer_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_error_proto_init() - file_google_ads_googleads_v21_errors_ad_group_feed_error_proto_init() - file_google_ads_googleads_v21_errors_ad_parameter_error_proto_init() - file_google_ads_googleads_v21_errors_ad_sharing_error_proto_init() - file_google_ads_googleads_v21_errors_adx_error_proto_init() - file_google_ads_googleads_v21_errors_asset_error_proto_init() - file_google_ads_googleads_v21_errors_asset_group_asset_error_proto_init() - file_google_ads_googleads_v21_errors_asset_group_error_proto_init() - file_google_ads_googleads_v21_errors_asset_group_listing_group_filter_error_proto_init() - file_google_ads_googleads_v21_errors_asset_group_signal_error_proto_init() - file_google_ads_googleads_v21_errors_asset_link_error_proto_init() - file_google_ads_googleads_v21_errors_asset_set_asset_error_proto_init() - file_google_ads_googleads_v21_errors_asset_set_error_proto_init() - file_google_ads_googleads_v21_errors_asset_set_link_error_proto_init() - file_google_ads_googleads_v21_errors_audience_error_proto_init() - file_google_ads_googleads_v21_errors_audience_insights_error_proto_init() - file_google_ads_googleads_v21_errors_authentication_error_proto_init() - file_google_ads_googleads_v21_errors_authorization_error_proto_init() - file_google_ads_googleads_v21_errors_automatically_created_asset_removal_error_proto_init() - file_google_ads_googleads_v21_errors_batch_job_error_proto_init() - file_google_ads_googleads_v21_errors_bidding_error_proto_init() - file_google_ads_googleads_v21_errors_bidding_strategy_error_proto_init() - file_google_ads_googleads_v21_errors_billing_setup_error_proto_init() - file_google_ads_googleads_v21_errors_brand_guidelines_migration_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_budget_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_conversion_goal_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_criterion_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_customizer_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_draft_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_experiment_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_feed_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_lifecycle_goal_error_proto_init() - file_google_ads_googleads_v21_errors_campaign_shared_set_error_proto_init() - file_google_ads_googleads_v21_errors_change_event_error_proto_init() - file_google_ads_googleads_v21_errors_change_status_error_proto_init() - file_google_ads_googleads_v21_errors_click_view_error_proto_init() - file_google_ads_googleads_v21_errors_collection_size_error_proto_init() - file_google_ads_googleads_v21_errors_context_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_action_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_adjustment_upload_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_custom_variable_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_goal_campaign_config_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_upload_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_value_rule_error_proto_init() - file_google_ads_googleads_v21_errors_conversion_value_rule_set_error_proto_init() - file_google_ads_googleads_v21_errors_country_code_error_proto_init() - file_google_ads_googleads_v21_errors_criterion_error_proto_init() - file_google_ads_googleads_v21_errors_currency_code_error_proto_init() - file_google_ads_googleads_v21_errors_currency_error_proto_init() - file_google_ads_googleads_v21_errors_custom_audience_error_proto_init() - file_google_ads_googleads_v21_errors_custom_conversion_goal_error_proto_init() - file_google_ads_googleads_v21_errors_custom_interest_error_proto_init() - file_google_ads_googleads_v21_errors_customer_client_link_error_proto_init() - file_google_ads_googleads_v21_errors_customer_customizer_error_proto_init() - file_google_ads_googleads_v21_errors_customer_error_proto_init() - file_google_ads_googleads_v21_errors_customer_feed_error_proto_init() - file_google_ads_googleads_v21_errors_customer_lifecycle_goal_error_proto_init() - file_google_ads_googleads_v21_errors_customer_manager_link_error_proto_init() - file_google_ads_googleads_v21_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() - file_google_ads_googleads_v21_errors_customer_user_access_error_proto_init() - file_google_ads_googleads_v21_errors_customizer_attribute_error_proto_init() - file_google_ads_googleads_v21_errors_data_link_error_proto_init() - file_google_ads_googleads_v21_errors_database_error_proto_init() - file_google_ads_googleads_v21_errors_date_error_proto_init() - file_google_ads_googleads_v21_errors_date_range_error_proto_init() - file_google_ads_googleads_v21_errors_distinct_error_proto_init() - file_google_ads_googleads_v21_errors_enum_error_proto_init() - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_init() - file_google_ads_googleads_v21_errors_experiment_error_proto_init() - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_init() - file_google_ads_googleads_v21_errors_extension_setting_error_proto_init() - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_init() - file_google_ads_googleads_v21_errors_feed_error_proto_init() - file_google_ads_googleads_v21_errors_feed_item_error_proto_init() - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_init() - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_init() - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_init() - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_init() - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_init() - file_google_ads_googleads_v21_errors_field_error_proto_init() - file_google_ads_googleads_v21_errors_field_mask_error_proto_init() - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_init() - file_google_ads_googleads_v21_errors_function_error_proto_init() - file_google_ads_googleads_v21_errors_function_parsing_error_proto_init() - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_init() - file_google_ads_googleads_v21_errors_header_error_proto_init() - file_google_ads_googleads_v21_errors_id_error_proto_init() - file_google_ads_googleads_v21_errors_identity_verification_error_proto_init() - file_google_ads_googleads_v21_errors_image_error_proto_init() - file_google_ads_googleads_v21_errors_internal_error_proto_init() - file_google_ads_googleads_v21_errors_invoice_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_init() - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_init() - file_google_ads_googleads_v21_errors_label_error_proto_init() - file_google_ads_googleads_v21_errors_language_code_error_proto_init() - file_google_ads_googleads_v21_errors_list_operation_error_proto_init() - file_google_ads_googleads_v21_errors_manager_link_error_proto_init() - file_google_ads_googleads_v21_errors_media_bundle_error_proto_init() - file_google_ads_googleads_v21_errors_media_file_error_proto_init() - file_google_ads_googleads_v21_errors_media_upload_error_proto_init() - file_google_ads_googleads_v21_errors_merchant_center_error_proto_init() - file_google_ads_googleads_v21_errors_multiplier_error_proto_init() - file_google_ads_googleads_v21_errors_mutate_error_proto_init() - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_init() - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_init() - file_google_ads_googleads_v21_errors_not_empty_error_proto_init() - file_google_ads_googleads_v21_errors_null_error_proto_init() - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_init() - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_init() - file_google_ads_googleads_v21_errors_operator_error_proto_init() - file_google_ads_googleads_v21_errors_partial_failure_error_proto_init() - file_google_ads_googleads_v21_errors_payments_account_error_proto_init() - file_google_ads_googleads_v21_errors_policy_finding_error_proto_init() - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_init() - file_google_ads_googleads_v21_errors_policy_violation_error_proto_init() - file_google_ads_googleads_v21_errors_product_link_error_proto_init() - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_init() - file_google_ads_googleads_v21_errors_query_error_proto_init() - file_google_ads_googleads_v21_errors_quota_error_proto_init() - file_google_ads_googleads_v21_errors_range_error_proto_init() - file_google_ads_googleads_v21_errors_reach_plan_error_proto_init() - file_google_ads_googleads_v21_errors_recommendation_error_proto_init() - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_init() - file_google_ads_googleads_v21_errors_region_code_error_proto_init() - file_google_ads_googleads_v21_errors_request_error_proto_init() - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_init() - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_init() - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_init() - file_google_ads_googleads_v21_errors_setting_error_proto_init() - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_init() - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_init() - file_google_ads_googleads_v21_errors_shared_set_error_proto_init() - file_google_ads_googleads_v21_errors_shopping_product_error_proto_init() - file_google_ads_googleads_v21_errors_size_limit_error_proto_init() - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_init() - file_google_ads_googleads_v21_errors_string_format_error_proto_init() - file_google_ads_googleads_v21_errors_string_length_error_proto_init() - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_init() - file_google_ads_googleads_v21_errors_time_zone_error_proto_init() - file_google_ads_googleads_v21_errors_url_field_error_proto_init() - file_google_ads_googleads_v21_errors_user_data_error_proto_init() - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_init() - file_google_ads_googleads_v21_errors_user_list_error_proto_init() - file_google_ads_googleads_v21_errors_video_campaign_error_proto_init() - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_init() - file_google_ads_googleads_v21_errors_errors_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_errors_access_invitation_error_proto_init() + file_google_ads_googleads_v22_errors_account_budget_proposal_error_proto_init() + file_google_ads_googleads_v22_errors_account_link_error_proto_init() + file_google_ads_googleads_v22_errors_ad_customizer_error_proto_init() + file_google_ads_googleads_v22_errors_ad_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_ad_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_bid_modifier_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_criterion_customizer_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_criterion_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_customizer_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_error_proto_init() + file_google_ads_googleads_v22_errors_ad_group_feed_error_proto_init() + file_google_ads_googleads_v22_errors_ad_parameter_error_proto_init() + file_google_ads_googleads_v22_errors_ad_sharing_error_proto_init() + file_google_ads_googleads_v22_errors_adx_error_proto_init() + file_google_ads_googleads_v22_errors_asset_error_proto_init() + file_google_ads_googleads_v22_errors_asset_generation_error_proto_init() + file_google_ads_googleads_v22_errors_asset_group_asset_error_proto_init() + file_google_ads_googleads_v22_errors_asset_group_error_proto_init() + file_google_ads_googleads_v22_errors_asset_group_listing_group_filter_error_proto_init() + file_google_ads_googleads_v22_errors_asset_group_signal_error_proto_init() + file_google_ads_googleads_v22_errors_asset_link_error_proto_init() + file_google_ads_googleads_v22_errors_asset_set_asset_error_proto_init() + file_google_ads_googleads_v22_errors_asset_set_error_proto_init() + file_google_ads_googleads_v22_errors_asset_set_link_error_proto_init() + file_google_ads_googleads_v22_errors_audience_error_proto_init() + file_google_ads_googleads_v22_errors_audience_insights_error_proto_init() + file_google_ads_googleads_v22_errors_authentication_error_proto_init() + file_google_ads_googleads_v22_errors_authorization_error_proto_init() + file_google_ads_googleads_v22_errors_automatically_created_asset_removal_error_proto_init() + file_google_ads_googleads_v22_errors_batch_job_error_proto_init() + file_google_ads_googleads_v22_errors_bidding_error_proto_init() + file_google_ads_googleads_v22_errors_bidding_strategy_error_proto_init() + file_google_ads_googleads_v22_errors_billing_setup_error_proto_init() + file_google_ads_googleads_v22_errors_brand_guidelines_migration_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_budget_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_conversion_goal_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_criterion_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_customizer_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_draft_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_experiment_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_feed_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_goal_config_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_lifecycle_goal_error_proto_init() + file_google_ads_googleads_v22_errors_campaign_shared_set_error_proto_init() + file_google_ads_googleads_v22_errors_change_event_error_proto_init() + file_google_ads_googleads_v22_errors_change_status_error_proto_init() + file_google_ads_googleads_v22_errors_click_view_error_proto_init() + file_google_ads_googleads_v22_errors_collection_size_error_proto_init() + file_google_ads_googleads_v22_errors_context_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_action_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_adjustment_upload_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_custom_variable_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_goal_campaign_config_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_upload_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_value_rule_error_proto_init() + file_google_ads_googleads_v22_errors_conversion_value_rule_set_error_proto_init() + file_google_ads_googleads_v22_errors_country_code_error_proto_init() + file_google_ads_googleads_v22_errors_criterion_error_proto_init() + file_google_ads_googleads_v22_errors_currency_code_error_proto_init() + file_google_ads_googleads_v22_errors_currency_error_proto_init() + file_google_ads_googleads_v22_errors_custom_audience_error_proto_init() + file_google_ads_googleads_v22_errors_custom_conversion_goal_error_proto_init() + file_google_ads_googleads_v22_errors_custom_interest_error_proto_init() + file_google_ads_googleads_v22_errors_customer_client_link_error_proto_init() + file_google_ads_googleads_v22_errors_customer_customizer_error_proto_init() + file_google_ads_googleads_v22_errors_customer_error_proto_init() + file_google_ads_googleads_v22_errors_customer_feed_error_proto_init() + file_google_ads_googleads_v22_errors_customer_lifecycle_goal_error_proto_init() + file_google_ads_googleads_v22_errors_customer_manager_link_error_proto_init() + file_google_ads_googleads_v22_errors_customer_sk_ad_network_conversion_value_schema_error_proto_init() + file_google_ads_googleads_v22_errors_customer_user_access_error_proto_init() + file_google_ads_googleads_v22_errors_customizer_attribute_error_proto_init() + file_google_ads_googleads_v22_errors_data_link_error_proto_init() + file_google_ads_googleads_v22_errors_database_error_proto_init() + file_google_ads_googleads_v22_errors_date_error_proto_init() + file_google_ads_googleads_v22_errors_date_range_error_proto_init() + file_google_ads_googleads_v22_errors_distinct_error_proto_init() + file_google_ads_googleads_v22_errors_enum_error_proto_init() + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_init() + file_google_ads_googleads_v22_errors_experiment_error_proto_init() + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_init() + file_google_ads_googleads_v22_errors_extension_setting_error_proto_init() + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_init() + file_google_ads_googleads_v22_errors_feed_error_proto_init() + file_google_ads_googleads_v22_errors_feed_item_error_proto_init() + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_init() + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_init() + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_init() + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_init() + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_init() + file_google_ads_googleads_v22_errors_field_error_proto_init() + file_google_ads_googleads_v22_errors_field_mask_error_proto_init() + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_init() + file_google_ads_googleads_v22_errors_function_error_proto_init() + file_google_ads_googleads_v22_errors_function_parsing_error_proto_init() + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_init() + file_google_ads_googleads_v22_errors_goal_error_proto_init() + file_google_ads_googleads_v22_errors_header_error_proto_init() + file_google_ads_googleads_v22_errors_id_error_proto_init() + file_google_ads_googleads_v22_errors_identity_verification_error_proto_init() + file_google_ads_googleads_v22_errors_image_error_proto_init() + file_google_ads_googleads_v22_errors_internal_error_proto_init() + file_google_ads_googleads_v22_errors_invoice_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_init() + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_init() + file_google_ads_googleads_v22_errors_label_error_proto_init() + file_google_ads_googleads_v22_errors_language_code_error_proto_init() + file_google_ads_googleads_v22_errors_list_operation_error_proto_init() + file_google_ads_googleads_v22_errors_manager_link_error_proto_init() + file_google_ads_googleads_v22_errors_media_bundle_error_proto_init() + file_google_ads_googleads_v22_errors_media_file_error_proto_init() + file_google_ads_googleads_v22_errors_media_upload_error_proto_init() + file_google_ads_googleads_v22_errors_merchant_center_error_proto_init() + file_google_ads_googleads_v22_errors_multiplier_error_proto_init() + file_google_ads_googleads_v22_errors_mutate_error_proto_init() + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_init() + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_init() + file_google_ads_googleads_v22_errors_not_empty_error_proto_init() + file_google_ads_googleads_v22_errors_null_error_proto_init() + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_init() + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_init() + file_google_ads_googleads_v22_errors_operator_error_proto_init() + file_google_ads_googleads_v22_errors_partial_failure_error_proto_init() + file_google_ads_googleads_v22_errors_payments_account_error_proto_init() + file_google_ads_googleads_v22_errors_policy_finding_error_proto_init() + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_init() + file_google_ads_googleads_v22_errors_policy_violation_error_proto_init() + file_google_ads_googleads_v22_errors_product_link_error_proto_init() + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_init() + file_google_ads_googleads_v22_errors_query_error_proto_init() + file_google_ads_googleads_v22_errors_quota_error_proto_init() + file_google_ads_googleads_v22_errors_range_error_proto_init() + file_google_ads_googleads_v22_errors_reach_plan_error_proto_init() + file_google_ads_googleads_v22_errors_recommendation_error_proto_init() + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_init() + file_google_ads_googleads_v22_errors_region_code_error_proto_init() + file_google_ads_googleads_v22_errors_request_error_proto_init() + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_init() + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_init() + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_init() + file_google_ads_googleads_v22_errors_setting_error_proto_init() + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_init() + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_init() + file_google_ads_googleads_v22_errors_shared_set_error_proto_init() + file_google_ads_googleads_v22_errors_shopping_product_error_proto_init() + file_google_ads_googleads_v22_errors_size_limit_error_proto_init() + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_init() + file_google_ads_googleads_v22_errors_string_format_error_proto_init() + file_google_ads_googleads_v22_errors_string_length_error_proto_init() + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_init() + file_google_ads_googleads_v22_errors_time_zone_error_proto_init() + file_google_ads_googleads_v22_errors_url_field_error_proto_init() + file_google_ads_googleads_v22_errors_user_data_error_proto_init() + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_init() + file_google_ads_googleads_v22_errors_user_list_error_proto_init() + file_google_ads_googleads_v22_errors_video_campaign_error_proto_init() + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_init() + file_google_ads_googleads_v22_errors_errors_proto_msgTypes[2].OneofWrappers = []any{ (*ErrorCode_RequestError)(nil), (*ErrorCode_BiddingStrategyError)(nil), (*ErrorCode_UrlFieldError)(nil), @@ -6419,25 +6514,28 @@ func file_google_ads_googleads_v21_errors_errors_proto_init() { (*ErrorCode_ShoppingProductError)(nil), (*ErrorCode_AutomaticallyCreatedAssetRemovalError)(nil), (*ErrorCode_ShareablePreviewError)(nil), + (*ErrorCode_CampaignGoalConfigError)(nil), + (*ErrorCode_GoalError)(nil), (*ErrorCode_BrandGuidelinesMigrationError)(nil), + (*ErrorCode_AssetGenerationError)(nil), } - file_google_ads_googleads_v21_errors_errors_proto_msgTypes[10].OneofWrappers = []any{} + file_google_ads_googleads_v22_errors_errors_proto_msgTypes[10].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_errors_proto_rawDesc), len(file_google_ads_googleads_v21_errors_errors_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_errors_proto_rawDesc), len(file_google_ads_googleads_v22_errors_errors_proto_rawDesc)), NumEnums: 1, NumMessages: 11, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_errors_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_errors_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_errors_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_errors_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_errors_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_errors_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_errors_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_errors_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_errors_proto = out.File - file_google_ads_googleads_v21_errors_errors_proto_goTypes = nil - file_google_ads_googleads_v21_errors_errors_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_errors_proto = out.File + file_google_ads_googleads_v22_errors_errors_proto_goTypes = nil + file_google_ads_googleads_v22_errors_errors_proto_depIdxs = nil } diff --git a/errors/experiment_arm_error.pb.go b/errors/experiment_arm_error.pb.go index 1a0e9468..c8cde136 100644 --- a/errors/experiment_arm_error.pb.go +++ b/errors/experiment_arm_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/experiment_arm_error.proto +// source: google/ads/googleads/v22/errors/experiment_arm_error.proto package errors @@ -126,11 +126,11 @@ func (x ExperimentArmErrorEnum_ExperimentArmError) String() string { } func (ExperimentArmErrorEnum_ExperimentArmError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_experiment_arm_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_experiment_arm_error_proto_enumTypes[0].Descriptor() } func (ExperimentArmErrorEnum_ExperimentArmError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_experiment_arm_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_experiment_arm_error_proto_enumTypes[0] } func (x ExperimentArmErrorEnum_ExperimentArmError) Number() protoreflect.EnumNumber { @@ -139,7 +139,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_v21_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_experiment_arm_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_experiment_arm_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163,7 +163,7 @@ func (x *ExperimentArmErrorEnum) String() string { func (*ExperimentArmErrorEnum) ProtoMessage() {} func (x *ExperimentArmErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_experiment_arm_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_experiment_arm_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176,18 +176,18 @@ func (x *ExperimentArmErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentArmErrorEnum.ProtoReflect.Descriptor instead. func (*ExperimentArmErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_experiment_arm_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_experiment_arm_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb1, 0x05, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -233,42 +233,42 @@ var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc = st 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x17, 0x45, 0x78, 0x70, 0x65, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_goTypes = []any{ - (ExperimentArmErrorEnum_ExperimentArmError)(0), // 0: google.ads.googleads.v21.errors.ExperimentArmErrorEnum.ExperimentArmError - (*ExperimentArmErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ExperimentArmErrorEnum +var file_google_ads_googleads_v22_errors_experiment_arm_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_experiment_arm_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_experiment_arm_error_proto_goTypes = []any{ + (ExperimentArmErrorEnum_ExperimentArmError)(0), // 0: google.ads.googleads.v22.errors.ExperimentArmErrorEnum.ExperimentArmError + (*ExperimentArmErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ExperimentArmErrorEnum } -var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -276,27 +276,27 @@ var file_google_ads_googleads_v21_errors_experiment_arm_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_experiment_arm_error_proto_init() } -func file_google_ads_googleads_v21_errors_experiment_arm_error_proto_init() { - if File_google_ads_googleads_v21_errors_experiment_arm_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_experiment_arm_error_proto_init() } +func file_google_ads_googleads_v22_errors_experiment_arm_error_proto_init() { + if File_google_ads_googleads_v22_errors_experiment_arm_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_experiment_arm_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_experiment_arm_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_experiment_arm_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_experiment_arm_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_experiment_arm_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_experiment_arm_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_experiment_arm_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_experiment_arm_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_experiment_arm_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_experiment_arm_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_experiment_arm_error_proto = out.File - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_experiment_arm_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_experiment_arm_error_proto = out.File + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_experiment_arm_error_proto_depIdxs = nil } diff --git a/errors/experiment_error.pb.go b/errors/experiment_error.pb.go index 8abd4531..7094ddbd 100644 --- a/errors/experiment_error.pb.go +++ b/errors/experiment_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/experiment_error.proto +// source: google/ads/googleads/v22/errors/experiment_error.proto package errors @@ -198,11 +198,11 @@ func (x ExperimentErrorEnum_ExperimentError) String() string { } func (ExperimentErrorEnum_ExperimentError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_experiment_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_experiment_error_proto_enumTypes[0].Descriptor() } func (ExperimentErrorEnum_ExperimentError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_experiment_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_experiment_error_proto_enumTypes[0] } func (x ExperimentErrorEnum_ExperimentError) Number() protoreflect.EnumNumber { @@ -211,7 +211,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_v21_errors_experiment_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible experiment error. @@ -223,7 +223,7 @@ type ExperimentErrorEnum struct { func (x *ExperimentErrorEnum) Reset() { *x = ExperimentErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_experiment_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_experiment_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -235,7 +235,7 @@ func (x *ExperimentErrorEnum) String() string { func (*ExperimentErrorEnum) ProtoMessage() {} func (x *ExperimentErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_experiment_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_experiment_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -248,18 +248,18 @@ func (x *ExperimentErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentErrorEnum.ProtoReflect.Descriptor instead. func (*ExperimentErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_experiment_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_experiment_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_experiment_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdf, 0x09, 0x0a, 0x13, 0x45, 0x78, + 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xdf, 0x09, 0x0a, 0x13, 0x45, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xc7, 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, @@ -339,42 +339,42 @@ var file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc = string 0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x53, 0x45, 0x4c, 0x46, 0x5f, 0x44, 0x45, 0x43, 0x4c, 0x41, 0x52, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x1f, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_experiment_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_experiment_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_experiment_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_experiment_error_proto_goTypes = []any{ - (ExperimentErrorEnum_ExperimentError)(0), // 0: google.ads.googleads.v21.errors.ExperimentErrorEnum.ExperimentError - (*ExperimentErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ExperimentErrorEnum +var file_google_ads_googleads_v22_errors_experiment_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_experiment_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_experiment_error_proto_goTypes = []any{ + (ExperimentErrorEnum_ExperimentError)(0), // 0: google.ads.googleads.v22.errors.ExperimentErrorEnum.ExperimentError + (*ExperimentErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ExperimentErrorEnum } -var file_google_ads_googleads_v21_errors_experiment_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -382,27 +382,27 @@ var file_google_ads_googleads_v21_errors_experiment_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_experiment_error_proto_init() } -func file_google_ads_googleads_v21_errors_experiment_error_proto_init() { - if File_google_ads_googleads_v21_errors_experiment_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_experiment_error_proto_init() } +func file_google_ads_googleads_v22_errors_experiment_error_proto_init() { + if File_google_ads_googleads_v22_errors_experiment_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_experiment_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_experiment_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_experiment_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_experiment_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_experiment_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_experiment_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_experiment_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_experiment_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_experiment_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_experiment_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_experiment_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_experiment_error_proto = out.File - file_google_ads_googleads_v21_errors_experiment_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_experiment_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_experiment_error_proto = out.File + file_google_ads_googleads_v22_errors_experiment_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 93ce1ab3..2d20fb61 100644 --- a/errors/extension_feed_item_error.pb.go +++ b/errors/extension_feed_item_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/extension_feed_item_error.proto +// source: google/ads/googleads/v22/errors/extension_feed_item_error.proto package errors @@ -264,11 +264,11 @@ func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) String() string { } func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_enumTypes[0].Descriptor() } func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_enumTypes[0] } func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Number() protoreflect.EnumNumber { @@ -277,7 +277,7 @@ func (x ExtensionFeedItemErrorEnum_ExtensionFeedItemError) Number() protoreflect // Deprecated: Use ExtensionFeedItemErrorEnum_ExtensionFeedItemError.Descriptor instead. func (ExtensionFeedItemErrorEnum_ExtensionFeedItemError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -301,7 +301,7 @@ func (x *ExtensionFeedItemErrorEnum) String() string { func (*ExtensionFeedItemErrorEnum) ProtoMessage() {} func (x *ExtensionFeedItemErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -314,18 +314,18 @@ func (x *ExtensionFeedItemErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExtensionFeedItemErrorEnum.ProtoReflect.Descriptor instead. func (*ExtensionFeedItemErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_extension_feed_item_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_extension_feed_item_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -439,43 +439,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_goTypes = []any{ - (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 0: google.ads.googleads.v21.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError - (*ExtensionFeedItemErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ExtensionFeedItemErrorEnum +var file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_goTypes = []any{ + (ExtensionFeedItemErrorEnum_ExtensionFeedItemError)(0), // 0: google.ads.googleads.v22.errors.ExtensionFeedItemErrorEnum.ExtensionFeedItemError + (*ExtensionFeedItemErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ExtensionFeedItemErrorEnum } -var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -483,27 +483,27 @@ var file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_init() } -func file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_init() { - if File_google_ads_googleads_v21_errors_extension_feed_item_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_init() } +func file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_init() { + if File_google_ads_googleads_v22_errors_extension_feed_item_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_extension_feed_item_error_proto = out.File - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_extension_feed_item_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_extension_feed_item_error_proto = out.File + file_google_ads_googleads_v22_errors_extension_feed_item_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 bba69afa..963e6bb9 100644 --- a/errors/extension_setting_error.pb.go +++ b/errors/extension_setting_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/extension_setting_error.proto +// source: google/ads/googleads/v22/errors/extension_setting_error.proto package errors @@ -350,11 +350,11 @@ func (x ExtensionSettingErrorEnum_ExtensionSettingError) String() string { } func (ExtensionSettingErrorEnum_ExtensionSettingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_extension_setting_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_extension_setting_error_proto_enumTypes[0].Descriptor() } func (ExtensionSettingErrorEnum_ExtensionSettingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_extension_setting_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_extension_setting_error_proto_enumTypes[0] } func (x ExtensionSettingErrorEnum_ExtensionSettingError) Number() protoreflect.EnumNumber { @@ -363,7 +363,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_v21_errors_extension_setting_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_extension_setting_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_extension_setting_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -387,7 +387,7 @@ func (x *ExtensionSettingErrorEnum) String() string { func (*ExtensionSettingErrorEnum) ProtoMessage() {} func (x *ExtensionSettingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_extension_setting_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_extension_setting_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -400,18 +400,18 @@ func (x *ExtensionSettingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ExtensionSettingErrorEnum.ProtoReflect.Descriptor instead. func (*ExtensionSettingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_extension_setting_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_extension_setting_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -577,42 +577,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x45, 0x78, 0x74, 0x65, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_extension_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_extension_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_extension_setting_error_proto_goTypes = []any{ - (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 0: google.ads.googleads.v21.errors.ExtensionSettingErrorEnum.ExtensionSettingError - (*ExtensionSettingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ExtensionSettingErrorEnum +var file_google_ads_googleads_v22_errors_extension_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_extension_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_extension_setting_error_proto_goTypes = []any{ + (ExtensionSettingErrorEnum_ExtensionSettingError)(0), // 0: google.ads.googleads.v22.errors.ExtensionSettingErrorEnum.ExtensionSettingError + (*ExtensionSettingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ExtensionSettingErrorEnum } -var file_google_ads_googleads_v21_errors_extension_setting_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -620,27 +620,27 @@ var file_google_ads_googleads_v21_errors_extension_setting_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_extension_setting_error_proto_init() } -func file_google_ads_googleads_v21_errors_extension_setting_error_proto_init() { - if File_google_ads_googleads_v21_errors_extension_setting_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_extension_setting_error_proto_init() } +func file_google_ads_googleads_v22_errors_extension_setting_error_proto_init() { + if File_google_ads_googleads_v22_errors_extension_setting_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_extension_setting_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_extension_setting_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_extension_setting_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_extension_setting_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_extension_setting_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_extension_setting_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_extension_setting_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_extension_setting_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_extension_setting_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_extension_setting_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_extension_setting_error_proto = out.File - file_google_ads_googleads_v21_errors_extension_setting_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_extension_setting_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_extension_setting_error_proto = out.File + file_google_ads_googleads_v22_errors_extension_setting_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 f4da2f90..435f3eaf 100644 --- a/errors/feed_attribute_reference_error.pb.go +++ b/errors/feed_attribute_reference_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_attribute_reference_error.proto +// source: google/ads/googleads/v22/errors/feed_attribute_reference_error.proto package errors @@ -80,11 +80,11 @@ func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) String() st } func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_enumTypes[0].Descriptor() } func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_enumTypes[0] } func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) Number() pr // Deprecated: Use FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError.Descriptor instead. func (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *FeedAttributeReferenceErrorEnum) String() string { func (*FeedAttributeReferenceErrorEnum) ProtoMessage() {} func (x *FeedAttributeReferenceErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *FeedAttributeReferenceErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedAttributeReferenceErrorEnum.ProtoReflect.Descriptor instead. func (*FeedAttributeReferenceErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x20, 0x46, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_goTypes = []any{ - (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 0: google.ads.googleads.v21.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError - (*FeedAttributeReferenceErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedAttributeReferenceErrorEnum +var file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_goTypes = []any{ + (FeedAttributeReferenceErrorEnum_FeedAttributeReferenceError)(0), // 0: google.ads.googleads.v22.errors.FeedAttributeReferenceErrorEnum.FeedAttributeReferenceError + (*FeedAttributeReferenceErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedAttributeReferenceErrorEnum } -var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_de 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_attribute_reference_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_feed_attribute_reference_error_proto_depIdxs = nil } diff --git a/errors/feed_error.pb.go b/errors/feed_error.pb.go index 6e95cd40..9ee42014 100644 --- a/errors/feed_error.pb.go +++ b/errors/feed_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_error.proto +// source: google/ads/googleads/v22/errors/feed_error.proto package errors @@ -161,11 +161,11 @@ func (x FeedErrorEnum_FeedError) String() string { } func (FeedErrorEnum_FeedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_error_proto_enumTypes[0].Descriptor() } func (FeedErrorEnum_FeedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_error_proto_enumTypes[0] } func (x FeedErrorEnum_FeedError) Number() protoreflect.EnumNumber { @@ -174,7 +174,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_v21_errors_feed_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198,7 +198,7 @@ func (x *FeedErrorEnum) String() string { func (*FeedErrorEnum) ProtoMessage() {} func (x *FeedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -211,17 +211,17 @@ func (x *FeedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedErrorEnum.ProtoReflect.Descriptor instead. func (*FeedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -279,41 +279,41 @@ var file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc = string([]byt 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x46, 0x65, 0x65, 0x64, 0x45, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_error_proto_goTypes = []any{ - (FeedErrorEnum_FeedError)(0), // 0: google.ads.googleads.v21.errors.FeedErrorEnum.FeedError - (*FeedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedErrorEnum +var file_google_ads_googleads_v22_errors_feed_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_error_proto_goTypes = []any{ + (FeedErrorEnum_FeedError)(0), // 0: google.ads.googleads.v22.errors.FeedErrorEnum.FeedError + (*FeedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedErrorEnum } -var file_google_ads_googleads_v21_errors_feed_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -321,27 +321,27 @@ var file_google_ads_googleads_v21_errors_feed_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_feed_error_proto_depIdxs = nil } diff --git a/errors/feed_item_error.pb.go b/errors/feed_item_error.pb.go index 8a4f0127..fce52d2d 100644 --- a/errors/feed_item_error.pb.go +++ b/errors/feed_item_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_item_error.proto +// source: google/ads/googleads/v22/errors/feed_item_error.proto package errors @@ -108,11 +108,11 @@ func (x FeedItemErrorEnum_FeedItemError) String() string { } func (FeedItemErrorEnum_FeedItemError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_item_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_item_error_proto_enumTypes[0].Descriptor() } func (FeedItemErrorEnum_FeedItemError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_item_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_item_error_proto_enumTypes[0] } func (x FeedItemErrorEnum_FeedItemError) Number() protoreflect.EnumNumber { @@ -121,7 +121,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_v21_errors_feed_item_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_item_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *FeedItemErrorEnum) String() string { func (*FeedItemErrorEnum) ProtoMessage() {} func (x *FeedItemErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_item_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,18 +158,18 @@ func (x *FeedItemErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemErrorEnum.ProtoReflect.Descriptor instead. func (*FeedItemErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_item_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_item_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x03, 0x0a, 0x11, 0x46, 0x65, 0x65, + 0x32, 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, @@ -198,41 +198,41 @@ var file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x46, 0x65, 0x65, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_error_proto_goTypes = []any{ - (FeedItemErrorEnum_FeedItemError)(0), // 0: google.ads.googleads.v21.errors.FeedItemErrorEnum.FeedItemError - (*FeedItemErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedItemErrorEnum +var file_google_ads_googleads_v22_errors_feed_item_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_error_proto_goTypes = []any{ + (FeedItemErrorEnum_FeedItemError)(0), // 0: google.ads.googleads.v22.errors.FeedItemErrorEnum.FeedItemError + (*FeedItemErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedItemErrorEnum } -var file_google_ads_googleads_v21_errors_feed_item_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -240,27 +240,27 @@ var file_google_ads_googleads_v21_errors_feed_item_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_item_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_item_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_item_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_item_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_item_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_item_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_item_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_item_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_item_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_item_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_item_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_item_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_item_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_item_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_item_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_item_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_item_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_item_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_item_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 ceb77010..fb0b3946 100644 --- a/errors/feed_item_set_error.pb.go +++ b/errors/feed_item_set_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_item_set_error.proto +// source: google/ads/googleads/v22/errors/feed_item_set_error.proto package errors @@ -102,11 +102,11 @@ func (x FeedItemSetErrorEnum_FeedItemSetError) String() string { } func (FeedItemSetErrorEnum_FeedItemSetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_item_set_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_item_set_error_proto_enumTypes[0].Descriptor() } func (FeedItemSetErrorEnum_FeedItemSetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_item_set_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_item_set_error_proto_enumTypes[0] } func (x FeedItemSetErrorEnum_FeedItemSetError) Number() protoreflect.EnumNumber { @@ -115,7 +115,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_v21_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_item_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_set_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *FeedItemSetErrorEnum) String() string { func (*FeedItemSetErrorEnum) ProtoMessage() {} func (x *FeedItemSetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_item_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_set_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,18 +152,18 @@ func (x *FeedItemSetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSetErrorEnum.ProtoReflect.Descriptor instead. func (*FeedItemSetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_item_set_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_item_set_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa0, 0x02, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,42 +183,42 @@ var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_goTypes = []any{ - (FeedItemSetErrorEnum_FeedItemSetError)(0), // 0: google.ads.googleads.v21.errors.FeedItemSetErrorEnum.FeedItemSetError - (*FeedItemSetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedItemSetErrorEnum +var file_google_ads_googleads_v22_errors_feed_item_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_set_error_proto_goTypes = []any{ + (FeedItemSetErrorEnum_FeedItemSetError)(0), // 0: google.ads.googleads.v22.errors.FeedItemSetErrorEnum.FeedItemSetError + (*FeedItemSetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedItemSetErrorEnum } -var file_google_ads_googleads_v21_errors_feed_item_set_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -226,27 +226,27 @@ var file_google_ads_googleads_v21_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_v21_errors_feed_item_set_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_item_set_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_item_set_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_item_set_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_item_set_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_item_set_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_set_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_set_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_item_set_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_item_set_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_item_set_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_item_set_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_item_set_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_item_set_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_item_set_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_item_set_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_item_set_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_item_set_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_item_set_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_item_set_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 97c6ed86..a7204f60 100644 --- a/errors/feed_item_set_link_error.pb.go +++ b/errors/feed_item_set_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_item_set_link_error.proto +// source: google/ads/googleads/v22/errors/feed_item_set_link_error.proto package errors @@ -77,11 +77,11 @@ func (x FeedItemSetLinkErrorEnum_FeedItemSetLinkError) String() string { } func (FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_enumTypes[0].Descriptor() } func (FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_enumTypes[0] } func (x FeedItemSetLinkErrorEnum_FeedItemSetLinkError) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *FeedItemSetLinkErrorEnum) String() string { func (*FeedItemSetLinkErrorEnum) ProtoMessage() {} func (x *FeedItemSetLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *FeedItemSetLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemSetLinkErrorEnum.ProtoReflect.Descriptor instead. func (*FeedItemSetLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_item_set_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_item_set_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x65, 0x65, 0x64, 0x49, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_goTypes = []any{ - (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 0: google.ads.googleads.v21.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError - (*FeedItemSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedItemSetLinkErrorEnum +var file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_goTypes = []any{ + (FeedItemSetLinkErrorEnum_FeedItemSetLinkError)(0), // 0: google.ads.googleads.v22.errors.FeedItemSetLinkErrorEnum.FeedItemSetLinkError + (*FeedItemSetLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedItemSetLinkErrorEnum } -var file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_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_v21_errors_feed_item_set_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_item_set_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_item_set_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_item_set_link_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_item_set_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_item_set_link_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_item_set_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 2caa4844..8ea8a5ac 100644 --- a/errors/feed_item_target_error.pb.go +++ b/errors/feed_item_target_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_item_target_error.proto +// source: google/ads/googleads/v22/errors/feed_item_target_error.proto package errors @@ -102,11 +102,11 @@ func (x FeedItemTargetErrorEnum_FeedItemTargetError) String() string { } func (FeedItemTargetErrorEnum_FeedItemTargetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_item_target_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_item_target_error_proto_enumTypes[0].Descriptor() } func (FeedItemTargetErrorEnum_FeedItemTargetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_item_target_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_item_target_error_proto_enumTypes[0] } func (x FeedItemTargetErrorEnum_FeedItemTargetError) Number() protoreflect.EnumNumber { @@ -115,7 +115,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_v21_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_item_target_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_target_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *FeedItemTargetErrorEnum) String() string { func (*FeedItemTargetErrorEnum) ProtoMessage() {} func (x *FeedItemTargetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_item_target_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_target_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,18 +152,18 @@ func (x *FeedItemTargetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemTargetErrorEnum.ProtoReflect.Descriptor instead. func (*FeedItemTargetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_item_target_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_item_target_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,43 +189,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_goTypes = []any{ - (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 0: google.ads.googleads.v21.errors.FeedItemTargetErrorEnum.FeedItemTargetError - (*FeedItemTargetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedItemTargetErrorEnum +var file_google_ads_googleads_v22_errors_feed_item_target_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_target_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_target_error_proto_goTypes = []any{ + (FeedItemTargetErrorEnum_FeedItemTargetError)(0), // 0: google.ads.googleads.v22.errors.FeedItemTargetErrorEnum.FeedItemTargetError + (*FeedItemTargetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedItemTargetErrorEnum } -var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +233,27 @@ var file_google_ads_googleads_v21_errors_feed_item_target_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_item_target_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_item_target_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_item_target_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_item_target_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_item_target_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_item_target_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_target_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_target_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_item_target_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_item_target_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_item_target_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_item_target_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_item_target_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_item_target_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_item_target_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_item_target_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_item_target_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_item_target_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_item_target_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_item_target_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 38d2a6b3..3d6f0225 100644 --- a/errors/feed_item_validation_error.pb.go +++ b/errors/feed_item_validation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_item_validation_error.proto +// source: google/ads/googleads/v22/errors/feed_item_validation_error.proto package errors @@ -506,11 +506,11 @@ func (x FeedItemValidationErrorEnum_FeedItemValidationError) String() string { } func (FeedItemValidationErrorEnum_FeedItemValidationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_enumTypes[0].Descriptor() } func (FeedItemValidationErrorEnum_FeedItemValidationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_enumTypes[0] } func (x FeedItemValidationErrorEnum_FeedItemValidationError) Number() protoreflect.EnumNumber { @@ -519,7 +519,7 @@ func (x FeedItemValidationErrorEnum_FeedItemValidationError) Number() protorefle // Deprecated: Use FeedItemValidationErrorEnum_FeedItemValidationError.Descriptor instead. func (FeedItemValidationErrorEnum_FeedItemValidationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -543,7 +543,7 @@ func (x *FeedItemValidationErrorEnum) String() string { func (*FeedItemValidationErrorEnum) ProtoMessage() {} func (x *FeedItemValidationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -556,18 +556,18 @@ func (x *FeedItemValidationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedItemValidationErrorEnum.ProtoReflect.Descriptor instead. func (*FeedItemValidationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_item_validation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_item_validation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -793,42 +793,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x46, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_goTypes = []any{ - (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 0: google.ads.googleads.v21.errors.FeedItemValidationErrorEnum.FeedItemValidationError - (*FeedItemValidationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedItemValidationErrorEnum +var file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_goTypes = []any{ + (FeedItemValidationErrorEnum_FeedItemValidationError)(0), // 0: google.ads.googleads.v22.errors.FeedItemValidationErrorEnum.FeedItemValidationError + (*FeedItemValidationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedItemValidationErrorEnum } -var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -836,27 +836,27 @@ var file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_depIdx 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_item_validation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_item_validation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_item_validation_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_item_validation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_item_validation_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_item_validation_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 3faef165..74346484 100644 --- a/errors/feed_mapping_error.pb.go +++ b/errors/feed_mapping_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/feed_mapping_error.proto +// source: google/ads/googleads/v22/errors/feed_mapping_error.proto package errors @@ -145,11 +145,11 @@ func (x FeedMappingErrorEnum_FeedMappingError) String() string { } func (FeedMappingErrorEnum_FeedMappingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_feed_mapping_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_feed_mapping_error_proto_enumTypes[0].Descriptor() } func (FeedMappingErrorEnum_FeedMappingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_feed_mapping_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_feed_mapping_error_proto_enumTypes[0] } func (x FeedMappingErrorEnum_FeedMappingError) Number() protoreflect.EnumNumber { @@ -158,7 +158,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_v21_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_feed_mapping_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_mapping_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182,7 +182,7 @@ func (x *FeedMappingErrorEnum) String() string { func (*FeedMappingErrorEnum) ProtoMessage() {} func (x *FeedMappingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_feed_mapping_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_feed_mapping_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195,18 +195,18 @@ func (x *FeedMappingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FeedMappingErrorEnum.ProtoReflect.Descriptor instead. func (*FeedMappingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_feed_mapping_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_feed_mapping_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb2, 0x06, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -260,41 +260,41 @@ var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x46, 0x65, 0x65, 0x64, 0x4d, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_goTypes = []any{ - (FeedMappingErrorEnum_FeedMappingError)(0), // 0: google.ads.googleads.v21.errors.FeedMappingErrorEnum.FeedMappingError - (*FeedMappingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FeedMappingErrorEnum +var file_google_ads_googleads_v22_errors_feed_mapping_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_feed_mapping_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_feed_mapping_error_proto_goTypes = []any{ + (FeedMappingErrorEnum_FeedMappingError)(0), // 0: google.ads.googleads.v22.errors.FeedMappingErrorEnum.FeedMappingError + (*FeedMappingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FeedMappingErrorEnum } -var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -302,27 +302,27 @@ var file_google_ads_googleads_v21_errors_feed_mapping_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_feed_mapping_error_proto_init() } -func file_google_ads_googleads_v21_errors_feed_mapping_error_proto_init() { - if File_google_ads_googleads_v21_errors_feed_mapping_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_feed_mapping_error_proto_init() } +func file_google_ads_googleads_v22_errors_feed_mapping_error_proto_init() { + if File_google_ads_googleads_v22_errors_feed_mapping_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_feed_mapping_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_feed_mapping_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_feed_mapping_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_feed_mapping_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_feed_mapping_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_feed_mapping_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_feed_mapping_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_feed_mapping_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_feed_mapping_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_feed_mapping_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_feed_mapping_error_proto = out.File - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_feed_mapping_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_feed_mapping_error_proto = out.File + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_feed_mapping_error_proto_depIdxs = nil } diff --git a/errors/field_error.pb.go b/errors/field_error.pb.go index 1f19cdb8..e229216e 100644 --- a/errors/field_error.pb.go +++ b/errors/field_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/field_error.proto +// source: google/ads/googleads/v22/errors/field_error.proto package errors @@ -100,11 +100,11 @@ func (x FieldErrorEnum_FieldError) String() string { } func (FieldErrorEnum_FieldError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_field_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_field_error_proto_enumTypes[0].Descriptor() } func (FieldErrorEnum_FieldError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_field_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_field_error_proto_enumTypes[0] } func (x FieldErrorEnum_FieldError) Number() protoreflect.EnumNumber { @@ -113,7 +113,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_v21_errors_field_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_field_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_field_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *FieldErrorEnum) String() string { func (*FieldErrorEnum) ProtoMessage() {} func (x *FieldErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_field_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_field_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,17 +150,17 @@ func (x *FieldErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FieldErrorEnum.ProtoReflect.Descriptor instead. func (*FieldErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_field_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_field_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_field_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_field_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_field_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_field_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -178,42 +178,42 @@ var file_google_ads_googleads_v21_errors_field_error_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_field_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_field_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_field_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_field_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_field_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_field_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_field_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_field_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_field_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_field_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_field_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_field_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_field_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_field_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_field_error_proto_goTypes = []any{ - (FieldErrorEnum_FieldError)(0), // 0: google.ads.googleads.v21.errors.FieldErrorEnum.FieldError - (*FieldErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FieldErrorEnum +var file_google_ads_googleads_v22_errors_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_field_error_proto_goTypes = []any{ + (FieldErrorEnum_FieldError)(0), // 0: google.ads.googleads.v22.errors.FieldErrorEnum.FieldError + (*FieldErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FieldErrorEnum } -var file_google_ads_googleads_v21_errors_field_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_errors_field_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_field_error_proto_init() } -func file_google_ads_googleads_v21_errors_field_error_proto_init() { - if File_google_ads_googleads_v21_errors_field_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_field_error_proto_init() } +func file_google_ads_googleads_v22_errors_field_error_proto_init() { + if File_google_ads_googleads_v22_errors_field_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_field_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_field_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_field_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_field_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_field_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_field_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_field_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_field_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_field_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_field_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_field_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_field_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_field_error_proto = out.File - file_google_ads_googleads_v21_errors_field_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_field_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_field_error_proto = out.File + file_google_ads_googleads_v22_errors_field_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_field_error_proto_depIdxs = nil } diff --git a/errors/field_mask_error.pb.go b/errors/field_mask_error.pb.go index 3bc77b26..b4658a84 100644 --- a/errors/field_mask_error.pb.go +++ b/errors/field_mask_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/field_mask_error.proto +// source: google/ads/googleads/v22/errors/field_mask_error.proto package errors @@ -86,11 +86,11 @@ func (x FieldMaskErrorEnum_FieldMaskError) String() string { } func (FieldMaskErrorEnum_FieldMaskError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_field_mask_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_field_mask_error_proto_enumTypes[0].Descriptor() } func (FieldMaskErrorEnum_FieldMaskError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_field_mask_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_field_mask_error_proto_enumTypes[0] } func (x FieldMaskErrorEnum_FieldMaskError) Number() protoreflect.EnumNumber { @@ -99,7 +99,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_v21_errors_field_mask_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_field_mask_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_field_mask_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *FieldMaskErrorEnum) String() string { func (*FieldMaskErrorEnum) ProtoMessage() {} func (x *FieldMaskErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_field_mask_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_field_mask_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *FieldMaskErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FieldMaskErrorEnum.ProtoReflect.Descriptor instead. func (*FieldMaskErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_field_mask_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_field_mask_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa7, 0x01, 0x0a, 0x12, 0x46, 0x69, + 0x32, 0x32, 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, @@ -160,42 +160,42 @@ var file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x46, 0x69, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_field_mask_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_field_mask_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_field_mask_error_proto_goTypes = []any{ - (FieldMaskErrorEnum_FieldMaskError)(0), // 0: google.ads.googleads.v21.errors.FieldMaskErrorEnum.FieldMaskError - (*FieldMaskErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FieldMaskErrorEnum +var file_google_ads_googleads_v22_errors_field_mask_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_field_mask_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_field_mask_error_proto_goTypes = []any{ + (FieldMaskErrorEnum_FieldMaskError)(0), // 0: google.ads.googleads.v22.errors.FieldMaskErrorEnum.FieldMaskError + (*FieldMaskErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FieldMaskErrorEnum } -var file_google_ads_googleads_v21_errors_field_mask_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_errors_field_mask_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_field_mask_error_proto_init() } -func file_google_ads_googleads_v21_errors_field_mask_error_proto_init() { - if File_google_ads_googleads_v21_errors_field_mask_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_field_mask_error_proto_init() } +func file_google_ads_googleads_v22_errors_field_mask_error_proto_init() { + if File_google_ads_googleads_v22_errors_field_mask_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_field_mask_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_field_mask_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_field_mask_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_field_mask_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_field_mask_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_field_mask_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_field_mask_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_field_mask_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_field_mask_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_field_mask_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_field_mask_error_proto = out.File - file_google_ads_googleads_v21_errors_field_mask_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_field_mask_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_field_mask_error_proto = out.File + file_google_ads_googleads_v22_errors_field_mask_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_field_mask_error_proto_depIdxs = nil } diff --git a/errors/final_url_expansion_asset_view_error.pb.go b/errors/final_url_expansion_asset_view_error.pb.go index f5a3df51..346feab8 100644 --- a/errors/final_url_expansion_asset_view_error.pb.go +++ b/errors/final_url_expansion_asset_view_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/final_url_expansion_asset_view_error.proto +// source: google/ads/googleads/v22/errors/final_url_expansion_asset_view_error.proto package errors @@ -100,11 +100,11 @@ func (x FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) Str } func (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_enumTypes[0].Descriptor() } func (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_enumTypes[0] } func (x FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) Number() protoreflect.EnumNumber { @@ -113,7 +113,7 @@ func (x FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) Num // Deprecated: Use FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError.Descriptor instead. func (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible final url expansion asset view errors. @@ -125,7 +125,7 @@ type FinalUrlExpansionAssetViewErrorEnum struct { func (x *FinalUrlExpansionAssetViewErrorEnum) Reset() { *x = FinalUrlExpansionAssetViewErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *FinalUrlExpansionAssetViewErrorEnum) String() string { func (*FinalUrlExpansionAssetViewErrorEnum) ProtoMessage() {} func (x *FinalUrlExpansionAssetViewErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,19 +150,19 @@ func (x *FinalUrlExpansionAssetViewErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use FinalUrlExpansionAssetViewErrorEnum.ProtoReflect.Descriptor instead. func (*FinalUrlExpansionAssetViewErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, 0x03, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, 0x03, 0x0a, 0x23, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x82, 0x03, 0x0a, 0x1f, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, @@ -191,43 +191,43 @@ var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_pr 0x41, 0x44, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x5f, 0x41, 0x4e, 0x44, 0x5f, 0x41, 0x53, 0x53, 0x45, 0x54, 0x5f, 0x47, 0x52, 0x4f, 0x55, 0x50, 0x10, 0x09, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_goTypes = []any{ - (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError)(0), // 0: google.ads.googleads.v21.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError - (*FinalUrlExpansionAssetViewErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FinalUrlExpansionAssetViewErrorEnum +var file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_goTypes = []any{ + (FinalUrlExpansionAssetViewErrorEnum_FinalUrlExpansionAssetViewError)(0), // 0: google.ads.googleads.v22.errors.FinalUrlExpansionAssetViewErrorEnum.FinalUrlExpansionAssetViewError + (*FinalUrlExpansionAssetViewErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FinalUrlExpansionAssetViewErrorEnum } -var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +235,27 @@ var file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_init() } -func file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_init() { - if File_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_init() } +func file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_init() { + if File_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto = out.File - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_final_url_expansion_asset_view_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto = out.File + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_final_url_expansion_asset_view_error_proto_depIdxs = nil } diff --git a/errors/function_error.pb.go b/errors/function_error.pb.go index cca75656..a2f01100 100644 --- a/errors/function_error.pb.go +++ b/errors/function_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/function_error.proto +// source: google/ads/googleads/v22/errors/function_error.proto package errors @@ -133,11 +133,11 @@ func (x FunctionErrorEnum_FunctionError) String() string { } func (FunctionErrorEnum_FunctionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_function_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_function_error_proto_enumTypes[0].Descriptor() } func (FunctionErrorEnum_FunctionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_function_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_function_error_proto_enumTypes[0] } func (x FunctionErrorEnum_FunctionError) Number() protoreflect.EnumNumber { @@ -146,7 +146,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_v21_errors_function_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_function_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_function_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170,7 +170,7 @@ func (x *FunctionErrorEnum) String() string { func (*FunctionErrorEnum) ProtoMessage() {} func (x *FunctionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_function_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_function_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183,17 +183,17 @@ func (x *FunctionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FunctionErrorEnum.ProtoReflect.Descriptor instead. func (*FunctionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_function_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_function_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_function_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_function_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_function_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_function_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -232,42 +232,42 @@ var file_google_ads_googleads_v21_errors_function_error_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_function_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_function_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_function_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_function_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_function_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_function_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_function_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_function_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_function_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_function_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_function_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_function_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_function_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_function_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_function_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_function_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_function_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_function_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_function_error_proto_goTypes = []any{ - (FunctionErrorEnum_FunctionError)(0), // 0: google.ads.googleads.v21.errors.FunctionErrorEnum.FunctionError - (*FunctionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FunctionErrorEnum +var file_google_ads_googleads_v22_errors_function_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_function_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_function_error_proto_goTypes = []any{ + (FunctionErrorEnum_FunctionError)(0), // 0: google.ads.googleads.v22.errors.FunctionErrorEnum.FunctionError + (*FunctionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FunctionErrorEnum } -var file_google_ads_googleads_v21_errors_function_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -275,27 +275,27 @@ var file_google_ads_googleads_v21_errors_function_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_function_error_proto_init() } -func file_google_ads_googleads_v21_errors_function_error_proto_init() { - if File_google_ads_googleads_v21_errors_function_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_function_error_proto_init() } +func file_google_ads_googleads_v22_errors_function_error_proto_init() { + if File_google_ads_googleads_v22_errors_function_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_function_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_function_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_function_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_function_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_function_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_function_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_function_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_function_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_function_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_function_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_function_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_function_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_function_error_proto = out.File - file_google_ads_googleads_v21_errors_function_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_function_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_function_error_proto = out.File + file_google_ads_googleads_v22_errors_function_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_function_error_proto_depIdxs = nil } diff --git a/errors/function_parsing_error.pb.go b/errors/function_parsing_error.pb.go index 6b6addfe..9b25322e 100644 --- a/errors/function_parsing_error.pb.go +++ b/errors/function_parsing_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/function_parsing_error.proto +// source: google/ads/googleads/v22/errors/function_parsing_error.proto package errors @@ -112,11 +112,11 @@ func (x FunctionParsingErrorEnum_FunctionParsingError) String() string { } func (FunctionParsingErrorEnum_FunctionParsingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_function_parsing_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_function_parsing_error_proto_enumTypes[0].Descriptor() } func (FunctionParsingErrorEnum_FunctionParsingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_function_parsing_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_function_parsing_error_proto_enumTypes[0] } func (x FunctionParsingErrorEnum_FunctionParsingError) Number() protoreflect.EnumNumber { @@ -125,7 +125,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_v21_errors_function_parsing_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_function_parsing_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_function_parsing_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *FunctionParsingErrorEnum) String() string { func (*FunctionParsingErrorEnum) ProtoMessage() {} func (x *FunctionParsingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_function_parsing_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_function_parsing_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,18 +162,18 @@ func (x *FunctionParsingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use FunctionParsingErrorEnum.ProtoReflect.Descriptor instead. func (*FunctionParsingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_function_parsing_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_function_parsing_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -200,42 +200,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x46, 0x75, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_function_parsing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_function_parsing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_function_parsing_error_proto_goTypes = []any{ - (FunctionParsingErrorEnum_FunctionParsingError)(0), // 0: google.ads.googleads.v21.errors.FunctionParsingErrorEnum.FunctionParsingError - (*FunctionParsingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.FunctionParsingErrorEnum +var file_google_ads_googleads_v22_errors_function_parsing_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_function_parsing_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_function_parsing_error_proto_goTypes = []any{ + (FunctionParsingErrorEnum_FunctionParsingError)(0), // 0: google.ads.googleads.v22.errors.FunctionParsingErrorEnum.FunctionParsingError + (*FunctionParsingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.FunctionParsingErrorEnum } -var file_google_ads_googleads_v21_errors_function_parsing_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -243,27 +243,27 @@ var file_google_ads_googleads_v21_errors_function_parsing_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_function_parsing_error_proto_init() } -func file_google_ads_googleads_v21_errors_function_parsing_error_proto_init() { - if File_google_ads_googleads_v21_errors_function_parsing_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_function_parsing_error_proto_init() } +func file_google_ads_googleads_v22_errors_function_parsing_error_proto_init() { + if File_google_ads_googleads_v22_errors_function_parsing_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_function_parsing_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_function_parsing_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_function_parsing_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_function_parsing_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_function_parsing_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_function_parsing_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_function_parsing_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_function_parsing_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_function_parsing_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_function_parsing_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_function_parsing_error_proto = out.File - file_google_ads_googleads_v21_errors_function_parsing_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_function_parsing_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_function_parsing_error_proto = out.File + file_google_ads_googleads_v22_errors_function_parsing_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 c8598a7c..f500b5b3 100644 --- a/errors/geo_target_constant_suggestion_error.pb.go +++ b/errors/geo_target_constant_suggestion_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/geo_target_constant_suggestion_error.proto +// source: google/ads/googleads/v22/errors/geo_target_constant_suggestion_error.proto package errors @@ -86,11 +86,11 @@ func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) S } func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_enumTypes[0].Descriptor() } func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_enumTypes[0] } func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) Number() protoreflect.EnumNumber { @@ -99,7 +99,7 @@ func (x GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) N // Deprecated: Use GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError.Descriptor instead. func (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *GeoTargetConstantSuggestionErrorEnum) String() string { func (*GeoTargetConstantSuggestionErrorEnum) ProtoMessage() {} func (x *GeoTargetConstantSuggestionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,19 +136,19 @@ func (x *GeoTargetConstantSuggestionErrorEnum) ProtoReflect() protoreflect.Messa // Deprecated: Use GeoTargetConstantSuggestionErrorEnum.ProtoReflect.Descriptor instead. func (*GeoTargetConstantSuggestionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd8, 0x01, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -164,43 +164,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_goTypes = []any{ - (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 0: google.ads.googleads.v21.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError - (*GeoTargetConstantSuggestionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.GeoTargetConstantSuggestionErrorEnum +var file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_goTypes = []any{ + (GeoTargetConstantSuggestionErrorEnum_GeoTargetConstantSuggestionError)(0), // 0: google.ads.googleads.v22.errors.GeoTargetConstantSuggestionErrorEnum.GeoTargetConstantSuggestionError + (*GeoTargetConstantSuggestionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.GeoTargetConstantSuggestionErrorEnum } -var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_pr 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_init() } -func file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_init() { - if File_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_init() } +func file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_init() { + if File_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto = out.File - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_geo_target_constant_suggestion_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto = out.File + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_geo_target_constant_suggestion_error_proto_depIdxs = nil } diff --git a/errors/goal_error.pb.go b/errors/goal_error.pb.go new file mode 100644 index 00000000..1351e386 --- /dev/null +++ b/errors/goal_error.pb.go @@ -0,0 +1,234 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/errors/goal_error.proto + +package errors + +import ( + protoreflect "google.golang.org/protobuf/reflect/protoreflect" + protoimpl "google.golang.org/protobuf/runtime/protoimpl" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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 goal errors. +type GoalErrorEnum_GoalError int32 + +const ( + // Enum unspecified. + GoalErrorEnum_UNSPECIFIED GoalErrorEnum_GoalError = 0 + // The received error code is not known in this version. + GoalErrorEnum_UNKNOWN GoalErrorEnum_GoalError = 1 + // Retention goal already exists. + GoalErrorEnum_RETENTION_GOAL_ALREADY_EXISTS GoalErrorEnum_GoalError = 4 + // When using customer lifecycle optimization goal, if high lifetime value + // is present then value should be present. + GoalErrorEnum_HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT GoalErrorEnum_GoalError = 5 + // When using customer lifecycle optimization goal, high lifetime value + // should be greater than value. + GoalErrorEnum_HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE GoalErrorEnum_GoalError = 6 + // Only Google Ads account can have customer lifecycle optimization goal. + GoalErrorEnum_CUSTOMER_LIFECYCLE_OPTIMIZATION_ACCOUNT_TYPE_NOT_ALLOWED GoalErrorEnum_GoalError = 7 +) + +// Enum value maps for GoalErrorEnum_GoalError. +var ( + GoalErrorEnum_GoalError_name = map[int32]string{ + 0: "UNSPECIFIED", + 1: "UNKNOWN", + 4: "RETENTION_GOAL_ALREADY_EXISTS", + 5: "HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT", + 6: "HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE", + 7: "CUSTOMER_LIFECYCLE_OPTIMIZATION_ACCOUNT_TYPE_NOT_ALLOWED", + } + GoalErrorEnum_GoalError_value = map[string]int32{ + "UNSPECIFIED": 0, + "UNKNOWN": 1, + "RETENTION_GOAL_ALREADY_EXISTS": 4, + "HIGH_LIFETIME_VALUE_PRESENT_BUT_VALUE_ABSENT": 5, + "HIGH_LIFETIME_VALUE_LESS_THAN_OR_EQUAL_TO_VALUE": 6, + "CUSTOMER_LIFECYCLE_OPTIMIZATION_ACCOUNT_TYPE_NOT_ALLOWED": 7, + } +) + +func (x GoalErrorEnum_GoalError) Enum() *GoalErrorEnum_GoalError { + p := new(GoalErrorEnum_GoalError) + *p = x + return p +} + +func (x GoalErrorEnum_GoalError) String() string { + return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x)) +} + +func (GoalErrorEnum_GoalError) Descriptor() protoreflect.EnumDescriptor { + return file_google_ads_googleads_v22_errors_goal_error_proto_enumTypes[0].Descriptor() +} + +func (GoalErrorEnum_GoalError) Type() protoreflect.EnumType { + return &file_google_ads_googleads_v22_errors_goal_error_proto_enumTypes[0] +} + +func (x GoalErrorEnum_GoalError) Number() protoreflect.EnumNumber { + return protoreflect.EnumNumber(x) +} + +// Deprecated: Use GoalErrorEnum_GoalError.Descriptor instead. +func (GoalErrorEnum_GoalError) EnumDescriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_goal_error_proto_rawDescGZIP(), []int{0, 0} +} + +// Container for enum describing possible goal errors. +type GoalErrorEnum struct { + state protoimpl.MessageState `protogen:"open.v1"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalErrorEnum) Reset() { + *x = GoalErrorEnum{} + mi := &file_google_ads_googleads_v22_errors_goal_error_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalErrorEnum) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalErrorEnum) ProtoMessage() {} + +func (x *GoalErrorEnum) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_errors_goal_error_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalErrorEnum.ProtoReflect.Descriptor instead. +func (*GoalErrorEnum) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_errors_goal_error_proto_rawDescGZIP(), []int{0} +} + +var File_google_ads_googleads_v22_errors_goal_error_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_errors_goal_error_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x2f, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0x22, 0x83, 0x02, 0x0a, 0x0d, 0x47, 0x6f, 0x61, 0x6c, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xf1, 0x01, 0x0a, 0x09, 0x47, 0x6f, 0x61, 0x6c, 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, 0x1d, 0x52, 0x45, 0x54, 0x45, 0x4e, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x47, + 0x4f, 0x41, 0x4c, 0x5f, 0x41, 0x4c, 0x52, 0x45, 0x41, 0x44, 0x59, 0x5f, 0x45, 0x58, 0x49, 0x53, + 0x54, 0x53, 0x10, 0x04, 0x12, 0x30, 0x0a, 0x2c, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4c, 0x49, 0x46, + 0x45, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x50, 0x52, 0x45, 0x53, + 0x45, 0x4e, 0x54, 0x5f, 0x42, 0x55, 0x54, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x41, 0x42, + 0x53, 0x45, 0x4e, 0x54, 0x10, 0x05, 0x12, 0x33, 0x0a, 0x2f, 0x48, 0x49, 0x47, 0x48, 0x5f, 0x4c, + 0x49, 0x46, 0x45, 0x54, 0x49, 0x4d, 0x45, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x5f, 0x4c, 0x45, + 0x53, 0x53, 0x5f, 0x54, 0x48, 0x41, 0x4e, 0x5f, 0x4f, 0x52, 0x5f, 0x45, 0x51, 0x55, 0x41, 0x4c, + 0x5f, 0x54, 0x4f, 0x5f, 0x56, 0x41, 0x4c, 0x55, 0x45, 0x10, 0x06, 0x12, 0x3c, 0x0a, 0x38, 0x43, + 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x46, 0x45, 0x43, 0x59, 0x43, 0x4c, + 0x45, 0x5f, 0x4f, 0x50, 0x54, 0x49, 0x4d, 0x49, 0x5a, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, 0x41, + 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, + 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x07, 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, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0x42, 0x0e, 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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, + 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, + 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_errors_goal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_goal_error_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_errors_goal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_goal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_goal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_goal_error_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_errors_goal_error_proto_rawDescData +} + +var file_google_ads_googleads_v22_errors_goal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_goal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_goal_error_proto_goTypes = []any{ + (GoalErrorEnum_GoalError)(0), // 0: google.ads.googleads.v22.errors.GoalErrorEnum.GoalError + (*GoalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.GoalErrorEnum +} +var file_google_ads_googleads_v22_errors_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 + 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_v22_errors_goal_error_proto_init() } +func file_google_ads_googleads_v22_errors_goal_error_proto_init() { + if File_google_ads_googleads_v22_errors_goal_error_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_goal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_goal_error_proto_rawDesc)), + NumEnums: 1, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_errors_goal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_goal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_goal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_goal_error_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_errors_goal_error_proto = out.File + file_google_ads_googleads_v22_errors_goal_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_goal_error_proto_depIdxs = nil +} diff --git a/errors/header_error.pb.go b/errors/header_error.pb.go index 7c446cc3..2693c9c2 100644 --- a/errors/header_error.pb.go +++ b/errors/header_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/header_error.proto +// source: google/ads/googleads/v22/errors/header_error.proto package errors @@ -76,11 +76,11 @@ func (x HeaderErrorEnum_HeaderError) String() string { } func (HeaderErrorEnum_HeaderError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_header_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_header_error_proto_enumTypes[0].Descriptor() } func (HeaderErrorEnum_HeaderError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_header_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_header_error_proto_enumTypes[0] } func (x HeaderErrorEnum_HeaderError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_header_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_header_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_header_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *HeaderErrorEnum) String() string { func (*HeaderErrorEnum) ProtoMessage() {} func (x *HeaderErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_header_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_header_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *HeaderErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use HeaderErrorEnum.ProtoReflect.Descriptor instead. func (*HeaderErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_header_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_header_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_header_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_header_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_header_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_header_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_errors_header_error_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x10, 0x48, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_header_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_header_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_header_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_header_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_header_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_header_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_header_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_header_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_header_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_header_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_header_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_header_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_header_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_header_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_header_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_header_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_header_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_header_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_header_error_proto_goTypes = []any{ - (HeaderErrorEnum_HeaderError)(0), // 0: google.ads.googleads.v21.errors.HeaderErrorEnum.HeaderError - (*HeaderErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.HeaderErrorEnum +var file_google_ads_googleads_v22_errors_header_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_header_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_header_error_proto_goTypes = []any{ + (HeaderErrorEnum_HeaderError)(0), // 0: google.ads.googleads.v22.errors.HeaderErrorEnum.HeaderError + (*HeaderErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.HeaderErrorEnum } -var file_google_ads_googleads_v21_errors_header_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_header_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_header_error_proto_init() } -func file_google_ads_googleads_v21_errors_header_error_proto_init() { - if File_google_ads_googleads_v21_errors_header_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_header_error_proto_init() } +func file_google_ads_googleads_v22_errors_header_error_proto_init() { + if File_google_ads_googleads_v22_errors_header_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_header_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_header_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_header_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_header_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_header_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_header_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_header_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_header_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_header_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_header_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_header_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_header_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_header_error_proto = out.File - file_google_ads_googleads_v21_errors_header_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_header_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_header_error_proto = out.File + file_google_ads_googleads_v22_errors_header_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_header_error_proto_depIdxs = nil } diff --git a/errors/id_error.pb.go b/errors/id_error.pb.go index b4f79410..83bfb829 100644 --- a/errors/id_error.pb.go +++ b/errors/id_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/id_error.proto +// source: google/ads/googleads/v22/errors/id_error.proto package errors @@ -72,11 +72,11 @@ func (x IdErrorEnum_IdError) String() string { } func (IdErrorEnum_IdError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_id_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_id_error_proto_enumTypes[0].Descriptor() } func (IdErrorEnum_IdError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_id_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_id_error_proto_enumTypes[0] } func (x IdErrorEnum_IdError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_id_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_id_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_id_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *IdErrorEnum) String() string { func (*IdErrorEnum) ProtoMessage() {} func (x *IdErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_id_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_id_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,58 +122,58 @@ func (x *IdErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use IdErrorEnum.ProtoReflect.Descriptor instead. func (*IdErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_id_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_id_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_id_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_id_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_id_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_id_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_id_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_id_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_id_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_id_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_id_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_id_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_id_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_id_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_id_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_id_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_id_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_id_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_id_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_id_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_id_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_id_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_id_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_id_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_id_error_proto_goTypes = []any{ - (IdErrorEnum_IdError)(0), // 0: google.ads.googleads.v21.errors.IdErrorEnum.IdError - (*IdErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.IdErrorEnum +var file_google_ads_googleads_v22_errors_id_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_id_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_id_error_proto_goTypes = []any{ + (IdErrorEnum_IdError)(0), // 0: google.ads.googleads.v22.errors.IdErrorEnum.IdError + (*IdErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.IdErrorEnum } -var file_google_ads_googleads_v21_errors_id_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -181,27 +181,27 @@ var file_google_ads_googleads_v21_errors_id_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_id_error_proto_init() } -func file_google_ads_googleads_v21_errors_id_error_proto_init() { - if File_google_ads_googleads_v21_errors_id_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_id_error_proto_init() } +func file_google_ads_googleads_v22_errors_id_error_proto_init() { + if File_google_ads_googleads_v22_errors_id_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_id_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_id_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_id_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_id_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_id_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_id_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_id_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_id_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_id_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_id_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_id_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_id_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_id_error_proto = out.File - file_google_ads_googleads_v21_errors_id_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_id_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_id_error_proto = out.File + file_google_ads_googleads_v22_errors_id_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_id_error_proto_depIdxs = nil } diff --git a/errors/identity_verification_error.pb.go b/errors/identity_verification_error.pb.go index 9cb85a7a..dfa64a36 100644 --- a/errors/identity_verification_error.pb.go +++ b/errors/identity_verification_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/identity_verification_error.proto +// source: google/ads/googleads/v22/errors/identity_verification_error.proto package errors @@ -80,11 +80,11 @@ func (x IdentityVerificationErrorEnum_IdentityVerificationError) String() string } func (IdentityVerificationErrorEnum_IdentityVerificationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_identity_verification_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_identity_verification_error_proto_enumTypes[0].Descriptor() } func (IdentityVerificationErrorEnum_IdentityVerificationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_identity_verification_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_identity_verification_error_proto_enumTypes[0] } func (x IdentityVerificationErrorEnum_IdentityVerificationError) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x IdentityVerificationErrorEnum_IdentityVerificationError) Number() protor // Deprecated: Use IdentityVerificationErrorEnum_IdentityVerificationError.Descriptor instead. func (IdentityVerificationErrorEnum_IdentityVerificationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_identity_verification_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_identity_verification_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *IdentityVerificationErrorEnum) String() string { func (*IdentityVerificationErrorEnum) ProtoMessage() {} func (x *IdentityVerificationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_identity_verification_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_identity_verification_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *IdentityVerificationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationErrorEnum.ProtoReflect.Descriptor instead. func (*IdentityVerificationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_identity_verification_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_identity_verification_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1e, 0x49, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_identity_verification_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_identity_verification_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_identity_verification_error_proto_goTypes = []any{ - (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 0: google.ads.googleads.v21.errors.IdentityVerificationErrorEnum.IdentityVerificationError - (*IdentityVerificationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.IdentityVerificationErrorEnum +var file_google_ads_googleads_v22_errors_identity_verification_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_identity_verification_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_identity_verification_error_proto_goTypes = []any{ + (IdentityVerificationErrorEnum_IdentityVerificationError)(0), // 0: google.ads.googleads.v22.errors.IdentityVerificationErrorEnum.IdentityVerificationError + (*IdentityVerificationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.IdentityVerificationErrorEnum } -var file_google_ads_googleads_v21_errors_identity_verification_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_identity_verification_error_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_identity_verification_error_proto_init() } -func file_google_ads_googleads_v21_errors_identity_verification_error_proto_init() { - if File_google_ads_googleads_v21_errors_identity_verification_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_identity_verification_error_proto_init() } +func file_google_ads_googleads_v22_errors_identity_verification_error_proto_init() { + if File_google_ads_googleads_v22_errors_identity_verification_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_identity_verification_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_identity_verification_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_identity_verification_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_identity_verification_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_identity_verification_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_identity_verification_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_identity_verification_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_identity_verification_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_identity_verification_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_identity_verification_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_identity_verification_error_proto = out.File - file_google_ads_googleads_v21_errors_identity_verification_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_identity_verification_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_identity_verification_error_proto = out.File + file_google_ads_googleads_v22_errors_identity_verification_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_identity_verification_error_proto_depIdxs = nil } diff --git a/errors/image_error.pb.go b/errors/image_error.pb.go index e072368b..84f5a4ad 100644 --- a/errors/image_error.pb.go +++ b/errors/image_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/image_error.proto +// source: google/ads/googleads/v22/errors/image_error.proto package errors @@ -227,11 +227,11 @@ func (x ImageErrorEnum_ImageError) String() string { } func (ImageErrorEnum_ImageError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_image_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_image_error_proto_enumTypes[0].Descriptor() } func (ImageErrorEnum_ImageError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_image_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_image_error_proto_enumTypes[0] } func (x ImageErrorEnum_ImageError) Number() protoreflect.EnumNumber { @@ -240,7 +240,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_v21_errors_image_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_image_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_image_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *ImageErrorEnum) String() string { func (*ImageErrorEnum) ProtoMessage() {} func (x *ImageErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_image_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_image_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,17 +277,17 @@ func (x *ImageErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ImageErrorEnum.ProtoReflect.Descriptor instead. func (*ImageErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_image_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_image_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_image_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_image_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_image_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_image_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -358,42 +358,42 @@ var file_google_ads_googleads_v21_errors_image_error_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_image_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_image_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_image_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_image_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_image_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_image_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_image_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_image_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_image_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_image_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_image_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_image_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_image_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_image_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_image_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_image_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_image_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_image_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_image_error_proto_goTypes = []any{ - (ImageErrorEnum_ImageError)(0), // 0: google.ads.googleads.v21.errors.ImageErrorEnum.ImageError - (*ImageErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ImageErrorEnum +var file_google_ads_googleads_v22_errors_image_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_image_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_image_error_proto_goTypes = []any{ + (ImageErrorEnum_ImageError)(0), // 0: google.ads.googleads.v22.errors.ImageErrorEnum.ImageError + (*ImageErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ImageErrorEnum } -var file_google_ads_googleads_v21_errors_image_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -401,27 +401,27 @@ var file_google_ads_googleads_v21_errors_image_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_image_error_proto_init() } -func file_google_ads_googleads_v21_errors_image_error_proto_init() { - if File_google_ads_googleads_v21_errors_image_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_image_error_proto_init() } +func file_google_ads_googleads_v22_errors_image_error_proto_init() { + if File_google_ads_googleads_v22_errors_image_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_image_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_image_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_image_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_image_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_image_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_image_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_image_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_image_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_image_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_image_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_image_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_image_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_image_error_proto = out.File - file_google_ads_googleads_v21_errors_image_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_image_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_image_error_proto = out.File + file_google_ads_googleads_v22_errors_image_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_image_error_proto_depIdxs = nil } diff --git a/errors/internal_error.pb.go b/errors/internal_error.pb.go index e2c2d288..16718c2d 100644 --- a/errors/internal_error.pb.go +++ b/errors/internal_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/internal_error.proto +// source: google/ads/googleads/v22/errors/internal_error.proto package errors @@ -86,11 +86,11 @@ func (x InternalErrorEnum_InternalError) String() string { } func (InternalErrorEnum_InternalError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_internal_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_internal_error_proto_enumTypes[0].Descriptor() } func (InternalErrorEnum_InternalError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_internal_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_internal_error_proto_enumTypes[0] } func (x InternalErrorEnum_InternalError) Number() protoreflect.EnumNumber { @@ -99,7 +99,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_v21_errors_internal_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_internal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_internal_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *InternalErrorEnum) String() string { func (*InternalErrorEnum) ProtoMessage() {} func (x *InternalErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_internal_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_internal_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,17 +136,17 @@ func (x *InternalErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InternalErrorEnum.ProtoReflect.Descriptor instead. func (*InternalErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_internal_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_internal_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_internal_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_internal_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_internal_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_internal_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_internal_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_internal_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_internal_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_internal_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_internal_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_internal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_internal_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_internal_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_internal_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_internal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_internal_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_internal_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_internal_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_internal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_internal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_internal_error_proto_goTypes = []any{ - (InternalErrorEnum_InternalError)(0), // 0: google.ads.googleads.v21.errors.InternalErrorEnum.InternalError - (*InternalErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.InternalErrorEnum +var file_google_ads_googleads_v22_errors_internal_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_internal_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_internal_error_proto_goTypes = []any{ + (InternalErrorEnum_InternalError)(0), // 0: google.ads.googleads.v22.errors.InternalErrorEnum.InternalError + (*InternalErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.InternalErrorEnum } -var file_google_ads_googleads_v21_errors_internal_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_errors_internal_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_internal_error_proto_init() } -func file_google_ads_googleads_v21_errors_internal_error_proto_init() { - if File_google_ads_googleads_v21_errors_internal_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_internal_error_proto_init() } +func file_google_ads_googleads_v22_errors_internal_error_proto_init() { + if File_google_ads_googleads_v22_errors_internal_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_internal_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_internal_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_internal_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_internal_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_internal_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_internal_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_internal_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_internal_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_internal_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_internal_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_internal_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_internal_error_proto = out.File - file_google_ads_googleads_v21_errors_internal_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_internal_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_internal_error_proto = out.File + file_google_ads_googleads_v22_errors_internal_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_internal_error_proto_depIdxs = nil } diff --git a/errors/invoice_error.pb.go b/errors/invoice_error.pb.go index c9864514..ee1d8031 100644 --- a/errors/invoice_error.pb.go +++ b/errors/invoice_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/invoice_error.proto +// source: google/ads/googleads/v22/errors/invoice_error.proto package errors @@ -89,11 +89,11 @@ func (x InvoiceErrorEnum_InvoiceError) String() string { } func (InvoiceErrorEnum_InvoiceError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_invoice_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_invoice_error_proto_enumTypes[0].Descriptor() } func (InvoiceErrorEnum_InvoiceError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_invoice_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_invoice_error_proto_enumTypes[0] } func (x InvoiceErrorEnum_InvoiceError) Number() protoreflect.EnumNumber { @@ -102,7 +102,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_v21_errors_invoice_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_invoice_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_invoice_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *InvoiceErrorEnum) String() string { func (*InvoiceErrorEnum) ProtoMessage() {} func (x *InvoiceErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_invoice_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_invoice_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,17 +139,17 @@ func (x *InvoiceErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use InvoiceErrorEnum.ProtoReflect.Descriptor instead. func (*InvoiceErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_invoice_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_invoice_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_invoice_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -166,41 +166,41 @@ var file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x49, 0x6e, 0x76, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_invoice_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_invoice_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_invoice_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_invoice_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_invoice_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_invoice_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_invoice_error_proto_goTypes = []any{ - (InvoiceErrorEnum_InvoiceError)(0), // 0: google.ads.googleads.v21.errors.InvoiceErrorEnum.InvoiceError - (*InvoiceErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.InvoiceErrorEnum +var file_google_ads_googleads_v22_errors_invoice_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_invoice_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_invoice_error_proto_goTypes = []any{ + (InvoiceErrorEnum_InvoiceError)(0), // 0: google.ads.googleads.v22.errors.InvoiceErrorEnum.InvoiceError + (*InvoiceErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.InvoiceErrorEnum } -var file_google_ads_googleads_v21_errors_invoice_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_errors_invoice_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_invoice_error_proto_init() } -func file_google_ads_googleads_v21_errors_invoice_error_proto_init() { - if File_google_ads_googleads_v21_errors_invoice_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_invoice_error_proto_init() } +func file_google_ads_googleads_v22_errors_invoice_error_proto_init() { + if File_google_ads_googleads_v22_errors_invoice_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_invoice_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_invoice_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_invoice_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_invoice_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_invoice_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_invoice_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_invoice_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_invoice_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_invoice_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_invoice_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_invoice_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_invoice_error_proto = out.File - file_google_ads_googleads_v21_errors_invoice_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_invoice_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_invoice_error_proto = out.File + file_google_ads_googleads_v22_errors_invoice_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 652479d8..29d813e0 100644 --- a/errors/keyword_plan_ad_group_error.pb.go +++ b/errors/keyword_plan_ad_group_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_ad_group_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_ad_group_error.proto package errors @@ -78,11 +78,11 @@ func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) String() string { } func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_enumTypes[0] } func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Number() protoreflect.EnumNumber { @@ -91,7 +91,7 @@ func (x KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) Number() protorefle // Deprecated: Use KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError.Descriptor instead. func (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *KeywordPlanAdGroupErrorEnum) String() string { func (*KeywordPlanAdGroupErrorEnum) ProtoMessage() {} func (x *KeywordPlanAdGroupErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,18 +129,18 @@ func (x *KeywordPlanAdGroupErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroupErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1c, 0x4b, 0x65, 0x79, 0x77, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_goTypes = []any{ - (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError - (*KeywordPlanAdGroupErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanAdGroupErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_goTypes = []any{ + (KeywordPlanAdGroupErrorEnum_KeywordPlanAdGroupError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanAdGroupErrorEnum.KeywordPlanAdGroupError + (*KeywordPlanAdGroupErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanAdGroupErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -194,27 +194,27 @@ var file_google_ads_googleads_v21_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_v21_errors_keyword_plan_ad_group_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 dfcdb359..75f9fcee 100644 --- a/errors/keyword_plan_ad_group_keyword_error.pb.go +++ b/errors/keyword_plan_ad_group_keyword_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_ad_group_keyword_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_ad_group_keyword_error.proto package errors @@ -102,11 +102,11 @@ func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Strin } func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes[0] } func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Number() protoreflect.EnumNumber { @@ -115,7 +115,7 @@ func (x KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) Numbe // Deprecated: Use KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError.Descriptor instead. func (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -140,7 +140,7 @@ func (x *KeywordPlanAdGroupKeywordErrorEnum) String() string { func (*KeywordPlanAdGroupKeywordErrorEnum) ProtoMessage() {} func (x *KeywordPlanAdGroupKeywordErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -153,19 +153,19 @@ func (x *KeywordPlanAdGroupKeywordErrorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use KeywordPlanAdGroupKeywordErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupKeywordErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xd4, 0x02, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,43 +189,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x23, 0x4b, 0x65, 0x79, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = []any{ - (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError - (*KeywordPlanAdGroupKeywordErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanAdGroupKeywordErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = []any{ + (KeywordPlanAdGroupKeywordErrorEnum_KeywordPlanAdGroupKeywordError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanAdGroupKeywordErrorEnum.KeywordPlanAdGroupKeywordError + (*KeywordPlanAdGroupKeywordErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanAdGroupKeywordErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +233,27 @@ var file_google_ads_googleads_v21_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_v21_errors_keyword_plan_ad_group_keyword_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_ad_group_keyword_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_ad_group_keyword_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 88a6e0fc..b6b58be5 100644 --- a/errors/keyword_plan_campaign_error.pb.go +++ b/errors/keyword_plan_campaign_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_campaign_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_campaign_error.proto package errors @@ -94,11 +94,11 @@ func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) String() string { } func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_enumTypes[0] } func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Number() protoreflect.EnumNumber { @@ -107,7 +107,7 @@ func (x KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) Number() protoref // Deprecated: Use KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError.Descriptor instead. func (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *KeywordPlanCampaignErrorEnum) String() string { func (*KeywordPlanCampaignErrorEnum) ProtoMessage() {} func (x *KeywordPlanCampaignErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,18 +145,18 @@ func (x *KeywordPlanCampaignErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaignErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -173,42 +173,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1d, 0x4b, 0x65, 0x79, 0x77, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_goTypes = []any{ - (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError - (*KeywordPlanCampaignErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanCampaignErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_goTypes = []any{ + (KeywordPlanCampaignErrorEnum_KeywordPlanCampaignError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanCampaignErrorEnum.KeywordPlanCampaignError + (*KeywordPlanCampaignErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanCampaignErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -216,27 +216,27 @@ var file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_campaign_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_campaign_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 1057e782..e4e04b6a 100644 --- a/errors/keyword_plan_campaign_keyword_error.pb.go +++ b/errors/keyword_plan_campaign_keyword_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_campaign_keyword_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_campaign_keyword_error.proto package errors @@ -73,11 +73,11 @@ func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Str } func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_enumTypes[0] } func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Number() protoreflect.EnumNumber { @@ -86,7 +86,7 @@ func (x KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) Num // Deprecated: Use KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError.Descriptor instead. func (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111,7 +111,7 @@ func (x *KeywordPlanCampaignKeywordErrorEnum) String() string { func (*KeywordPlanCampaignKeywordErrorEnum) ProtoMessage() {} func (x *KeywordPlanCampaignKeywordErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124,19 +124,19 @@ func (x *KeywordPlanCampaignKeywordErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use KeywordPlanCampaignKeywordErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignKeywordErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x88, 0x01, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,43 +147,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_goTypes = []any{ - (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError - (*KeywordPlanCampaignKeywordErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanCampaignKeywordErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_goTypes = []any{ + (KeywordPlanCampaignKeywordErrorEnum_KeywordPlanCampaignKeywordError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanCampaignKeywordErrorEnum.KeywordPlanCampaignKeywordError + (*KeywordPlanCampaignKeywordErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanCampaignKeywordErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_campaign_keyword_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_campaign_keyword_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 9472e1db..d594cc3e 100644 --- a/errors/keyword_plan_error.pb.go +++ b/errors/keyword_plan_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_error.proto package errors @@ -125,11 +125,11 @@ func (x KeywordPlanErrorEnum_KeywordPlanError) String() string { } func (KeywordPlanErrorEnum_KeywordPlanError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanErrorEnum_KeywordPlanError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_error_proto_enumTypes[0] } func (x KeywordPlanErrorEnum_KeywordPlanError) Number() protoreflect.EnumNumber { @@ -138,7 +138,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_v21_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *KeywordPlanErrorEnum) String() string { func (*KeywordPlanErrorEnum) ProtoMessage() {} func (x *KeywordPlanErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,18 +177,18 @@ func (x *KeywordPlanErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xc8, 0x03, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -219,42 +219,42 @@ var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_goTypes = []any{ - (KeywordPlanErrorEnum_KeywordPlanError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanErrorEnum.KeywordPlanError - (*KeywordPlanErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_error_proto_goTypes = []any{ + (KeywordPlanErrorEnum_KeywordPlanError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanErrorEnum.KeywordPlanError + (*KeywordPlanErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -262,27 +262,27 @@ var file_google_ads_googleads_v21_errors_keyword_plan_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_keyword_plan_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 04bb726d..4cde12bf 100644 --- a/errors/keyword_plan_idea_error.pb.go +++ b/errors/keyword_plan_idea_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/keyword_plan_idea_error.proto +// source: google/ads/googleads/v22/errors/keyword_plan_idea_error.proto package errors @@ -76,11 +76,11 @@ func (x KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) String() string { } func (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_enumTypes[0].Descriptor() } func (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_enumTypes[0] } func (x KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *KeywordPlanIdeaErrorEnum) String() string { func (*KeywordPlanIdeaErrorEnum) ProtoMessage() {} func (x *KeywordPlanIdeaErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *KeywordPlanIdeaErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanIdeaErrorEnum.ProtoReflect.Descriptor instead. func (*KeywordPlanIdeaErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_goTypes = []any{ - (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 0: google.ads.googleads.v21.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError - (*KeywordPlanIdeaErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.KeywordPlanIdeaErrorEnum +var file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_goTypes = []any{ + (KeywordPlanIdeaErrorEnum_KeywordPlanIdeaError)(0), // 0: google.ads.googleads.v22.errors.KeywordPlanIdeaErrorEnum.KeywordPlanIdeaError + (*KeywordPlanIdeaErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.KeywordPlanIdeaErrorEnum } -var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_init() } -func file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_init() { - if File_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_init() } +func file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_init() { + if File_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto = out.File - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_keyword_plan_idea_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto = out.File + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_keyword_plan_idea_error_proto_depIdxs = nil } diff --git a/errors/label_error.pb.go b/errors/label_error.pb.go index 8d82c8c0..25b10251 100644 --- a/errors/label_error.pb.go +++ b/errors/label_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/label_error.proto +// source: google/ads/googleads/v22/errors/label_error.proto package errors @@ -106,11 +106,11 @@ func (x LabelErrorEnum_LabelError) String() string { } func (LabelErrorEnum_LabelError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_label_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_label_error_proto_enumTypes[0].Descriptor() } func (LabelErrorEnum_LabelError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_label_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_label_error_proto_enumTypes[0] } func (x LabelErrorEnum_LabelError) Number() protoreflect.EnumNumber { @@ -119,7 +119,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_v21_errors_label_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_label_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_label_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -143,7 +143,7 @@ func (x *LabelErrorEnum) String() string { func (*LabelErrorEnum) ProtoMessage() {} func (x *LabelErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_label_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_label_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -156,17 +156,17 @@ func (x *LabelErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LabelErrorEnum.ProtoReflect.Descriptor instead. func (*LabelErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_label_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_label_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_label_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_label_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_label_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_label_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -194,42 +194,42 @@ var file_google_ads_googleads_v21_errors_label_error_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_label_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_label_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_label_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_label_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_label_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_label_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_label_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_label_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_label_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_label_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_label_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_label_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_label_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_label_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_label_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_label_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_label_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_label_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_label_error_proto_goTypes = []any{ - (LabelErrorEnum_LabelError)(0), // 0: google.ads.googleads.v21.errors.LabelErrorEnum.LabelError - (*LabelErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.LabelErrorEnum +var file_google_ads_googleads_v22_errors_label_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_label_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_label_error_proto_goTypes = []any{ + (LabelErrorEnum_LabelError)(0), // 0: google.ads.googleads.v22.errors.LabelErrorEnum.LabelError + (*LabelErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.LabelErrorEnum } -var file_google_ads_googleads_v21_errors_label_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -237,27 +237,27 @@ var file_google_ads_googleads_v21_errors_label_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_label_error_proto_init() } -func file_google_ads_googleads_v21_errors_label_error_proto_init() { - if File_google_ads_googleads_v21_errors_label_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_label_error_proto_init() } +func file_google_ads_googleads_v22_errors_label_error_proto_init() { + if File_google_ads_googleads_v22_errors_label_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_label_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_label_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_label_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_label_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_label_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_label_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_label_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_label_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_label_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_label_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_label_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_label_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_label_error_proto = out.File - file_google_ads_googleads_v21_errors_label_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_label_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_label_error_proto = out.File + file_google_ads_googleads_v22_errors_label_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_label_error_proto_depIdxs = nil } diff --git a/errors/language_code_error.pb.go b/errors/language_code_error.pb.go index 6663a46a..d0b632ac 100644 --- a/errors/language_code_error.pb.go +++ b/errors/language_code_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/language_code_error.proto +// source: google/ads/googleads/v22/errors/language_code_error.proto package errors @@ -76,11 +76,11 @@ func (x LanguageCodeErrorEnum_LanguageCodeError) String() string { } func (LanguageCodeErrorEnum_LanguageCodeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_language_code_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_language_code_error_proto_enumTypes[0].Descriptor() } func (LanguageCodeErrorEnum_LanguageCodeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_language_code_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_language_code_error_proto_enumTypes[0] } func (x LanguageCodeErrorEnum_LanguageCodeError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_language_code_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_language_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_language_code_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *LanguageCodeErrorEnum) String() string { func (*LanguageCodeErrorEnum) ProtoMessage() {} func (x *LanguageCodeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_language_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_language_code_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *LanguageCodeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use LanguageCodeErrorEnum.ProtoReflect.Descriptor instead. func (*LanguageCodeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_language_code_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_language_code_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_language_code_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x82, 0x01, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc = str 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x4c, 0x61, 0x6e, 0x67, 0x75, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_language_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_language_code_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_language_code_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_language_code_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_language_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_language_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_language_code_error_proto_goTypes = []any{ - (LanguageCodeErrorEnum_LanguageCodeError)(0), // 0: google.ads.googleads.v21.errors.LanguageCodeErrorEnum.LanguageCodeError - (*LanguageCodeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.LanguageCodeErrorEnum +var file_google_ads_googleads_v22_errors_language_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_language_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_language_code_error_proto_goTypes = []any{ + (LanguageCodeErrorEnum_LanguageCodeError)(0), // 0: google.ads.googleads.v22.errors.LanguageCodeErrorEnum.LanguageCodeError + (*LanguageCodeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.LanguageCodeErrorEnum } -var file_google_ads_googleads_v21_errors_language_code_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_errors_language_code_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_language_code_error_proto_init() } -func file_google_ads_googleads_v21_errors_language_code_error_proto_init() { - if File_google_ads_googleads_v21_errors_language_code_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_language_code_error_proto_init() } +func file_google_ads_googleads_v22_errors_language_code_error_proto_init() { + if File_google_ads_googleads_v22_errors_language_code_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_language_code_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_language_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_language_code_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_language_code_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_language_code_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_language_code_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_language_code_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_language_code_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_language_code_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_language_code_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_language_code_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_language_code_error_proto = out.File - file_google_ads_googleads_v21_errors_language_code_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_language_code_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_language_code_error_proto = out.File + file_google_ads_googleads_v22_errors_language_code_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_language_code_error_proto_depIdxs = nil } diff --git a/errors/list_operation_error.pb.go b/errors/list_operation_error.pb.go index f330a590..cfe52f44 100644 --- a/errors/list_operation_error.pb.go +++ b/errors/list_operation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/list_operation_error.proto +// source: google/ads/googleads/v22/errors/list_operation_error.proto package errors @@ -76,11 +76,11 @@ func (x ListOperationErrorEnum_ListOperationError) String() string { } func (ListOperationErrorEnum_ListOperationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_list_operation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_list_operation_error_proto_enumTypes[0].Descriptor() } func (ListOperationErrorEnum_ListOperationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_list_operation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_list_operation_error_proto_enumTypes[0] } func (x ListOperationErrorEnum_ListOperationError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_list_operation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_list_operation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_list_operation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ListOperationErrorEnum) String() string { func (*ListOperationErrorEnum) ProtoMessage() {} func (x *ListOperationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_list_operation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_list_operation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ListOperationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ListOperationErrorEnum.ProtoReflect.Descriptor instead. func (*ListOperationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_list_operation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_list_operation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7e, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,42 +147,42 @@ var file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_list_operation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_list_operation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_list_operation_error_proto_goTypes = []any{ - (ListOperationErrorEnum_ListOperationError)(0), // 0: google.ads.googleads.v21.errors.ListOperationErrorEnum.ListOperationError - (*ListOperationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ListOperationErrorEnum +var file_google_ads_googleads_v22_errors_list_operation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_list_operation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_list_operation_error_proto_goTypes = []any{ + (ListOperationErrorEnum_ListOperationError)(0), // 0: google.ads.googleads.v22.errors.ListOperationErrorEnum.ListOperationError + (*ListOperationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ListOperationErrorEnum } -var file_google_ads_googleads_v21_errors_list_operation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_errors_list_operation_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_list_operation_error_proto_init() } -func file_google_ads_googleads_v21_errors_list_operation_error_proto_init() { - if File_google_ads_googleads_v21_errors_list_operation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_list_operation_error_proto_init() } +func file_google_ads_googleads_v22_errors_list_operation_error_proto_init() { + if File_google_ads_googleads_v22_errors_list_operation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_list_operation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_list_operation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_list_operation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_list_operation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_list_operation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_list_operation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_list_operation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_list_operation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_list_operation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_list_operation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_list_operation_error_proto = out.File - file_google_ads_googleads_v21_errors_list_operation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_list_operation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_list_operation_error_proto = out.File + file_google_ads_googleads_v22_errors_list_operation_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_list_operation_error_proto_depIdxs = nil } diff --git a/errors/manager_link_error.pb.go b/errors/manager_link_error.pb.go index 95011e79..921d35ad 100644 --- a/errors/manager_link_error.pb.go +++ b/errors/manager_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/manager_link_error.proto +// source: google/ads/googleads/v22/errors/manager_link_error.proto package errors @@ -146,11 +146,11 @@ func (x ManagerLinkErrorEnum_ManagerLinkError) String() string { } func (ManagerLinkErrorEnum_ManagerLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_manager_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_manager_link_error_proto_enumTypes[0].Descriptor() } func (ManagerLinkErrorEnum_ManagerLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_manager_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_manager_link_error_proto_enumTypes[0] } func (x ManagerLinkErrorEnum_ManagerLinkError) Number() protoreflect.EnumNumber { @@ -159,7 +159,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_v21_errors_manager_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_manager_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_manager_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *ManagerLinkErrorEnum) String() string { func (*ManagerLinkErrorEnum) ProtoMessage() {} func (x *ManagerLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_manager_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_manager_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,18 +196,18 @@ func (x *ManagerLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagerLinkErrorEnum.ProtoReflect.Descriptor instead. func (*ManagerLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_manager_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_manager_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x8d, 0x05, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -250,42 +250,42 @@ var file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_manager_link_error_proto_goTypes = []any{ - (ManagerLinkErrorEnum_ManagerLinkError)(0), // 0: google.ads.googleads.v21.errors.ManagerLinkErrorEnum.ManagerLinkError - (*ManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ManagerLinkErrorEnum +var file_google_ads_googleads_v22_errors_manager_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_manager_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_manager_link_error_proto_goTypes = []any{ + (ManagerLinkErrorEnum_ManagerLinkError)(0), // 0: google.ads.googleads.v22.errors.ManagerLinkErrorEnum.ManagerLinkError + (*ManagerLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ManagerLinkErrorEnum } -var file_google_ads_googleads_v21_errors_manager_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -293,27 +293,27 @@ var file_google_ads_googleads_v21_errors_manager_link_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_manager_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_manager_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_manager_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_manager_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_manager_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_manager_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_manager_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_manager_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_manager_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_manager_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_manager_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_manager_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_manager_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_manager_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_manager_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_manager_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_manager_link_error_proto = out.File - file_google_ads_googleads_v21_errors_manager_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_manager_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_manager_link_error_proto = out.File + file_google_ads_googleads_v22_errors_manager_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_manager_link_error_proto_depIdxs = nil } diff --git a/errors/media_bundle_error.pb.go b/errors/media_bundle_error.pb.go index 64755e34..6bea6aa6 100644 --- a/errors/media_bundle_error.pb.go +++ b/errors/media_bundle_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/media_bundle_error.proto +// source: google/ads/googleads/v22/errors/media_bundle_error.proto package errors @@ -156,11 +156,11 @@ func (x MediaBundleErrorEnum_MediaBundleError) String() string { } func (MediaBundleErrorEnum_MediaBundleError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_media_bundle_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_media_bundle_error_proto_enumTypes[0].Descriptor() } func (MediaBundleErrorEnum_MediaBundleError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_media_bundle_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_media_bundle_error_proto_enumTypes[0] } func (x MediaBundleErrorEnum_MediaBundleError) Number() protoreflect.EnumNumber { @@ -169,7 +169,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_v21_errors_media_bundle_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_media_bundle_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_bundle_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -193,7 +193,7 @@ func (x *MediaBundleErrorEnum) String() string { func (*MediaBundleErrorEnum) ProtoMessage() {} func (x *MediaBundleErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_media_bundle_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_bundle_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -206,18 +206,18 @@ func (x *MediaBundleErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaBundleErrorEnum.ProtoReflect.Descriptor instead. func (*MediaBundleErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_media_bundle_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_media_bundle_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb8, 0x05, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -263,42 +263,42 @@ var file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_media_bundle_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_media_bundle_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_media_bundle_error_proto_goTypes = []any{ - (MediaBundleErrorEnum_MediaBundleError)(0), // 0: google.ads.googleads.v21.errors.MediaBundleErrorEnum.MediaBundleError - (*MediaBundleErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MediaBundleErrorEnum +var file_google_ads_googleads_v22_errors_media_bundle_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_media_bundle_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_media_bundle_error_proto_goTypes = []any{ + (MediaBundleErrorEnum_MediaBundleError)(0), // 0: google.ads.googleads.v22.errors.MediaBundleErrorEnum.MediaBundleError + (*MediaBundleErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MediaBundleErrorEnum } -var file_google_ads_googleads_v21_errors_media_bundle_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -306,27 +306,27 @@ var file_google_ads_googleads_v21_errors_media_bundle_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_media_bundle_error_proto_init() } -func file_google_ads_googleads_v21_errors_media_bundle_error_proto_init() { - if File_google_ads_googleads_v21_errors_media_bundle_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_media_bundle_error_proto_init() } +func file_google_ads_googleads_v22_errors_media_bundle_error_proto_init() { + if File_google_ads_googleads_v22_errors_media_bundle_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_bundle_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_bundle_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_media_bundle_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_media_bundle_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_media_bundle_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_media_bundle_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_media_bundle_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_media_bundle_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_media_bundle_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_media_bundle_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_media_bundle_error_proto = out.File - file_google_ads_googleads_v21_errors_media_bundle_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_media_bundle_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_media_bundle_error_proto = out.File + file_google_ads_googleads_v22_errors_media_bundle_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_media_bundle_error_proto_depIdxs = nil } diff --git a/errors/media_file_error.pb.go b/errors/media_file_error.pb.go index cdae1212..7d3c8f79 100644 --- a/errors/media_file_error.pb.go +++ b/errors/media_file_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/media_file_error.proto +// source: google/ads/googleads/v22/errors/media_file_error.proto package errors @@ -160,11 +160,11 @@ func (x MediaFileErrorEnum_MediaFileError) String() string { } func (MediaFileErrorEnum_MediaFileError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_media_file_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_media_file_error_proto_enumTypes[0].Descriptor() } func (MediaFileErrorEnum_MediaFileError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_media_file_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_media_file_error_proto_enumTypes[0] } func (x MediaFileErrorEnum_MediaFileError) Number() protoreflect.EnumNumber { @@ -173,7 +173,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_v21_errors_media_file_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_media_file_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_file_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -197,7 +197,7 @@ func (x *MediaFileErrorEnum) String() string { func (*MediaFileErrorEnum) ProtoMessage() {} func (x *MediaFileErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_media_file_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_file_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -210,18 +210,18 @@ func (x *MediaFileErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaFileErrorEnum.ProtoReflect.Descriptor instead. func (*MediaFileErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_media_file_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_media_file_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_media_file_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x97, 0x06, 0x0a, 0x12, 0x4d, 0x65, + 0x32, 0x32, 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, @@ -273,42 +273,42 @@ var file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x4d, 0x65, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_file_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_file_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_media_file_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_media_file_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_media_file_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_media_file_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_media_file_error_proto_goTypes = []any{ - (MediaFileErrorEnum_MediaFileError)(0), // 0: google.ads.googleads.v21.errors.MediaFileErrorEnum.MediaFileError - (*MediaFileErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MediaFileErrorEnum +var file_google_ads_googleads_v22_errors_media_file_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_media_file_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_media_file_error_proto_goTypes = []any{ + (MediaFileErrorEnum_MediaFileError)(0), // 0: google.ads.googleads.v22.errors.MediaFileErrorEnum.MediaFileError + (*MediaFileErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MediaFileErrorEnum } -var file_google_ads_googleads_v21_errors_media_file_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -316,27 +316,27 @@ var file_google_ads_googleads_v21_errors_media_file_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_media_file_error_proto_init() } -func file_google_ads_googleads_v21_errors_media_file_error_proto_init() { - if File_google_ads_googleads_v21_errors_media_file_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_media_file_error_proto_init() } +func file_google_ads_googleads_v22_errors_media_file_error_proto_init() { + if File_google_ads_googleads_v22_errors_media_file_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_file_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_file_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_file_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_media_file_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_media_file_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_media_file_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_media_file_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_media_file_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_media_file_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_media_file_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_media_file_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_media_file_error_proto = out.File - file_google_ads_googleads_v21_errors_media_file_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_media_file_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_media_file_error_proto = out.File + file_google_ads_googleads_v22_errors_media_file_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_media_file_error_proto_depIdxs = nil } diff --git a/errors/media_upload_error.pb.go b/errors/media_upload_error.pb.go index a07f71c1..aec44be6 100644 --- a/errors/media_upload_error.pb.go +++ b/errors/media_upload_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/media_upload_error.proto +// source: google/ads/googleads/v22/errors/media_upload_error.proto package errors @@ -210,11 +210,11 @@ func (x MediaUploadErrorEnum_MediaUploadError) String() string { } func (MediaUploadErrorEnum_MediaUploadError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_media_upload_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_media_upload_error_proto_enumTypes[0].Descriptor() } func (MediaUploadErrorEnum_MediaUploadError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_media_upload_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_media_upload_error_proto_enumTypes[0] } func (x MediaUploadErrorEnum_MediaUploadError) Number() protoreflect.EnumNumber { @@ -223,7 +223,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_v21_errors_media_upload_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_media_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_upload_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MediaUploadErrorEnum) String() string { func (*MediaUploadErrorEnum) ProtoMessage() {} func (x *MediaUploadErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_media_upload_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_media_upload_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,18 +260,18 @@ func (x *MediaUploadErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaUploadErrorEnum.ProtoReflect.Descriptor instead. func (*MediaUploadErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_media_upload_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_media_upload_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x08, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -345,42 +345,42 @@ var file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_media_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_media_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_media_upload_error_proto_goTypes = []any{ - (MediaUploadErrorEnum_MediaUploadError)(0), // 0: google.ads.googleads.v21.errors.MediaUploadErrorEnum.MediaUploadError - (*MediaUploadErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MediaUploadErrorEnum +var file_google_ads_googleads_v22_errors_media_upload_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_media_upload_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_media_upload_error_proto_goTypes = []any{ + (MediaUploadErrorEnum_MediaUploadError)(0), // 0: google.ads.googleads.v22.errors.MediaUploadErrorEnum.MediaUploadError + (*MediaUploadErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MediaUploadErrorEnum } -var file_google_ads_googleads_v21_errors_media_upload_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -388,27 +388,27 @@ var file_google_ads_googleads_v21_errors_media_upload_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_media_upload_error_proto_init() } -func file_google_ads_googleads_v21_errors_media_upload_error_proto_init() { - if File_google_ads_googleads_v21_errors_media_upload_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_media_upload_error_proto_init() } +func file_google_ads_googleads_v22_errors_media_upload_error_proto_init() { + if File_google_ads_googleads_v22_errors_media_upload_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_media_upload_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_media_upload_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_media_upload_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_media_upload_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_media_upload_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_media_upload_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_media_upload_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_media_upload_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_media_upload_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_media_upload_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_media_upload_error_proto = out.File - file_google_ads_googleads_v21_errors_media_upload_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_media_upload_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_media_upload_error_proto = out.File + file_google_ads_googleads_v22_errors_media_upload_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_media_upload_error_proto_depIdxs = nil } diff --git a/errors/merchant_center_error.pb.go b/errors/merchant_center_error.pb.go index 08843165..0ffa387c 100644 --- a/errors/merchant_center_error.pb.go +++ b/errors/merchant_center_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/merchant_center_error.proto +// source: google/ads/googleads/v22/errors/merchant_center_error.proto package errors @@ -76,11 +76,11 @@ func (x MerchantCenterErrorEnum_MerchantCenterError) String() string { } func (MerchantCenterErrorEnum_MerchantCenterError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_merchant_center_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_merchant_center_error_proto_enumTypes[0].Descriptor() } func (MerchantCenterErrorEnum_MerchantCenterError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_merchant_center_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_merchant_center_error_proto_enumTypes[0] } func (x MerchantCenterErrorEnum_MerchantCenterError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_merchant_center_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_merchant_center_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_merchant_center_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *MerchantCenterErrorEnum) String() string { func (*MerchantCenterErrorEnum) ProtoMessage() {} func (x *MerchantCenterErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_merchant_center_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_merchant_center_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *MerchantCenterErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MerchantCenterErrorEnum.ProtoReflect.Descriptor instead. func (*MerchantCenterErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_merchant_center_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_merchant_center_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_merchant_center_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_merchant_center_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_merchant_center_error_proto_goTypes = []any{ - (MerchantCenterErrorEnum_MerchantCenterError)(0), // 0: google.ads.googleads.v21.errors.MerchantCenterErrorEnum.MerchantCenterError - (*MerchantCenterErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MerchantCenterErrorEnum +var file_google_ads_googleads_v22_errors_merchant_center_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_merchant_center_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_merchant_center_error_proto_goTypes = []any{ + (MerchantCenterErrorEnum_MerchantCenterError)(0), // 0: google.ads.googleads.v22.errors.MerchantCenterErrorEnum.MerchantCenterError + (*MerchantCenterErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MerchantCenterErrorEnum } -var file_google_ads_googleads_v21_errors_merchant_center_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_errors_merchant_center_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_merchant_center_error_proto_init() } -func file_google_ads_googleads_v21_errors_merchant_center_error_proto_init() { - if File_google_ads_googleads_v21_errors_merchant_center_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_merchant_center_error_proto_init() } +func file_google_ads_googleads_v22_errors_merchant_center_error_proto_init() { + if File_google_ads_googleads_v22_errors_merchant_center_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_merchant_center_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_merchant_center_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_merchant_center_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_merchant_center_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_merchant_center_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_merchant_center_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_merchant_center_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_merchant_center_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_merchant_center_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_merchant_center_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_merchant_center_error_proto = out.File - file_google_ads_googleads_v21_errors_merchant_center_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_merchant_center_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_merchant_center_error_proto = out.File + file_google_ads_googleads_v22_errors_merchant_center_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_merchant_center_error_proto_depIdxs = nil } diff --git a/errors/multiplier_error.pb.go b/errors/multiplier_error.pb.go index d8ea4261..1939ddc1 100644 --- a/errors/multiplier_error.pb.go +++ b/errors/multiplier_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/multiplier_error.proto +// source: google/ads/googleads/v22/errors/multiplier_error.proto package errors @@ -118,11 +118,11 @@ func (x MultiplierErrorEnum_MultiplierError) String() string { } func (MultiplierErrorEnum_MultiplierError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_multiplier_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_multiplier_error_proto_enumTypes[0].Descriptor() } func (MultiplierErrorEnum_MultiplierError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_multiplier_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_multiplier_error_proto_enumTypes[0] } func (x MultiplierErrorEnum_MultiplierError) Number() protoreflect.EnumNumber { @@ -131,7 +131,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_v21_errors_multiplier_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_multiplier_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_multiplier_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *MultiplierErrorEnum) String() string { func (*MultiplierErrorEnum) ProtoMessage() {} func (x *MultiplierErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_multiplier_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_multiplier_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,18 +168,18 @@ func (x *MultiplierErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MultiplierErrorEnum.ProtoReflect.Descriptor instead. func (*MultiplierErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_multiplier_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_multiplier_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xcf, 0x04, 0x0a, 0x13, 0x4d, 0x75, + 0x32, 0x32, 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, @@ -218,42 +218,42 @@ var file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_multiplier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_multiplier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_multiplier_error_proto_goTypes = []any{ - (MultiplierErrorEnum_MultiplierError)(0), // 0: google.ads.googleads.v21.errors.MultiplierErrorEnum.MultiplierError - (*MultiplierErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MultiplierErrorEnum +var file_google_ads_googleads_v22_errors_multiplier_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_multiplier_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_multiplier_error_proto_goTypes = []any{ + (MultiplierErrorEnum_MultiplierError)(0), // 0: google.ads.googleads.v22.errors.MultiplierErrorEnum.MultiplierError + (*MultiplierErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MultiplierErrorEnum } -var file_google_ads_googleads_v21_errors_multiplier_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -261,27 +261,27 @@ var file_google_ads_googleads_v21_errors_multiplier_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_multiplier_error_proto_init() } -func file_google_ads_googleads_v21_errors_multiplier_error_proto_init() { - if File_google_ads_googleads_v21_errors_multiplier_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_multiplier_error_proto_init() } +func file_google_ads_googleads_v22_errors_multiplier_error_proto_init() { + if File_google_ads_googleads_v22_errors_multiplier_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_multiplier_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_multiplier_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_multiplier_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_multiplier_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_multiplier_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_multiplier_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_multiplier_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_multiplier_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_multiplier_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_multiplier_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_multiplier_error_proto = out.File - file_google_ads_googleads_v21_errors_multiplier_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_multiplier_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_multiplier_error_proto = out.File + file_google_ads_googleads_v22_errors_multiplier_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_multiplier_error_proto_depIdxs = nil } diff --git a/errors/mutate_error.pb.go b/errors/mutate_error.pb.go index 8e8e5f41..4c75ac40 100644 --- a/errors/mutate_error.pb.go +++ b/errors/mutate_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/mutate_error.proto +// source: google/ads/googleads/v22/errors/mutate_error.proto package errors @@ -105,11 +105,11 @@ func (x MutateErrorEnum_MutateError) String() string { } func (MutateErrorEnum_MutateError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_mutate_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_mutate_error_proto_enumTypes[0].Descriptor() } func (MutateErrorEnum_MutateError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_mutate_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_mutate_error_proto_enumTypes[0] } func (x MutateErrorEnum_MutateError) Number() protoreflect.EnumNumber { @@ -118,7 +118,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_v21_errors_mutate_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_mutate_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_mutate_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142,7 +142,7 @@ func (x *MutateErrorEnum) String() string { func (*MutateErrorEnum) ProtoMessage() {} func (x *MutateErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_mutate_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_mutate_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155,17 +155,17 @@ func (x *MutateErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateErrorEnum.ProtoReflect.Descriptor instead. func (*MutateErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_mutate_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_mutate_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_mutate_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -190,42 +190,42 @@ var file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_mutate_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_mutate_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_mutate_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_mutate_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_mutate_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_mutate_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_mutate_error_proto_goTypes = []any{ - (MutateErrorEnum_MutateError)(0), // 0: google.ads.googleads.v21.errors.MutateErrorEnum.MutateError - (*MutateErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.MutateErrorEnum +var file_google_ads_googleads_v22_errors_mutate_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_mutate_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_mutate_error_proto_goTypes = []any{ + (MutateErrorEnum_MutateError)(0), // 0: google.ads.googleads.v22.errors.MutateErrorEnum.MutateError + (*MutateErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.MutateErrorEnum } -var file_google_ads_googleads_v21_errors_mutate_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,27 +233,27 @@ var file_google_ads_googleads_v21_errors_mutate_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_mutate_error_proto_init() } -func file_google_ads_googleads_v21_errors_mutate_error_proto_init() { - if File_google_ads_googleads_v21_errors_mutate_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_mutate_error_proto_init() } +func file_google_ads_googleads_v22_errors_mutate_error_proto_init() { + if File_google_ads_googleads_v22_errors_mutate_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_mutate_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_mutate_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_mutate_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_mutate_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_mutate_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_mutate_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_mutate_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_mutate_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_mutate_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_mutate_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_mutate_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_mutate_error_proto = out.File - file_google_ads_googleads_v21_errors_mutate_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_mutate_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_mutate_error_proto = out.File + file_google_ads_googleads_v22_errors_mutate_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 55a699ae..beb1d4ac 100644 --- a/errors/new_resource_creation_error.pb.go +++ b/errors/new_resource_creation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/new_resource_creation_error.proto +// source: google/ads/googleads/v22/errors/new_resource_creation_error.proto package errors @@ -81,11 +81,11 @@ func (x NewResourceCreationErrorEnum_NewResourceCreationError) String() string { } func (NewResourceCreationErrorEnum_NewResourceCreationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_enumTypes[0].Descriptor() } func (NewResourceCreationErrorEnum_NewResourceCreationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_enumTypes[0] } func (x NewResourceCreationErrorEnum_NewResourceCreationError) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x NewResourceCreationErrorEnum_NewResourceCreationError) Number() protoref // Deprecated: Use NewResourceCreationErrorEnum_NewResourceCreationError.Descriptor instead. func (NewResourceCreationErrorEnum_NewResourceCreationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *NewResourceCreationErrorEnum) String() string { func (*NewResourceCreationErrorEnum) ProtoMessage() {} func (x *NewResourceCreationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *NewResourceCreationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NewResourceCreationErrorEnum.ProtoReflect.Descriptor instead. func (*NewResourceCreationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_new_resource_creation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_new_resource_creation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_goTypes = []any{ - (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 0: google.ads.googleads.v21.errors.NewResourceCreationErrorEnum.NewResourceCreationError - (*NewResourceCreationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.NewResourceCreationErrorEnum +var file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_goTypes = []any{ + (NewResourceCreationErrorEnum_NewResourceCreationError)(0), // 0: google.ads.googleads.v22.errors.NewResourceCreationErrorEnum.NewResourceCreationError + (*NewResourceCreationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.NewResourceCreationErrorEnum } -var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_init() } -func file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_init() { - if File_google_ads_googleads_v21_errors_new_resource_creation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_init() } +func file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_init() { + if File_google_ads_googleads_v22_errors_new_resource_creation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_new_resource_creation_error_proto = out.File - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_new_resource_creation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_new_resource_creation_error_proto = out.File + file_google_ads_googleads_v22_errors_new_resource_creation_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 12cff2b4..7ef42461 100644 --- a/errors/not_allowlisted_error.pb.go +++ b/errors/not_allowlisted_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/not_allowlisted_error.proto +// source: google/ads/googleads/v22/errors/not_allowlisted_error.proto package errors @@ -72,11 +72,11 @@ func (x NotAllowlistedErrorEnum_NotAllowlistedError) String() string { } func (NotAllowlistedErrorEnum_NotAllowlistedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_enumTypes[0].Descriptor() } func (NotAllowlistedErrorEnum_NotAllowlistedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_enumTypes[0] } func (x NotAllowlistedErrorEnum_NotAllowlistedError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *NotAllowlistedErrorEnum) String() string { func (*NotAllowlistedErrorEnum) ProtoMessage() {} func (x *NotAllowlistedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *NotAllowlistedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NotAllowlistedErrorEnum.ProtoReflect.Descriptor instead. func (*NotAllowlistedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_not_allowlisted_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_not_allowlisted_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7d, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_goTypes = []any{ - (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 0: google.ads.googleads.v21.errors.NotAllowlistedErrorEnum.NotAllowlistedError - (*NotAllowlistedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.NotAllowlistedErrorEnum +var file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_goTypes = []any{ + (NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 0: google.ads.googleads.v22.errors.NotAllowlistedErrorEnum.NotAllowlistedError + (*NotAllowlistedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.NotAllowlistedErrorEnum } -var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -186,27 +186,27 @@ var file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_init() } -func file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_init() { - if File_google_ads_googleads_v21_errors_not_allowlisted_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_init() } +func file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_init() { + if File_google_ads_googleads_v22_errors_not_allowlisted_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_not_allowlisted_error_proto = out.File - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_not_allowlisted_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_not_allowlisted_error_proto = out.File + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_not_allowlisted_error_proto_depIdxs = nil } diff --git a/errors/not_empty_error.pb.go b/errors/not_empty_error.pb.go index 22cb1185..1484615c 100644 --- a/errors/not_empty_error.pb.go +++ b/errors/not_empty_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/not_empty_error.proto +// source: google/ads/googleads/v22/errors/not_empty_error.proto package errors @@ -72,11 +72,11 @@ func (x NotEmptyErrorEnum_NotEmptyError) String() string { } func (NotEmptyErrorEnum_NotEmptyError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_not_empty_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_not_empty_error_proto_enumTypes[0].Descriptor() } func (NotEmptyErrorEnum_NotEmptyError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_not_empty_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_not_empty_error_proto_enumTypes[0] } func (x NotEmptyErrorEnum_NotEmptyError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_not_empty_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_not_empty_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_not_empty_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *NotEmptyErrorEnum) String() string { func (*NotEmptyErrorEnum) ProtoMessage() {} func (x *NotEmptyErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_not_empty_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_not_empty_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,60 +122,60 @@ func (x *NotEmptyErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NotEmptyErrorEnum.ProtoReflect.Descriptor instead. func (*NotEmptyErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_not_empty_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_not_empty_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x52, 0x0a, 0x11, 0x4e, 0x6f, 0x74, 0x45, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, - 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, + 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_not_empty_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_not_empty_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_not_empty_error_proto_goTypes = []any{ - (NotEmptyErrorEnum_NotEmptyError)(0), // 0: google.ads.googleads.v21.errors.NotEmptyErrorEnum.NotEmptyError - (*NotEmptyErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.NotEmptyErrorEnum +var file_google_ads_googleads_v22_errors_not_empty_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_not_empty_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_not_empty_error_proto_goTypes = []any{ + (NotEmptyErrorEnum_NotEmptyError)(0), // 0: google.ads.googleads.v22.errors.NotEmptyErrorEnum.NotEmptyError + (*NotEmptyErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.NotEmptyErrorEnum } -var file_google_ads_googleads_v21_errors_not_empty_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_errors_not_empty_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_not_empty_error_proto_init() } -func file_google_ads_googleads_v21_errors_not_empty_error_proto_init() { - if File_google_ads_googleads_v21_errors_not_empty_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_not_empty_error_proto_init() } +func file_google_ads_googleads_v22_errors_not_empty_error_proto_init() { + if File_google_ads_googleads_v22_errors_not_empty_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_not_empty_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_not_empty_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_not_empty_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_not_empty_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_not_empty_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_not_empty_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_not_empty_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_not_empty_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_not_empty_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_not_empty_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_not_empty_error_proto = out.File - file_google_ads_googleads_v21_errors_not_empty_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_not_empty_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_not_empty_error_proto = out.File + file_google_ads_googleads_v22_errors_not_empty_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_not_empty_error_proto_depIdxs = nil } diff --git a/errors/null_error.pb.go b/errors/null_error.pb.go index 72c7085c..169c776c 100644 --- a/errors/null_error.pb.go +++ b/errors/null_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/null_error.proto +// source: google/ads/googleads/v22/errors/null_error.proto package errors @@ -72,11 +72,11 @@ func (x NullErrorEnum_NullError) String() string { } func (NullErrorEnum_NullError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_null_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_null_error_proto_enumTypes[0].Descriptor() } func (NullErrorEnum_NullError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_null_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_null_error_proto_enumTypes[0] } func (x NullErrorEnum_NullError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_null_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_null_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_null_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *NullErrorEnum) String() string { func (*NullErrorEnum) ProtoMessage() {} func (x *NullErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_null_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_null_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *NullErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use NullErrorEnum.ProtoReflect.Descriptor instead. func (*NullErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_null_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_null_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_null_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_null_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_null_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_null_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -140,41 +140,41 @@ var file_google_ads_googleads_v21_errors_null_error_proto_rawDesc = string([]byt 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x0e, 0x4e, 0x75, 0x6c, 0x6c, 0x45, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_null_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_null_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_null_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_null_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_null_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_null_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_null_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_null_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_null_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_null_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_null_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_null_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_null_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_null_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_null_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_null_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_null_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_null_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_null_error_proto_goTypes = []any{ - (NullErrorEnum_NullError)(0), // 0: google.ads.googleads.v21.errors.NullErrorEnum.NullError - (*NullErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.NullErrorEnum +var file_google_ads_googleads_v22_errors_null_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_null_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_null_error_proto_goTypes = []any{ + (NullErrorEnum_NullError)(0), // 0: google.ads.googleads.v22.errors.NullErrorEnum.NullError + (*NullErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.NullErrorEnum } -var file_google_ads_googleads_v21_errors_null_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_errors_null_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_null_error_proto_init() } -func file_google_ads_googleads_v21_errors_null_error_proto_init() { - if File_google_ads_googleads_v21_errors_null_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_null_error_proto_init() } +func file_google_ads_googleads_v22_errors_null_error_proto_init() { + if File_google_ads_googleads_v22_errors_null_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_null_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_null_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_null_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_null_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_null_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_null_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_null_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_null_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_null_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_null_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_null_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_null_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_null_error_proto = out.File - file_google_ads_googleads_v21_errors_null_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_null_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_null_error_proto = out.File + file_google_ads_googleads_v22_errors_null_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 bc31a6a4..07a7d985 100644 --- a/errors/offline_user_data_job_error.pb.go +++ b/errors/offline_user_data_job_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/offline_user_data_job_error.proto +// source: google/ads/googleads/v22/errors/offline_user_data_job_error.proto package errors @@ -243,11 +243,11 @@ func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) String() string { } func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_enumTypes[0].Descriptor() } func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_enumTypes[0] } func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Number() protoreflect.EnumNumber { @@ -256,7 +256,7 @@ func (x OfflineUserDataJobErrorEnum_OfflineUserDataJobError) Number() protorefle // Deprecated: Use OfflineUserDataJobErrorEnum_OfflineUserDataJobError.Descriptor instead. func (OfflineUserDataJobErrorEnum_OfflineUserDataJobError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible offline user data job errors. @@ -268,7 +268,7 @@ type OfflineUserDataJobErrorEnum struct { func (x *OfflineUserDataJobErrorEnum) Reset() { *x = OfflineUserDataJobErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (x *OfflineUserDataJobErrorEnum) String() string { func (*OfflineUserDataJobErrorEnum) ProtoMessage() {} func (x *OfflineUserDataJobErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,18 +293,18 @@ func (x *OfflineUserDataJobErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobErrorEnum.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_offline_user_data_job_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_offline_user_data_job_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0xd4, 0x0a, 0x0a, 0x17, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, @@ -394,43 +394,43 @@ var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_goTypes = []any{ - (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 0: google.ads.googleads.v21.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError - (*OfflineUserDataJobErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.OfflineUserDataJobErrorEnum +var file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_goTypes = []any{ + (OfflineUserDataJobErrorEnum_OfflineUserDataJobError)(0), // 0: google.ads.googleads.v22.errors.OfflineUserDataJobErrorEnum.OfflineUserDataJobError + (*OfflineUserDataJobErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.OfflineUserDataJobErrorEnum } -var file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -438,27 +438,27 @@ var file_google_ads_googleads_v21_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_v21_errors_offline_user_data_job_error_proto_init() } -func file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_init() { - if File_google_ads_googleads_v21_errors_offline_user_data_job_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_init() } +func file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_init() { + if File_google_ads_googleads_v22_errors_offline_user_data_job_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_offline_user_data_job_error_proto = out.File - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_offline_user_data_job_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_offline_user_data_job_error_proto = out.File + file_google_ads_googleads_v22_errors_offline_user_data_job_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 d7da502c..4cb5d655 100644 --- a/errors/operation_access_denied_error.pb.go +++ b/errors/operation_access_denied_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/operation_access_denied_error.proto +// source: google/ads/googleads/v22/errors/operation_access_denied_error.proto package errors @@ -108,11 +108,11 @@ func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) String() stri } func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_enumTypes[0].Descriptor() } func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_enumTypes[0] } func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Number() protoreflect.EnumNumber { @@ -121,7 +121,7 @@ func (x OperationAccessDeniedErrorEnum_OperationAccessDeniedError) Number() prot // Deprecated: Use OperationAccessDeniedErrorEnum_OperationAccessDeniedError.Descriptor instead. func (OperationAccessDeniedErrorEnum_OperationAccessDeniedError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *OperationAccessDeniedErrorEnum) String() string { func (*OperationAccessDeniedErrorEnum) ProtoMessage() {} func (x *OperationAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,18 +158,18 @@ func (x *OperationAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OperationAccessDeniedErrorEnum.ProtoReflect.Descriptor instead. func (*OperationAccessDeniedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_operation_access_denied_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_operation_access_denied_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -203,42 +203,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1f, 0x4f, 0x70, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_goTypes = []any{ - (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 0: google.ads.googleads.v21.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError - (*OperationAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.OperationAccessDeniedErrorEnum +var file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_goTypes = []any{ + (OperationAccessDeniedErrorEnum_OperationAccessDeniedError)(0), // 0: google.ads.googleads.v22.errors.OperationAccessDeniedErrorEnum.OperationAccessDeniedError + (*OperationAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.OperationAccessDeniedErrorEnum } -var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -246,27 +246,27 @@ var file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_init() } -func file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_init() { - if File_google_ads_googleads_v21_errors_operation_access_denied_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_init() } +func file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_init() { + if File_google_ads_googleads_v22_errors_operation_access_denied_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_operation_access_denied_error_proto = out.File - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_operation_access_denied_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_operation_access_denied_error_proto = out.File + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_operation_access_denied_error_proto_depIdxs = nil } diff --git a/errors/operator_error.pb.go b/errors/operator_error.pb.go index 7f1bbeec..757304ec 100644 --- a/errors/operator_error.pb.go +++ b/errors/operator_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/operator_error.proto +// source: google/ads/googleads/v22/errors/operator_error.proto package errors @@ -72,11 +72,11 @@ func (x OperatorErrorEnum_OperatorError) String() string { } func (OperatorErrorEnum_OperatorError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_operator_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_operator_error_proto_enumTypes[0].Descriptor() } func (OperatorErrorEnum_OperatorError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_operator_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_operator_error_proto_enumTypes[0] } func (x OperatorErrorEnum_OperatorError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_operator_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_operator_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_operator_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *OperatorErrorEnum) String() string { func (*OperatorErrorEnum) ProtoMessage() {} func (x *OperatorErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_operator_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_operator_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,17 +122,17 @@ func (x *OperatorErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatorErrorEnum.ProtoReflect.Descriptor instead. func (*OperatorErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_operator_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_operator_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_operator_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_operator_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_operator_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,42 +141,42 @@ var file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_operator_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_operator_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_operator_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_operator_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_operator_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_operator_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_operator_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_operator_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_operator_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_operator_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_operator_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_operator_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_operator_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_operator_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_operator_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_operator_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_operator_error_proto_goTypes = []any{ - (OperatorErrorEnum_OperatorError)(0), // 0: google.ads.googleads.v21.errors.OperatorErrorEnum.OperatorError - (*OperatorErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.OperatorErrorEnum +var file_google_ads_googleads_v22_errors_operator_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_operator_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_operator_error_proto_goTypes = []any{ + (OperatorErrorEnum_OperatorError)(0), // 0: google.ads.googleads.v22.errors.OperatorErrorEnum.OperatorError + (*OperatorErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.OperatorErrorEnum } -var file_google_ads_googleads_v21_errors_operator_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_errors_operator_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_operator_error_proto_init() } -func file_google_ads_googleads_v21_errors_operator_error_proto_init() { - if File_google_ads_googleads_v21_errors_operator_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_operator_error_proto_init() } +func file_google_ads_googleads_v22_errors_operator_error_proto_init() { + if File_google_ads_googleads_v22_errors_operator_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_operator_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_operator_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_operator_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_operator_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_operator_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_operator_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_operator_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_operator_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_operator_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_operator_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_operator_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_operator_error_proto = out.File - file_google_ads_googleads_v21_errors_operator_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_operator_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_operator_error_proto = out.File + file_google_ads_googleads_v22_errors_operator_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_operator_error_proto_depIdxs = nil } diff --git a/errors/partial_failure_error.pb.go b/errors/partial_failure_error.pb.go index 552969c8..ecaf8cf0 100644 --- a/errors/partial_failure_error.pb.go +++ b/errors/partial_failure_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/partial_failure_error.proto +// source: google/ads/googleads/v22/errors/partial_failure_error.proto package errors @@ -73,11 +73,11 @@ func (x PartialFailureErrorEnum_PartialFailureError) String() string { } func (PartialFailureErrorEnum_PartialFailureError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_partial_failure_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_partial_failure_error_proto_enumTypes[0].Descriptor() } func (PartialFailureErrorEnum_PartialFailureError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_partial_failure_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_partial_failure_error_proto_enumTypes[0] } func (x PartialFailureErrorEnum_PartialFailureError) Number() protoreflect.EnumNumber { @@ -86,7 +86,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_v21_errors_partial_failure_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_partial_failure_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_partial_failure_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *PartialFailureErrorEnum) String() string { func (*PartialFailureErrorEnum) ProtoMessage() {} func (x *PartialFailureErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_partial_failure_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_partial_failure_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *PartialFailureErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PartialFailureErrorEnum.ProtoReflect.Descriptor instead. func (*PartialFailureErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_partial_failure_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_partial_failure_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x18, 0x50, 0x61, 0x72, 0x74, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_partial_failure_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_partial_failure_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_partial_failure_error_proto_goTypes = []any{ - (PartialFailureErrorEnum_PartialFailureError)(0), // 0: google.ads.googleads.v21.errors.PartialFailureErrorEnum.PartialFailureError - (*PartialFailureErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.PartialFailureErrorEnum +var file_google_ads_googleads_v22_errors_partial_failure_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_partial_failure_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_partial_failure_error_proto_goTypes = []any{ + (PartialFailureErrorEnum_PartialFailureError)(0), // 0: google.ads.googleads.v22.errors.PartialFailureErrorEnum.PartialFailureError + (*PartialFailureErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.PartialFailureErrorEnum } -var file_google_ads_googleads_v21_errors_partial_failure_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_errors_partial_failure_error_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_partial_failure_error_proto_init() } -func file_google_ads_googleads_v21_errors_partial_failure_error_proto_init() { - if File_google_ads_googleads_v21_errors_partial_failure_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_partial_failure_error_proto_init() } +func file_google_ads_googleads_v22_errors_partial_failure_error_proto_init() { + if File_google_ads_googleads_v22_errors_partial_failure_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_partial_failure_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_partial_failure_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_partial_failure_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_partial_failure_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_partial_failure_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_partial_failure_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_partial_failure_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_partial_failure_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_partial_failure_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_partial_failure_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_partial_failure_error_proto = out.File - file_google_ads_googleads_v21_errors_partial_failure_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_partial_failure_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_partial_failure_error_proto = out.File + file_google_ads_googleads_v22_errors_partial_failure_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_partial_failure_error_proto_depIdxs = nil } diff --git a/errors/payments_account_error.pb.go b/errors/payments_account_error.pb.go index 65cd5b24..5d5ada78 100644 --- a/errors/payments_account_error.pb.go +++ b/errors/payments_account_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/payments_account_error.proto +// source: google/ads/googleads/v22/errors/payments_account_error.proto package errors @@ -72,11 +72,11 @@ func (x PaymentsAccountErrorEnum_PaymentsAccountError) String() string { } func (PaymentsAccountErrorEnum_PaymentsAccountError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_payments_account_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_payments_account_error_proto_enumTypes[0].Descriptor() } func (PaymentsAccountErrorEnum_PaymentsAccountError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_payments_account_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_payments_account_error_proto_enumTypes[0] } func (x PaymentsAccountErrorEnum_PaymentsAccountError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_payments_account_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_payments_account_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_payments_account_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *PaymentsAccountErrorEnum) String() string { func (*PaymentsAccountErrorEnum) ProtoMessage() {} func (x *PaymentsAccountErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_payments_account_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_payments_account_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *PaymentsAccountErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PaymentsAccountErrorEnum.ProtoReflect.Descriptor instead. func (*PaymentsAccountErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_payments_account_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_payments_account_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_payments_account_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_payments_account_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_payments_account_error_proto_goTypes = []any{ - (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 0: google.ads.googleads.v21.errors.PaymentsAccountErrorEnum.PaymentsAccountError - (*PaymentsAccountErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.PaymentsAccountErrorEnum +var file_google_ads_googleads_v22_errors_payments_account_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_payments_account_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_payments_account_error_proto_goTypes = []any{ + (PaymentsAccountErrorEnum_PaymentsAccountError)(0), // 0: google.ads.googleads.v22.errors.PaymentsAccountErrorEnum.PaymentsAccountError + (*PaymentsAccountErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.PaymentsAccountErrorEnum } -var file_google_ads_googleads_v21_errors_payments_account_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -186,27 +186,27 @@ var file_google_ads_googleads_v21_errors_payments_account_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_payments_account_error_proto_init() } -func file_google_ads_googleads_v21_errors_payments_account_error_proto_init() { - if File_google_ads_googleads_v21_errors_payments_account_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_payments_account_error_proto_init() } +func file_google_ads_googleads_v22_errors_payments_account_error_proto_init() { + if File_google_ads_googleads_v22_errors_payments_account_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_payments_account_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_payments_account_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_payments_account_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_payments_account_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_payments_account_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_payments_account_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_payments_account_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_payments_account_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_payments_account_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_payments_account_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_payments_account_error_proto = out.File - file_google_ads_googleads_v21_errors_payments_account_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_payments_account_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_payments_account_error_proto = out.File + file_google_ads_googleads_v22_errors_payments_account_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_payments_account_error_proto_depIdxs = nil } diff --git a/errors/policy_finding_error.pb.go b/errors/policy_finding_error.pb.go index a0a4623c..b60cb20c 100644 --- a/errors/policy_finding_error.pb.go +++ b/errors/policy_finding_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/policy_finding_error.proto +// source: google/ads/googleads/v22/errors/policy_finding_error.proto package errors @@ -77,11 +77,11 @@ func (x PolicyFindingErrorEnum_PolicyFindingError) String() string { } func (PolicyFindingErrorEnum_PolicyFindingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_policy_finding_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_policy_finding_error_proto_enumTypes[0].Descriptor() } func (PolicyFindingErrorEnum_PolicyFindingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_policy_finding_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_policy_finding_error_proto_enumTypes[0] } func (x PolicyFindingErrorEnum_PolicyFindingError) Number() protoreflect.EnumNumber { @@ -90,7 +90,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_v21_errors_policy_finding_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_policy_finding_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_finding_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -114,7 +114,7 @@ func (x *PolicyFindingErrorEnum) String() string { func (*PolicyFindingErrorEnum) ProtoMessage() {} func (x *PolicyFindingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_policy_finding_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_finding_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -127,18 +127,18 @@ func (x *PolicyFindingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyFindingErrorEnum.ProtoReflect.Descriptor instead. func (*PolicyFindingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_policy_finding_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_policy_finding_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x7c, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,42 +148,42 @@ var file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_policy_finding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_policy_finding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_policy_finding_error_proto_goTypes = []any{ - (PolicyFindingErrorEnum_PolicyFindingError)(0), // 0: google.ads.googleads.v21.errors.PolicyFindingErrorEnum.PolicyFindingError - (*PolicyFindingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.PolicyFindingErrorEnum +var file_google_ads_googleads_v22_errors_policy_finding_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_policy_finding_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_policy_finding_error_proto_goTypes = []any{ + (PolicyFindingErrorEnum_PolicyFindingError)(0), // 0: google.ads.googleads.v22.errors.PolicyFindingErrorEnum.PolicyFindingError + (*PolicyFindingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.PolicyFindingErrorEnum } -var file_google_ads_googleads_v21_errors_policy_finding_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -191,27 +191,27 @@ var file_google_ads_googleads_v21_errors_policy_finding_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_policy_finding_error_proto_init() } -func file_google_ads_googleads_v21_errors_policy_finding_error_proto_init() { - if File_google_ads_googleads_v21_errors_policy_finding_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_policy_finding_error_proto_init() } +func file_google_ads_googleads_v22_errors_policy_finding_error_proto_init() { + if File_google_ads_googleads_v22_errors_policy_finding_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_finding_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_finding_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_policy_finding_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_policy_finding_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_policy_finding_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_policy_finding_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_policy_finding_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_policy_finding_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_policy_finding_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_policy_finding_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_policy_finding_error_proto = out.File - file_google_ads_googleads_v21_errors_policy_finding_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_policy_finding_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_policy_finding_error_proto = out.File + file_google_ads_googleads_v22_errors_policy_finding_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 8f16a658..20aef097 100644 --- a/errors/policy_validation_parameter_error.pb.go +++ b/errors/policy_validation_parameter_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/policy_validation_parameter_error.proto +// source: google/ads/googleads/v22/errors/policy_validation_parameter_error.proto package errors @@ -81,11 +81,11 @@ func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Strin } func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_enumTypes[0].Descriptor() } func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_enumTypes[0] } func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Number() protoreflect.EnumNumber { @@ -94,7 +94,7 @@ func (x PolicyValidationParameterErrorEnum_PolicyValidationParameterError) Numbe // Deprecated: Use PolicyValidationParameterErrorEnum_PolicyValidationParameterError.Descriptor instead. func (PolicyValidationParameterErrorEnum_PolicyValidationParameterError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *PolicyValidationParameterErrorEnum) String() string { func (*PolicyValidationParameterErrorEnum) ProtoMessage() {} func (x *PolicyValidationParameterErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,19 +131,19 @@ func (x *PolicyValidationParameterErrorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use PolicyValidationParameterErrorEnum.ProtoReflect.Descriptor instead. func (*PolicyValidationParameterErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa2, 0x02, 0x0a, 0x22, 0x50, + 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_goTypes = []any{ - (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 0: google.ads.googleads.v21.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError - (*PolicyValidationParameterErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.PolicyValidationParameterErrorEnum +var file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_goTypes = []any{ + (PolicyValidationParameterErrorEnum_PolicyValidationParameterError)(0), // 0: google.ads.googleads.v22.errors.PolicyValidationParameterErrorEnum.PolicyValidationParameterError + (*PolicyValidationParameterErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.PolicyValidationParameterErrorEnum } -var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_init() } -func file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_init() { - if File_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_init() } +func file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_init() { + if File_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto = out.File - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_policy_validation_parameter_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto = out.File + file_google_ads_googleads_v22_errors_policy_validation_parameter_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 1b2467a6..9f334dc0 100644 --- a/errors/policy_violation_error.pb.go +++ b/errors/policy_violation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/policy_violation_error.proto +// source: google/ads/googleads/v22/errors/policy_violation_error.proto package errors @@ -72,11 +72,11 @@ func (x PolicyViolationErrorEnum_PolicyViolationError) String() string { } func (PolicyViolationErrorEnum_PolicyViolationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_policy_violation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_policy_violation_error_proto_enumTypes[0].Descriptor() } func (PolicyViolationErrorEnum_PolicyViolationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_policy_violation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_policy_violation_error_proto_enumTypes[0] } func (x PolicyViolationErrorEnum_PolicyViolationError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_policy_violation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_policy_violation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_violation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *PolicyViolationErrorEnum) String() string { func (*PolicyViolationErrorEnum) ProtoMessage() {} func (x *PolicyViolationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_policy_violation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_policy_violation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *PolicyViolationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use PolicyViolationErrorEnum.ProtoReflect.Descriptor instead. func (*PolicyViolationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_policy_violation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_policy_violation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,42 +142,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x50, 0x6f, 0x6c, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_policy_violation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_policy_violation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_policy_violation_error_proto_goTypes = []any{ - (PolicyViolationErrorEnum_PolicyViolationError)(0), // 0: google.ads.googleads.v21.errors.PolicyViolationErrorEnum.PolicyViolationError - (*PolicyViolationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.PolicyViolationErrorEnum +var file_google_ads_googleads_v22_errors_policy_violation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_policy_violation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_policy_violation_error_proto_goTypes = []any{ + (PolicyViolationErrorEnum_PolicyViolationError)(0), // 0: google.ads.googleads.v22.errors.PolicyViolationErrorEnum.PolicyViolationError + (*PolicyViolationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.PolicyViolationErrorEnum } -var file_google_ads_googleads_v21_errors_policy_violation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -185,27 +185,27 @@ var file_google_ads_googleads_v21_errors_policy_violation_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_policy_violation_error_proto_init() } -func file_google_ads_googleads_v21_errors_policy_violation_error_proto_init() { - if File_google_ads_googleads_v21_errors_policy_violation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_policy_violation_error_proto_init() } +func file_google_ads_googleads_v22_errors_policy_violation_error_proto_init() { + if File_google_ads_googleads_v22_errors_policy_violation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_policy_violation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_policy_violation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_policy_violation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_policy_violation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_policy_violation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_policy_violation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_policy_violation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_policy_violation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_policy_violation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_policy_violation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_policy_violation_error_proto = out.File - file_google_ads_googleads_v21_errors_policy_violation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_policy_violation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_policy_violation_error_proto = out.File + file_google_ads_googleads_v22_errors_policy_violation_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_policy_violation_error_proto_depIdxs = nil } diff --git a/errors/product_link_error.pb.go b/errors/product_link_error.pb.go index 91cb63c2..117463cb 100644 --- a/errors/product_link_error.pb.go +++ b/errors/product_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/product_link_error.proto +// source: google/ads/googleads/v22/errors/product_link_error.proto package errors @@ -85,11 +85,11 @@ func (x ProductLinkErrorEnum_ProductLinkError) String() string { } func (ProductLinkErrorEnum_ProductLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_product_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_product_link_error_proto_enumTypes[0].Descriptor() } func (ProductLinkErrorEnum_ProductLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_product_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_product_link_error_proto_enumTypes[0] } func (x ProductLinkErrorEnum_ProductLinkError) Number() protoreflect.EnumNumber { @@ -98,7 +98,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_v21_errors_product_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_product_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_product_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *ProductLinkErrorEnum) String() string { func (*ProductLinkErrorEnum) ProtoMessage() {} func (x *ProductLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_product_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_product_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,18 +135,18 @@ func (x *ProductLinkErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLinkErrorEnum.ProtoReflect.Descriptor instead. func (*ProductLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_product_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_product_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_product_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xa4, 0x01, 0x0a, 0x14, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x15, 0x50, 0x72, 0x6f, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_product_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_product_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_product_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_product_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_product_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_product_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_product_link_error_proto_goTypes = []any{ - (ProductLinkErrorEnum_ProductLinkError)(0), // 0: google.ads.googleads.v21.errors.ProductLinkErrorEnum.ProductLinkError - (*ProductLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ProductLinkErrorEnum +var file_google_ads_googleads_v22_errors_product_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_product_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_product_link_error_proto_goTypes = []any{ + (ProductLinkErrorEnum_ProductLinkError)(0), // 0: google.ads.googleads.v22.errors.ProductLinkErrorEnum.ProductLinkError + (*ProductLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ProductLinkErrorEnum } -var file_google_ads_googleads_v21_errors_product_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_errors_product_link_error_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_product_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_product_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_product_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_product_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_product_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_product_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_product_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_product_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_product_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_product_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_product_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_product_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_product_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_product_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_product_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_product_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_product_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_product_link_error_proto = out.File - file_google_ads_googleads_v21_errors_product_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_product_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_product_link_error_proto = out.File + file_google_ads_googleads_v22_errors_product_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 5fe9060a..1e78de3a 100644 --- a/errors/product_link_invitation_error.pb.go +++ b/errors/product_link_invitation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/product_link_invitation_error.proto +// source: google/ads/googleads/v22/errors/product_link_invitation_error.proto package errors @@ -86,11 +86,11 @@ func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) String() stri } func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_enumTypes[0].Descriptor() } func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_enumTypes[0] } func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Number() protoreflect.EnumNumber { @@ -99,7 +99,7 @@ func (x ProductLinkInvitationErrorEnum_ProductLinkInvitationError) Number() prot // Deprecated: Use ProductLinkInvitationErrorEnum_ProductLinkInvitationError.Descriptor instead. func (ProductLinkInvitationErrorEnum_ProductLinkInvitationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *ProductLinkInvitationErrorEnum) String() string { func (*ProductLinkInvitationErrorEnum) ProtoMessage() {} func (x *ProductLinkInvitationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,18 +136,18 @@ func (x *ProductLinkInvitationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLinkInvitationErrorEnum.ProtoReflect.Descriptor instead. func (*ProductLinkInvitationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_product_link_invitation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_product_link_invitation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,43 +163,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, - 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, - 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_goTypes = []any{ - (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 0: google.ads.googleads.v21.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError - (*ProductLinkInvitationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ProductLinkInvitationErrorEnum +var file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_goTypes = []any{ + (ProductLinkInvitationErrorEnum_ProductLinkInvitationError)(0), // 0: google.ads.googleads.v22.errors.ProductLinkInvitationErrorEnum.ProductLinkInvitationError + (*ProductLinkInvitationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ProductLinkInvitationErrorEnum } -var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -207,27 +207,27 @@ var file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_init() } -func file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_init() { - if File_google_ads_googleads_v21_errors_product_link_invitation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_init() } +func file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_init() { + if File_google_ads_googleads_v22_errors_product_link_invitation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_product_link_invitation_error_proto = out.File - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_product_link_invitation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_product_link_invitation_error_proto = out.File + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_product_link_invitation_error_proto_depIdxs = nil } diff --git a/errors/query_error.pb.go b/errors/query_error.pb.go index 28ef237c..3f6a4ee7 100644 --- a/errors/query_error.pb.go +++ b/errors/query_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/query_error.proto +// source: google/ads/googleads/v22/errors/query_error.proto package errors @@ -306,11 +306,11 @@ func (x QueryErrorEnum_QueryError) String() string { } func (QueryErrorEnum_QueryError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_query_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_query_error_proto_enumTypes[0].Descriptor() } func (QueryErrorEnum_QueryError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_query_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_query_error_proto_enumTypes[0] } func (x QueryErrorEnum_QueryError) Number() protoreflect.EnumNumber { @@ -319,7 +319,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_v21_errors_query_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_query_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_query_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -343,7 +343,7 @@ func (x *QueryErrorEnum) String() string { func (*QueryErrorEnum) ProtoMessage() {} func (x *QueryErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_query_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_query_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -356,17 +356,17 @@ func (x *QueryErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use QueryErrorEnum.ProtoReflect.Descriptor instead. func (*QueryErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_query_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_query_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_query_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_query_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_query_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_query_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -482,42 +482,42 @@ var file_google_ads_googleads_v21_errors_query_error_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_query_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_query_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_query_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_query_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_query_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_query_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_query_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_query_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_query_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_query_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_query_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_query_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_query_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_query_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_query_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_query_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_query_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_query_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_query_error_proto_goTypes = []any{ - (QueryErrorEnum_QueryError)(0), // 0: google.ads.googleads.v21.errors.QueryErrorEnum.QueryError - (*QueryErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.QueryErrorEnum +var file_google_ads_googleads_v22_errors_query_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_query_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_query_error_proto_goTypes = []any{ + (QueryErrorEnum_QueryError)(0), // 0: google.ads.googleads.v22.errors.QueryErrorEnum.QueryError + (*QueryErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.QueryErrorEnum } -var file_google_ads_googleads_v21_errors_query_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -525,27 +525,27 @@ var file_google_ads_googleads_v21_errors_query_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_query_error_proto_init() } -func file_google_ads_googleads_v21_errors_query_error_proto_init() { - if File_google_ads_googleads_v21_errors_query_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_query_error_proto_init() } +func file_google_ads_googleads_v22_errors_query_error_proto_init() { + if File_google_ads_googleads_v22_errors_query_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_query_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_query_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_query_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_query_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_query_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_query_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_query_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_query_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_query_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_query_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_query_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_query_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_query_error_proto = out.File - file_google_ads_googleads_v21_errors_query_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_query_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_query_error_proto = out.File + file_google_ads_googleads_v22_errors_query_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_query_error_proto_depIdxs = nil } diff --git a/errors/quota_error.pb.go b/errors/quota_error.pb.go index 6c505b55..bf2e7e34 100644 --- a/errors/quota_error.pb.go +++ b/errors/quota_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/quota_error.proto +// source: google/ads/googleads/v22/errors/quota_error.proto package errors @@ -55,6 +55,16 @@ const ( // Too many expensive requests from query pattern over an extended duration // of time. QuotaErrorEnum_EXCESSIVE_LONG_TERM_QUERY_RESOURCE_CONSUMPTION QuotaErrorEnum_QuotaError = 6 + // To activate ad serving in a customer account, it has to be linked with a + // payment profile (also known as a Billing Customer Number, or BCN), which + // is then billed for the costs incurred by that customer account. This + // error will be thrown if too many customer accounts are activated in a + // short period of time for the same payment profile. Once this rate limit + // is exceeded, the customer should wait for a week before trying again, or + // contact Google Ads customer support to reset the rate limits. See + // https://support.google.com/google-ads/answer/6372658 to learn more about + // this limit. + QuotaErrorEnum_PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED QuotaErrorEnum_QuotaError = 7 ) // Enum value maps for QuotaErrorEnum_QuotaError. @@ -67,6 +77,7 @@ var ( 4: "RESOURCE_TEMPORARILY_EXHAUSTED", 5: "EXCESSIVE_SHORT_TERM_QUERY_RESOURCE_CONSUMPTION", 6: "EXCESSIVE_LONG_TERM_QUERY_RESOURCE_CONSUMPTION", + 7: "PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED", } QuotaErrorEnum_QuotaError_value = map[string]int32{ "UNSPECIFIED": 0, @@ -76,6 +87,7 @@ var ( "RESOURCE_TEMPORARILY_EXHAUSTED": 4, "EXCESSIVE_SHORT_TERM_QUERY_RESOURCE_CONSUMPTION": 5, "EXCESSIVE_LONG_TERM_QUERY_RESOURCE_CONSUMPTION": 6, + "PAYMENTS_PROFILE_ACTIVATION_RATE_LIMIT_EXCEEDED": 7, } ) @@ -90,11 +102,11 @@ func (x QuotaErrorEnum_QuotaError) String() string { } func (QuotaErrorEnum_QuotaError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_quota_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_quota_error_proto_enumTypes[0].Descriptor() } func (QuotaErrorEnum_QuotaError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_quota_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_quota_error_proto_enumTypes[0] } func (x QuotaErrorEnum_QuotaError) Number() protoreflect.EnumNumber { @@ -103,7 +115,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_v21_errors_quota_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_quota_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible quota errors. @@ -115,7 +127,7 @@ type QuotaErrorEnum struct { func (x *QuotaErrorEnum) Reset() { *x = QuotaErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_quota_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_quota_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +139,7 @@ func (x *QuotaErrorEnum) String() string { func (*QuotaErrorEnum) ProtoMessage() {} func (x *QuotaErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_quota_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_quota_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,19 +152,19 @@ func (x *QuotaErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use QuotaErrorEnum.ProtoReflect.Descriptor instead. func (*QuotaErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_quota_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_quota_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_quota_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_quota_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_quota_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, - 0x72, 0x6f, 0x72, 0x73, 0x22, 0xf9, 0x01, 0x0a, 0x0e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, - 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe6, 0x01, 0x0a, 0x0a, 0x51, 0x75, 0x6f, 0x74, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, + 0x72, 0x6f, 0x72, 0x73, 0x22, 0xae, 0x02, 0x0a, 0x0e, 0x51, 0x75, 0x6f, 0x74, 0x61, 0x45, 0x72, + 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x9b, 0x02, 0x0a, 0x0a, 0x51, 0x75, 0x6f, 0x74, 0x61, 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, 0x16, 0x0a, 0x12, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, @@ -167,43 +179,46 @@ var file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc = string([]by 0x45, 0x58, 0x43, 0x45, 0x53, 0x53, 0x49, 0x56, 0x45, 0x5f, 0x4c, 0x4f, 0x4e, 0x47, 0x5f, 0x54, 0x45, 0x52, 0x4d, 0x5f, 0x51, 0x55, 0x45, 0x52, 0x59, 0x5f, 0x52, 0x45, 0x53, 0x4f, 0x55, 0x52, 0x43, 0x45, 0x5f, 0x43, 0x4f, 0x4e, 0x53, 0x55, 0x4d, 0x50, 0x54, 0x49, 0x4f, 0x4e, 0x10, 0x06, - 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, 0x32, - 0x31, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, - 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, - 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x12, 0x33, 0x0a, 0x2f, 0x50, 0x41, 0x59, 0x4d, 0x45, 0x4e, 0x54, 0x53, 0x5f, 0x50, 0x52, 0x4f, + 0x46, 0x49, 0x4c, 0x45, 0x5f, 0x41, 0x43, 0x54, 0x49, 0x56, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x5f, + 0x52, 0x41, 0x54, 0x45, 0x5f, 0x4c, 0x49, 0x4d, 0x49, 0x54, 0x5f, 0x45, 0x58, 0x43, 0x45, 0x45, + 0x44, 0x45, 0x44, 0x10, 0x07, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, + 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, + 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_quota_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_quota_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_quota_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_quota_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_quota_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_quota_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_quota_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_quota_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_quota_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_quota_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_quota_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_quota_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_quota_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_quota_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_quota_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_quota_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_quota_error_proto_goTypes = []any{ - (QuotaErrorEnum_QuotaError)(0), // 0: google.ads.googleads.v21.errors.QuotaErrorEnum.QuotaError - (*QuotaErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.QuotaErrorEnum +var file_google_ads_googleads_v22_errors_quota_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_quota_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_quota_error_proto_goTypes = []any{ + (QuotaErrorEnum_QuotaError)(0), // 0: google.ads.googleads.v22.errors.QuotaErrorEnum.QuotaError + (*QuotaErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.QuotaErrorEnum } -var file_google_ads_googleads_v21_errors_quota_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -211,27 +226,27 @@ var file_google_ads_googleads_v21_errors_quota_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_quota_error_proto_init() } -func file_google_ads_googleads_v21_errors_quota_error_proto_init() { - if File_google_ads_googleads_v21_errors_quota_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_quota_error_proto_init() } +func file_google_ads_googleads_v22_errors_quota_error_proto_init() { + if File_google_ads_googleads_v22_errors_quota_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_quota_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_quota_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_quota_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_quota_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_quota_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_quota_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_quota_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_quota_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_quota_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_quota_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_quota_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_quota_error_proto = out.File - file_google_ads_googleads_v21_errors_quota_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_quota_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_quota_error_proto = out.File + file_google_ads_googleads_v22_errors_quota_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_quota_error_proto_depIdxs = nil } diff --git a/errors/range_error.pb.go b/errors/range_error.pb.go index 89941552..fef2a154 100644 --- a/errors/range_error.pb.go +++ b/errors/range_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/range_error.proto +// source: google/ads/googleads/v22/errors/range_error.proto package errors @@ -76,11 +76,11 @@ func (x RangeErrorEnum_RangeError) String() string { } func (RangeErrorEnum_RangeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_range_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_range_error_proto_enumTypes[0].Descriptor() } func (RangeErrorEnum_RangeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_range_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_range_error_proto_enumTypes[0] } func (x RangeErrorEnum_RangeError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_range_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_range_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_range_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *RangeErrorEnum) String() string { func (*RangeErrorEnum) ProtoMessage() {} func (x *RangeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_range_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_range_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,17 +126,17 @@ func (x *RangeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use RangeErrorEnum.ProtoReflect.Descriptor instead. func (*RangeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_range_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_range_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_range_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_range_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_range_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_range_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_errors_range_error_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_range_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_range_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_range_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_range_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_range_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_range_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_range_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_range_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_range_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_range_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_range_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_range_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_range_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_range_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_range_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_range_error_proto_goTypes = []any{ - (RangeErrorEnum_RangeError)(0), // 0: google.ads.googleads.v21.errors.RangeErrorEnum.RangeError - (*RangeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.RangeErrorEnum +var file_google_ads_googleads_v22_errors_range_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_range_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_range_error_proto_goTypes = []any{ + (RangeErrorEnum_RangeError)(0), // 0: google.ads.googleads.v22.errors.RangeErrorEnum.RangeError + (*RangeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.RangeErrorEnum } -var file_google_ads_googleads_v21_errors_range_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_errors_range_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_range_error_proto_init() } -func file_google_ads_googleads_v21_errors_range_error_proto_init() { - if File_google_ads_googleads_v21_errors_range_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_range_error_proto_init() } +func file_google_ads_googleads_v22_errors_range_error_proto_init() { + if File_google_ads_googleads_v22_errors_range_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_range_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_range_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_range_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_range_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_range_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_range_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_range_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_range_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_range_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_range_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_range_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_range_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_range_error_proto = out.File - file_google_ads_googleads_v21_errors_range_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_range_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_range_error_proto = out.File + file_google_ads_googleads_v22_errors_range_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_range_error_proto_depIdxs = nil } diff --git a/errors/reach_plan_error.pb.go b/errors/reach_plan_error.pb.go index 41e4fd1b..6260c34e 100644 --- a/errors/reach_plan_error.pb.go +++ b/errors/reach_plan_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/reach_plan_error.proto +// source: google/ads/googleads/v22/errors/reach_plan_error.proto package errors @@ -80,11 +80,11 @@ func (x ReachPlanErrorEnum_ReachPlanError) String() string { } func (ReachPlanErrorEnum_ReachPlanError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_reach_plan_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_reach_plan_error_proto_enumTypes[0].Descriptor() } func (ReachPlanErrorEnum_ReachPlanError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_reach_plan_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_reach_plan_error_proto_enumTypes[0] } func (x ReachPlanErrorEnum_ReachPlanError) Number() protoreflect.EnumNumber { @@ -93,7 +93,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_v21_errors_reach_plan_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_reach_plan_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_reach_plan_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *ReachPlanErrorEnum) String() string { func (*ReachPlanErrorEnum) ProtoMessage() {} func (x *ReachPlanErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_reach_plan_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_reach_plan_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *ReachPlanErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachPlanErrorEnum.ProtoReflect.Descriptor instead. func (*ReachPlanErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_reach_plan_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_reach_plan_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbd, 0x01, 0x0a, 0x12, 0x52, 0x65, + 0x32, 0x32, 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, @@ -156,42 +156,42 @@ var file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_reach_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_reach_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_reach_plan_error_proto_goTypes = []any{ - (ReachPlanErrorEnum_ReachPlanError)(0), // 0: google.ads.googleads.v21.errors.ReachPlanErrorEnum.ReachPlanError - (*ReachPlanErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ReachPlanErrorEnum +var file_google_ads_googleads_v22_errors_reach_plan_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_reach_plan_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_reach_plan_error_proto_goTypes = []any{ + (ReachPlanErrorEnum_ReachPlanError)(0), // 0: google.ads.googleads.v22.errors.ReachPlanErrorEnum.ReachPlanError + (*ReachPlanErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ReachPlanErrorEnum } -var file_google_ads_googleads_v21_errors_reach_plan_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_reach_plan_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_reach_plan_error_proto_init() } -func file_google_ads_googleads_v21_errors_reach_plan_error_proto_init() { - if File_google_ads_googleads_v21_errors_reach_plan_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_reach_plan_error_proto_init() } +func file_google_ads_googleads_v22_errors_reach_plan_error_proto_init() { + if File_google_ads_googleads_v22_errors_reach_plan_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_reach_plan_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_reach_plan_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_reach_plan_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_reach_plan_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_reach_plan_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_reach_plan_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_reach_plan_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_reach_plan_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_reach_plan_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_reach_plan_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_reach_plan_error_proto = out.File - file_google_ads_googleads_v21_errors_reach_plan_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_reach_plan_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_reach_plan_error_proto = out.File + file_google_ads_googleads_v22_errors_reach_plan_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_reach_plan_error_proto_depIdxs = nil } diff --git a/errors/recommendation_error.pb.go b/errors/recommendation_error.pb.go index 1bebf7c3..684340d7 100644 --- a/errors/recommendation_error.pb.go +++ b/errors/recommendation_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/recommendation_error.proto +// source: google/ads/googleads/v22/errors/recommendation_error.proto package errors @@ -223,11 +223,11 @@ func (x RecommendationErrorEnum_RecommendationError) String() string { } func (RecommendationErrorEnum_RecommendationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_recommendation_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_recommendation_error_proto_enumTypes[0].Descriptor() } func (RecommendationErrorEnum_RecommendationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_recommendation_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_recommendation_error_proto_enumTypes[0] } func (x RecommendationErrorEnum_RecommendationError) Number() protoreflect.EnumNumber { @@ -236,7 +236,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_v21_errors_recommendation_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible errors from applying a recommendation. @@ -248,7 +248,7 @@ type RecommendationErrorEnum struct { func (x *RecommendationErrorEnum) Reset() { *x = RecommendationErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_recommendation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_recommendation_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -260,7 +260,7 @@ func (x *RecommendationErrorEnum) String() string { func (*RecommendationErrorEnum) ProtoMessage() {} func (x *RecommendationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_recommendation_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_recommendation_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -273,18 +273,18 @@ func (x *RecommendationErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use RecommendationErrorEnum.ProtoReflect.Descriptor instead. func (*RecommendationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_recommendation_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_recommendation_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb8, 0x10, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xb8, 0x10, 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, 0x9c, 0x10, 0x0a, 0x13, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x72, 0x72, 0x6f, @@ -418,42 +418,42 @@ var file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc = st 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x49, 0x4e, 0x47, 0x5f, 0x43, 0x48, 0x41, 0x4e, 0x4e, 0x45, 0x4c, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x24, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, + 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_recommendation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_recommendation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_recommendation_error_proto_goTypes = []any{ - (RecommendationErrorEnum_RecommendationError)(0), // 0: google.ads.googleads.v21.errors.RecommendationErrorEnum.RecommendationError - (*RecommendationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.RecommendationErrorEnum +var file_google_ads_googleads_v22_errors_recommendation_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_recommendation_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_recommendation_error_proto_goTypes = []any{ + (RecommendationErrorEnum_RecommendationError)(0), // 0: google.ads.googleads.v22.errors.RecommendationErrorEnum.RecommendationError + (*RecommendationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.RecommendationErrorEnum } -var file_google_ads_googleads_v21_errors_recommendation_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -461,27 +461,27 @@ var file_google_ads_googleads_v21_errors_recommendation_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_recommendation_error_proto_init() } -func file_google_ads_googleads_v21_errors_recommendation_error_proto_init() { - if File_google_ads_googleads_v21_errors_recommendation_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_recommendation_error_proto_init() } +func file_google_ads_googleads_v22_errors_recommendation_error_proto_init() { + if File_google_ads_googleads_v22_errors_recommendation_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_recommendation_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_recommendation_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_recommendation_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_recommendation_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_recommendation_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_recommendation_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_recommendation_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_recommendation_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_recommendation_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_recommendation_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_recommendation_error_proto = out.File - file_google_ads_googleads_v21_errors_recommendation_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_recommendation_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_recommendation_error_proto = out.File + file_google_ads_googleads_v22_errors_recommendation_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_recommendation_error_proto_depIdxs = nil } diff --git a/errors/recommendation_subscription_error.pb.go b/errors/recommendation_subscription_error.pb.go index d78f1adc..0080332d 100644 --- a/errors/recommendation_subscription_error.pb.go +++ b/errors/recommendation_subscription_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/recommendation_subscription_error.proto +// source: google/ads/googleads/v22/errors/recommendation_subscription_error.proto package errors @@ -68,11 +68,11 @@ func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Str } func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_enumTypes[0].Descriptor() } func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_enumTypes[0] } func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Number() protoreflect.EnumNumber { @@ -81,7 +81,7 @@ func (x RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) Num // Deprecated: Use RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError.Descriptor instead. func (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *RecommendationSubscriptionErrorEnum) String() string { func (*RecommendationSubscriptionErrorEnum) ProtoMessage() {} func (x *RecommendationSubscriptionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,19 +118,19 @@ func (x *RecommendationSubscriptionErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use RecommendationSubscriptionErrorEnum.ProtoReflect.Descriptor instead. func (*RecommendationSubscriptionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_recommendation_subscription_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_recommendation_subscription_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x66, 0x0a, 0x23, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -139,43 +139,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x24, 0x52, 0x65, 0x63, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_goTypes = []any{ - (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 0: google.ads.googleads.v21.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError - (*RecommendationSubscriptionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.RecommendationSubscriptionErrorEnum +var file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_goTypes = []any{ + (RecommendationSubscriptionErrorEnum_RecommendationSubscriptionError)(0), // 0: google.ads.googleads.v22.errors.RecommendationSubscriptionErrorEnum.RecommendationSubscriptionError + (*RecommendationSubscriptionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.RecommendationSubscriptionErrorEnum } -var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_init() } -func file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_init() { - if File_google_ads_googleads_v21_errors_recommendation_subscription_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_init() } +func file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_init() { + if File_google_ads_googleads_v22_errors_recommendation_subscription_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_recommendation_subscription_error_proto = out.File - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_recommendation_subscription_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_recommendation_subscription_error_proto = out.File + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_recommendation_subscription_error_proto_depIdxs = nil } diff --git a/errors/region_code_error.pb.go b/errors/region_code_error.pb.go index 8104bf11..5db0cc1b 100644 --- a/errors/region_code_error.pb.go +++ b/errors/region_code_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/region_code_error.proto +// source: google/ads/googleads/v22/errors/region_code_error.proto package errors @@ -72,11 +72,11 @@ func (x RegionCodeErrorEnum_RegionCodeError) String() string { } func (RegionCodeErrorEnum_RegionCodeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_region_code_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_region_code_error_proto_enumTypes[0].Descriptor() } func (RegionCodeErrorEnum_RegionCodeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_region_code_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_region_code_error_proto_enumTypes[0] } func (x RegionCodeErrorEnum_RegionCodeError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_region_code_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_region_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_region_code_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *RegionCodeErrorEnum) String() string { func (*RegionCodeErrorEnum) ProtoMessage() {} func (x *RegionCodeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_region_code_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_region_code_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *RegionCodeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use RegionCodeErrorEnum.ProtoReflect.Descriptor instead. func (*RegionCodeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_region_code_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_region_code_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_region_code_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x5f, 0x0a, 0x13, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -141,42 +141,42 @@ var file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_region_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_region_code_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_region_code_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_region_code_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_region_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_region_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_region_code_error_proto_goTypes = []any{ - (RegionCodeErrorEnum_RegionCodeError)(0), // 0: google.ads.googleads.v21.errors.RegionCodeErrorEnum.RegionCodeError - (*RegionCodeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.RegionCodeErrorEnum +var file_google_ads_googleads_v22_errors_region_code_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_region_code_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_region_code_error_proto_goTypes = []any{ + (RegionCodeErrorEnum_RegionCodeError)(0), // 0: google.ads.googleads.v22.errors.RegionCodeErrorEnum.RegionCodeError + (*RegionCodeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.RegionCodeErrorEnum } -var file_google_ads_googleads_v21_errors_region_code_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,27 +184,27 @@ var file_google_ads_googleads_v21_errors_region_code_error_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_region_code_error_proto_init() } -func file_google_ads_googleads_v21_errors_region_code_error_proto_init() { - if File_google_ads_googleads_v21_errors_region_code_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_region_code_error_proto_init() } +func file_google_ads_googleads_v22_errors_region_code_error_proto_init() { + if File_google_ads_googleads_v22_errors_region_code_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_region_code_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_region_code_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_region_code_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_region_code_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_region_code_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_region_code_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_region_code_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_region_code_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_region_code_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_region_code_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_region_code_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_region_code_error_proto = out.File - file_google_ads_googleads_v21_errors_region_code_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_region_code_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_region_code_error_proto = out.File + file_google_ads_googleads_v22_errors_region_code_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_region_code_error_proto_depIdxs = nil } diff --git a/errors/request_error.pb.go b/errors/request_error.pb.go index edcd841c..1561d7f4 100644 --- a/errors/request_error.pb.go +++ b/errors/request_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/request_error.proto +// source: google/ads/googleads/v22/errors/request_error.proto package errors @@ -179,11 +179,11 @@ func (x RequestErrorEnum_RequestError) String() string { } func (RequestErrorEnum_RequestError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_request_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_request_error_proto_enumTypes[0].Descriptor() } func (RequestErrorEnum_RequestError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_request_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_request_error_proto_enumTypes[0] } func (x RequestErrorEnum_RequestError) Number() protoreflect.EnumNumber { @@ -192,7 +192,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_v21_errors_request_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_request_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_request_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -216,7 +216,7 @@ func (x *RequestErrorEnum) String() string { func (*RequestErrorEnum) ProtoMessage() {} func (x *RequestErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_request_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_request_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -229,17 +229,17 @@ func (x *RequestErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use RequestErrorEnum.ProtoReflect.Descriptor instead. func (*RequestErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_request_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_request_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_request_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_request_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_request_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_request_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -299,42 +299,42 @@ var file_google_ads_googleads_v21_errors_request_error_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_request_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_request_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_request_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_request_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_request_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_request_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_request_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_request_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_request_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_request_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_request_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_request_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_request_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_request_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_request_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_request_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_request_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_request_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_request_error_proto_goTypes = []any{ - (RequestErrorEnum_RequestError)(0), // 0: google.ads.googleads.v21.errors.RequestErrorEnum.RequestError - (*RequestErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.RequestErrorEnum +var file_google_ads_googleads_v22_errors_request_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_request_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_request_error_proto_goTypes = []any{ + (RequestErrorEnum_RequestError)(0), // 0: google.ads.googleads.v22.errors.RequestErrorEnum.RequestError + (*RequestErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.RequestErrorEnum } -var file_google_ads_googleads_v21_errors_request_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -342,27 +342,27 @@ var file_google_ads_googleads_v21_errors_request_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_request_error_proto_init() } -func file_google_ads_googleads_v21_errors_request_error_proto_init() { - if File_google_ads_googleads_v21_errors_request_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_request_error_proto_init() } +func file_google_ads_googleads_v22_errors_request_error_proto_init() { + if File_google_ads_googleads_v22_errors_request_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_request_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_request_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_request_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_request_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_request_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_request_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_request_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_request_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_request_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_request_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_request_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_request_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_request_error_proto = out.File - file_google_ads_googleads_v21_errors_request_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_request_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_request_error_proto = out.File + file_google_ads_googleads_v22_errors_request_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 3cc4ad91..d599528c 100644 --- a/errors/resource_access_denied_error.pb.go +++ b/errors/resource_access_denied_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/resource_access_denied_error.proto +// source: google/ads/googleads/v22/errors/resource_access_denied_error.proto package errors @@ -72,11 +72,11 @@ func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) String() string } func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_enumTypes[0].Descriptor() } func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_enumTypes[0] } func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Number() protoreflect.EnumNumber { @@ -85,7 +85,7 @@ func (x ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) Number() protor // Deprecated: Use ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError.Descriptor instead. func (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *ResourceAccessDeniedErrorEnum) String() string { func (*ResourceAccessDeniedErrorEnum) ProtoMessage() {} func (x *ResourceAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *ResourceAccessDeniedErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ResourceAccessDeniedErrorEnum.ProtoReflect.Descriptor instead. func (*ResourceAccessDeniedErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_resource_access_denied_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_resource_access_denied_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,43 +143,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_goTypes = []any{ - (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 0: google.ads.googleads.v21.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError - (*ResourceAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ResourceAccessDeniedErrorEnum +var file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_goTypes = []any{ + (ResourceAccessDeniedErrorEnum_ResourceAccessDeniedError)(0), // 0: google.ads.googleads.v22.errors.ResourceAccessDeniedErrorEnum.ResourceAccessDeniedError + (*ResourceAccessDeniedErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ResourceAccessDeniedErrorEnum } -var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_init() } -func file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_init() { - if File_google_ads_googleads_v21_errors_resource_access_denied_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_init() } +func file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_init() { + if File_google_ads_googleads_v22_errors_resource_access_denied_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_resource_access_denied_error_proto = out.File - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_resource_access_denied_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_resource_access_denied_error_proto = out.File + file_google_ads_googleads_v22_errors_resource_access_denied_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 fb0764fe..ff4c2999 100644 --- a/errors/resource_count_limit_exceeded_error.pb.go +++ b/errors/resource_count_limit_exceeded_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/resource_count_limit_exceeded_error.proto +// source: google/ads/googleads/v22/errors/resource_count_limit_exceeded_error.proto package errors @@ -126,11 +126,11 @@ func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Str } func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_enumTypes[0].Descriptor() } func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_enumTypes[0] } func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Number() protoreflect.EnumNumber { @@ -139,7 +139,7 @@ func (x ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) Num // Deprecated: Use ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError.Descriptor instead. func (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163,7 +163,7 @@ func (x *ResourceCountLimitExceededErrorEnum) String() string { func (*ResourceCountLimitExceededErrorEnum) ProtoMessage() {} func (x *ResourceCountLimitExceededErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176,19 +176,19 @@ func (x *ResourceCountLimitExceededErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use ResourceCountLimitExceededErrorEnum.ProtoReflect.Descriptor instead. func (*ResourceCountLimitExceededErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02, 0x0a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -210,43 +210,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_goTypes = []any{ - (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 0: google.ads.googleads.v21.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError - (*ResourceCountLimitExceededErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ResourceCountLimitExceededErrorEnum +var file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_goTypes = []any{ + (ResourceCountLimitExceededErrorEnum_ResourceCountLimitExceededError)(0), // 0: google.ads.googleads.v22.errors.ResourceCountLimitExceededErrorEnum.ResourceCountLimitExceededError + (*ResourceCountLimitExceededErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ResourceCountLimitExceededErrorEnum } -var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -254,27 +254,27 @@ var file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_init() } -func file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_init() { - if File_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_init() } +func file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_init() { + if File_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto = out.File - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_resource_count_limit_exceeded_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto = out.File + file_google_ads_googleads_v22_errors_resource_count_limit_exceeded_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 61bd6f4a..30be2a31 100644 --- a/errors/search_term_insight_error.pb.go +++ b/errors/search_term_insight_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/search_term_insight_error.proto +// source: google/ads/googleads/v22/errors/search_term_insight_error.proto package errors @@ -92,11 +92,11 @@ func (x SearchTermInsightErrorEnum_SearchTermInsightError) String() string { } func (SearchTermInsightErrorEnum_SearchTermInsightError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_search_term_insight_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_search_term_insight_error_proto_enumTypes[0].Descriptor() } func (SearchTermInsightErrorEnum_SearchTermInsightError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_search_term_insight_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_search_term_insight_error_proto_enumTypes[0] } func (x SearchTermInsightErrorEnum_SearchTermInsightError) Number() protoreflect.EnumNumber { @@ -105,7 +105,7 @@ func (x SearchTermInsightErrorEnum_SearchTermInsightError) Number() protoreflect // Deprecated: Use SearchTermInsightErrorEnum_SearchTermInsightError.Descriptor instead. func (SearchTermInsightErrorEnum_SearchTermInsightError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_search_term_insight_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_search_term_insight_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *SearchTermInsightErrorEnum) String() string { func (*SearchTermInsightErrorEnum) ProtoMessage() {} func (x *SearchTermInsightErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_search_term_insight_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_search_term_insight_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,18 +142,18 @@ func (x *SearchTermInsightErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermInsightErrorEnum.ProtoReflect.Descriptor instead. func (*SearchTermInsightErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_search_term_insight_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_search_term_insight_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -176,42 +176,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1b, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_goTypes = []any{ - (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 0: google.ads.googleads.v21.errors.SearchTermInsightErrorEnum.SearchTermInsightError - (*SearchTermInsightErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SearchTermInsightErrorEnum +var file_google_ads_googleads_v22_errors_search_term_insight_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_search_term_insight_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_search_term_insight_error_proto_goTypes = []any{ + (SearchTermInsightErrorEnum_SearchTermInsightError)(0), // 0: google.ads.googleads.v22.errors.SearchTermInsightErrorEnum.SearchTermInsightError + (*SearchTermInsightErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SearchTermInsightErrorEnum } -var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -219,27 +219,27 @@ var file_google_ads_googleads_v21_errors_search_term_insight_error_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_search_term_insight_error_proto_init() } -func file_google_ads_googleads_v21_errors_search_term_insight_error_proto_init() { - if File_google_ads_googleads_v21_errors_search_term_insight_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_search_term_insight_error_proto_init() } +func file_google_ads_googleads_v22_errors_search_term_insight_error_proto_init() { + if File_google_ads_googleads_v22_errors_search_term_insight_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_search_term_insight_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_search_term_insight_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_search_term_insight_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_search_term_insight_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_search_term_insight_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_search_term_insight_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_search_term_insight_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_search_term_insight_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_search_term_insight_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_search_term_insight_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_search_term_insight_error_proto = out.File - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_search_term_insight_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_search_term_insight_error_proto = out.File + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_search_term_insight_error_proto_depIdxs = nil } diff --git a/errors/setting_error.pb.go b/errors/setting_error.pb.go index 3c777ba5..51420bf4 100644 --- a/errors/setting_error.pb.go +++ b/errors/setting_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/setting_error.proto +// source: google/ads/googleads/v22/errors/setting_error.proto package errors @@ -126,11 +126,11 @@ func (x SettingErrorEnum_SettingError) String() string { } func (SettingErrorEnum_SettingError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_setting_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_setting_error_proto_enumTypes[0].Descriptor() } func (SettingErrorEnum_SettingError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_setting_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_setting_error_proto_enumTypes[0] } func (x SettingErrorEnum_SettingError) Number() protoreflect.EnumNumber { @@ -139,7 +139,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_v21_errors_setting_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_setting_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_setting_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163,7 +163,7 @@ func (x *SettingErrorEnum) String() string { func (*SettingErrorEnum) ProtoMessage() {} func (x *SettingErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_setting_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_setting_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176,17 +176,17 @@ func (x *SettingErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SettingErrorEnum.ProtoReflect.Descriptor instead. func (*SettingErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_setting_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_setting_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_setting_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_setting_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_setting_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -241,41 +241,41 @@ var file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc = string([] 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x11, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, + 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_setting_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_setting_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_setting_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_setting_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_setting_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_setting_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_setting_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_setting_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_setting_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_setting_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_setting_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_setting_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_setting_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_setting_error_proto_goTypes = []any{ - (SettingErrorEnum_SettingError)(0), // 0: google.ads.googleads.v21.errors.SettingErrorEnum.SettingError - (*SettingErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SettingErrorEnum +var file_google_ads_googleads_v22_errors_setting_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_setting_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_setting_error_proto_goTypes = []any{ + (SettingErrorEnum_SettingError)(0), // 0: google.ads.googleads.v22.errors.SettingErrorEnum.SettingError + (*SettingErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SettingErrorEnum } -var file_google_ads_googleads_v21_errors_setting_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -283,27 +283,27 @@ var file_google_ads_googleads_v21_errors_setting_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_setting_error_proto_init() } -func file_google_ads_googleads_v21_errors_setting_error_proto_init() { - if File_google_ads_googleads_v21_errors_setting_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_setting_error_proto_init() } +func file_google_ads_googleads_v22_errors_setting_error_proto_init() { + if File_google_ads_googleads_v22_errors_setting_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_setting_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_setting_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_setting_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_setting_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_setting_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_setting_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_setting_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_setting_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_setting_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_setting_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_setting_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_setting_error_proto = out.File - file_google_ads_googleads_v21_errors_setting_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_setting_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_setting_error_proto = out.File + file_google_ads_googleads_v22_errors_setting_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_setting_error_proto_depIdxs = nil } diff --git a/errors/shareable_preview_error.pb.go b/errors/shareable_preview_error.pb.go index 09b4e5ae..7ac8d215 100644 --- a/errors/shareable_preview_error.pb.go +++ b/errors/shareable_preview_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/shareable_preview_error.proto +// source: google/ads/googleads/v22/errors/shareable_preview_error.proto package errors @@ -76,11 +76,11 @@ func (x ShareablePreviewErrorEnum_ShareablePreviewError) String() string { } func (ShareablePreviewErrorEnum_ShareablePreviewError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_shareable_preview_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_shareable_preview_error_proto_enumTypes[0].Descriptor() } func (ShareablePreviewErrorEnum_ShareablePreviewError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_shareable_preview_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_shareable_preview_error_proto_enumTypes[0] } func (x ShareablePreviewErrorEnum_ShareablePreviewError) Number() protoreflect.EnumNumber { @@ -89,7 +89,7 @@ func (x ShareablePreviewErrorEnum_ShareablePreviewError) Number() protoreflect.E // Deprecated: Use ShareablePreviewErrorEnum_ShareablePreviewError.Descriptor instead. func (ShareablePreviewErrorEnum_ShareablePreviewError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible shareable preview errors. @@ -101,7 +101,7 @@ type ShareablePreviewErrorEnum struct { func (x *ShareablePreviewErrorEnum) Reset() { *x = ShareablePreviewErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_shareable_preview_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shareable_preview_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *ShareablePreviewErrorEnum) String() string { func (*ShareablePreviewErrorEnum) ProtoMessage() {} func (x *ShareablePreviewErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_shareable_preview_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shareable_preview_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *ShareablePreviewErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareablePreviewErrorEnum.ProtoReflect.Descriptor instead. func (*ShareablePreviewErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_shareable_preview_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_shareable_preview_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xad, 0x01, 0x0a, 0x19, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0x8f, 0x01, 0x0a, 0x15, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, @@ -151,42 +151,42 @@ var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc = 0x5f, 0x54, 0x48, 0x49, 0x53, 0x5f, 0x43, 0x55, 0x53, 0x54, 0x4f, 0x4d, 0x45, 0x52, 0x10, 0x03, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x1a, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x50, 0x72, 0x6f, 0x74, 0x6f, 0x50, 0x01, 0x5a, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, - 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, - 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, - 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_goTypes = []any{ - (ShareablePreviewErrorEnum_ShareablePreviewError)(0), // 0: google.ads.googleads.v21.errors.ShareablePreviewErrorEnum.ShareablePreviewError - (*ShareablePreviewErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ShareablePreviewErrorEnum +var file_google_ads_googleads_v22_errors_shareable_preview_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_shareable_preview_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_shareable_preview_error_proto_goTypes = []any{ + (ShareablePreviewErrorEnum_ShareablePreviewError)(0), // 0: google.ads.googleads.v22.errors.ShareablePreviewErrorEnum.ShareablePreviewError + (*ShareablePreviewErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ShareablePreviewErrorEnum } -var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_errors_shareable_preview_error_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for method 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,27 +194,27 @@ var file_google_ads_googleads_v21_errors_shareable_preview_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_shareable_preview_error_proto_init() } -func file_google_ads_googleads_v21_errors_shareable_preview_error_proto_init() { - if File_google_ads_googleads_v21_errors_shareable_preview_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_shareable_preview_error_proto_init() } +func file_google_ads_googleads_v22_errors_shareable_preview_error_proto_init() { + if File_google_ads_googleads_v22_errors_shareable_preview_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shareable_preview_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shareable_preview_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_shareable_preview_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_shareable_preview_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_shareable_preview_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_shareable_preview_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_shareable_preview_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_shareable_preview_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_shareable_preview_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_shareable_preview_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_shareable_preview_error_proto = out.File - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_shareable_preview_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_shareable_preview_error_proto = out.File + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_shareable_preview_error_proto_depIdxs = nil } diff --git a/errors/shared_criterion_error.pb.go b/errors/shared_criterion_error.pb.go index 682ec5ec..e1b22c60 100644 --- a/errors/shared_criterion_error.pb.go +++ b/errors/shared_criterion_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/shared_criterion_error.proto +// source: google/ads/googleads/v22/errors/shared_criterion_error.proto package errors @@ -72,11 +72,11 @@ func (x SharedCriterionErrorEnum_SharedCriterionError) String() string { } func (SharedCriterionErrorEnum_SharedCriterionError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_shared_criterion_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_shared_criterion_error_proto_enumTypes[0].Descriptor() } func (SharedCriterionErrorEnum_SharedCriterionError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_shared_criterion_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_shared_criterion_error_proto_enumTypes[0] } func (x SharedCriterionErrorEnum_SharedCriterionError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_shared_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shared_criterion_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *SharedCriterionErrorEnum) String() string { func (*SharedCriterionErrorEnum) ProtoMessage() {} func (x *SharedCriterionErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_shared_criterion_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shared_criterion_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *SharedCriterionErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedCriterionErrorEnum.ProtoReflect.Descriptor instead. func (*SharedCriterionErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_shared_criterion_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_shared_criterion_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -144,42 +144,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, - 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_goTypes = []any{ - (SharedCriterionErrorEnum_SharedCriterionError)(0), // 0: google.ads.googleads.v21.errors.SharedCriterionErrorEnum.SharedCriterionError - (*SharedCriterionErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SharedCriterionErrorEnum +var file_google_ads_googleads_v22_errors_shared_criterion_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_shared_criterion_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_shared_criterion_error_proto_goTypes = []any{ + (SharedCriterionErrorEnum_SharedCriterionError)(0), // 0: google.ads.googleads.v22.errors.SharedCriterionErrorEnum.SharedCriterionError + (*SharedCriterionErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SharedCriterionErrorEnum } -var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_errors_shared_criterion_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_shared_criterion_error_proto_init() } -func file_google_ads_googleads_v21_errors_shared_criterion_error_proto_init() { - if File_google_ads_googleads_v21_errors_shared_criterion_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_shared_criterion_error_proto_init() } +func file_google_ads_googleads_v22_errors_shared_criterion_error_proto_init() { + if File_google_ads_googleads_v22_errors_shared_criterion_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shared_criterion_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shared_criterion_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_shared_criterion_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_shared_criterion_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_shared_criterion_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_shared_criterion_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_shared_criterion_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_shared_criterion_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_shared_criterion_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_shared_criterion_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_shared_criterion_error_proto = out.File - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_shared_criterion_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_shared_criterion_error_proto = out.File + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_shared_criterion_error_proto_depIdxs = nil } diff --git a/errors/shared_set_error.pb.go b/errors/shared_set_error.pb.go index a2e4ce6f..1d042814 100644 --- a/errors/shared_set_error.pb.go +++ b/errors/shared_set_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/shared_set_error.proto +// source: google/ads/googleads/v22/errors/shared_set_error.proto package errors @@ -84,11 +84,11 @@ func (x SharedSetErrorEnum_SharedSetError) String() string { } func (SharedSetErrorEnum_SharedSetError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_shared_set_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_shared_set_error_proto_enumTypes[0].Descriptor() } func (SharedSetErrorEnum_SharedSetError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_shared_set_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_shared_set_error_proto_enumTypes[0] } func (x SharedSetErrorEnum_SharedSetError) Number() protoreflect.EnumNumber { @@ -97,7 +97,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_v21_errors_shared_set_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_shared_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shared_set_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *SharedSetErrorEnum) String() string { func (*SharedSetErrorEnum) ProtoMessage() {} func (x *SharedSetErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_shared_set_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shared_set_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,18 +134,18 @@ func (x *SharedSetErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSetErrorEnum.ProtoReflect.Descriptor instead. func (*SharedSetErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_shared_set_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_shared_set_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbc, 0x01, 0x0a, 0x12, 0x53, 0x68, + 0x32, 0x32, 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, @@ -159,42 +159,42 @@ var file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, - 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, - 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, - 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_shared_set_error_proto_goTypes = []any{ - (SharedSetErrorEnum_SharedSetError)(0), // 0: google.ads.googleads.v21.errors.SharedSetErrorEnum.SharedSetError - (*SharedSetErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SharedSetErrorEnum +var file_google_ads_googleads_v22_errors_shared_set_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_shared_set_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_shared_set_error_proto_goTypes = []any{ + (SharedSetErrorEnum_SharedSetError)(0), // 0: google.ads.googleads.v22.errors.SharedSetErrorEnum.SharedSetError + (*SharedSetErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SharedSetErrorEnum } -var file_google_ads_googleads_v21_errors_shared_set_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_errors_shared_set_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_shared_set_error_proto_init() } -func file_google_ads_googleads_v21_errors_shared_set_error_proto_init() { - if File_google_ads_googleads_v21_errors_shared_set_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_shared_set_error_proto_init() } +func file_google_ads_googleads_v22_errors_shared_set_error_proto_init() { + if File_google_ads_googleads_v22_errors_shared_set_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shared_set_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shared_set_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_shared_set_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_shared_set_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_shared_set_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_shared_set_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_shared_set_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_shared_set_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_shared_set_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_shared_set_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_shared_set_error_proto = out.File - file_google_ads_googleads_v21_errors_shared_set_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_shared_set_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_shared_set_error_proto = out.File + file_google_ads_googleads_v22_errors_shared_set_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_shared_set_error_proto_depIdxs = nil } diff --git a/errors/shopping_product_error.pb.go b/errors/shopping_product_error.pb.go index 2d6971d8..11fa38ef 100644 --- a/errors/shopping_product_error.pb.go +++ b/errors/shopping_product_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/shopping_product_error.proto +// source: google/ads/googleads/v22/errors/shopping_product_error.proto package errors @@ -80,11 +80,11 @@ func (x ShoppingProductErrorEnum_ShoppingProductError) String() string { } func (ShoppingProductErrorEnum_ShoppingProductError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_shopping_product_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_shopping_product_error_proto_enumTypes[0].Descriptor() } func (ShoppingProductErrorEnum_ShoppingProductError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_shopping_product_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_shopping_product_error_proto_enumTypes[0] } func (x ShoppingProductErrorEnum_ShoppingProductError) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x ShoppingProductErrorEnum_ShoppingProductError) Number() protoreflect.Enu // Deprecated: Use ShoppingProductErrorEnum_ShoppingProductError.Descriptor instead. func (ShoppingProductErrorEnum_ShoppingProductError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible errors querying shopping product. @@ -105,7 +105,7 @@ type ShoppingProductErrorEnum struct { func (x *ShoppingProductErrorEnum) Reset() { *x = ShoppingProductErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_shopping_product_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shopping_product_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *ShoppingProductErrorEnum) String() string { func (*ShoppingProductErrorEnum) ProtoMessage() {} func (x *ShoppingProductErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_shopping_product_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_shopping_product_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,18 +130,18 @@ func (x *ShoppingProductErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingProductErrorEnum.ProtoReflect.Descriptor instead. func (*ShoppingProductErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_shopping_product_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_shopping_product_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc = 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x19, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, - 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, - 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_shopping_product_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_shopping_product_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_shopping_product_error_proto_goTypes = []any{ - (ShoppingProductErrorEnum_ShoppingProductError)(0), // 0: google.ads.googleads.v21.errors.ShoppingProductErrorEnum.ShoppingProductError - (*ShoppingProductErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ShoppingProductErrorEnum +var file_google_ads_googleads_v22_errors_shopping_product_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_shopping_product_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_shopping_product_error_proto_goTypes = []any{ + (ShoppingProductErrorEnum_ShoppingProductError)(0), // 0: google.ads.googleads.v22.errors.ShoppingProductErrorEnum.ShoppingProductError + (*ShoppingProductErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ShoppingProductErrorEnum } -var file_google_ads_googleads_v21_errors_shopping_product_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_errors_shopping_product_error_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_shopping_product_error_proto_init() } -func file_google_ads_googleads_v21_errors_shopping_product_error_proto_init() { - if File_google_ads_googleads_v21_errors_shopping_product_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_shopping_product_error_proto_init() } +func file_google_ads_googleads_v22_errors_shopping_product_error_proto_init() { + if File_google_ads_googleads_v22_errors_shopping_product_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_shopping_product_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_shopping_product_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_shopping_product_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_shopping_product_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_shopping_product_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_shopping_product_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_shopping_product_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_shopping_product_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_shopping_product_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_shopping_product_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_shopping_product_error_proto = out.File - file_google_ads_googleads_v21_errors_shopping_product_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_shopping_product_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_shopping_product_error_proto = out.File + file_google_ads_googleads_v22_errors_shopping_product_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_shopping_product_error_proto_depIdxs = nil } diff --git a/errors/size_limit_error.pb.go b/errors/size_limit_error.pb.go index ae337c9e..7efac0fd 100644 --- a/errors/size_limit_error.pb.go +++ b/errors/size_limit_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/size_limit_error.proto +// source: google/ads/googleads/v22/errors/size_limit_error.proto package errors @@ -78,11 +78,11 @@ func (x SizeLimitErrorEnum_SizeLimitError) String() string { } func (SizeLimitErrorEnum_SizeLimitError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_size_limit_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_size_limit_error_proto_enumTypes[0].Descriptor() } func (SizeLimitErrorEnum_SizeLimitError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_size_limit_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_size_limit_error_proto_enumTypes[0] } func (x SizeLimitErrorEnum_SizeLimitError) Number() protoreflect.EnumNumber { @@ -91,7 +91,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_v21_errors_size_limit_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_size_limit_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_size_limit_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -115,7 +115,7 @@ func (x *SizeLimitErrorEnum) String() string { func (*SizeLimitErrorEnum) ProtoMessage() {} func (x *SizeLimitErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_size_limit_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_size_limit_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -128,18 +128,18 @@ func (x *SizeLimitErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SizeLimitErrorEnum.ProtoReflect.Descriptor instead. func (*SizeLimitErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_size_limit_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_size_limit_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x87, 0x01, 0x0a, 0x12, 0x53, 0x69, + 0x32, 0x32, 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, @@ -150,42 +150,42 @@ var file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x13, 0x53, 0x69, 0x7a, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_size_limit_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_size_limit_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_size_limit_error_proto_goTypes = []any{ - (SizeLimitErrorEnum_SizeLimitError)(0), // 0: google.ads.googleads.v21.errors.SizeLimitErrorEnum.SizeLimitError - (*SizeLimitErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SizeLimitErrorEnum +var file_google_ads_googleads_v22_errors_size_limit_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_size_limit_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_size_limit_error_proto_goTypes = []any{ + (SizeLimitErrorEnum_SizeLimitError)(0), // 0: google.ads.googleads.v22.errors.SizeLimitErrorEnum.SizeLimitError + (*SizeLimitErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SizeLimitErrorEnum } -var file_google_ads_googleads_v21_errors_size_limit_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -193,27 +193,27 @@ var file_google_ads_googleads_v21_errors_size_limit_error_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_size_limit_error_proto_init() } -func file_google_ads_googleads_v21_errors_size_limit_error_proto_init() { - if File_google_ads_googleads_v21_errors_size_limit_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_size_limit_error_proto_init() } +func file_google_ads_googleads_v22_errors_size_limit_error_proto_init() { + if File_google_ads_googleads_v22_errors_size_limit_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_size_limit_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_size_limit_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_size_limit_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_size_limit_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_size_limit_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_size_limit_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_size_limit_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_size_limit_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_size_limit_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_size_limit_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_size_limit_error_proto = out.File - file_google_ads_googleads_v21_errors_size_limit_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_size_limit_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_size_limit_error_proto = out.File + file_google_ads_googleads_v22_errors_size_limit_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_size_limit_error_proto_depIdxs = nil } diff --git a/errors/smart_campaign_error.pb.go b/errors/smart_campaign_error.pb.go index 7df50fed..7d4937f6 100644 --- a/errors/smart_campaign_error.pb.go +++ b/errors/smart_campaign_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/smart_campaign_error.proto +// source: google/ads/googleads/v22/errors/smart_campaign_error.proto package errors @@ -97,11 +97,11 @@ func (x SmartCampaignErrorEnum_SmartCampaignError) String() string { } func (SmartCampaignErrorEnum_SmartCampaignError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_smart_campaign_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_smart_campaign_error_proto_enumTypes[0].Descriptor() } func (SmartCampaignErrorEnum_SmartCampaignError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_smart_campaign_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_smart_campaign_error_proto_enumTypes[0] } func (x SmartCampaignErrorEnum_SmartCampaignError) Number() protoreflect.EnumNumber { @@ -110,7 +110,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_v21_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_smart_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_smart_campaign_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *SmartCampaignErrorEnum) String() string { func (*SmartCampaignErrorEnum) ProtoMessage() {} func (x *SmartCampaignErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_smart_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_smart_campaign_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,18 +147,18 @@ func (x *SmartCampaignErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignErrorEnum.ProtoReflect.Descriptor instead. func (*SmartCampaignErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_smart_campaign_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_smart_campaign_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xbe, 0x02, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -180,42 +180,42 @@ var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_goTypes = []any{ - (SmartCampaignErrorEnum_SmartCampaignError)(0), // 0: google.ads.googleads.v21.errors.SmartCampaignErrorEnum.SmartCampaignError - (*SmartCampaignErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.SmartCampaignErrorEnum +var file_google_ads_googleads_v22_errors_smart_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_smart_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_smart_campaign_error_proto_goTypes = []any{ + (SmartCampaignErrorEnum_SmartCampaignError)(0), // 0: google.ads.googleads.v22.errors.SmartCampaignErrorEnum.SmartCampaignError + (*SmartCampaignErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.SmartCampaignErrorEnum } -var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -223,27 +223,27 @@ var file_google_ads_googleads_v21_errors_smart_campaign_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_smart_campaign_error_proto_init() } -func file_google_ads_googleads_v21_errors_smart_campaign_error_proto_init() { - if File_google_ads_googleads_v21_errors_smart_campaign_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_smart_campaign_error_proto_init() } +func file_google_ads_googleads_v22_errors_smart_campaign_error_proto_init() { + if File_google_ads_googleads_v22_errors_smart_campaign_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_smart_campaign_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_smart_campaign_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_smart_campaign_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_smart_campaign_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_smart_campaign_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_smart_campaign_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_smart_campaign_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_smart_campaign_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_smart_campaign_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_smart_campaign_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_smart_campaign_error_proto = out.File - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_smart_campaign_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_smart_campaign_error_proto = out.File + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_smart_campaign_error_proto_depIdxs = nil } diff --git a/errors/string_format_error.pb.go b/errors/string_format_error.pb.go index 885c7b56..eef067e4 100644 --- a/errors/string_format_error.pb.go +++ b/errors/string_format_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/string_format_error.proto +// source: google/ads/googleads/v22/errors/string_format_error.proto package errors @@ -76,11 +76,11 @@ func (x StringFormatErrorEnum_StringFormatError) String() string { } func (StringFormatErrorEnum_StringFormatError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_string_format_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_string_format_error_proto_enumTypes[0].Descriptor() } func (StringFormatErrorEnum_StringFormatError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_string_format_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_string_format_error_proto_enumTypes[0] } func (x StringFormatErrorEnum_StringFormatError) Number() protoreflect.EnumNumber { @@ -89,7 +89,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_v21_errors_string_format_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_string_format_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_string_format_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -113,7 +113,7 @@ func (x *StringFormatErrorEnum) String() string { func (*StringFormatErrorEnum) ProtoMessage() {} func (x *StringFormatErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_string_format_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_string_format_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -126,18 +126,18 @@ func (x *StringFormatErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use StringFormatErrorEnum.ProtoReflect.Descriptor instead. func (*StringFormatErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_string_format_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_string_format_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_string_format_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x71, 0x0a, 0x15, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,42 +146,42 @@ var file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_string_format_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_string_format_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_string_format_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_string_format_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_string_format_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_string_format_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_string_format_error_proto_goTypes = []any{ - (StringFormatErrorEnum_StringFormatError)(0), // 0: google.ads.googleads.v21.errors.StringFormatErrorEnum.StringFormatError - (*StringFormatErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.StringFormatErrorEnum +var file_google_ads_googleads_v22_errors_string_format_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_string_format_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_string_format_error_proto_goTypes = []any{ + (StringFormatErrorEnum_StringFormatError)(0), // 0: google.ads.googleads.v22.errors.StringFormatErrorEnum.StringFormatError + (*StringFormatErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.StringFormatErrorEnum } -var file_google_ads_googleads_v21_errors_string_format_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_errors_string_format_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_string_format_error_proto_init() } -func file_google_ads_googleads_v21_errors_string_format_error_proto_init() { - if File_google_ads_googleads_v21_errors_string_format_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_string_format_error_proto_init() } +func file_google_ads_googleads_v22_errors_string_format_error_proto_init() { + if File_google_ads_googleads_v22_errors_string_format_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_string_format_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_string_format_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_string_format_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_string_format_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_string_format_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_string_format_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_string_format_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_string_format_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_string_format_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_string_format_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_string_format_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_string_format_error_proto = out.File - file_google_ads_googleads_v21_errors_string_format_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_string_format_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_string_format_error_proto = out.File + file_google_ads_googleads_v22_errors_string_format_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_string_format_error_proto_depIdxs = nil } diff --git a/errors/string_length_error.pb.go b/errors/string_length_error.pb.go index 8b3dfb9d..e7217da9 100644 --- a/errors/string_length_error.pb.go +++ b/errors/string_length_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/string_length_error.proto +// source: google/ads/googleads/v22/errors/string_length_error.proto package errors @@ -81,11 +81,11 @@ func (x StringLengthErrorEnum_StringLengthError) String() string { } func (StringLengthErrorEnum_StringLengthError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_string_length_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_string_length_error_proto_enumTypes[0].Descriptor() } func (StringLengthErrorEnum_StringLengthError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_string_length_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_string_length_error_proto_enumTypes[0] } func (x StringLengthErrorEnum_StringLengthError) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_errors_string_length_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_string_length_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_string_length_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *StringLengthErrorEnum) String() string { func (*StringLengthErrorEnum) ProtoMessage() {} func (x *StringLengthErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_string_length_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_string_length_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *StringLengthErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use StringLengthErrorEnum.ProtoReflect.Descriptor instead. func (*StringLengthErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_string_length_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_string_length_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_string_length_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x72, 0x0a, 0x15, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x16, 0x53, 0x74, 0x72, 0x69, 0x6e, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, - 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, + 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_string_length_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_string_length_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_string_length_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_string_length_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_string_length_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_string_length_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_string_length_error_proto_goTypes = []any{ - (StringLengthErrorEnum_StringLengthError)(0), // 0: google.ads.googleads.v21.errors.StringLengthErrorEnum.StringLengthError - (*StringLengthErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.StringLengthErrorEnum +var file_google_ads_googleads_v22_errors_string_length_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_string_length_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_string_length_error_proto_goTypes = []any{ + (StringLengthErrorEnum_StringLengthError)(0), // 0: google.ads.googleads.v22.errors.StringLengthErrorEnum.StringLengthError + (*StringLengthErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.StringLengthErrorEnum } -var file_google_ads_googleads_v21_errors_string_length_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_errors_string_length_error_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_string_length_error_proto_init() } -func file_google_ads_googleads_v21_errors_string_length_error_proto_init() { - if File_google_ads_googleads_v21_errors_string_length_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_string_length_error_proto_init() } +func file_google_ads_googleads_v22_errors_string_length_error_proto_init() { + if File_google_ads_googleads_v22_errors_string_length_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_string_length_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_string_length_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_string_length_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_string_length_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_string_length_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_string_length_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_string_length_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_string_length_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_string_length_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_string_length_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_string_length_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_string_length_error_proto = out.File - file_google_ads_googleads_v21_errors_string_length_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_string_length_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_string_length_error_proto = out.File + file_google_ads_googleads_v22_errors_string_length_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 3716ca2b..93aa962c 100644 --- a/errors/third_party_app_analytics_link_error.pb.go +++ b/errors/third_party_app_analytics_link_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/third_party_app_analytics_link_error.proto +// source: google/ads/googleads/v22/errors/third_party_app_analytics_link_error.proto package errors @@ -85,11 +85,11 @@ func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Str } func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_enumTypes[0].Descriptor() } func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_enumTypes[0] } func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Number() protoreflect.EnumNumber { @@ -98,7 +98,7 @@ func (x ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) Num // Deprecated: Use ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError.Descriptor instead. func (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -122,7 +122,7 @@ func (x *ThirdPartyAppAnalyticsLinkErrorEnum) String() string { func (*ThirdPartyAppAnalyticsLinkErrorEnum) ProtoMessage() {} func (x *ThirdPartyAppAnalyticsLinkErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -135,19 +135,19 @@ func (x *ThirdPartyAppAnalyticsLinkErrorEnum) ProtoReflect() protoreflect.Messag // Deprecated: Use ThirdPartyAppAnalyticsLinkErrorEnum.ProtoReflect.Descriptor instead. func (*ThirdPartyAppAnalyticsLinkErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfe, 0x01, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,43 +165,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_goTypes = []any{ - (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 0: google.ads.googleads.v21.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError - (*ThirdPartyAppAnalyticsLinkErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.ThirdPartyAppAnalyticsLinkErrorEnum +var file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_goTypes = []any{ + (ThirdPartyAppAnalyticsLinkErrorEnum_ThirdPartyAppAnalyticsLinkError)(0), // 0: google.ads.googleads.v22.errors.ThirdPartyAppAnalyticsLinkErrorEnum.ThirdPartyAppAnalyticsLinkError + (*ThirdPartyAppAnalyticsLinkErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.ThirdPartyAppAnalyticsLinkErrorEnum } -var file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_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_v21_errors_third_party_app_analytics_link_error_proto_init() } -func file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_init() { - if File_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_init() } +func file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_init() { + if File_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto = out.File - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_third_party_app_analytics_link_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto = out.File + file_google_ads_googleads_v22_errors_third_party_app_analytics_link_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 7356bb73..f4ffaea1 100644 --- a/errors/time_zone_error.pb.go +++ b/errors/time_zone_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/time_zone_error.proto +// source: google/ads/googleads/v22/errors/time_zone_error.proto package errors @@ -72,11 +72,11 @@ func (x TimeZoneErrorEnum_TimeZoneError) String() string { } func (TimeZoneErrorEnum_TimeZoneError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_time_zone_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_time_zone_error_proto_enumTypes[0].Descriptor() } func (TimeZoneErrorEnum_TimeZoneError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_time_zone_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_time_zone_error_proto_enumTypes[0] } func (x TimeZoneErrorEnum_TimeZoneError) Number() protoreflect.EnumNumber { @@ -85,7 +85,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_v21_errors_time_zone_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_time_zone_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_time_zone_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *TimeZoneErrorEnum) String() string { func (*TimeZoneErrorEnum) ProtoMessage() {} func (x *TimeZoneErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_time_zone_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_time_zone_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,18 +122,18 @@ func (x *TimeZoneErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use TimeZoneErrorEnum.ProtoReflect.Descriptor instead. func (*TimeZoneErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_time_zone_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_time_zone_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x59, 0x0a, 0x11, 0x54, 0x69, 0x6d, 0x65, + 0x32, 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, @@ -141,41 +141,41 @@ var file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x54, 0x69, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, - 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_time_zone_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_time_zone_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_time_zone_error_proto_goTypes = []any{ - (TimeZoneErrorEnum_TimeZoneError)(0), // 0: google.ads.googleads.v21.errors.TimeZoneErrorEnum.TimeZoneError - (*TimeZoneErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.TimeZoneErrorEnum +var file_google_ads_googleads_v22_errors_time_zone_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_time_zone_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_time_zone_error_proto_goTypes = []any{ + (TimeZoneErrorEnum_TimeZoneError)(0), // 0: google.ads.googleads.v22.errors.TimeZoneErrorEnum.TimeZoneError + (*TimeZoneErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.TimeZoneErrorEnum } -var file_google_ads_googleads_v21_errors_time_zone_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_errors_time_zone_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_time_zone_error_proto_init() } -func file_google_ads_googleads_v21_errors_time_zone_error_proto_init() { - if File_google_ads_googleads_v21_errors_time_zone_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_time_zone_error_proto_init() } +func file_google_ads_googleads_v22_errors_time_zone_error_proto_init() { + if File_google_ads_googleads_v22_errors_time_zone_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_time_zone_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_time_zone_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_time_zone_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_time_zone_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_time_zone_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_time_zone_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_time_zone_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_time_zone_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_time_zone_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_time_zone_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_time_zone_error_proto = out.File - file_google_ads_googleads_v21_errors_time_zone_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_time_zone_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_time_zone_error_proto = out.File + file_google_ads_googleads_v22_errors_time_zone_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_time_zone_error_proto_depIdxs = nil } diff --git a/errors/url_field_error.pb.go b/errors/url_field_error.pb.go index 89df7973..3fcbe4c1 100644 --- a/errors/url_field_error.pb.go +++ b/errors/url_field_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/url_field_error.proto +// source: google/ads/googleads/v22/errors/url_field_error.proto package errors @@ -299,11 +299,11 @@ func (x UrlFieldErrorEnum_UrlFieldError) String() string { } func (UrlFieldErrorEnum_UrlFieldError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_url_field_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_url_field_error_proto_enumTypes[0].Descriptor() } func (UrlFieldErrorEnum_UrlFieldError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_url_field_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_url_field_error_proto_enumTypes[0] } func (x UrlFieldErrorEnum_UrlFieldError) Number() protoreflect.EnumNumber { @@ -312,7 +312,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_v21_errors_url_field_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible url field errors. @@ -324,7 +324,7 @@ type UrlFieldErrorEnum struct { func (x *UrlFieldErrorEnum) Reset() { *x = UrlFieldErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_url_field_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_url_field_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *UrlFieldErrorEnum) String() string { func (*UrlFieldErrorEnum) ProtoMessage() {} func (x *UrlFieldErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_url_field_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_url_field_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,18 +349,18 @@ func (x *UrlFieldErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlFieldErrorEnum.ProtoReflect.Descriptor instead. func (*UrlFieldErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_url_field_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_url_field_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_url_field_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfa, 0x0e, 0x0a, 0x11, 0x55, 0x72, 0x6c, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xfa, 0x0e, 0x0a, 0x11, 0x55, 0x72, 0x6c, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xe4, 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, @@ -482,42 +482,42 @@ var file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc = string( 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x41, 0x50, 0x50, 0x5f, 0x53, 0x54, 0x4f, 0x52, 0x45, 0x10, 0x3b, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x12, 0x55, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, - 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, + 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_url_field_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_url_field_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_url_field_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_url_field_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_url_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_url_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_url_field_error_proto_goTypes = []any{ - (UrlFieldErrorEnum_UrlFieldError)(0), // 0: google.ads.googleads.v21.errors.UrlFieldErrorEnum.UrlFieldError - (*UrlFieldErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.UrlFieldErrorEnum +var file_google_ads_googleads_v22_errors_url_field_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_url_field_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_url_field_error_proto_goTypes = []any{ + (UrlFieldErrorEnum_UrlFieldError)(0), // 0: google.ads.googleads.v22.errors.UrlFieldErrorEnum.UrlFieldError + (*UrlFieldErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.UrlFieldErrorEnum } -var file_google_ads_googleads_v21_errors_url_field_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -525,27 +525,27 @@ var file_google_ads_googleads_v21_errors_url_field_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_url_field_error_proto_init() } -func file_google_ads_googleads_v21_errors_url_field_error_proto_init() { - if File_google_ads_googleads_v21_errors_url_field_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_url_field_error_proto_init() } +func file_google_ads_googleads_v22_errors_url_field_error_proto_init() { + if File_google_ads_googleads_v22_errors_url_field_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_url_field_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_url_field_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_url_field_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_url_field_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_url_field_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_url_field_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_url_field_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_url_field_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_url_field_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_url_field_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_url_field_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_url_field_error_proto = out.File - file_google_ads_googleads_v21_errors_url_field_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_url_field_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_url_field_error_proto = out.File + file_google_ads_googleads_v22_errors_url_field_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_url_field_error_proto_depIdxs = nil } diff --git a/errors/user_data_error.pb.go b/errors/user_data_error.pb.go index 44442da5..45ca8ac2 100644 --- a/errors/user_data_error.pb.go +++ b/errors/user_data_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/user_data_error.proto +// source: google/ads/googleads/v22/errors/user_data_error.proto package errors @@ -81,11 +81,11 @@ func (x UserDataErrorEnum_UserDataError) String() string { } func (UserDataErrorEnum_UserDataError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_user_data_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_user_data_error_proto_enumTypes[0].Descriptor() } func (UserDataErrorEnum_UserDataError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_user_data_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_user_data_error_proto_enumTypes[0] } func (x UserDataErrorEnum_UserDataError) Number() protoreflect.EnumNumber { @@ -94,7 +94,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_v21_errors_user_data_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_user_data_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_data_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *UserDataErrorEnum) String() string { func (*UserDataErrorEnum) ProtoMessage() {} func (x *UserDataErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_user_data_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_data_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,18 +131,18 @@ func (x *UserDataErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserDataErrorEnum.ProtoReflect.Descriptor instead. func (*UserDataErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_user_data_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_user_data_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_user_data_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaf, 0x01, 0x0a, 0x11, 0x55, 0x73, 0x65, + 0x32, 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, @@ -155,42 +155,42 @@ var file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, + 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, - 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, - 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, + 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, - 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_data_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_data_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_user_data_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_user_data_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_user_data_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_user_data_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_user_data_error_proto_goTypes = []any{ - (UserDataErrorEnum_UserDataError)(0), // 0: google.ads.googleads.v21.errors.UserDataErrorEnum.UserDataError - (*UserDataErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.UserDataErrorEnum +var file_google_ads_googleads_v22_errors_user_data_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_user_data_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_user_data_error_proto_goTypes = []any{ + (UserDataErrorEnum_UserDataError)(0), // 0: google.ads.googleads.v22.errors.UserDataErrorEnum.UserDataError + (*UserDataErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.UserDataErrorEnum } -var file_google_ads_googleads_v21_errors_user_data_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -198,27 +198,27 @@ var file_google_ads_googleads_v21_errors_user_data_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_user_data_error_proto_init() } -func file_google_ads_googleads_v21_errors_user_data_error_proto_init() { - if File_google_ads_googleads_v21_errors_user_data_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_user_data_error_proto_init() } +func file_google_ads_googleads_v22_errors_user_data_error_proto_init() { + if File_google_ads_googleads_v22_errors_user_data_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_data_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_data_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_data_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_user_data_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_user_data_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_user_data_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_user_data_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_user_data_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_user_data_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_user_data_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_user_data_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_user_data_error_proto = out.File - file_google_ads_googleads_v21_errors_user_data_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_user_data_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_user_data_error_proto = out.File + file_google_ads_googleads_v22_errors_user_data_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 4186f21f..b32f9ac1 100644 --- a/errors/user_list_customer_type_error.pb.go +++ b/errors/user_list_customer_type_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/user_list_customer_type_error.proto +// source: google/ads/googleads/v22/errors/user_list_customer_type_error.proto package errors @@ -101,11 +101,11 @@ func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) String() string } func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_enumTypes[0].Descriptor() } func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_enumTypes[0] } func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Number() protoreflect.EnumNumber { @@ -114,7 +114,7 @@ func (x UserListCustomerTypeErrorEnum_UserListCustomerTypeError) Number() protor // Deprecated: Use UserListCustomerTypeErrorEnum_UserListCustomerTypeError.Descriptor instead. func (UserListCustomerTypeErrorEnum_UserListCustomerTypeError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible user list customer type errors. @@ -126,7 +126,7 @@ type UserListCustomerTypeErrorEnum struct { func (x *UserListCustomerTypeErrorEnum) Reset() { *x = UserListCustomerTypeErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -138,7 +138,7 @@ func (x *UserListCustomerTypeErrorEnum) String() string { func (*UserListCustomerTypeErrorEnum) ProtoMessage() {} func (x *UserListCustomerTypeErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -151,18 +151,18 @@ func (x *UserListCustomerTypeErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListCustomerTypeErrorEnum.ProtoReflect.Descriptor instead. func (*UserListCustomerTypeErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_user_list_customer_type_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_user_list_customer_type_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,43 +183,43 @@ var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_raw 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_goTypes = []any{ - (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 0: google.ads.googleads.v21.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError - (*UserListCustomerTypeErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.UserListCustomerTypeErrorEnum +var file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_goTypes = []any{ + (UserListCustomerTypeErrorEnum_UserListCustomerTypeError)(0), // 0: google.ads.googleads.v22.errors.UserListCustomerTypeErrorEnum.UserListCustomerTypeError + (*UserListCustomerTypeErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.UserListCustomerTypeErrorEnum } -var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -227,27 +227,27 @@ var file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_init() } -func file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_init() { - if File_google_ads_googleads_v21_errors_user_list_customer_type_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_init() } +func file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_init() { + if File_google_ads_googleads_v22_errors_user_list_customer_type_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_user_list_customer_type_error_proto = out.File - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_user_list_customer_type_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_user_list_customer_type_error_proto = out.File + file_google_ads_googleads_v22_errors_user_list_customer_type_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 f49be6ca..1785d5cd 100644 --- a/errors/user_list_error.pb.go +++ b/errors/user_list_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/user_list_error.proto +// source: google/ads/googleads/v22/errors/user_list_error.proto package errors @@ -117,6 +117,25 @@ const ( UserListErrorEnum_INVALID_SEED_LIST_TYPE UserListErrorEnum_UserListError = 44 // One or more invalid country codes are added to Lookalike UserList. UserListErrorEnum_INVALID_COUNTRY_CODES UserListErrorEnum_UserListError = 45 + // The partner audience source is not supported for the user list type. + UserListErrorEnum_PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE UserListErrorEnum_UserListError = 47 + // The commerce partner is only supported for COMMERCE_AUDIENCE. + UserListErrorEnum_COMMERCE_PARTNER_NOT_ALLOWED UserListErrorEnum_UserListError = 48 + // The partner audience info is not supported for the user list type. + UserListErrorEnum_PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE UserListErrorEnum_UserListError = 49 + // Manager account is not allowed to create this UserList. + UserListErrorEnum_PARTNER_MANAGER_ACCOUNT_DISALLOWED UserListErrorEnum_UserListError = 50 + // This UserList can only be created by allowlisted partners. + UserListErrorEnum_PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA UserListErrorEnum_UserListError = 51 + // The advertiser must accept the Terms of Service to create this UserList. + UserListErrorEnum_ADVERTISER_TOS_NOT_ACCEPTED UserListErrorEnum_UserListError = 52 + // The advertiser must have an active link to the partner to create this + // UserList. + UserListErrorEnum_ADVERTISER_PARTNER_LINK_MISSING UserListErrorEnum_UserListError = 53 + // This UserList can only be created for allowlisted advertisers. + UserListErrorEnum_ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA UserListErrorEnum_UserListError = 54 + // This UserList is not allowed for this account type. + UserListErrorEnum_ACCOUNT_SETTING_TYPE_NOT_ALLOWED UserListErrorEnum_UserListError = 55 ) // Enum value maps for UserListErrorEnum_UserListError. @@ -157,43 +176,61 @@ var ( 43: "INVALID_SEED_LIST_ACCESS_REASON", 44: "INVALID_SEED_LIST_TYPE", 45: "INVALID_COUNTRY_CODES", + 47: "PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE", + 48: "COMMERCE_PARTNER_NOT_ALLOWED", + 49: "PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE", + 50: "PARTNER_MANAGER_ACCOUNT_DISALLOWED", + 51: "PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA", + 52: "ADVERTISER_TOS_NOT_ACCEPTED", + 53: "ADVERTISER_PARTNER_LINK_MISSING", + 54: "ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA", + 55: "ACCOUNT_SETTING_TYPE_NOT_ALLOWED", } UserListErrorEnum_UserListError_value = map[string]int32{ "UNSPECIFIED": 0, "UNKNOWN": 1, - "EXTERNAL_REMARKETING_USER_LIST_MUTATE_NOT_SUPPORTED": 2, - "CONCRETE_TYPE_REQUIRED": 3, - "CONVERSION_TYPE_ID_REQUIRED": 4, - "DUPLICATE_CONVERSION_TYPES": 5, - "INVALID_CONVERSION_TYPE": 6, - "INVALID_DESCRIPTION": 7, - "INVALID_NAME": 8, - "INVALID_TYPE": 9, - "CAN_NOT_ADD_LOGICAL_LIST_AS_LOGICAL_LIST_OPERAND": 10, - "INVALID_USER_LIST_LOGICAL_RULE_OPERAND": 11, - "NAME_ALREADY_USED": 12, - "NEW_CONVERSION_TYPE_NAME_REQUIRED": 13, - "CONVERSION_TYPE_NAME_ALREADY_USED": 14, - "OWNERSHIP_REQUIRED_FOR_SET": 15, - "USER_LIST_MUTATE_NOT_SUPPORTED": 16, - "INVALID_RULE": 17, - "INVALID_DATE_RANGE": 27, - "CAN_NOT_MUTATE_SENSITIVE_USERLIST": 28, - "MAX_NUM_RULEBASED_USERLISTS": 29, - "CANNOT_MODIFY_BILLABLE_RECORD_COUNT": 30, - "APP_ID_NOT_SET": 31, - "USERLIST_NAME_IS_RESERVED_FOR_SYSTEM_LIST": 32, - "ADVERTISER_NOT_ON_ALLOWLIST_FOR_USING_UPLOADED_DATA": 37, - "RULE_TYPE_IS_NOT_SUPPORTED": 34, - "CAN_NOT_ADD_A_SIMILAR_USERLIST_AS_LOGICAL_LIST_OPERAND": 35, - "CAN_NOT_MIX_CRM_BASED_IN_LOGICAL_LIST_WITH_OTHER_LISTS": 36, - "APP_ID_NOT_ALLOWED": 39, - "CANNOT_MUTATE_SYSTEM_LIST": 40, - "MOBILE_APP_IS_SENSITIVE": 41, - "SEED_LIST_DOES_NOT_EXIST": 42, - "INVALID_SEED_LIST_ACCESS_REASON": 43, - "INVALID_SEED_LIST_TYPE": 44, - "INVALID_COUNTRY_CODES": 45, + "EXTERNAL_REMARKETING_USER_LIST_MUTATE_NOT_SUPPORTED": 2, + "CONCRETE_TYPE_REQUIRED": 3, + "CONVERSION_TYPE_ID_REQUIRED": 4, + "DUPLICATE_CONVERSION_TYPES": 5, + "INVALID_CONVERSION_TYPE": 6, + "INVALID_DESCRIPTION": 7, + "INVALID_NAME": 8, + "INVALID_TYPE": 9, + "CAN_NOT_ADD_LOGICAL_LIST_AS_LOGICAL_LIST_OPERAND": 10, + "INVALID_USER_LIST_LOGICAL_RULE_OPERAND": 11, + "NAME_ALREADY_USED": 12, + "NEW_CONVERSION_TYPE_NAME_REQUIRED": 13, + "CONVERSION_TYPE_NAME_ALREADY_USED": 14, + "OWNERSHIP_REQUIRED_FOR_SET": 15, + "USER_LIST_MUTATE_NOT_SUPPORTED": 16, + "INVALID_RULE": 17, + "INVALID_DATE_RANGE": 27, + "CAN_NOT_MUTATE_SENSITIVE_USERLIST": 28, + "MAX_NUM_RULEBASED_USERLISTS": 29, + "CANNOT_MODIFY_BILLABLE_RECORD_COUNT": 30, + "APP_ID_NOT_SET": 31, + "USERLIST_NAME_IS_RESERVED_FOR_SYSTEM_LIST": 32, + "ADVERTISER_NOT_ON_ALLOWLIST_FOR_USING_UPLOADED_DATA": 37, + "RULE_TYPE_IS_NOT_SUPPORTED": 34, + "CAN_NOT_ADD_A_SIMILAR_USERLIST_AS_LOGICAL_LIST_OPERAND": 35, + "CAN_NOT_MIX_CRM_BASED_IN_LOGICAL_LIST_WITH_OTHER_LISTS": 36, + "APP_ID_NOT_ALLOWED": 39, + "CANNOT_MUTATE_SYSTEM_LIST": 40, + "MOBILE_APP_IS_SENSITIVE": 41, + "SEED_LIST_DOES_NOT_EXIST": 42, + "INVALID_SEED_LIST_ACCESS_REASON": 43, + "INVALID_SEED_LIST_TYPE": 44, + "INVALID_COUNTRY_CODES": 45, + "PARTNER_AUDIENCE_SOURCE_NOT_SUPPORTED_FOR_USER_LIST_TYPE": 47, + "COMMERCE_PARTNER_NOT_ALLOWED": 48, + "PARTNER_AUDIENCE_INFO_NOT_SUPPORTED_FOR_USER_LIST_TYPE": 49, + "PARTNER_MANAGER_ACCOUNT_DISALLOWED": 50, + "PARTNER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA": 51, + "ADVERTISER_TOS_NOT_ACCEPTED": 52, + "ADVERTISER_PARTNER_LINK_MISSING": 53, + "ADVERTISER_NOT_ALLOWLISTED_FOR_THIRD_PARTY_PARTNER_DATA": 54, + "ACCOUNT_SETTING_TYPE_NOT_ALLOWED": 55, } ) @@ -208,11 +245,11 @@ func (x UserListErrorEnum_UserListError) String() string { } func (UserListErrorEnum_UserListError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_user_list_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_user_list_error_proto_enumTypes[0].Descriptor() } func (UserListErrorEnum_UserListError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_user_list_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_user_list_error_proto_enumTypes[0] } func (x UserListErrorEnum_UserListError) Number() protoreflect.EnumNumber { @@ -221,7 +258,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_v21_errors_user_list_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescGZIP(), []int{0, 0} } // Container for enum describing possible user list errors. @@ -233,7 +270,7 @@ type UserListErrorEnum struct { func (x *UserListErrorEnum) Reset() { *x = UserListErrorEnum{} - mi := &file_google_ads_googleads_v21_errors_user_list_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_list_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -245,7 +282,7 @@ func (x *UserListErrorEnum) String() string { func (*UserListErrorEnum) ProtoMessage() {} func (x *UserListErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_user_list_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_user_list_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -258,20 +295,20 @@ func (x *UserListErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListErrorEnum.ProtoReflect.Descriptor instead. func (*UserListErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_user_list_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_user_list_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_user_list_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xe2, 0x0c, 0x0a, 0x11, 0x55, 0x73, 0x65, + 0x72, 0x4c, 0x69, 0x73, 0x74, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x22, 0xcc, + 0x0c, 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, 0x00, 0x12, 0x0b, 0x0a, 0x07, 0x55, 0x4e, 0x4b, 0x4e, 0x4f, 0x57, 0x4e, 0x10, 0x01, 0x12, 0x37, 0x0a, 0x33, 0x45, 0x58, 0x54, 0x45, 0x52, 0x4e, 0x41, 0x4c, 0x5f, 0x52, 0x45, 0x4d, 0x41, 0x52, @@ -345,44 +382,70 @@ var file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc = string( 0x1a, 0x0a, 0x16, 0x49, 0x4e, 0x56, 0x41, 0x4c, 0x49, 0x44, 0x5f, 0x53, 0x45, 0x45, 0x44, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x10, 0x2c, 0x12, 0x19, 0x0a, 0x15, 0x49, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, - 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, - 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, - 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, - 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, - 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 0x4f, 0x44, 0x45, 0x53, 0x10, 0x2d, 0x12, 0x3c, 0x0a, 0x38, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, + 0x52, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x5f, 0x53, 0x4f, 0x55, 0x52, 0x43, + 0x45, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, + 0x46, 0x4f, 0x52, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x54, 0x59, + 0x50, 0x45, 0x10, 0x2f, 0x12, 0x20, 0x0a, 0x1c, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x52, 0x43, 0x45, + 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, + 0x4f, 0x57, 0x45, 0x44, 0x10, 0x30, 0x12, 0x3a, 0x0a, 0x36, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, + 0x52, 0x5f, 0x41, 0x55, 0x44, 0x49, 0x45, 0x4e, 0x43, 0x45, 0x5f, 0x49, 0x4e, 0x46, 0x4f, 0x5f, + 0x4e, 0x4f, 0x54, 0x5f, 0x53, 0x55, 0x50, 0x50, 0x4f, 0x52, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, + 0x52, 0x5f, 0x55, 0x53, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x53, 0x54, 0x5f, 0x54, 0x59, 0x50, 0x45, + 0x10, 0x31, 0x12, 0x26, 0x0a, 0x22, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x4d, 0x41, + 0x4e, 0x41, 0x47, 0x45, 0x52, 0x5f, 0x41, 0x43, 0x43, 0x4f, 0x55, 0x4e, 0x54, 0x5f, 0x44, 0x49, + 0x53, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x32, 0x12, 0x38, 0x0a, 0x34, 0x50, 0x41, + 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x4c, + 0x49, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x54, 0x48, 0x49, 0x52, 0x44, 0x5f, + 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x44, 0x41, + 0x54, 0x41, 0x10, 0x33, 0x12, 0x1f, 0x0a, 0x1b, 0x41, 0x44, 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, + 0x45, 0x52, 0x5f, 0x54, 0x4f, 0x53, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x43, 0x43, 0x45, 0x50, + 0x54, 0x45, 0x44, 0x10, 0x34, 0x12, 0x23, 0x0a, 0x1f, 0x41, 0x44, 0x56, 0x45, 0x52, 0x54, 0x49, + 0x53, 0x45, 0x52, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, + 0x5f, 0x4d, 0x49, 0x53, 0x53, 0x49, 0x4e, 0x47, 0x10, 0x35, 0x12, 0x3b, 0x0a, 0x37, 0x41, 0x44, + 0x56, 0x45, 0x52, 0x54, 0x49, 0x53, 0x45, 0x52, 0x5f, 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, + 0x4f, 0x57, 0x4c, 0x49, 0x53, 0x54, 0x45, 0x44, 0x5f, 0x46, 0x4f, 0x52, 0x5f, 0x54, 0x48, 0x49, + 0x52, 0x44, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x59, 0x5f, 0x50, 0x41, 0x52, 0x54, 0x4e, 0x45, 0x52, + 0x5f, 0x44, 0x41, 0x54, 0x41, 0x10, 0x36, 0x12, 0x24, 0x0a, 0x20, 0x41, 0x43, 0x43, 0x4f, 0x55, + 0x4e, 0x54, 0x5f, 0x53, 0x45, 0x54, 0x54, 0x49, 0x4e, 0x47, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x5f, + 0x4e, 0x4f, 0x54, 0x5f, 0x41, 0x4c, 0x4c, 0x4f, 0x57, 0x45, 0x44, 0x10, 0x37, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, + 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, + 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, + 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, + 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_list_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_list_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_user_list_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_user_list_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_user_list_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_user_list_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_user_list_error_proto_goTypes = []any{ - (UserListErrorEnum_UserListError)(0), // 0: google.ads.googleads.v21.errors.UserListErrorEnum.UserListError - (*UserListErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.UserListErrorEnum +var file_google_ads_googleads_v22_errors_user_list_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_user_list_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_user_list_error_proto_goTypes = []any{ + (UserListErrorEnum_UserListError)(0), // 0: google.ads.googleads.v22.errors.UserListErrorEnum.UserListError + (*UserListErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.UserListErrorEnum } -var file_google_ads_googleads_v21_errors_user_list_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -390,27 +453,27 @@ var file_google_ads_googleads_v21_errors_user_list_error_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_user_list_error_proto_init() } -func file_google_ads_googleads_v21_errors_user_list_error_proto_init() { - if File_google_ads_googleads_v21_errors_user_list_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_user_list_error_proto_init() } +func file_google_ads_googleads_v22_errors_user_list_error_proto_init() { + if File_google_ads_googleads_v22_errors_user_list_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_user_list_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_user_list_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_user_list_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_user_list_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_user_list_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_user_list_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_user_list_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_user_list_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_user_list_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_user_list_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_user_list_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_user_list_error_proto = out.File - file_google_ads_googleads_v21_errors_user_list_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_user_list_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_user_list_error_proto = out.File + file_google_ads_googleads_v22_errors_user_list_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_user_list_error_proto_depIdxs = nil } diff --git a/errors/video_campaign_error.pb.go b/errors/video_campaign_error.pb.go index 70f93644..2f6f9499 100644 --- a/errors/video_campaign_error.pb.go +++ b/errors/video_campaign_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/video_campaign_error.proto +// source: google/ads/googleads/v22/errors/video_campaign_error.proto package errors @@ -73,11 +73,11 @@ func (x VideoCampaignErrorEnum_VideoCampaignError) String() string { } func (VideoCampaignErrorEnum_VideoCampaignError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_video_campaign_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_video_campaign_error_proto_enumTypes[0].Descriptor() } func (VideoCampaignErrorEnum_VideoCampaignError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_video_campaign_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_video_campaign_error_proto_enumTypes[0] } func (x VideoCampaignErrorEnum_VideoCampaignError) Number() protoreflect.EnumNumber { @@ -86,7 +86,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_v21_errors_video_campaign_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_video_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_video_campaign_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -110,7 +110,7 @@ func (x *VideoCampaignErrorEnum) String() string { func (*VideoCampaignErrorEnum) ProtoMessage() {} func (x *VideoCampaignErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_video_campaign_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_video_campaign_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -123,18 +123,18 @@ func (x *VideoCampaignErrorEnum) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoCampaignErrorEnum.ProtoReflect.Descriptor instead. func (*VideoCampaignErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_video_campaign_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_video_campaign_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0x6d, 0x0a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_video_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_video_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_video_campaign_error_proto_goTypes = []any{ - (VideoCampaignErrorEnum_VideoCampaignError)(0), // 0: google.ads.googleads.v21.errors.VideoCampaignErrorEnum.VideoCampaignError - (*VideoCampaignErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.VideoCampaignErrorEnum +var file_google_ads_googleads_v22_errors_video_campaign_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_video_campaign_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_video_campaign_error_proto_goTypes = []any{ + (VideoCampaignErrorEnum_VideoCampaignError)(0), // 0: google.ads.googleads.v22.errors.VideoCampaignErrorEnum.VideoCampaignError + (*VideoCampaignErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.VideoCampaignErrorEnum } -var file_google_ads_googleads_v21_errors_video_campaign_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -186,27 +186,27 @@ var file_google_ads_googleads_v21_errors_video_campaign_error_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_video_campaign_error_proto_init() } -func file_google_ads_googleads_v21_errors_video_campaign_error_proto_init() { - if File_google_ads_googleads_v21_errors_video_campaign_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_video_campaign_error_proto_init() } +func file_google_ads_googleads_v22_errors_video_campaign_error_proto_init() { + if File_google_ads_googleads_v22_errors_video_campaign_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_video_campaign_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_video_campaign_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_video_campaign_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_video_campaign_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_video_campaign_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_video_campaign_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_video_campaign_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_video_campaign_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_video_campaign_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_video_campaign_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_video_campaign_error_proto = out.File - file_google_ads_googleads_v21_errors_video_campaign_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_video_campaign_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_video_campaign_error_proto = out.File + file_google_ads_googleads_v22_errors_video_campaign_error_proto_goTypes = nil + file_google_ads_googleads_v22_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 c41f3868..9ebe7ee5 100644 --- a/errors/youtube_video_registration_error.pb.go +++ b/errors/youtube_video_registration_error.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/errors/youtube_video_registration_error.proto +// source: google/ads/googleads/v22/errors/youtube_video_registration_error.proto package errors @@ -80,11 +80,11 @@ func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) String( } func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_enumTypes[0].Descriptor() } func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_enumTypes[0] + return &file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_enumTypes[0] } func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Number() protoreflect.EnumNumber { @@ -93,7 +93,7 @@ func (x YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) Number( // Deprecated: Use YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError.Descriptor instead. func (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *YoutubeVideoRegistrationErrorEnum) String() string { func (*YoutubeVideoRegistrationErrorEnum) ProtoMessage() {} func (x *YoutubeVideoRegistrationErrorEnum) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,19 +130,19 @@ func (x *YoutubeVideoRegistrationErrorEnum) ProtoReflect() protoreflect.Message // Deprecated: Use YoutubeVideoRegistrationErrorEnum.ProtoReflect.Descriptor instead. func (*YoutubeVideoRegistrationErrorEnum) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescGZIP(), []int{0} } -var File_google_ads_googleads_v21_errors_youtube_video_registration_error_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_errors_youtube_video_registration_error_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x22, 0xaa, 0x01, 0x0a, 0x21, 0x59, 0x6f, + 0x32, 0x32, 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, @@ -155,43 +155,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x42, 0x22, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x3b, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xa2, 0x02, 0x03, 0x47, 0x41, 0x41, 0xaa, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x41, 0x64, 0x73, 0x2e, 0x47, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x31, 0x2e, 0x45, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 0x2e, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xca, 0x02, 0x1f, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x5c, 0x41, 0x64, 0x73, - 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x31, 0x5c, 0x45, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 0x5c, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0xea, 0x02, 0x23, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x3a, 0x3a, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, - 0x56, 0x32, 0x31, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescData []byte + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDesc))) +func file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDesc))) }) - return file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDescData + return file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDescData } -var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_goTypes = []any{ - (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 0: google.ads.googleads.v21.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError - (*YoutubeVideoRegistrationErrorEnum)(nil), // 1: google.ads.googleads.v21.errors.YoutubeVideoRegistrationErrorEnum +var file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_goTypes = []any{ + (YoutubeVideoRegistrationErrorEnum_YoutubeVideoRegistrationError)(0), // 0: google.ads.googleads.v22.errors.YoutubeVideoRegistrationErrorEnum.YoutubeVideoRegistrationError + (*YoutubeVideoRegistrationErrorEnum)(nil), // 1: google.ads.googleads.v22.errors.YoutubeVideoRegistrationErrorEnum } -var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_init() } -func file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_init() { - if File_google_ads_googleads_v21_errors_youtube_video_registration_error_proto != nil { +func init() { file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_init() } +func file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_init() { + if File_google_ads_googleads_v22_errors_youtube_video_registration_error_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDesc), len(file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDesc), len(file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_rawDesc)), NumEnums: 1, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_errors_youtube_video_registration_error_proto = out.File - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_goTypes = nil - file_google_ads_googleads_v21_errors_youtube_video_registration_error_proto_depIdxs = nil + File_google_ads_googleads_v22_errors_youtube_video_registration_error_proto = out.File + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_goTypes = nil + file_google_ads_googleads_v22_errors_youtube_video_registration_error_proto_depIdxs = nil } diff --git a/go.mod b/go.mod index 42aa933e..204905fc 100644 --- a/go.mod +++ b/go.mod @@ -1,22 +1,24 @@ module github.com/shenzhencenter/google-ads-pb -go 1.23.6 +go 1.24.0 + +toolchain go1.24.9 require ( - cloud.google.com/go/longrunning v0.6.7 + cloud.google.com/go/longrunning v0.7.0 github.com/googleapis/gax-go/v2 v2.15.0 - google.golang.org/api v0.246.0 - google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b - google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b - google.golang.org/grpc v1.74.2 - google.golang.org/protobuf v1.36.7 + google.golang.org/api v0.253.0 + google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 + google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 + google.golang.org/grpc v1.76.0 + google.golang.org/protobuf v1.36.10 ) require ( - cloud.google.com/go v0.120.0 // indirect - cloud.google.com/go/auth v0.16.3 // indirect + cloud.google.com/go v0.121.6 // indirect + cloud.google.com/go/auth v0.17.0 // indirect cloud.google.com/go/auth/oauth2adapt v0.2.8 // indirect - cloud.google.com/go/compute/metadata v0.7.0 // indirect + cloud.google.com/go/compute/metadata v0.9.0 // indirect github.com/felixge/httpsnoop v1.0.4 // indirect github.com/go-logr/logr v1.4.3 // indirect github.com/go-logr/stdr v1.2.2 // indirect @@ -25,14 +27,14 @@ require ( go.opentelemetry.io/auto/sdk v1.1.0 // indirect go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0 // indirect go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 // indirect - go.opentelemetry.io/otel v1.36.0 // indirect - go.opentelemetry.io/otel/metric v1.36.0 // indirect - go.opentelemetry.io/otel/trace v1.36.0 // indirect - golang.org/x/crypto v0.40.0 // indirect - golang.org/x/net v0.42.0 // indirect - golang.org/x/oauth2 v0.30.0 // indirect - golang.org/x/sync v0.16.0 // indirect - golang.org/x/sys v0.34.0 // indirect - golang.org/x/text v0.27.0 // indirect - golang.org/x/time v0.12.0 // indirect + go.opentelemetry.io/otel v1.37.0 // indirect + go.opentelemetry.io/otel/metric v1.37.0 // indirect + go.opentelemetry.io/otel/trace v1.37.0 // indirect + golang.org/x/crypto v0.43.0 // indirect + golang.org/x/net v0.46.0 // indirect + golang.org/x/oauth2 v0.32.0 // indirect + golang.org/x/sync v0.17.0 // indirect + golang.org/x/sys v0.37.0 // indirect + golang.org/x/text v0.30.0 // indirect + golang.org/x/time v0.14.0 // indirect ) diff --git a/go.sum b/go.sum index d95f4e72..e78f4d20 100644 --- a/go.sum +++ b/go.sum @@ -1,15 +1,22 @@ -cloud.google.com/go v0.120.0 h1:wc6bgG9DHyKqF5/vQvX1CiZrtHnxJjBlKUyF9nP6meA= -cloud.google.com/go v0.120.0/go.mod h1:/beW32s8/pGRuj4IILWQNd4uuebeT4dkOhKmkfit64Q= -cloud.google.com/go/auth v0.16.3 h1:kabzoQ9/bobUmnseYnBO6qQG7q4a/CffFRlJSxv2wCc= -cloud.google.com/go/auth v0.16.3/go.mod h1:NucRGjaXfzP1ltpcQ7On/VTZ0H4kWB5Jy+Y9Dnm76fA= +cloud.google.com/go v0.121.6 h1:waZiuajrI28iAf40cWgycWNgaXPO06dupuS+sgibK6c= +cloud.google.com/go v0.121.6/go.mod h1:coChdst4Ea5vUpiALcYKXEpR1S9ZgXbhEzzMcMR66vI= +cloud.google.com/go/auth v0.17.0 h1:74yCm7hCj2rUyyAocqnFzsAYXgJhrG26XCFimrc/Kz4= +cloud.google.com/go/auth v0.17.0/go.mod h1:6wv/t5/6rOPAX4fJiRjKkJCvswLwdet7G8+UGXt7nCQ= cloud.google.com/go/auth/oauth2adapt v0.2.8 h1:keo8NaayQZ6wimpNSmW5OPc283g65QNIiLpZnkHRbnc= cloud.google.com/go/auth/oauth2adapt v0.2.8/go.mod h1:XQ9y31RkqZCcwJWNSx2Xvric3RrU88hAYYbjDWYDL+c= -cloud.google.com/go/compute/metadata v0.7.0 h1:PBWF+iiAerVNe8UCHxdOt6eHLVc3ydFeOCw78U8ytSU= -cloud.google.com/go/compute/metadata v0.7.0/go.mod h1:j5MvL9PprKL39t166CoB1uVHfQMs4tFQZZcKwksXUjo= -cloud.google.com/go/longrunning v0.6.7 h1:IGtfDWHhQCgCjwQjV9iiLnUta9LBCo8R9QmAFsS/PrE= -cloud.google.com/go/longrunning v0.6.7/go.mod h1:EAFV3IZAKmM56TyiE6VAP3VoTzhZzySwI/YI1s/nRsY= +cloud.google.com/go/compute/metadata v0.9.0 h1:pDUj4QMoPejqq20dK0Pg2N4yG9zIkYGdBtwLoEkH9Zs= +cloud.google.com/go/compute/metadata v0.9.0/go.mod h1:E0bWwX5wTnLPedCKqk3pJmVgCBSM6qQI1yTBdEb3C10= +cloud.google.com/go/longrunning v0.7.0 h1:FV0+SYF1RIj59gyoWDRi45GiYUMM3K1qO51qoboQT1E= +cloud.google.com/go/longrunning v0.7.0/go.mod h1:ySn2yXmjbK9Ba0zsQqunhDkYi0+9rlXIwnoAf+h+TPY= +github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443 h1:aQ3y1lwWyqYPiWZThqv1aFbZMiM9vblcSArJRf2Irls= +github.com/cncf/xds/go v0.0.0-20250501225837-2ac532fd4443/go.mod h1:W+zGtBO5Y1IgJhy4+A9GOqVhqLpfZi+vwmdNXUehLA8= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= +github.com/envoyproxy/go-control-plane v0.13.4 h1:zEqyPVyku6IvWCFwux4x9RxkLOMUL+1vC9xUFv5l2/M= +github.com/envoyproxy/go-control-plane/envoy v1.32.4 h1:jb83lalDRZSpPWW2Z7Mck/8kXZ5CQAFYVjQcdVIr83A= +github.com/envoyproxy/go-control-plane/envoy v1.32.4/go.mod h1:Gzjc5k8JcJswLjAx1Zm+wSYE20UrLtt7JZMWiWQXQEw= +github.com/envoyproxy/protoc-gen-validate v1.2.1 h1:DEo3O99U8j4hBFwbJfrz9VtgcDfUKS7KJ7spH3d86P8= +github.com/envoyproxy/protoc-gen-validate v1.2.1/go.mod h1:d/C80l/jxXLdfEIhX1W2TmLfsJ31lvEjwamM4DxlWXU= github.com/felixge/httpsnoop v1.0.4 h1:NFTV2Zj1bL4mc9sqWACXbQFVBBg2W3GPvqp8/ESS2Wg= github.com/felixge/httpsnoop v1.0.4/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U= github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A= @@ -29,6 +36,8 @@ github.com/googleapis/enterprise-certificate-proxy v0.3.6 h1:GW/XbdyBFQ8Qe+YAmFU github.com/googleapis/enterprise-certificate-proxy v0.3.6/go.mod h1:MkHOF77EYAE7qfSuSS9PU6g4Nt4e11cnsDUowfwewLA= github.com/googleapis/gax-go/v2 v2.15.0 h1:SyjDc1mGgZU5LncH8gimWo9lW1DtIfPibOG81vgd/bo= github.com/googleapis/gax-go/v2 v2.15.0/go.mod h1:zVVkkxAQHa1RQpg9z2AUCMnKhi0Qld9rcmyfL1OZhoc= +github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 h1:GFCKgmp0tecUJ0sJuv4pzYCqS9+RGSn52M3FUwPs+uo= +github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10/go.mod h1:t/avpk3KcrXxUnYOhZhMXJlSEyie6gQbtLq5NM3loB8= 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/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA= @@ -39,41 +48,43 @@ go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.6 go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.61.0/go.mod h1:snMWehoOh2wsEwnvvwtDyFCxVeDAODenXHtn5vzrKjo= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0 h1:F7Jx+6hwnZ41NSFTO5q4LYDtJRXBf2PD0rNBkeB/lus= go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.61.0/go.mod h1:UHB22Z8QsdRDrnAtX4PntOl36ajSxcdUMt1sF7Y6E7Q= -go.opentelemetry.io/otel v1.36.0 h1:UumtzIklRBY6cI/lllNZlALOF5nNIzJVb16APdvgTXg= -go.opentelemetry.io/otel v1.36.0/go.mod h1:/TcFMXYjyRNh8khOAO9ybYkqaDBb/70aVwkNML4pP8E= -go.opentelemetry.io/otel/metric v1.36.0 h1:MoWPKVhQvJ+eeXWHFBOPoBOi20jh6Iq2CcCREuTYufE= -go.opentelemetry.io/otel/metric v1.36.0/go.mod h1:zC7Ks+yeyJt4xig9DEw9kuUFe5C3zLbVjV2PzT6qzbs= -go.opentelemetry.io/otel/sdk v1.36.0 h1:b6SYIuLRs88ztox4EyrvRti80uXIFy+Sqzoh9kFULbs= -go.opentelemetry.io/otel/sdk v1.36.0/go.mod h1:+lC+mTgD+MUWfjJubi2vvXWcVxyr9rmlshZni72pXeY= -go.opentelemetry.io/otel/sdk/metric v1.36.0 h1:r0ntwwGosWGaa0CrSt8cuNuTcccMXERFwHX4dThiPis= -go.opentelemetry.io/otel/sdk/metric v1.36.0/go.mod h1:qTNOhFDfKRwX0yXOqJYegL5WRaW376QbB7P4Pb0qva4= -go.opentelemetry.io/otel/trace v1.36.0 h1:ahxWNuqZjpdiFAyrIoQ4GIiAIhxAunQR6MUoKrsNd4w= -go.opentelemetry.io/otel/trace v1.36.0/go.mod h1:gQ+OnDZzrybY4k4seLzPAWNwVBBVlF2szhehOBB/tGA= -golang.org/x/crypto v0.40.0 h1:r4x+VvoG5Fm+eJcxMaY8CQM7Lb0l1lsmjGBQ6s8BfKM= -golang.org/x/crypto v0.40.0/go.mod h1:Qr1vMER5WyS2dfPHAlsOj01wgLbsyWtFn/aY+5+ZdxY= -golang.org/x/net v0.42.0 h1:jzkYrhi3YQWD6MLBJcsklgQsoAcw89EcZbJw8Z614hs= -golang.org/x/net v0.42.0/go.mod h1:FF1RA5d3u7nAYA4z2TkclSCKh68eSXtiFwcWQpPXdt8= -golang.org/x/oauth2 v0.30.0 h1:dnDm7JmhM45NNpd8FDDeLhK6FwqbOf4MLCM9zb1BOHI= -golang.org/x/oauth2 v0.30.0/go.mod h1:B++QgG3ZKulg6sRPGD/mqlHQs5rB3Ml9erfeDY7xKlU= -golang.org/x/sync v0.16.0 h1:ycBJEhp9p4vXvUZNszeOq0kGTPghopOL8q0fq3vstxw= -golang.org/x/sync v0.16.0/go.mod h1:1dzgHSNfp02xaA81J2MS99Qcpr2w7fw1gpm99rleRqA= -golang.org/x/sys v0.34.0 h1:H5Y5sJ2L2JRdyv7ROF1he/lPdvFsd0mJHFw2ThKHxLA= -golang.org/x/sys v0.34.0/go.mod h1:BJP2sWEmIv4KK5OTEluFJCKSidICx8ciO85XgH3Ak8k= -golang.org/x/text v0.27.0 h1:4fGWRpyh641NLlecmyl4LOe6yDdfaYNrGb2zdfo4JV4= -golang.org/x/text v0.27.0/go.mod h1:1D28KMCvyooCX9hBiosv5Tz/+YLxj0j7XhWjpSUF7CU= -golang.org/x/time v0.12.0 h1:ScB/8o8olJvc+CQPWrK3fPZNfh7qgwCrY0zJmoEQLSE= -golang.org/x/time v0.12.0/go.mod h1:CDIdPxbZBQxdj6cxyCIdrNogrJKMJ7pr37NYpMcMDSg= -google.golang.org/api v0.246.0 h1:H0ODDs5PnMZVZAEtdLMn2Ul2eQi7QNjqM2DIFp8TlTM= -google.golang.org/api v0.246.0/go.mod h1:dMVhVcylamkirHdzEBAIQWUCgqY885ivNeZYd7VAVr8= +go.opentelemetry.io/otel v1.37.0 h1:9zhNfelUvx0KBfu/gb+ZgeAfAgtWrfHJZcAqFC228wQ= +go.opentelemetry.io/otel v1.37.0/go.mod h1:ehE/umFRLnuLa/vSccNq9oS1ErUlkkK71gMcN34UG8I= +go.opentelemetry.io/otel/metric v1.37.0 h1:mvwbQS5m0tbmqML4NqK+e3aDiO02vsf/WgbsdpcPoZE= +go.opentelemetry.io/otel/metric v1.37.0/go.mod h1:04wGrZurHYKOc+RKeye86GwKiTb9FKm1WHtO+4EVr2E= +go.opentelemetry.io/otel/sdk v1.37.0 h1:ItB0QUqnjesGRvNcmAcU0LyvkVyGJ2xftD29bWdDvKI= +go.opentelemetry.io/otel/sdk v1.37.0/go.mod h1:VredYzxUvuo2q3WRcDnKDjbdvmO0sCzOvVAiY+yUkAg= +go.opentelemetry.io/otel/sdk/metric v1.37.0 h1:90lI228XrB9jCMuSdA0673aubgRobVZFhbjxHHspCPc= +go.opentelemetry.io/otel/sdk/metric v1.37.0/go.mod h1:cNen4ZWfiD37l5NhS+Keb5RXVWZWpRE+9WyVCpbo5ps= +go.opentelemetry.io/otel/trace v1.37.0 h1:HLdcFNbRQBE2imdSEgm/kwqmQj1Or1l/7bW6mxVK7z4= +go.opentelemetry.io/otel/trace v1.37.0/go.mod h1:TlgrlQ+PtQO5XFerSPUYG0JSgGyryXewPGyayAWSBS0= +golang.org/x/crypto v0.43.0 h1:dduJYIi3A3KOfdGOHX8AVZ/jGiyPa3IbBozJ5kNuE04= +golang.org/x/crypto v0.43.0/go.mod h1:BFbav4mRNlXJL4wNeejLpWxB7wMbc79PdRGhWKncxR0= +golang.org/x/net v0.46.0 h1:giFlY12I07fugqwPuWJi68oOnpfqFnJIJzaIIm2JVV4= +golang.org/x/net v0.46.0/go.mod h1:Q9BGdFy1y4nkUwiLvT5qtyhAnEHgnQ/zd8PfU6nc210= +golang.org/x/oauth2 v0.32.0 h1:jsCblLleRMDrxMN29H3z/k1KliIvpLgCkE6R8FXXNgY= +golang.org/x/oauth2 v0.32.0/go.mod h1:lzm5WQJQwKZ3nwavOZ3IS5Aulzxi68dUSgRHujetwEA= +golang.org/x/sync v0.17.0 h1:l60nONMj9l5drqw6jlhIELNv9I0A4OFgRsG9k2oT9Ug= +golang.org/x/sync v0.17.0/go.mod h1:9KTHXmSnoGruLpwFjVSX0lNNA75CykiMECbovNTZqGI= +golang.org/x/sys v0.37.0 h1:fdNQudmxPjkdUTPnLn5mdQv7Zwvbvpaxqs831goi9kQ= +golang.org/x/sys v0.37.0/go.mod h1:OgkHotnGiDImocRcuBABYBEXf8A9a87e/uXjp9XT3ks= +golang.org/x/text v0.30.0 h1:yznKA/E9zq54KzlzBEAWn1NXSQ8DIp/NYMy88xJjl4k= +golang.org/x/text v0.30.0/go.mod h1:yDdHFIX9t+tORqspjENWgzaCVXgk0yYnYuSZ8UzzBVM= +golang.org/x/time v0.14.0 h1:MRx4UaLrDotUKUdCIqzPC48t1Y9hANFKIRpNx+Te8PI= +golang.org/x/time v0.14.0/go.mod h1:eL/Oa2bBBK0TkX57Fyni+NgnyQQN4LitPmob2Hjnqw4= +gonum.org/v1/gonum v0.16.0 h1:5+ul4Swaf3ESvrOnidPp4GZbzf0mxVQpDCYUQE7OJfk= +gonum.org/v1/gonum v0.16.0/go.mod h1:fef3am4MQ93R2HHpKnLk4/Tbh/s0+wqD5nfa6Pnwy4E= +google.golang.org/api v0.253.0 h1:apU86Eq9Q2eQco3NsUYFpVTfy7DwemojL7LmbAj7g/I= +google.golang.org/api v0.253.0/go.mod h1:PX09ad0r/4du83vZVAaGg7OaeyGnaUmT/CYPNvtLCbw= google.golang.org/genproto v0.0.0-20250603155806-513f23925822 h1:rHWScKit0gvAPuOnu87KpaYtjK5zBMLcULh7gxkCXu4= google.golang.org/genproto v0.0.0-20250603155806-513f23925822/go.mod h1:HubltRL7rMh0LfnQPkMH4NPDFEWp0jw3vixw7jEM53s= -google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b h1:ULiyYQ0FdsJhwwZUwbaXpZF5yUE3h+RA+gxvBu37ucc= -google.golang.org/genproto/googleapis/api v0.0.0-20250804133106-a7a43d27e69b/go.mod h1:oDOGiMSXHL4sDTJvFvIB9nRQCGdLP1o/iVaqQK8zB+M= -google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b h1:zPKJod4w6F1+nRGDI9ubnXYhU9NSWoFAijkHkUXeTK8= -google.golang.org/genproto/googleapis/rpc v0.0.0-20250804133106-a7a43d27e69b/go.mod h1:qQ0YXyHHx3XkvlzUtpXDkS29lDSafHMZBAZDc03LQ3A= -google.golang.org/grpc v1.74.2 h1:WoosgB65DlWVC9FqI82dGsZhWFNBSLjQ84bjROOpMu4= -google.golang.org/grpc v1.74.2/go.mod h1:CtQ+BGjaAIXHs/5YS3i473GqwBBa1zGQNevxdeBEXrM= -google.golang.org/protobuf v1.36.7 h1:IgrO7UwFQGJdRNXH/sQux4R1Dj1WAKcLElzeeRaXV2A= -google.golang.org/protobuf v1.36.7/go.mod h1:jduwjTPXsFjZGTmRluh+L6NjiWu7pchiJ2/5YcXBHnY= +google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8 h1:mepRgnBZa07I4TRuomDE4sTIYieg/osKmzIf4USdWS4= +google.golang.org/genproto/googleapis/api v0.0.0-20251022142026-3a174f9686a8/go.mod h1:fDMmzKV90WSg1NbozdqrE64fkuTv6mlq2zxo9ad+3yo= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8 h1:M1rk8KBnUsBDg1oPGHNCxG4vc1f49epmTO7xscSajMk= +google.golang.org/genproto/googleapis/rpc v0.0.0-20251022142026-3a174f9686a8/go.mod h1:7i2o+ce6H/6BluujYR+kqX3GKH+dChPTQU19wjRPiGk= +google.golang.org/grpc v1.76.0 h1:UnVkv1+uMLYXoIz6o7chp59WfQUYA2ex/BXQ9rHZu7A= +google.golang.org/grpc v1.76.0/go.mod h1:Ju12QI8M6iQJtbcsV+awF5a4hfJMLi4X0JLo94ULZ6c= +google.golang.org/protobuf v1.36.10 h1:AYd7cD/uASjIL6Q9LiTjz8JLcrh/88q5UObnmY3aOOE= +google.golang.org/protobuf v1.36.10/go.mod h1:HTf+CrKn2C3g5S8VImy6tdcUvCska2kB7j23XfzDpco= gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA= gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM= diff --git a/resources/accessible_bidding_strategy.pb.go b/resources/accessible_bidding_strategy.pb.go index 6347cac9..11248f33 100644 --- a/resources/accessible_bidding_strategy.pb.go +++ b/resources/accessible_bidding_strategy.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/accessible_bidding_strategy.proto +// source: google/ads/googleads/v22/resources/accessible_bidding_strategy.proto package resources @@ -55,7 +55,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.v21.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"` + Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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 @@ -80,7 +80,7 @@ type AccessibleBiddingStrategy struct { func (x *AccessibleBiddingStrategy) Reset() { *x = AccessibleBiddingStrategy{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92,7 +92,7 @@ func (x *AccessibleBiddingStrategy) String() string { func (*AccessibleBiddingStrategy) ProtoMessage() {} func (x *AccessibleBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105,7 +105,7 @@ func (x *AccessibleBiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use AccessibleBiddingStrategy.ProtoReflect.Descriptor instead. func (*AccessibleBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0} } func (x *AccessibleBiddingStrategy) GetResourceName() string { @@ -279,7 +279,7 @@ type AccessibleBiddingStrategy_MaximizeConversionValue struct { func (x *AccessibleBiddingStrategy_MaximizeConversionValue) Reset() { *x = AccessibleBiddingStrategy_MaximizeConversionValue{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversionValue) String() string { func (*AccessibleBiddingStrategy_MaximizeConversionValue) ProtoMessage() {} func (x *AccessibleBiddingStrategy_MaximizeConversionValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 0} } func (x *AccessibleBiddingStrategy_MaximizeConversionValue) GetTargetRoas() float64 { @@ -327,7 +327,7 @@ type AccessibleBiddingStrategy_MaximizeConversions struct { func (x *AccessibleBiddingStrategy_MaximizeConversions) Reset() { *x = AccessibleBiddingStrategy_MaximizeConversions{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -339,7 +339,7 @@ func (x *AccessibleBiddingStrategy_MaximizeConversions) String() string { func (*AccessibleBiddingStrategy_MaximizeConversions) ProtoMessage() {} func (x *AccessibleBiddingStrategy_MaximizeConversions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -352,7 +352,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 1} } func (x *AccessibleBiddingStrategy_MaximizeConversions) GetTargetCpaMicros() int64 { @@ -376,7 +376,7 @@ type AccessibleBiddingStrategy_TargetCpa struct { func (x *AccessibleBiddingStrategy_TargetCpa) Reset() { *x = AccessibleBiddingStrategy_TargetCpa{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -388,7 +388,7 @@ func (x *AccessibleBiddingStrategy_TargetCpa) String() string { func (*AccessibleBiddingStrategy_TargetCpa) ProtoMessage() {} func (x *AccessibleBiddingStrategy_TargetCpa) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -401,7 +401,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 2} } func (x *AccessibleBiddingStrategy_TargetCpa) GetTargetCpaMicros() int64 { @@ -417,7 +417,7 @@ func (x *AccessibleBiddingStrategy_TargetCpa) GetTargetCpaMicros() int64 { type AccessibleBiddingStrategy_TargetImpressionShare struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation" json:"location,omitempty"` + Location enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v22.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"` @@ -431,7 +431,7 @@ type AccessibleBiddingStrategy_TargetImpressionShare struct { func (x *AccessibleBiddingStrategy_TargetImpressionShare) Reset() { *x = AccessibleBiddingStrategy_TargetImpressionShare{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -443,7 +443,7 @@ func (x *AccessibleBiddingStrategy_TargetImpressionShare) String() string { func (*AccessibleBiddingStrategy_TargetImpressionShare) ProtoMessage() {} func (x *AccessibleBiddingStrategy_TargetImpressionShare) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -456,7 +456,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 3} } func (x *AccessibleBiddingStrategy_TargetImpressionShare) GetLocation() enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation { @@ -493,7 +493,7 @@ type AccessibleBiddingStrategy_TargetRoas struct { func (x *AccessibleBiddingStrategy_TargetRoas) Reset() { *x = AccessibleBiddingStrategy_TargetRoas{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -505,7 +505,7 @@ func (x *AccessibleBiddingStrategy_TargetRoas) String() string { func (*AccessibleBiddingStrategy_TargetRoas) ProtoMessage() {} func (x *AccessibleBiddingStrategy_TargetRoas) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -518,7 +518,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 4} } func (x *AccessibleBiddingStrategy_TargetRoas) GetTargetRoas() float64 { @@ -540,7 +540,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/v21/resources/accessible_bidding_strategy.proto. + // Deprecated: Marked as deprecated in google/ads/googleads/v22/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. @@ -551,7 +551,7 @@ type AccessibleBiddingStrategy_TargetSpend struct { func (x *AccessibleBiddingStrategy_TargetSpend) Reset() { *x = AccessibleBiddingStrategy_TargetSpend{} - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -563,7 +563,7 @@ func (x *AccessibleBiddingStrategy_TargetSpend) String() string { func (*AccessibleBiddingStrategy_TargetSpend) ProtoMessage() {} func (x *AccessibleBiddingStrategy_TargetSpend) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -576,10 +576,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_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP(), []int{0, 5} } -// Deprecated: Marked as deprecated in google/ads/googleads/v21/resources/accessible_bidding_strategy.proto. +// Deprecated: Marked as deprecated in google/ads/googleads/v22/resources/accessible_bidding_strategy.proto. func (x *AccessibleBiddingStrategy_TargetSpend) GetTargetSpendMicros() int64 { if x != nil && x.TargetSpendMicros != nil { return *x.TargetSpendMicros @@ -594,21 +594,21 @@ func (x *AccessibleBiddingStrategy_TargetSpend) GetCpcBidCeilingMicros() int64 { return 0 } -var File_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -628,7 +628,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -643,7 +643,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -652,7 +652,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -660,7 +660,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -668,7 +668,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -677,14 +677,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -707,7 +707,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -751,58 +751,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_goTypes = []any{ - (*AccessibleBiddingStrategy)(nil), // 0: google.ads.googleads.v21.resources.AccessibleBiddingStrategy - (*AccessibleBiddingStrategy_MaximizeConversionValue)(nil), // 1: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.MaximizeConversionValue - (*AccessibleBiddingStrategy_MaximizeConversions)(nil), // 2: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.MaximizeConversions - (*AccessibleBiddingStrategy_TargetCpa)(nil), // 3: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetCpa - (*AccessibleBiddingStrategy_TargetImpressionShare)(nil), // 4: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetImpressionShare - (*AccessibleBiddingStrategy_TargetRoas)(nil), // 5: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetRoas - (*AccessibleBiddingStrategy_TargetSpend)(nil), // 6: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetSpend - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 7: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 8: google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation -} -var file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_depIdxs = []int32{ - 7, // 0: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.type:type_name -> google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 1, // 1: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.MaximizeConversionValue - 2, // 2: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.MaximizeConversions - 3, // 3: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.target_cpa:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetCpa - 4, // 4: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetImpressionShare - 5, // 5: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.target_roas:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetRoas - 6, // 6: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.target_spend:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetSpend - 8, // 7: google.ads.googleads.v21.resources.AccessibleBiddingStrategy.TargetImpressionShare.location:type_name -> google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation + return file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 7) +var file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_goTypes = []any{ + (*AccessibleBiddingStrategy)(nil), // 0: google.ads.googleads.v22.resources.AccessibleBiddingStrategy + (*AccessibleBiddingStrategy_MaximizeConversionValue)(nil), // 1: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.MaximizeConversionValue + (*AccessibleBiddingStrategy_MaximizeConversions)(nil), // 2: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.MaximizeConversions + (*AccessibleBiddingStrategy_TargetCpa)(nil), // 3: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetCpa + (*AccessibleBiddingStrategy_TargetImpressionShare)(nil), // 4: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetImpressionShare + (*AccessibleBiddingStrategy_TargetRoas)(nil), // 5: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetRoas + (*AccessibleBiddingStrategy_TargetSpend)(nil), // 6: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetSpend + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 7: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 8: google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation +} +var file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_depIdxs = []int32{ + 7, // 0: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.type:type_name -> google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 1, // 1: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.MaximizeConversionValue + 2, // 2: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.MaximizeConversions + 3, // 3: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.target_cpa:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetCpa + 4, // 4: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetImpressionShare + 5, // 5: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.target_roas:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetRoas + 6, // 6: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.target_spend:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetSpend + 8, // 7: google.ads.googleads.v22.resources.AccessibleBiddingStrategy.TargetImpressionShare.location:type_name -> google.ads.googleads.v22.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 @@ -810,12 +810,12 @@ var file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_de 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_init() } -func file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_init() { - if File_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto != nil { +func init() { file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_init() } +func file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_init() { + if File_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto != nil { return } - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[0].OneofWrappers = []any{ (*AccessibleBiddingStrategy_MaximizeConversionValue_)(nil), (*AccessibleBiddingStrategy_MaximizeConversions_)(nil), (*AccessibleBiddingStrategy_TargetCpa_)(nil), @@ -823,25 +823,25 @@ func file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_i (*AccessibleBiddingStrategy_TargetRoas_)(nil), (*AccessibleBiddingStrategy_TargetSpend_)(nil), } - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes[6].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_rawDesc)), NumEnums: 0, NumMessages: 7, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto = out.File - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_goTypes = nil - file_google_ads_googleads_v21_resources_accessible_bidding_strategy_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto = out.File + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_goTypes = nil + file_google_ads_googleads_v22_resources_accessible_bidding_strategy_proto_depIdxs = nil } diff --git a/resources/account_budget.pb.go b/resources/account_budget.pb.go index 43be532f..b5631e35 100644 --- a/resources/account_budget.pb.go +++ b/resources/account_budget.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/account_budget.proto +// source: google/ads/googleads/v22/resources/account_budget.proto package resources @@ -68,7 +68,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.v21.enums.AccountBudgetStatusEnum_AccountBudgetStatus" json:"status,omitempty"` + Status enums.AccountBudgetStatusEnum_AccountBudgetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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 @@ -148,7 +148,7 @@ type AccountBudget struct { func (x *AccountBudget) Reset() { *x = AccountBudget{} - mi := &file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *AccountBudget) String() string { func (*AccountBudget) ProtoMessage() {} func (x *AccountBudget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *AccountBudget) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudget.ProtoReflect.Descriptor instead. func (*AccountBudget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_account_budget_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_account_budget_proto_rawDescGZIP(), []int{0} } func (x *AccountBudget) GetResourceName() string { @@ -397,7 +397,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudget_ProposedEndDateTime) isAccountBudget_ProposedEndTime() {} @@ -416,7 +416,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,11,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudget_ApprovedEndDateTime) isAccountBudget_ApprovedEndTime() {} @@ -436,7 +436,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,13,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudget_ProposedSpendingLimitMicros) isAccountBudget_ProposedSpendingLimit() {} @@ -459,7 +459,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,15,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudget_ApprovedSpendingLimitMicros) isAccountBudget_ApprovedSpendingLimit() {} @@ -491,7 +491,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + AdjustedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,17,opt,name=adjusted_spending_limit_type,json=adjustedSpendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudget_AdjustedSpendingLimitMicros) isAccountBudget_AdjustedSpendingLimit() {} @@ -509,7 +509,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.v21.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.v22.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. @@ -542,7 +542,7 @@ type AccountBudget_PendingAccountBudgetProposal struct { func (x *AccountBudget_PendingAccountBudgetProposal) Reset() { *x = AccountBudget_PendingAccountBudgetProposal{} - mi := &file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -554,7 +554,7 @@ func (x *AccountBudget_PendingAccountBudgetProposal) String() string { func (*AccountBudget_PendingAccountBudgetProposal) ProtoMessage() {} func (x *AccountBudget_PendingAccountBudgetProposal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -567,7 +567,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_v21_resources_account_budget_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_account_budget_proto_rawDescGZIP(), []int{0, 0} } func (x *AccountBudget_PendingAccountBudgetProposal) GetAccountBudgetProposal() string { @@ -680,7 +680,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,6,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudget_PendingAccountBudgetProposal_EndDateTime) isAccountBudget_PendingAccountBudgetProposal_EndTime() { @@ -702,7 +702,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + SpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,8,opt,name=spending_limit_type,json=spendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros) isAccountBudget_PendingAccountBudgetProposal_SpendingLimit() { @@ -711,28 +711,28 @@ func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros) isAccount func (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitType) isAccountBudget_PendingAccountBudgetProposal_SpendingLimit() { } -var File_google_ads_googleads_v21_resources_account_budget_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_account_budget_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_account_budget_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x70, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -754,7 +754,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -785,7 +785,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x63, + 0x76, 0x32, 0x32, 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, @@ -797,7 +797,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -808,7 +808,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -820,7 +820,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -834,7 +834,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -848,7 +848,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -865,7 +865,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -891,7 +891,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, 0x6d, 0x65, 0x54, 0x79, + 0x76, 0x32, 0x32, 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, @@ -901,7 +901,7 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x70, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -939,56 +939,56 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_account_budget_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_account_budget_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_account_budget_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_account_budget_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_account_budget_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_account_budget_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_account_budget_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_account_budget_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_account_budget_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_account_budget_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_budget_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_budget_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_account_budget_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_account_budget_proto_goTypes = []any{ - (*AccountBudget)(nil), // 0: google.ads.googleads.v21.resources.AccountBudget - (*AccountBudget_PendingAccountBudgetProposal)(nil), // 1: google.ads.googleads.v21.resources.AccountBudget.PendingAccountBudgetProposal - (enums.AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 2: google.ads.googleads.v21.enums.AccountBudgetStatusEnum.AccountBudgetStatus - (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 5: google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType -} -var file_google_ads_googleads_v21_resources_account_budget_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.AccountBudget.status:type_name -> google.ads.googleads.v21.enums.AccountBudgetStatusEnum.AccountBudgetStatus - 1, // 1: google.ads.googleads.v21.resources.AccountBudget.pending_proposal:type_name -> google.ads.googleads.v21.resources.AccountBudget.PendingAccountBudgetProposal - 3, // 2: google.ads.googleads.v21.resources.AccountBudget.proposed_end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 3, // 3: google.ads.googleads.v21.resources.AccountBudget.approved_end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 4, // 4: google.ads.googleads.v21.resources.AccountBudget.proposed_spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - 4, // 5: google.ads.googleads.v21.resources.AccountBudget.approved_spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - 4, // 6: google.ads.googleads.v21.resources.AccountBudget.adjusted_spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - 5, // 7: google.ads.googleads.v21.resources.AccountBudget.PendingAccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType - 3, // 8: google.ads.googleads.v21.resources.AccountBudget.PendingAccountBudgetProposal.end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 4, // 9: google.ads.googleads.v21.resources.AccountBudget.PendingAccountBudgetProposal.spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType + return file_google_ads_googleads_v22_resources_account_budget_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_account_budget_proto_goTypes = []any{ + (*AccountBudget)(nil), // 0: google.ads.googleads.v22.resources.AccountBudget + (*AccountBudget_PendingAccountBudgetProposal)(nil), // 1: google.ads.googleads.v22.resources.AccountBudget.PendingAccountBudgetProposal + (enums.AccountBudgetStatusEnum_AccountBudgetStatus)(0), // 2: google.ads.googleads.v22.enums.AccountBudgetStatusEnum.AccountBudgetStatus + (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 5: google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType +} +var file_google_ads_googleads_v22_resources_account_budget_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.AccountBudget.status:type_name -> google.ads.googleads.v22.enums.AccountBudgetStatusEnum.AccountBudgetStatus + 1, // 1: google.ads.googleads.v22.resources.AccountBudget.pending_proposal:type_name -> google.ads.googleads.v22.resources.AccountBudget.PendingAccountBudgetProposal + 3, // 2: google.ads.googleads.v22.resources.AccountBudget.proposed_end_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 3, // 3: google.ads.googleads.v22.resources.AccountBudget.approved_end_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 4, // 4: google.ads.googleads.v22.resources.AccountBudget.proposed_spending_limit_type:type_name -> google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + 4, // 5: google.ads.googleads.v22.resources.AccountBudget.approved_spending_limit_type:type_name -> google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + 4, // 6: google.ads.googleads.v22.resources.AccountBudget.adjusted_spending_limit_type:type_name -> google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + 5, // 7: google.ads.googleads.v22.resources.AccountBudget.PendingAccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType + 3, // 8: google.ads.googleads.v22.resources.AccountBudget.PendingAccountBudgetProposal.end_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 4, // 9: google.ads.googleads.v22.resources.AccountBudget.PendingAccountBudgetProposal.spending_limit_type:type_name -> google.ads.googleads.v22.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 @@ -996,12 +996,12 @@ var file_google_ads_googleads_v21_resources_account_budget_proto_depIdxs = []int 0, // [0:10] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_account_budget_proto_init() } -func file_google_ads_googleads_v21_resources_account_budget_proto_init() { - if File_google_ads_googleads_v21_resources_account_budget_proto != nil { +func init() { file_google_ads_googleads_v22_resources_account_budget_proto_init() } +func file_google_ads_googleads_v22_resources_account_budget_proto_init() { + if File_google_ads_googleads_v22_resources_account_budget_proto != nil { return } - file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[0].OneofWrappers = []any{ (*AccountBudget_ProposedEndDateTime)(nil), (*AccountBudget_ProposedEndTimeType)(nil), (*AccountBudget_ApprovedEndDateTime)(nil), @@ -1013,7 +1013,7 @@ func file_google_ads_googleads_v21_resources_account_budget_proto_init() { (*AccountBudget_AdjustedSpendingLimitMicros)(nil), (*AccountBudget_AdjustedSpendingLimitType)(nil), } - file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes[1].OneofWrappers = []any{ (*AccountBudget_PendingAccountBudgetProposal_EndDateTime)(nil), (*AccountBudget_PendingAccountBudgetProposal_EndTimeType)(nil), (*AccountBudget_PendingAccountBudgetProposal_SpendingLimitMicros)(nil), @@ -1023,17 +1023,17 @@ func file_google_ads_googleads_v21_resources_account_budget_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_budget_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_budget_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_budget_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_account_budget_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_account_budget_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_account_budget_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_account_budget_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_account_budget_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_account_budget_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_account_budget_proto = out.File - file_google_ads_googleads_v21_resources_account_budget_proto_goTypes = nil - file_google_ads_googleads_v21_resources_account_budget_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_account_budget_proto = out.File + file_google_ads_googleads_v22_resources_account_budget_proto_goTypes = nil + file_google_ads_googleads_v22_resources_account_budget_proto_depIdxs = nil } diff --git a/resources/account_budget_proposal.pb.go b/resources/account_budget_proposal.pb.go index e45ebe49..fdea0670 100644 --- a/resources/account_budget_proposal.pb.go +++ b/resources/account_budget_proposal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/account_budget_proposal.proto +// source: google/ads/googleads/v22/resources/account_budget_proposal.proto package resources @@ -63,10 +63,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.v21.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.v22.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.v21.enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus" json:"status,omitempty"` + Status enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v22.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. @@ -125,7 +125,7 @@ type AccountBudgetProposal struct { func (x *AccountBudgetProposal) Reset() { *x = AccountBudgetProposal{} - mi := &file_google_ads_googleads_v21_resources_account_budget_proposal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_budget_proposal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -137,7 +137,7 @@ func (x *AccountBudgetProposal) String() string { func (*AccountBudgetProposal) ProtoMessage() {} func (x *AccountBudgetProposal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_account_budget_proposal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_budget_proposal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -150,7 +150,7 @@ func (x *AccountBudgetProposal) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposal.ProtoReflect.Descriptor instead. func (*AccountBudgetProposal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescGZIP(), []int{0} } func (x *AccountBudgetProposal) GetResourceName() string { @@ -374,7 +374,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + ProposedStartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,7,opt,name=proposed_start_time_type,json=proposedStartTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudgetProposal_ProposedStartDateTime) isAccountBudgetProposal_ProposedStartTime() {} @@ -393,7 +393,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + ProposedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,9,opt,name=proposed_end_time_type,json=proposedEndTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudgetProposal_ProposedEndDateTime) isAccountBudgetProposal_ProposedEndTime() {} @@ -412,7 +412,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + ApprovedEndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,22,opt,name=approved_end_time_type,json=approvedEndTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*AccountBudgetProposal_ApprovedEndDateTime) isAccountBudgetProposal_ApprovedEndTime() {} @@ -432,7 +432,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + ProposedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,11,opt,name=proposed_spending_limit_type,json=proposedSpendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudgetProposal_ProposedSpendingLimitMicros) isAccountBudgetProposal_ProposedSpendingLimit() { @@ -454,7 +454,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.v21.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` + ApprovedSpendingLimitType enums.SpendingLimitTypeEnum_SpendingLimitType `protobuf:"varint,24,opt,name=approved_spending_limit_type,json=approvedSpendingLimitType,proto3,enum=google.ads.googleads.v22.enums.SpendingLimitTypeEnum_SpendingLimitType,oneof"` } func (*AccountBudgetProposal_ApprovedSpendingLimitMicros) isAccountBudgetProposal_ApprovedSpendingLimit() { @@ -463,30 +463,30 @@ func (*AccountBudgetProposal_ApprovedSpendingLimitMicros) isAccountBudgetProposa func (*AccountBudgetProposal_ApprovedSpendingLimitType) isAccountBudgetProposal_ApprovedSpendingLimit() { } -var File_google_ads_googleads_v21_resources_account_budget_proposal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_account_budget_proposal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, + 0x32, 0x32, 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, @@ -514,7 +514,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -522,7 +522,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -557,7 +557,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -568,7 +568,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -579,7 +579,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -591,7 +591,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -605,7 +605,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -640,52 +640,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_account_budget_proposal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_account_budget_proposal_proto_goTypes = []any{ - (*AccountBudgetProposal)(nil), // 0: google.ads.googleads.v21.resources.AccountBudgetProposal - (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 1: google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType - (enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 2: google.ads.googleads.v21.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus - (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType -} -var file_google_ads_googleads_v21_resources_account_budget_proposal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v21.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType - 2, // 1: google.ads.googleads.v21.resources.AccountBudgetProposal.status:type_name -> google.ads.googleads.v21.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus - 3, // 2: google.ads.googleads.v21.resources.AccountBudgetProposal.proposed_start_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 3, // 3: google.ads.googleads.v21.resources.AccountBudgetProposal.proposed_end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 3, // 4: google.ads.googleads.v21.resources.AccountBudgetProposal.approved_end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 4, // 5: google.ads.googleads.v21.resources.AccountBudgetProposal.proposed_spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType - 4, // 6: google.ads.googleads.v21.resources.AccountBudgetProposal.approved_spending_limit_type:type_name -> google.ads.googleads.v21.enums.SpendingLimitTypeEnum.SpendingLimitType + return file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_account_budget_proposal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_account_budget_proposal_proto_goTypes = []any{ + (*AccountBudgetProposal)(nil), // 0: google.ads.googleads.v22.resources.AccountBudgetProposal + (enums.AccountBudgetProposalTypeEnum_AccountBudgetProposalType)(0), // 1: google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType + (enums.AccountBudgetProposalStatusEnum_AccountBudgetProposalStatus)(0), // 2: google.ads.googleads.v22.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus + (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + (enums.SpendingLimitTypeEnum_SpendingLimitType)(0), // 4: google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType +} +var file_google_ads_googleads_v22_resources_account_budget_proposal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AccountBudgetProposal.proposal_type:type_name -> google.ads.googleads.v22.enums.AccountBudgetProposalTypeEnum.AccountBudgetProposalType + 2, // 1: google.ads.googleads.v22.resources.AccountBudgetProposal.status:type_name -> google.ads.googleads.v22.enums.AccountBudgetProposalStatusEnum.AccountBudgetProposalStatus + 3, // 2: google.ads.googleads.v22.resources.AccountBudgetProposal.proposed_start_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 3, // 3: google.ads.googleads.v22.resources.AccountBudgetProposal.proposed_end_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 3, // 4: google.ads.googleads.v22.resources.AccountBudgetProposal.approved_end_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 4, // 5: google.ads.googleads.v22.resources.AccountBudgetProposal.proposed_spending_limit_type:type_name -> google.ads.googleads.v22.enums.SpendingLimitTypeEnum.SpendingLimitType + 4, // 6: google.ads.googleads.v22.resources.AccountBudgetProposal.approved_spending_limit_type:type_name -> google.ads.googleads.v22.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 @@ -693,12 +693,12 @@ var file_google_ads_googleads_v21_resources_account_budget_proposal_proto_depIdx 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_account_budget_proposal_proto_init() } -func file_google_ads_googleads_v21_resources_account_budget_proposal_proto_init() { - if File_google_ads_googleads_v21_resources_account_budget_proposal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_account_budget_proposal_proto_init() } +func file_google_ads_googleads_v22_resources_account_budget_proposal_proto_init() { + if File_google_ads_googleads_v22_resources_account_budget_proposal_proto != nil { return } - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_msgTypes[0].OneofWrappers = []any{ (*AccountBudgetProposal_ProposedStartDateTime)(nil), (*AccountBudgetProposal_ProposedStartTimeType)(nil), (*AccountBudgetProposal_ProposedEndDateTime)(nil), @@ -714,17 +714,17 @@ func file_google_ads_googleads_v21_resources_account_budget_proposal_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_budget_proposal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_budget_proposal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_account_budget_proposal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_account_budget_proposal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_account_budget_proposal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_account_budget_proposal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_account_budget_proposal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_account_budget_proposal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_account_budget_proposal_proto = out.File - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_account_budget_proposal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_account_budget_proposal_proto = out.File + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_account_budget_proposal_proto_depIdxs = nil } diff --git a/resources/account_link.pb.go b/resources/account_link.pb.go index 838612b4..c35ded61 100644 --- a/resources/account_link.pb.go +++ b/resources/account_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/account_link.proto +// source: google/ads/googleads/v22/resources/account_link.proto package resources @@ -49,9 +49,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.v21.enums.AccountLinkStatusEnum_AccountLinkStatus" json:"status,omitempty"` + Status enums.AccountLinkStatusEnum_AccountLinkStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.LinkedAccountTypeEnum_LinkedAccountType" json:"type,omitempty"` + Type enums.LinkedAccountTypeEnum_LinkedAccountType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.LinkedAccountTypeEnum_LinkedAccountType" json:"type,omitempty"` // An account linked to this Google Ads account. // // Types that are valid to be assigned to LinkedAccount: @@ -64,7 +64,7 @@ type AccountLink struct { func (x *AccountLink) Reset() { *x = AccountLink{} - mi := &file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *AccountLink) String() string { func (*AccountLink) ProtoMessage() {} func (x *AccountLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *AccountLink) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountLink.ProtoReflect.Descriptor instead. func (*AccountLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_account_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_account_link_proto_rawDescGZIP(), []int{0} } func (x *AccountLink) GetResourceName() string { @@ -171,14 +171,14 @@ 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.v21.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.v22.enums.MobileAppVendorEnum_MobileAppVendor" json:"app_vendor,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ThirdPartyAppAnalyticsLinkIdentifier) Reset() { *x = ThirdPartyAppAnalyticsLinkIdentifier{} - mi := &file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -190,7 +190,7 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) String() string { func (*ThirdPartyAppAnalyticsLinkIdentifier) ProtoMessage() {} func (x *ThirdPartyAppAnalyticsLinkIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -203,7 +203,7 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) ProtoReflect() protoreflect.Messa // Deprecated: Use ThirdPartyAppAnalyticsLinkIdentifier.ProtoReflect.Descriptor instead. func (*ThirdPartyAppAnalyticsLinkIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_account_link_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_account_link_proto_rawDescGZIP(), []int{1} } func (x *ThirdPartyAppAnalyticsLinkIdentifier) GetAppAnalyticsProviderId() int64 { @@ -227,24 +227,24 @@ func (x *ThirdPartyAppAnalyticsLinkIdentifier) GetAppVendor() enums.MobileAppVen return enums.MobileAppVendorEnum_MobileAppVendor(0) } -var File_google_ads_googleads_v21_resources_account_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_account_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_account_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_account_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x38, 0x67, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x6f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -262,20 +262,20 @@ var file_google_ads_googleads_v21_resources_account_link_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x63, 0x63, 0x6f, 0x75, 0x6e, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x6e, 0x6b, 0x65, 0x64, 0x41, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -300,7 +300,7 @@ var file_google_ads_googleads_v21_resources_account_link_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -309,48 +309,48 @@ var file_google_ads_googleads_v21_resources_account_link_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x41, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_account_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_account_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_account_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_account_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_account_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_account_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_account_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_account_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_account_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_account_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_account_link_proto_rawDescData + return file_google_ads_googleads_v22_resources_account_link_proto_rawDescData } -var file_google_ads_googleads_v21_resources_account_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_account_link_proto_goTypes = []any{ - (*AccountLink)(nil), // 0: google.ads.googleads.v21.resources.AccountLink - (*ThirdPartyAppAnalyticsLinkIdentifier)(nil), // 1: google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLinkIdentifier - (enums.AccountLinkStatusEnum_AccountLinkStatus)(0), // 2: google.ads.googleads.v21.enums.AccountLinkStatusEnum.AccountLinkStatus - (enums.LinkedAccountTypeEnum_LinkedAccountType)(0), // 3: google.ads.googleads.v21.enums.LinkedAccountTypeEnum.LinkedAccountType - (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 4: google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor +var file_google_ads_googleads_v22_resources_account_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_account_link_proto_goTypes = []any{ + (*AccountLink)(nil), // 0: google.ads.googleads.v22.resources.AccountLink + (*ThirdPartyAppAnalyticsLinkIdentifier)(nil), // 1: google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLinkIdentifier + (enums.AccountLinkStatusEnum_AccountLinkStatus)(0), // 2: google.ads.googleads.v22.enums.AccountLinkStatusEnum.AccountLinkStatus + (enums.LinkedAccountTypeEnum_LinkedAccountType)(0), // 3: google.ads.googleads.v22.enums.LinkedAccountTypeEnum.LinkedAccountType + (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 4: google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor } -var file_google_ads_googleads_v21_resources_account_link_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.AccountLink.status:type_name -> google.ads.googleads.v21.enums.AccountLinkStatusEnum.AccountLinkStatus - 3, // 1: google.ads.googleads.v21.resources.AccountLink.type:type_name -> google.ads.googleads.v21.enums.LinkedAccountTypeEnum.LinkedAccountType - 1, // 2: google.ads.googleads.v21.resources.AccountLink.third_party_app_analytics:type_name -> google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLinkIdentifier - 4, // 3: google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLinkIdentifier.app_vendor:type_name -> google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor +var file_google_ads_googleads_v22_resources_account_link_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.AccountLink.status:type_name -> google.ads.googleads.v22.enums.AccountLinkStatusEnum.AccountLinkStatus + 3, // 1: google.ads.googleads.v22.resources.AccountLink.type:type_name -> google.ads.googleads.v22.enums.LinkedAccountTypeEnum.LinkedAccountType + 1, // 2: google.ads.googleads.v22.resources.AccountLink.third_party_app_analytics:type_name -> google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLinkIdentifier + 4, // 3: google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLinkIdentifier.app_vendor:type_name -> google.ads.googleads.v22.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 @@ -358,30 +358,30 @@ var file_google_ads_googleads_v21_resources_account_link_proto_depIdxs = []int32 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_account_link_proto_init() } -func file_google_ads_googleads_v21_resources_account_link_proto_init() { - if File_google_ads_googleads_v21_resources_account_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_account_link_proto_init() } +func file_google_ads_googleads_v22_resources_account_link_proto_init() { + if File_google_ads_googleads_v22_resources_account_link_proto != nil { return } - file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[0].OneofWrappers = []any{ (*AccountLink_ThirdPartyAppAnalytics)(nil), } - file_google_ads_googleads_v21_resources_account_link_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_account_link_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_account_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_account_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_account_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_account_link_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_account_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_account_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_account_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_account_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_account_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_account_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_account_link_proto = out.File - file_google_ads_googleads_v21_resources_account_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_account_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_account_link_proto = out.File + file_google_ads_googleads_v22_resources_account_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_account_link_proto_depIdxs = nil } diff --git a/resources/ad.pb.go b/resources/ad.pb.go index 4ccfda42..508f17c1 100644 --- a/resources/ad.pb.go +++ b/resources/ad.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad.proto +// source: google/ads/googleads/v22/resources/ad.proto package resources @@ -68,7 +68,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.v21.enums.AdTypeEnum_AdType" json:"type,omitempty"` + Type enums.AdTypeEnum_AdType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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 @@ -80,7 +80,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.v21.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.v22.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"` @@ -92,7 +92,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.v21.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.v22.enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource" json:"system_managed_resource_source,omitempty"` // Details pertinent to the ad type. Exactly one value must be set. // // Types that are valid to be assigned to AdData: @@ -130,7 +130,7 @@ type Ad struct { func (x *Ad) Reset() { *x = Ad{} - mi := &file_google_ads_googleads_v21_resources_ad_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142,7 +142,7 @@ func (x *Ad) String() string { func (*Ad) ProtoMessage() {} func (x *Ad) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155,7 +155,7 @@ func (x *Ad) ProtoReflect() protoreflect.Message { // Deprecated: Use Ad.ProtoReflect.Descriptor instead. func (*Ad) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_proto_rawDescGZIP(), []int{0} } func (x *Ad) GetResourceName() string { @@ -694,35 +694,35 @@ func (*Ad_DemandGenProductAd) isAd_AdData() {} func (*Ad_TravelAd) isAd_AdData() {} -var File_google_ads_googleads_v21_resources_ad_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x74, 0x79, 0x70, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, 0x69, 0x63, 0x65, 0x2e, 0x70, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -740,7 +740,7 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -755,7 +755,7 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -763,7 +763,7 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -772,13 +772,13 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -787,7 +787,7 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x4d, 0x61, + 0x32, 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, @@ -796,116 +796,116 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x65, 0x78, 0x74, 0x41, 0x64, 0x49, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, 0x68, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x6d, 0x61, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x52, 0x65, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x41, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -913,28 +913,28 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x72, 0x65, + 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -942,7 +942,7 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -950,13 +950,13 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -972,104 +972,104 @@ var file_google_ads_googleads_v21_resources_ad_proto_rawDesc = string([]byte{ 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x07, 0x41, 0x64, 0x50, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_proto_goTypes = []any{ - (*Ad)(nil), // 0: google.ads.googleads.v21.resources.Ad - (*common.FinalAppUrl)(nil), // 1: google.ads.googleads.v21.common.FinalAppUrl - (*common.CustomParameter)(nil), // 2: google.ads.googleads.v21.common.CustomParameter - (enums.AdTypeEnum_AdType)(0), // 3: google.ads.googleads.v21.enums.AdTypeEnum.AdType - (enums.DeviceEnum_Device)(0), // 4: google.ads.googleads.v21.enums.DeviceEnum.Device - (*common.UrlCollection)(nil), // 5: google.ads.googleads.v21.common.UrlCollection - (enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 6: google.ads.googleads.v21.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource - (*common.TextAdInfo)(nil), // 7: google.ads.googleads.v21.common.TextAdInfo - (*common.ExpandedTextAdInfo)(nil), // 8: google.ads.googleads.v21.common.ExpandedTextAdInfo - (*common.CallAdInfo)(nil), // 9: google.ads.googleads.v21.common.CallAdInfo - (*common.ExpandedDynamicSearchAdInfo)(nil), // 10: google.ads.googleads.v21.common.ExpandedDynamicSearchAdInfo - (*common.HotelAdInfo)(nil), // 11: google.ads.googleads.v21.common.HotelAdInfo - (*common.ShoppingSmartAdInfo)(nil), // 12: google.ads.googleads.v21.common.ShoppingSmartAdInfo - (*common.ShoppingProductAdInfo)(nil), // 13: google.ads.googleads.v21.common.ShoppingProductAdInfo - (*common.ImageAdInfo)(nil), // 14: google.ads.googleads.v21.common.ImageAdInfo - (*common.VideoAdInfo)(nil), // 15: google.ads.googleads.v21.common.VideoAdInfo - (*common.VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v21.common.VideoResponsiveAdInfo - (*common.ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v21.common.ResponsiveSearchAdInfo - (*common.LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v21.common.LegacyResponsiveDisplayAdInfo - (*common.AppAdInfo)(nil), // 19: google.ads.googleads.v21.common.AppAdInfo - (*common.LegacyAppInstallAdInfo)(nil), // 20: google.ads.googleads.v21.common.LegacyAppInstallAdInfo - (*common.ResponsiveDisplayAdInfo)(nil), // 21: google.ads.googleads.v21.common.ResponsiveDisplayAdInfo - (*common.LocalAdInfo)(nil), // 22: google.ads.googleads.v21.common.LocalAdInfo - (*common.DisplayUploadAdInfo)(nil), // 23: google.ads.googleads.v21.common.DisplayUploadAdInfo - (*common.AppEngagementAdInfo)(nil), // 24: google.ads.googleads.v21.common.AppEngagementAdInfo - (*common.ShoppingComparisonListingAdInfo)(nil), // 25: google.ads.googleads.v21.common.ShoppingComparisonListingAdInfo - (*common.SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v21.common.SmartCampaignAdInfo - (*common.AppPreRegistrationAdInfo)(nil), // 27: google.ads.googleads.v21.common.AppPreRegistrationAdInfo - (*common.DemandGenMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo - (*common.DemandGenCarouselAdInfo)(nil), // 29: google.ads.googleads.v21.common.DemandGenCarouselAdInfo - (*common.DemandGenVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo - (*common.DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v21.common.DemandGenProductAdInfo - (*common.TravelAdInfo)(nil), // 32: google.ads.googleads.v21.common.TravelAdInfo -} -var file_google_ads_googleads_v21_resources_ad_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.Ad.final_app_urls:type_name -> google.ads.googleads.v21.common.FinalAppUrl - 2, // 1: google.ads.googleads.v21.resources.Ad.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter - 3, // 2: google.ads.googleads.v21.resources.Ad.type:type_name -> google.ads.googleads.v21.enums.AdTypeEnum.AdType - 4, // 3: google.ads.googleads.v21.resources.Ad.device_preference:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 5, // 4: google.ads.googleads.v21.resources.Ad.url_collections:type_name -> google.ads.googleads.v21.common.UrlCollection - 6, // 5: google.ads.googleads.v21.resources.Ad.system_managed_resource_source:type_name -> google.ads.googleads.v21.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource - 7, // 6: google.ads.googleads.v21.resources.Ad.text_ad:type_name -> google.ads.googleads.v21.common.TextAdInfo - 8, // 7: google.ads.googleads.v21.resources.Ad.expanded_text_ad:type_name -> google.ads.googleads.v21.common.ExpandedTextAdInfo - 9, // 8: google.ads.googleads.v21.resources.Ad.call_ad:type_name -> google.ads.googleads.v21.common.CallAdInfo - 10, // 9: google.ads.googleads.v21.resources.Ad.expanded_dynamic_search_ad:type_name -> google.ads.googleads.v21.common.ExpandedDynamicSearchAdInfo - 11, // 10: google.ads.googleads.v21.resources.Ad.hotel_ad:type_name -> google.ads.googleads.v21.common.HotelAdInfo - 12, // 11: google.ads.googleads.v21.resources.Ad.shopping_smart_ad:type_name -> google.ads.googleads.v21.common.ShoppingSmartAdInfo - 13, // 12: google.ads.googleads.v21.resources.Ad.shopping_product_ad:type_name -> google.ads.googleads.v21.common.ShoppingProductAdInfo - 14, // 13: google.ads.googleads.v21.resources.Ad.image_ad:type_name -> google.ads.googleads.v21.common.ImageAdInfo - 15, // 14: google.ads.googleads.v21.resources.Ad.video_ad:type_name -> google.ads.googleads.v21.common.VideoAdInfo - 16, // 15: google.ads.googleads.v21.resources.Ad.video_responsive_ad:type_name -> google.ads.googleads.v21.common.VideoResponsiveAdInfo - 17, // 16: google.ads.googleads.v21.resources.Ad.responsive_search_ad:type_name -> google.ads.googleads.v21.common.ResponsiveSearchAdInfo - 18, // 17: google.ads.googleads.v21.resources.Ad.legacy_responsive_display_ad:type_name -> google.ads.googleads.v21.common.LegacyResponsiveDisplayAdInfo - 19, // 18: google.ads.googleads.v21.resources.Ad.app_ad:type_name -> google.ads.googleads.v21.common.AppAdInfo - 20, // 19: google.ads.googleads.v21.resources.Ad.legacy_app_install_ad:type_name -> google.ads.googleads.v21.common.LegacyAppInstallAdInfo - 21, // 20: google.ads.googleads.v21.resources.Ad.responsive_display_ad:type_name -> google.ads.googleads.v21.common.ResponsiveDisplayAdInfo - 22, // 21: google.ads.googleads.v21.resources.Ad.local_ad:type_name -> google.ads.googleads.v21.common.LocalAdInfo - 23, // 22: google.ads.googleads.v21.resources.Ad.display_upload_ad:type_name -> google.ads.googleads.v21.common.DisplayUploadAdInfo - 24, // 23: google.ads.googleads.v21.resources.Ad.app_engagement_ad:type_name -> google.ads.googleads.v21.common.AppEngagementAdInfo - 25, // 24: google.ads.googleads.v21.resources.Ad.shopping_comparison_listing_ad:type_name -> google.ads.googleads.v21.common.ShoppingComparisonListingAdInfo - 26, // 25: google.ads.googleads.v21.resources.Ad.smart_campaign_ad:type_name -> google.ads.googleads.v21.common.SmartCampaignAdInfo - 27, // 26: google.ads.googleads.v21.resources.Ad.app_pre_registration_ad:type_name -> google.ads.googleads.v21.common.AppPreRegistrationAdInfo - 28, // 27: google.ads.googleads.v21.resources.Ad.demand_gen_multi_asset_ad:type_name -> google.ads.googleads.v21.common.DemandGenMultiAssetAdInfo - 29, // 28: google.ads.googleads.v21.resources.Ad.demand_gen_carousel_ad:type_name -> google.ads.googleads.v21.common.DemandGenCarouselAdInfo - 30, // 29: google.ads.googleads.v21.resources.Ad.demand_gen_video_responsive_ad:type_name -> google.ads.googleads.v21.common.DemandGenVideoResponsiveAdInfo - 31, // 30: google.ads.googleads.v21.resources.Ad.demand_gen_product_ad:type_name -> google.ads.googleads.v21.common.DemandGenProductAdInfo - 32, // 31: google.ads.googleads.v21.resources.Ad.travel_ad:type_name -> google.ads.googleads.v21.common.TravelAdInfo + return file_google_ads_googleads_v22_resources_ad_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_proto_goTypes = []any{ + (*Ad)(nil), // 0: google.ads.googleads.v22.resources.Ad + (*common.FinalAppUrl)(nil), // 1: google.ads.googleads.v22.common.FinalAppUrl + (*common.CustomParameter)(nil), // 2: google.ads.googleads.v22.common.CustomParameter + (enums.AdTypeEnum_AdType)(0), // 3: google.ads.googleads.v22.enums.AdTypeEnum.AdType + (enums.DeviceEnum_Device)(0), // 4: google.ads.googleads.v22.enums.DeviceEnum.Device + (*common.UrlCollection)(nil), // 5: google.ads.googleads.v22.common.UrlCollection + (enums.SystemManagedResourceSourceEnum_SystemManagedResourceSource)(0), // 6: google.ads.googleads.v22.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource + (*common.TextAdInfo)(nil), // 7: google.ads.googleads.v22.common.TextAdInfo + (*common.ExpandedTextAdInfo)(nil), // 8: google.ads.googleads.v22.common.ExpandedTextAdInfo + (*common.CallAdInfo)(nil), // 9: google.ads.googleads.v22.common.CallAdInfo + (*common.ExpandedDynamicSearchAdInfo)(nil), // 10: google.ads.googleads.v22.common.ExpandedDynamicSearchAdInfo + (*common.HotelAdInfo)(nil), // 11: google.ads.googleads.v22.common.HotelAdInfo + (*common.ShoppingSmartAdInfo)(nil), // 12: google.ads.googleads.v22.common.ShoppingSmartAdInfo + (*common.ShoppingProductAdInfo)(nil), // 13: google.ads.googleads.v22.common.ShoppingProductAdInfo + (*common.ImageAdInfo)(nil), // 14: google.ads.googleads.v22.common.ImageAdInfo + (*common.VideoAdInfo)(nil), // 15: google.ads.googleads.v22.common.VideoAdInfo + (*common.VideoResponsiveAdInfo)(nil), // 16: google.ads.googleads.v22.common.VideoResponsiveAdInfo + (*common.ResponsiveSearchAdInfo)(nil), // 17: google.ads.googleads.v22.common.ResponsiveSearchAdInfo + (*common.LegacyResponsiveDisplayAdInfo)(nil), // 18: google.ads.googleads.v22.common.LegacyResponsiveDisplayAdInfo + (*common.AppAdInfo)(nil), // 19: google.ads.googleads.v22.common.AppAdInfo + (*common.LegacyAppInstallAdInfo)(nil), // 20: google.ads.googleads.v22.common.LegacyAppInstallAdInfo + (*common.ResponsiveDisplayAdInfo)(nil), // 21: google.ads.googleads.v22.common.ResponsiveDisplayAdInfo + (*common.LocalAdInfo)(nil), // 22: google.ads.googleads.v22.common.LocalAdInfo + (*common.DisplayUploadAdInfo)(nil), // 23: google.ads.googleads.v22.common.DisplayUploadAdInfo + (*common.AppEngagementAdInfo)(nil), // 24: google.ads.googleads.v22.common.AppEngagementAdInfo + (*common.ShoppingComparisonListingAdInfo)(nil), // 25: google.ads.googleads.v22.common.ShoppingComparisonListingAdInfo + (*common.SmartCampaignAdInfo)(nil), // 26: google.ads.googleads.v22.common.SmartCampaignAdInfo + (*common.AppPreRegistrationAdInfo)(nil), // 27: google.ads.googleads.v22.common.AppPreRegistrationAdInfo + (*common.DemandGenMultiAssetAdInfo)(nil), // 28: google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo + (*common.DemandGenCarouselAdInfo)(nil), // 29: google.ads.googleads.v22.common.DemandGenCarouselAdInfo + (*common.DemandGenVideoResponsiveAdInfo)(nil), // 30: google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo + (*common.DemandGenProductAdInfo)(nil), // 31: google.ads.googleads.v22.common.DemandGenProductAdInfo + (*common.TravelAdInfo)(nil), // 32: google.ads.googleads.v22.common.TravelAdInfo +} +var file_google_ads_googleads_v22_resources_ad_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Ad.final_app_urls:type_name -> google.ads.googleads.v22.common.FinalAppUrl + 2, // 1: google.ads.googleads.v22.resources.Ad.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter + 3, // 2: google.ads.googleads.v22.resources.Ad.type:type_name -> google.ads.googleads.v22.enums.AdTypeEnum.AdType + 4, // 3: google.ads.googleads.v22.resources.Ad.device_preference:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 5, // 4: google.ads.googleads.v22.resources.Ad.url_collections:type_name -> google.ads.googleads.v22.common.UrlCollection + 6, // 5: google.ads.googleads.v22.resources.Ad.system_managed_resource_source:type_name -> google.ads.googleads.v22.enums.SystemManagedResourceSourceEnum.SystemManagedResourceSource + 7, // 6: google.ads.googleads.v22.resources.Ad.text_ad:type_name -> google.ads.googleads.v22.common.TextAdInfo + 8, // 7: google.ads.googleads.v22.resources.Ad.expanded_text_ad:type_name -> google.ads.googleads.v22.common.ExpandedTextAdInfo + 9, // 8: google.ads.googleads.v22.resources.Ad.call_ad:type_name -> google.ads.googleads.v22.common.CallAdInfo + 10, // 9: google.ads.googleads.v22.resources.Ad.expanded_dynamic_search_ad:type_name -> google.ads.googleads.v22.common.ExpandedDynamicSearchAdInfo + 11, // 10: google.ads.googleads.v22.resources.Ad.hotel_ad:type_name -> google.ads.googleads.v22.common.HotelAdInfo + 12, // 11: google.ads.googleads.v22.resources.Ad.shopping_smart_ad:type_name -> google.ads.googleads.v22.common.ShoppingSmartAdInfo + 13, // 12: google.ads.googleads.v22.resources.Ad.shopping_product_ad:type_name -> google.ads.googleads.v22.common.ShoppingProductAdInfo + 14, // 13: google.ads.googleads.v22.resources.Ad.image_ad:type_name -> google.ads.googleads.v22.common.ImageAdInfo + 15, // 14: google.ads.googleads.v22.resources.Ad.video_ad:type_name -> google.ads.googleads.v22.common.VideoAdInfo + 16, // 15: google.ads.googleads.v22.resources.Ad.video_responsive_ad:type_name -> google.ads.googleads.v22.common.VideoResponsiveAdInfo + 17, // 16: google.ads.googleads.v22.resources.Ad.responsive_search_ad:type_name -> google.ads.googleads.v22.common.ResponsiveSearchAdInfo + 18, // 17: google.ads.googleads.v22.resources.Ad.legacy_responsive_display_ad:type_name -> google.ads.googleads.v22.common.LegacyResponsiveDisplayAdInfo + 19, // 18: google.ads.googleads.v22.resources.Ad.app_ad:type_name -> google.ads.googleads.v22.common.AppAdInfo + 20, // 19: google.ads.googleads.v22.resources.Ad.legacy_app_install_ad:type_name -> google.ads.googleads.v22.common.LegacyAppInstallAdInfo + 21, // 20: google.ads.googleads.v22.resources.Ad.responsive_display_ad:type_name -> google.ads.googleads.v22.common.ResponsiveDisplayAdInfo + 22, // 21: google.ads.googleads.v22.resources.Ad.local_ad:type_name -> google.ads.googleads.v22.common.LocalAdInfo + 23, // 22: google.ads.googleads.v22.resources.Ad.display_upload_ad:type_name -> google.ads.googleads.v22.common.DisplayUploadAdInfo + 24, // 23: google.ads.googleads.v22.resources.Ad.app_engagement_ad:type_name -> google.ads.googleads.v22.common.AppEngagementAdInfo + 25, // 24: google.ads.googleads.v22.resources.Ad.shopping_comparison_listing_ad:type_name -> google.ads.googleads.v22.common.ShoppingComparisonListingAdInfo + 26, // 25: google.ads.googleads.v22.resources.Ad.smart_campaign_ad:type_name -> google.ads.googleads.v22.common.SmartCampaignAdInfo + 27, // 26: google.ads.googleads.v22.resources.Ad.app_pre_registration_ad:type_name -> google.ads.googleads.v22.common.AppPreRegistrationAdInfo + 28, // 27: google.ads.googleads.v22.resources.Ad.demand_gen_multi_asset_ad:type_name -> google.ads.googleads.v22.common.DemandGenMultiAssetAdInfo + 29, // 28: google.ads.googleads.v22.resources.Ad.demand_gen_carousel_ad:type_name -> google.ads.googleads.v22.common.DemandGenCarouselAdInfo + 30, // 29: google.ads.googleads.v22.resources.Ad.demand_gen_video_responsive_ad:type_name -> google.ads.googleads.v22.common.DemandGenVideoResponsiveAdInfo + 31, // 30: google.ads.googleads.v22.resources.Ad.demand_gen_product_ad:type_name -> google.ads.googleads.v22.common.DemandGenProductAdInfo + 32, // 31: google.ads.googleads.v22.resources.Ad.travel_ad:type_name -> google.ads.googleads.v22.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 @@ -1077,12 +1077,12 @@ var file_google_ads_googleads_v21_resources_ad_proto_depIdxs = []int32{ 0, // [0:32] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_proto_init() } -func file_google_ads_googleads_v21_resources_ad_proto_init() { - if File_google_ads_googleads_v21_resources_ad_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_proto_init() } +func file_google_ads_googleads_v22_resources_ad_proto_init() { + if File_google_ads_googleads_v22_resources_ad_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_proto_msgTypes[0].OneofWrappers = []any{ (*Ad_TextAd)(nil), (*Ad_ExpandedTextAd)(nil), (*Ad_CallAd)(nil), @@ -1114,17 +1114,17 @@ func file_google_ads_googleads_v21_resources_ad_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_proto = out.File - file_google_ads_googleads_v21_resources_ad_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_proto = out.File + file_google_ads_googleads_v22_resources_ad_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_proto_depIdxs = nil } diff --git a/resources/ad_group.pb.go b/resources/ad_group.pb.go index a008cae5..533e4a54 100644 --- a/resources/ad_group.pb.go +++ b/resources/ad_group.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group.proto +// source: google/ads/googleads/v22/resources/ad_group.proto package resources @@ -59,11 +59,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.v21.enums.AdGroupStatusEnum_AdGroupStatus" json:"status,omitempty"` + Status enums.AdGroupStatusEnum_AdGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.AdGroupTypeEnum_AdGroupType" json:"type,omitempty"` + Type enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,12,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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 @@ -115,6 +115,9 @@ type AdGroup struct { // Average amount in micros that the advertiser is willing to pay for every ad // view. TargetCpvMicros *int64 `protobuf:"varint,65,opt,name=target_cpv_micros,json=targetCpvMicros,proto3,oneof" json:"target_cpv_micros,omitempty"` + // Average amount in micros that the advertiser is willing to pay for every ad + // click. Overrides the target CPC configured at the campaign level. + TargetCpcMicros *int64 `protobuf:"varint,68,opt,name=target_cpc_micros,json=targetCpcMicros,proto3,oneof" json:"target_cpc_micros,omitempty"` // True if optimized targeting is enabled. Optimized Targeting is the // replacement for Audience Expansion. OptimizedTargetingEnabled bool `protobuf:"varint,59,opt,name=optimized_targeting_enabled,json=optimizedTargetingEnabled,proto3" json:"optimized_targeting_enabled,omitempty"` @@ -126,7 +129,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.v21.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.v22.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. @@ -138,19 +141,25 @@ 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.v21.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.v22.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.v21.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.v22.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_roas_source,omitempty"` + // Output only. The effective target CPC (cost-per-click). + // This field is read-only. + EffectiveTargetCpc *int64 `protobuf:"varint,69,opt,name=effective_target_cpc,json=effectiveTargetCpc,proto3,oneof" json:"effective_target_cpc,omitempty"` + // Output only. Source of the effective target CPC. + // This field is read-only. + EffectiveTargetCpcSource enums.BiddingSourceEnum_BiddingSource `protobuf:"varint,70,opt,name=effective_target_cpc_source,json=effectiveTargetCpcSource,proto3,enum=google.ads.googleads.v22.enums.BiddingSourceEnum_BiddingSource" json:"effective_target_cpc_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.v21.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.v22.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. @@ -161,13 +170,13 @@ 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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // Settings for Demand Gen ad groups. DemandGenAdGroupSettings *AdGroup_DemandGenAdGroupSettings `protobuf:"bytes,91,opt,name=demand_gen_ad_group_settings,json=demandGenAdGroupSettings,proto3" json:"demand_gen_ad_group_settings,omitempty"` // Settings for video ad groups. @@ -180,7 +189,7 @@ type AdGroup struct { func (x *AdGroup) Reset() { *x = AdGroup{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +201,7 @@ func (x *AdGroup) String() string { func (*AdGroup) ProtoMessage() {} func (x *AdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,7 +214,7 @@ func (x *AdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroup.ProtoReflect.Descriptor instead. func (*AdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0} } func (x *AdGroup) GetResourceName() string { @@ -348,6 +357,13 @@ func (x *AdGroup) GetTargetCpvMicros() int64 { return 0 } +func (x *AdGroup) GetTargetCpcMicros() int64 { + if x != nil && x.TargetCpcMicros != nil { + return *x.TargetCpcMicros + } + return 0 +} + func (x *AdGroup) GetOptimizedTargetingEnabled() bool { if x != nil { return x.OptimizedTargetingEnabled @@ -418,6 +434,20 @@ func (x *AdGroup) GetEffectiveTargetRoasSource() enums.BiddingSourceEnum_Bidding return enums.BiddingSourceEnum_BiddingSource(0) } +func (x *AdGroup) GetEffectiveTargetCpc() int64 { + if x != nil && x.EffectiveTargetCpc != nil { + return *x.EffectiveTargetCpc + } + return 0 +} + +func (x *AdGroup) GetEffectiveTargetCpcSource() enums.BiddingSourceEnum_BiddingSource { + if x != nil { + return x.EffectiveTargetCpcSource + } + return enums.BiddingSourceEnum_BiddingSource(0) +} + func (x *AdGroup) GetLabels() []string { if x != nil { return x.Labels @@ -487,7 +517,7 @@ type AdGroup_AudienceSetting struct { func (x *AdGroup_AudienceSetting) Reset() { *x = AdGroup_AudienceSetting{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -499,7 +529,7 @@ func (x *AdGroup_AudienceSetting) String() string { func (*AdGroup_AudienceSetting) ProtoMessage() {} func (x *AdGroup_AudienceSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -512,7 +542,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_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 0} } func (x *AdGroup_AudienceSetting) GetUseAudienceGrouped() bool { @@ -533,7 +563,7 @@ type AdGroup_DemandGenAdGroupSettings struct { func (x *AdGroup_DemandGenAdGroupSettings) Reset() { *x = AdGroup_DemandGenAdGroupSettings{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -545,7 +575,7 @@ func (x *AdGroup_DemandGenAdGroupSettings) String() string { func (*AdGroup_DemandGenAdGroupSettings) ProtoMessage() {} func (x *AdGroup_DemandGenAdGroupSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -558,7 +588,7 @@ func (x *AdGroup_DemandGenAdGroupSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroup_DemandGenAdGroupSettings.ProtoReflect.Descriptor instead. func (*AdGroup_DemandGenAdGroupSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 1} } func (x *AdGroup_DemandGenAdGroupSettings) GetChannelControls() *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls { @@ -579,7 +609,7 @@ type AdGroup_VideoAdGroupSettings struct { func (x *AdGroup_VideoAdGroupSettings) Reset() { *x = AdGroup_VideoAdGroupSettings{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -591,7 +621,7 @@ func (x *AdGroup_VideoAdGroupSettings) String() string { func (*AdGroup_VideoAdGroupSettings) ProtoMessage() {} func (x *AdGroup_VideoAdGroupSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -604,7 +634,7 @@ func (x *AdGroup_VideoAdGroupSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroup_VideoAdGroupSettings.ProtoReflect.Descriptor instead. func (*AdGroup_VideoAdGroupSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 2} } func (x *AdGroup_VideoAdGroupSettings) GetVideoAdSequence() *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting { @@ -627,7 +657,7 @@ type AdGroup_AiMaxAdGroupSetting struct { func (x *AdGroup_AiMaxAdGroupSetting) Reset() { *x = AdGroup_AiMaxAdGroupSetting{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -639,7 +669,7 @@ func (x *AdGroup_AiMaxAdGroupSetting) String() string { func (*AdGroup_AiMaxAdGroupSetting) ProtoMessage() {} func (x *AdGroup_AiMaxAdGroupSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -652,7 +682,7 @@ func (x *AdGroup_AiMaxAdGroupSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroup_AiMaxAdGroupSetting.ProtoReflect.Descriptor instead. func (*AdGroup_AiMaxAdGroupSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 3} } func (x *AdGroup_AiMaxAdGroupSetting) GetDisableSearchTermMatching() bool { @@ -667,7 +697,7 @@ type AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. Channel configuration reflecting which field in the oneof // is populated. - ChannelConfig enums.DemandGenChannelConfigEnum_DemandGenChannelConfig `protobuf:"varint,1,opt,name=channel_config,json=channelConfig,proto3,enum=google.ads.googleads.v21.enums.DemandGenChannelConfigEnum_DemandGenChannelConfig" json:"channel_config,omitempty"` + ChannelConfig enums.DemandGenChannelConfigEnum_DemandGenChannelConfig `protobuf:"varint,1,opt,name=channel_config,json=channelConfig,proto3,enum=google.ads.googleads.v22.enums.DemandGenChannelConfigEnum_DemandGenChannelConfig" json:"channel_config,omitempty"` // Oneof between the different channel control configuration options. // // Types that are valid to be assigned to ChannelConfiguration: @@ -681,7 +711,7 @@ type AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls struct { func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) Reset() { *x = AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -693,7 +723,7 @@ func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) String() str func (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) ProtoMessage() {} func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -706,7 +736,7 @@ func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) ProtoReflect // Deprecated: Use AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls.ProtoReflect.Descriptor instead. func (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 1, 0} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 1, 0} } func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls) GetChannelConfig() enums.DemandGenChannelConfigEnum_DemandGenChannelConfig { @@ -747,7 +777,7 @@ type isAdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_ChannelConfigur type AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_ChannelStrategy struct { // High level channel strategy. - ChannelStrategy enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy `protobuf:"varint,2,opt,name=channel_strategy,json=channelStrategy,proto3,enum=google.ads.googleads.v21.enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy,oneof"` + ChannelStrategy enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy `protobuf:"varint,2,opt,name=channel_strategy,json=channelStrategy,proto3,enum=google.ads.googleads.v22.enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy,oneof"` } type AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_SelectedChannels struct { @@ -784,7 +814,7 @@ type AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelected func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels) Reset() { *x = AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -797,7 +827,7 @@ func (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelect } func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -810,7 +840,7 @@ func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSele // Deprecated: Use AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels.ProtoReflect.Descriptor instead. func (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 1, 0, 0} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 1, 0, 0} } func (x *AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels) GetYoutubeInStream() bool { @@ -868,7 +898,7 @@ type AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting struct { func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) Reset() { *x = AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting{} - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -880,7 +910,7 @@ func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) String() strin func (*AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) ProtoMessage() {} func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -893,7 +923,7 @@ func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) ProtoReflect() // Deprecated: Use AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting.ProtoReflect.Descriptor instead. func (*AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP(), []int{0, 2, 0} + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP(), []int{0, 2, 0} } func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) GetStepId() int64 { @@ -903,67 +933,67 @@ func (x *AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting) GetStepId() in return 0 } -var File_google_ads_googleads_v21_resources_ad_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, + 0x32, 0x32, 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, 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, 0xb8, - 0x26, 0x0a, 0x07, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4d, 0x0a, 0x0d, 0x72, 0x65, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xda, + 0x28, 0x0a, 0x07, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x4d, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 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, @@ -974,18 +1004,18 @@ var file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc = string([]by 0x09, 0x48, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1002,7 +1032,7 @@ var file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc = string([]by 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1040,329 +1070,348 @@ var file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc = string([]by 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x41, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0e, 0x52, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, - 0x76, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x1b, 0x6f, 0x70, - 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, - 0x67, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x0a, 0x1d, 0x65, 0x78, - 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, - 0x63, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x43, 0x20, 0x01, 0x28, - 0x08, 0x52, 0x1b, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, - 0x61, 0x70, 0x68, 0x69, 0x63, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x8a, - 0x01, 0x0a, 0x1c, 0x64, 0x69, 0x73, 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, 0x32, 0x31, - 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, 0x6c, 0x61, 0x79, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x42, - 0x69, 0x64, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x10, 0x66, - 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, 0x18, - 0x2e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x0f, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, - 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x67, 0x12, 0x47, 0x0a, 0x1b, 0x65, 0x66, 0x66, 0x65, 0x63, - 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, - 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, - 0x03, 0x48, 0x10, 0x52, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, - 0x12, 0x83, 0x01, 0x0a, 0x1b, 0x65, 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, + 0x76, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11, 0x74, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x63, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, + 0x44, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0f, 0x52, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, + 0x70, 0x63, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3e, 0x0a, 0x1b, 0x6f, + 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x3b, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x19, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x65, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x69, 0x6e, 0x67, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x12, 0x42, 0x0a, 0x1d, 0x65, + 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x43, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x1b, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x44, 0x65, 0x6d, 0x6f, 0x67, + 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, + 0x8a, 0x01, 0x0a, 0x1c, 0x64, 0x69, 0x73, 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, 0x32, + 0x32, 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, 0x6c, 0x61, 0x79, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x42, 0x69, 0x64, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x10, + 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x73, 0x75, 0x66, 0x66, 0x69, 0x78, + 0x18, 0x2e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x10, 0x52, 0x0e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, + 0x72, 0x6c, 0x53, 0x75, 0x66, 0x66, 0x69, 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, 0x32, + 0x32, 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, 0x32, 0x32, + 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, 0x67, 0x12, 0x47, 0x0a, 0x1b, 0x65, 0x66, 0x66, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x2f, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x11, 0x52, 0x18, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, + 0x01, 0x12, 0x83, 0x01, 0x0a, 0x1b, 0x65, 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, + 0x32, 0x32, 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, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, + 0x61, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3c, 0x0a, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, + 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, + 0x18, 0x30, 0x20, 0x01, 0x28, 0x01, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x12, 0x52, 0x13, 0x65, + 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, + 0x61, 0x73, 0x88, 0x01, 0x01, 0x12, 0x85, 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, 0x32, 0x32, 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, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3a, 0x0a, + 0x14, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x5f, 0x63, 0x70, 0x63, 0x18, 0x45, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x03, + 0x48, 0x13, 0x52, 0x12, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x43, 0x70, 0x63, 0x88, 0x01, 0x01, 0x12, 0x83, 0x01, 0x0a, 0x1b, 0x65, 0x66, + 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, + 0x70, 0x63, 0x5f, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x46, 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, 0x32, 0x32, 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, 0x65, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x63, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, + 0x45, 0x0a, 0x06, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x31, 0x20, 0x03, 0x28, 0x09, 0x42, + 0x2d, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x27, 0x0a, 0x25, 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, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, + 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, + 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x94, 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, 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, 0x32, - 0x31, 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, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x61, - 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x3c, 0x0a, 0x15, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 0x73, 0x18, - 0x30, 0x20, 0x01, 0x28, 0x01, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x11, 0x52, 0x13, 0x65, 0x66, - 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 0x61, - 0x73, 0x88, 0x01, 0x01, 0x12, 0x85, 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, 0x32, 0x31, 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, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x54, 0x61, 0x72, 0x67, - 0x65, 0x74, 0x52, 0x6f, 0x61, 0x73, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x12, 0x45, 0x0a, 0x06, - 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x73, 0x18, 0x31, 0x20, 0x03, 0x28, 0x09, 0x42, 0x2d, 0xe0, 0x41, - 0x03, 0xfa, 0x41, 0x27, 0x0a, 0x25, 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, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x06, 0x6c, 0x61, 0x62, - 0x65, 0x6c, 0x73, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, - 0x75, 0x73, 0x12, 0x94, 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, 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, 0x32, 0x31, 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, 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, 0x84, 0x01, 0x0a, 0x1c, 0x64, 0x65, - 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5b, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x44, 0x65, - 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x18, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, - 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, - 0x12, 0x77, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, - 0x75, 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5c, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x56, - 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, - 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x75, 0x0a, 0x17, 0x61, 0x69, 0x5f, - 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x18, 0x47, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, + 0x32, 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, 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, 0x84, 0x01, 0x0a, + 0x1c, 0x64, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x65, 0x6e, 0x5f, 0x61, 0x64, 0x5f, 0x67, + 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5b, 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, 0x32, 0x32, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, + 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x18, 0x64, 0x65, 0x6d, 0x61, 0x6e, + 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x73, 0x12, 0x77, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, + 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5c, + 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, 0x32, 0x32, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, + 0x70, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x75, 0x0a, 0x17, + 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, + 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x47, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, + 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x13, + 0x61, 0x69, 0x4d, 0x61, 0x78, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x1a, 0x48, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x35, 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, 0x52, 0x12, 0x75, 0x73, 0x65, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x1a, 0xed, 0x06, + 0x0a, 0x18, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x88, 0x01, 0x0a, 0x10, 0x63, + 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x18, + 0x01, 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, 0x32, 0x32, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, + 0x75, 0x70, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, + 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, + 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, + 0x72, 0x6f, 0x6c, 0x73, 0x52, 0x0f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, + 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x1a, 0xc5, 0x05, 0x0a, 0x18, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, + 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, + 0x6c, 0x73, 0x12, 0x7d, 0x0a, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x41, 0x64, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x13, 0x61, 0x69, 0x4d, - 0x61, 0x78, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x1a, 0x48, 0x0a, 0x0f, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x12, 0x35, 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, 0x52, 0x12, 0x75, 0x73, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, - 0x6e, 0x63, 0x65, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x65, 0x64, 0x1a, 0xed, 0x06, 0x0a, 0x18, 0x44, - 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x88, 0x01, 0x0a, 0x10, 0x63, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, + 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, + 0x69, 0x67, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, + 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x12, 0x82, 0x01, 0x0a, 0x10, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x74, + 0x72, 0x61, 0x74, 0x65, 0x67, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, + 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, + 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, + 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, + 0x65, 0x67, 0x79, 0x48, 0x00, 0x52, 0x0f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, + 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x73, 0x65, 0x6c, 0x65, 0x63, + 0x74, 0x65, 0x64, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x0b, 0x32, 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, - 0x73, 0x52, 0x0f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, - 0x6c, 0x73, 0x1a, 0xc5, 0x05, 0x0a, 0x18, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, - 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x12, - 0x7d, 0x0a, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, - 0x67, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, - 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x45, - 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, - 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, - 0x0d, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x12, 0x82, - 0x01, 0x0a, 0x10, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x72, 0x61, 0x74, - 0x65, 0x67, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, - 0x64, 0x47, 0x65, 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, - 0x65, 0x67, 0x79, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, - 0x6e, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, 0x65, 0x67, 0x79, - 0x48, 0x00, 0x52, 0x0f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x53, 0x74, 0x72, 0x61, 0x74, - 0x65, 0x67, 0x79, 0x12, 0xa6, 0x01, 0x0a, 0x11, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, - 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, - 0x77, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x44, 0x65, 0x6d, - 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x43, - 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x73, 0x2e, 0x44, - 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, - 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x10, 0x73, 0x65, 0x6c, 0x65, - 0x63, 0x74, 0x65, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x1a, 0xe2, 0x01, 0x0a, - 0x19, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, - 0x65, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x2a, 0x0a, 0x11, 0x79, 0x6f, - 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, - 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x49, 0x6e, - 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x26, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, - 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, - 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x49, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x12, 0x25, - 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, - 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x53, - 0x68, 0x6f, 0x72, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x64, 0x69, 0x73, 0x63, 0x6f, 0x76, 0x65, - 0x72, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, - 0x52, 0x05, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6c, - 0x61, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, - 0x79, 0x42, 0x17, 0x0a, 0x15, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, - 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xd7, 0x01, 0x0a, 0x14, 0x56, - 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, - 0x6e, 0x67, 0x73, 0x12, 0x87, 0x01, 0x0a, 0x11, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, - 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, 0x56, 0x69, 0x64, - 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, - 0x65, 0x53, 0x74, 0x65, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x0f, 0x76, 0x69, - 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x1a, 0x35, 0x0a, - 0x1a, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, - 0x53, 0x74, 0x65, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x17, 0x0a, 0x07, 0x73, - 0x74, 0x65, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, - 0x65, 0x70, 0x49, 0x64, 0x1a, 0x7c, 0x0a, 0x13, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x41, 0x64, 0x47, - 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x44, 0x0a, 0x1c, 0x64, - 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, - 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x08, 0x48, 0x00, 0x52, 0x19, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x65, 0x61, 0x72, - 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x88, 0x01, - 0x01, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, - 0x6e, 0x67, 0x3a, 0x55, 0xea, 0x41, 0x52, 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, 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, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x7b, 0x61, 0x64, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, - 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x61, - 0x73, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x42, 0x11, 0x0a, 0x0f, 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, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, - 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, - 0x5f, 0x63, 0x70, 0x61, 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, 0x14, - 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x6d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, - 0x72, 0x6f, 0x61, 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, - 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x6d, 0x69, - 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, - 0x63, 0x70, 0x76, 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, - 0x1e, 0x0a, 0x1c, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x3a, - 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, - 0x6f, 0x33, + 0x73, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x53, 0x65, 0x6c, 0x65, 0x63, + 0x74, 0x65, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x10, 0x73, + 0x65, 0x6c, 0x65, 0x63, 0x74, 0x65, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x1a, + 0xe2, 0x01, 0x0a, 0x19, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, 0x65, 0x6e, 0x53, 0x65, 0x6c, + 0x65, 0x63, 0x74, 0x65, 0x64, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x2a, 0x0a, + 0x11, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, + 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, + 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x12, 0x26, 0x0a, 0x0f, 0x79, 0x6f, 0x75, + 0x74, 0x75, 0x62, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x08, 0x52, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x49, 0x6e, 0x46, 0x65, 0x65, + 0x64, 0x12, 0x25, 0x0a, 0x0e, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x73, 0x68, 0x6f, + 0x72, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, + 0x62, 0x65, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x64, 0x69, 0x73, 0x63, + 0x6f, 0x76, 0x65, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x64, 0x69, 0x73, 0x63, + 0x6f, 0x76, 0x65, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x08, 0x52, 0x05, 0x67, 0x6d, 0x61, 0x69, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x64, 0x69, + 0x73, 0x70, 0x6c, 0x61, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07, 0x64, 0x69, 0x73, + 0x70, 0x6c, 0x61, 0x79, 0x42, 0x17, 0x0a, 0x15, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, + 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0xd7, 0x01, + 0x0a, 0x14, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x87, 0x01, 0x0a, 0x11, 0x76, 0x69, 0x64, 0x65, 0x6f, + 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x01, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x2e, + 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, + 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x65, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, + 0x0f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, + 0x1a, 0x35, 0x0a, 0x1a, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x65, 0x53, 0x74, 0x65, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x17, + 0x0a, 0x07, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, + 0x06, 0x73, 0x74, 0x65, 0x70, 0x49, 0x64, 0x1a, 0x7c, 0x0a, 0x13, 0x41, 0x69, 0x4d, 0x61, 0x78, + 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x44, + 0x0a, 0x1c, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, + 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, 0x67, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x19, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, 0x53, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x4d, 0x61, 0x74, 0x63, 0x68, 0x69, 0x6e, + 0x67, 0x88, 0x01, 0x01, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x64, 0x69, 0x73, 0x61, 0x62, 0x6c, 0x65, + 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x6d, 0x61, 0x74, + 0x63, 0x68, 0x69, 0x6e, 0x67, 0x3a, 0x55, 0xea, 0x41, 0x52, 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, 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, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x2f, 0x7b, + 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x05, 0x0a, 0x03, + 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x10, 0x0a, 0x0e, + 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 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, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x42, 0x11, 0x0a, 0x0f, 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, 0x11, 0x0a, 0x0f, 0x5f, 0x63, 0x70, 0x6d, 0x5f, 0x62, 0x69, + 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 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, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x6d, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x72, 0x6f, 0x61, 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, 0x13, 0x0a, 0x11, 0x5f, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, + 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x63, 0x70, 0x76, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 0x14, 0x0a, + 0x12, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x63, 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, 0x1e, 0x0a, 0x1c, 0x5f, 0x65, 0x66, 0x66, + 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, + 0x61, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x42, 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, 0x17, 0x0a, 0x15, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, + 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x63, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_google_ads_googleads_v21_resources_ad_group_proto_goTypes = []any{ - (*AdGroup)(nil), // 0: google.ads.googleads.v21.resources.AdGroup - (*AdGroup_AudienceSetting)(nil), // 1: google.ads.googleads.v21.resources.AdGroup.AudienceSetting - (*AdGroup_DemandGenAdGroupSettings)(nil), // 2: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings - (*AdGroup_VideoAdGroupSettings)(nil), // 3: google.ads.googleads.v21.resources.AdGroup.VideoAdGroupSettings - (*AdGroup_AiMaxAdGroupSetting)(nil), // 4: google.ads.googleads.v21.resources.AdGroup.AiMaxAdGroupSetting - (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls)(nil), // 5: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls - (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels)(nil), // 6: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.DemandGenSelectedChannels - (*AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting)(nil), // 7: google.ads.googleads.v21.resources.AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting - (enums.AdGroupStatusEnum_AdGroupStatus)(0), // 8: google.ads.googleads.v21.enums.AdGroupStatusEnum.AdGroupStatus - (enums.AdGroupTypeEnum_AdGroupType)(0), // 9: google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - (enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 10: google.ads.googleads.v21.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode - (*common.CustomParameter)(nil), // 11: google.ads.googleads.v21.common.CustomParameter - (enums.TargetingDimensionEnum_TargetingDimension)(0), // 12: google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimension - (*common.TargetingSetting)(nil), // 13: google.ads.googleads.v21.common.TargetingSetting - (enums.BiddingSourceEnum_BiddingSource)(0), // 14: google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 15: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSetTypeEnum_AssetSetType)(0), // 16: google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - (enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 17: google.ads.googleads.v21.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus - (enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 18: google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason - (enums.DemandGenChannelConfigEnum_DemandGenChannelConfig)(0), // 19: google.ads.googleads.v21.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig - (enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy)(0), // 20: google.ads.googleads.v21.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy -} -var file_google_ads_googleads_v21_resources_ad_group_proto_depIdxs = []int32{ - 8, // 0: google.ads.googleads.v21.resources.AdGroup.status:type_name -> google.ads.googleads.v21.enums.AdGroupStatusEnum.AdGroupStatus - 9, // 1: google.ads.googleads.v21.resources.AdGroup.type:type_name -> google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - 10, // 2: google.ads.googleads.v21.resources.AdGroup.ad_rotation_mode:type_name -> google.ads.googleads.v21.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode - 11, // 3: google.ads.googleads.v21.resources.AdGroup.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter - 12, // 4: google.ads.googleads.v21.resources.AdGroup.display_custom_bid_dimension:type_name -> google.ads.googleads.v21.enums.TargetingDimensionEnum.TargetingDimension - 13, // 5: google.ads.googleads.v21.resources.AdGroup.targeting_setting:type_name -> google.ads.googleads.v21.common.TargetingSetting - 1, // 6: google.ads.googleads.v21.resources.AdGroup.audience_setting:type_name -> google.ads.googleads.v21.resources.AdGroup.AudienceSetting - 14, // 7: google.ads.googleads.v21.resources.AdGroup.effective_target_cpa_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 14, // 8: google.ads.googleads.v21.resources.AdGroup.effective_target_roas_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 15, // 9: google.ads.googleads.v21.resources.AdGroup.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 16, // 10: google.ads.googleads.v21.resources.AdGroup.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - 17, // 11: google.ads.googleads.v21.resources.AdGroup.primary_status:type_name -> google.ads.googleads.v21.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus - 18, // 12: google.ads.googleads.v21.resources.AdGroup.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason - 2, // 13: google.ads.googleads.v21.resources.AdGroup.demand_gen_ad_group_settings:type_name -> google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings - 3, // 14: google.ads.googleads.v21.resources.AdGroup.video_ad_group_settings:type_name -> google.ads.googleads.v21.resources.AdGroup.VideoAdGroupSettings - 4, // 15: google.ads.googleads.v21.resources.AdGroup.ai_max_ad_group_setting:type_name -> google.ads.googleads.v21.resources.AdGroup.AiMaxAdGroupSetting - 5, // 16: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.channel_controls:type_name -> google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls - 7, // 17: google.ads.googleads.v21.resources.AdGroup.VideoAdGroupSettings.video_ad_sequence:type_name -> google.ads.googleads.v21.resources.AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting - 19, // 18: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.channel_config:type_name -> google.ads.googleads.v21.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig - 20, // 19: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.channel_strategy:type_name -> google.ads.googleads.v21.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy - 6, // 20: google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.selected_channels:type_name -> google.ads.googleads.v21.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.DemandGenSelectedChannels - 21, // [21:21] is the sub-list for method output_type - 21, // [21:21] is the sub-list for method input_type - 21, // [21:21] is the sub-list for extension type_name - 21, // [21:21] is the sub-list for extension extendee - 0, // [0:21] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_resources_ad_group_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_proto != nil { + return file_google_ads_googleads_v22_resources_ad_group_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_google_ads_googleads_v22_resources_ad_group_proto_goTypes = []any{ + (*AdGroup)(nil), // 0: google.ads.googleads.v22.resources.AdGroup + (*AdGroup_AudienceSetting)(nil), // 1: google.ads.googleads.v22.resources.AdGroup.AudienceSetting + (*AdGroup_DemandGenAdGroupSettings)(nil), // 2: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings + (*AdGroup_VideoAdGroupSettings)(nil), // 3: google.ads.googleads.v22.resources.AdGroup.VideoAdGroupSettings + (*AdGroup_AiMaxAdGroupSetting)(nil), // 4: google.ads.googleads.v22.resources.AdGroup.AiMaxAdGroupSetting + (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls)(nil), // 5: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls + (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_DemandGenSelectedChannels)(nil), // 6: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.DemandGenSelectedChannels + (*AdGroup_VideoAdGroupSettings_VideoAdSequenceStepSetting)(nil), // 7: google.ads.googleads.v22.resources.AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting + (enums.AdGroupStatusEnum_AdGroupStatus)(0), // 8: google.ads.googleads.v22.enums.AdGroupStatusEnum.AdGroupStatus + (enums.AdGroupTypeEnum_AdGroupType)(0), // 9: google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + (enums.AdGroupAdRotationModeEnum_AdGroupAdRotationMode)(0), // 10: google.ads.googleads.v22.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode + (*common.CustomParameter)(nil), // 11: google.ads.googleads.v22.common.CustomParameter + (enums.TargetingDimensionEnum_TargetingDimension)(0), // 12: google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimension + (*common.TargetingSetting)(nil), // 13: google.ads.googleads.v22.common.TargetingSetting + (enums.BiddingSourceEnum_BiddingSource)(0), // 14: google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 15: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSetTypeEnum_AssetSetType)(0), // 16: google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + (enums.AdGroupPrimaryStatusEnum_AdGroupPrimaryStatus)(0), // 17: google.ads.googleads.v22.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus + (enums.AdGroupPrimaryStatusReasonEnum_AdGroupPrimaryStatusReason)(0), // 18: google.ads.googleads.v22.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason + (enums.DemandGenChannelConfigEnum_DemandGenChannelConfig)(0), // 19: google.ads.googleads.v22.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig + (enums.DemandGenChannelStrategyEnum_DemandGenChannelStrategy)(0), // 20: google.ads.googleads.v22.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy +} +var file_google_ads_googleads_v22_resources_ad_group_proto_depIdxs = []int32{ + 8, // 0: google.ads.googleads.v22.resources.AdGroup.status:type_name -> google.ads.googleads.v22.enums.AdGroupStatusEnum.AdGroupStatus + 9, // 1: google.ads.googleads.v22.resources.AdGroup.type:type_name -> google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + 10, // 2: google.ads.googleads.v22.resources.AdGroup.ad_rotation_mode:type_name -> google.ads.googleads.v22.enums.AdGroupAdRotationModeEnum.AdGroupAdRotationMode + 11, // 3: google.ads.googleads.v22.resources.AdGroup.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter + 12, // 4: google.ads.googleads.v22.resources.AdGroup.display_custom_bid_dimension:type_name -> google.ads.googleads.v22.enums.TargetingDimensionEnum.TargetingDimension + 13, // 5: google.ads.googleads.v22.resources.AdGroup.targeting_setting:type_name -> google.ads.googleads.v22.common.TargetingSetting + 1, // 6: google.ads.googleads.v22.resources.AdGroup.audience_setting:type_name -> google.ads.googleads.v22.resources.AdGroup.AudienceSetting + 14, // 7: google.ads.googleads.v22.resources.AdGroup.effective_target_cpa_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 14, // 8: google.ads.googleads.v22.resources.AdGroup.effective_target_roas_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 14, // 9: google.ads.googleads.v22.resources.AdGroup.effective_target_cpc_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 15, // 10: google.ads.googleads.v22.resources.AdGroup.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 16, // 11: google.ads.googleads.v22.resources.AdGroup.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + 17, // 12: google.ads.googleads.v22.resources.AdGroup.primary_status:type_name -> google.ads.googleads.v22.enums.AdGroupPrimaryStatusEnum.AdGroupPrimaryStatus + 18, // 13: google.ads.googleads.v22.resources.AdGroup.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.AdGroupPrimaryStatusReasonEnum.AdGroupPrimaryStatusReason + 2, // 14: google.ads.googleads.v22.resources.AdGroup.demand_gen_ad_group_settings:type_name -> google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings + 3, // 15: google.ads.googleads.v22.resources.AdGroup.video_ad_group_settings:type_name -> google.ads.googleads.v22.resources.AdGroup.VideoAdGroupSettings + 4, // 16: google.ads.googleads.v22.resources.AdGroup.ai_max_ad_group_setting:type_name -> google.ads.googleads.v22.resources.AdGroup.AiMaxAdGroupSetting + 5, // 17: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.channel_controls:type_name -> google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls + 7, // 18: google.ads.googleads.v22.resources.AdGroup.VideoAdGroupSettings.video_ad_sequence:type_name -> google.ads.googleads.v22.resources.AdGroup.VideoAdGroupSettings.VideoAdSequenceStepSetting + 19, // 19: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.channel_config:type_name -> google.ads.googleads.v22.enums.DemandGenChannelConfigEnum.DemandGenChannelConfig + 20, // 20: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.channel_strategy:type_name -> google.ads.googleads.v22.enums.DemandGenChannelStrategyEnum.DemandGenChannelStrategy + 6, // 21: google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.selected_channels:type_name -> google.ads.googleads.v22.resources.AdGroup.DemandGenAdGroupSettings.DemandGenChannelControls.DemandGenSelectedChannels + 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 + 22, // [22:22] is the sub-list for extension extendee + 0, // [0:22] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_resources_ad_group_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes[5].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes[5].OneofWrappers = []any{ (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_ChannelStrategy)(nil), (*AdGroup_DemandGenAdGroupSettings_DemandGenChannelControls_SelectedChannels)(nil), } @@ -1370,17 +1419,17 @@ func file_google_ads_googleads_v21_resources_ad_group_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_proto_rawDesc)), NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_group_proto_depIdxs = nil } diff --git a/resources/ad_group_ad.pb.go b/resources/ad_group_ad.pb.go index f5b00617..9128079d 100644 --- a/resources/ad_group_ad.pb.go +++ b/resources/ad_group_ad.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_ad.proto +// source: google/ads/googleads/v22/resources/ad_group_ad.proto package resources @@ -47,7 +47,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.v21.enums.AdGroupAdStatusEnum_AdGroupAdStatus" json:"status,omitempty"` + Status enums.AdGroupAdStatusEnum_AdGroupAdStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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. @@ -55,7 +55,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.v21.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.v22.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.". @@ -64,10 +64,10 @@ 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.v21.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.v22.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.v21.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.v22.enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // Settings that control the types of asset automation. See the // AssetAutomationTypeEnum documentation for the default opt in/out behavior // of each type. @@ -78,7 +78,7 @@ type AdGroupAd struct { func (x *AdGroupAd) Reset() { *x = AdGroupAd{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *AdGroupAd) String() string { func (*AdGroupAd) ProtoMessage() {} func (x *AdGroupAd) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *AdGroupAd) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAd.ProtoReflect.Descriptor instead. func (*AdGroupAd) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAd) GetResourceName() string { @@ -189,17 +189,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAdPolicySummary) Reset() { *x = AdGroupAdPolicySummary{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -211,7 +211,7 @@ func (x *AdGroupAdPolicySummary) String() string { func (*AdGroupAdPolicySummary) ProtoMessage() {} func (x *AdGroupAdPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -224,7 +224,7 @@ func (x *AdGroupAdPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdPolicySummary.ProtoReflect.Descriptor instead. func (*AdGroupAdPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAdPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -252,16 +252,16 @@ func (x *AdGroupAdPolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusE type AdGroupAdAssetAutomationSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // The asset automation type that this setting configures. - AssetAutomationType *enums.AssetAutomationTypeEnum_AssetAutomationType `protobuf:"varint,1,opt,name=asset_automation_type,json=assetAutomationType,proto3,enum=google.ads.googleads.v21.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.v22.enums.AssetAutomationTypeEnum_AssetAutomationType,oneof" json:"asset_automation_type,omitempty"` // The opt-in/out status for the specified asset automation type. - AssetAutomationStatus *enums.AssetAutomationStatusEnum_AssetAutomationStatus `protobuf:"varint,2,opt,name=asset_automation_status,json=assetAutomationStatus,proto3,enum=google.ads.googleads.v21.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.v22.enums.AssetAutomationStatusEnum_AssetAutomationStatus,oneof" json:"asset_automation_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAdAssetAutomationSetting) Reset() { *x = AdGroupAdAssetAutomationSetting{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *AdGroupAdAssetAutomationSetting) String() string { func (*AdGroupAdAssetAutomationSetting) ProtoMessage() {} func (x *AdGroupAdAssetAutomationSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *AdGroupAdAssetAutomationSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetAutomationSetting.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetAutomationSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescGZIP(), []int{2} } func (x *AdGroupAdAssetAutomationSetting) GetAssetAutomationType() enums.AssetAutomationTypeEnum_AssetAutomationType { @@ -303,50 +303,50 @@ func (x *AdGroupAdAssetAutomationSetting) GetAssetAutomationStatus() enums.Asset return enums.AssetAutomationStatusEnum_AssetAutomationStatus(0) } -var File_google_ads_googleads_v21_resources_ad_group_ad_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_ad_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, + 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x3b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x74, 0x6f, 0x1a, 0x19, 0x67, 0x6f, @@ -360,7 +360,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, + 0x32, 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, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, @@ -370,18 +370,18 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, + 0x32, 0x32, 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, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x74, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, @@ -402,7 +402,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 0x74, 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, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -413,7 +413,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x12, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x20, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x41, 0x73, @@ -430,13 +430,13 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x76, 0x32, 0x32, 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, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -463,7 +463,7 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -473,65 +473,65 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc = string([ 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, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_ad_group_ad_proto_goTypes = []any{ - (*AdGroupAd)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAd - (*AdGroupAdPolicySummary)(nil), // 1: google.ads.googleads.v21.resources.AdGroupAdPolicySummary - (*AdGroupAdAssetAutomationSetting)(nil), // 2: google.ads.googleads.v21.resources.AdGroupAdAssetAutomationSetting - (enums.AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 3: google.ads.googleads.v21.enums.AdGroupAdStatusEnum.AdGroupAdStatus - (*Ad)(nil), // 4: google.ads.googleads.v21.resources.Ad - (enums.AdStrengthEnum_AdStrength)(0), // 5: google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - (enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 6: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus - (enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 7: google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason - (*common.PolicyTopicEntry)(nil), // 8: google.ads.googleads.v21.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 9: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 10: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 11: google.ads.googleads.v21.enums.AssetAutomationTypeEnum.AssetAutomationType - (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 12: google.ads.googleads.v21.enums.AssetAutomationStatusEnum.AssetAutomationStatus -} -var file_google_ads_googleads_v21_resources_ad_group_ad_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.resources.AdGroupAd.status:type_name -> google.ads.googleads.v21.enums.AdGroupAdStatusEnum.AdGroupAdStatus - 4, // 1: google.ads.googleads.v21.resources.AdGroupAd.ad:type_name -> google.ads.googleads.v21.resources.Ad - 1, // 2: google.ads.googleads.v21.resources.AdGroupAd.policy_summary:type_name -> google.ads.googleads.v21.resources.AdGroupAdPolicySummary - 5, // 3: google.ads.googleads.v21.resources.AdGroupAd.ad_strength:type_name -> google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - 6, // 4: google.ads.googleads.v21.resources.AdGroupAd.primary_status:type_name -> google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus - 7, // 5: google.ads.googleads.v21.resources.AdGroupAd.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason - 2, // 6: google.ads.googleads.v21.resources.AdGroupAd.ad_group_ad_asset_automation_settings:type_name -> google.ads.googleads.v21.resources.AdGroupAdAssetAutomationSetting - 8, // 7: google.ads.googleads.v21.resources.AdGroupAdPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 9, // 8: google.ads.googleads.v21.resources.AdGroupAdPolicySummary.review_status:type_name -> google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 10, // 9: google.ads.googleads.v21.resources.AdGroupAdPolicySummary.approval_status:type_name -> google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus - 11, // 10: google.ads.googleads.v21.resources.AdGroupAdAssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v21.enums.AssetAutomationTypeEnum.AssetAutomationType - 12, // 11: google.ads.googleads.v21.resources.AdGroupAdAssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v21.enums.AssetAutomationStatusEnum.AssetAutomationStatus + return file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_ad_group_ad_proto_goTypes = []any{ + (*AdGroupAd)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAd + (*AdGroupAdPolicySummary)(nil), // 1: google.ads.googleads.v22.resources.AdGroupAdPolicySummary + (*AdGroupAdAssetAutomationSetting)(nil), // 2: google.ads.googleads.v22.resources.AdGroupAdAssetAutomationSetting + (enums.AdGroupAdStatusEnum_AdGroupAdStatus)(0), // 3: google.ads.googleads.v22.enums.AdGroupAdStatusEnum.AdGroupAdStatus + (*Ad)(nil), // 4: google.ads.googleads.v22.resources.Ad + (enums.AdStrengthEnum_AdStrength)(0), // 5: google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + (enums.AdGroupAdPrimaryStatusEnum_AdGroupAdPrimaryStatus)(0), // 6: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus + (enums.AdGroupAdPrimaryStatusReasonEnum_AdGroupAdPrimaryStatusReason)(0), // 7: google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason + (*common.PolicyTopicEntry)(nil), // 8: google.ads.googleads.v22.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 9: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 10: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 11: google.ads.googleads.v22.enums.AssetAutomationTypeEnum.AssetAutomationType + (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 12: google.ads.googleads.v22.enums.AssetAutomationStatusEnum.AssetAutomationStatus +} +var file_google_ads_googleads_v22_resources_ad_group_ad_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.resources.AdGroupAd.status:type_name -> google.ads.googleads.v22.enums.AdGroupAdStatusEnum.AdGroupAdStatus + 4, // 1: google.ads.googleads.v22.resources.AdGroupAd.ad:type_name -> google.ads.googleads.v22.resources.Ad + 1, // 2: google.ads.googleads.v22.resources.AdGroupAd.policy_summary:type_name -> google.ads.googleads.v22.resources.AdGroupAdPolicySummary + 5, // 3: google.ads.googleads.v22.resources.AdGroupAd.ad_strength:type_name -> google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + 6, // 4: google.ads.googleads.v22.resources.AdGroupAd.primary_status:type_name -> google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusEnum.AdGroupAdPrimaryStatus + 7, // 5: google.ads.googleads.v22.resources.AdGroupAd.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.AdGroupAdPrimaryStatusReasonEnum.AdGroupAdPrimaryStatusReason + 2, // 6: google.ads.googleads.v22.resources.AdGroupAd.ad_group_ad_asset_automation_settings:type_name -> google.ads.googleads.v22.resources.AdGroupAdAssetAutomationSetting + 8, // 7: google.ads.googleads.v22.resources.AdGroupAdPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 9, // 8: google.ads.googleads.v22.resources.AdGroupAdPolicySummary.review_status:type_name -> google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 10, // 9: google.ads.googleads.v22.resources.AdGroupAdPolicySummary.approval_status:type_name -> google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + 11, // 10: google.ads.googleads.v22.resources.AdGroupAdAssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v22.enums.AssetAutomationTypeEnum.AssetAutomationType + 12, // 11: google.ads.googleads.v22.resources.AdGroupAdAssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v22.enums.AssetAutomationStatusEnum.AssetAutomationStatus 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 @@ -539,29 +539,29 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_proto_depIdxs = []int32{ 0, // [0:12] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_ad_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_ad_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_ad_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_ad_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_ad_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_ad_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_proto_init() - file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_proto_init() + file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_ad_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_ad_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_ad_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_ad_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_ad_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_ad_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_ad_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_ad_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_ad_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_ad_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_ad_proto_goTypes = nil + file_google_ads_googleads_v22_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 973e85f8..cad6c781 100644 --- a/resources/ad_group_ad_asset_combination_view.pb.go +++ b/resources/ad_group_ad_asset_combination_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_ad_asset_combination_view.proto +// source: google/ads/googleads/v22/resources/ad_group_ad_asset_combination_view.proto package resources @@ -62,7 +62,7 @@ type AdGroupAdAssetCombinationView struct { func (x *AdGroupAdAssetCombinationView) Reset() { *x = AdGroupAdAssetCombinationView{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *AdGroupAdAssetCombinationView) String() string { func (*AdGroupAdAssetCombinationView) ProtoMessage() {} func (x *AdGroupAdAssetCombinationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *AdGroupAdAssetCombinationView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetCombinationView.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetCombinationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAdAssetCombinationView) GetResourceName() string { @@ -111,18 +111,18 @@ func (x *AdGroupAdAssetCombinationView) GetEnabled() bool { return false } -var File_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -139,7 +139,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -159,44 +159,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_goTypes = []any{ - (*AdGroupAdAssetCombinationView)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAdAssetCombinationView - (*common.AssetUsage)(nil), // 1: google.ads.googleads.v21.common.AssetUsage +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_goTypes = []any{ + (*AdGroupAdAssetCombinationView)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAdAssetCombinationView + (*common.AssetUsage)(nil), // 1: google.ads.googleads.v22.common.AssetUsage } -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupAdAssetCombinationView.served_assets:type_name -> google.ads.googleads.v21.common.AssetUsage +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupAdAssetCombinationView.served_assets:type_name -> google.ads.googleads.v22.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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_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_v21_resources_ad_group_ad_asset_combination_view_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_ad_asset_combination_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_ad_asset_combination_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 8e8a48df..dd09c84e 100644 --- a/resources/ad_group_ad_asset_view.pb.go +++ b/resources/ad_group_ad_asset_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_ad_asset_view.proto +// source: google/ads/googleads/v22/resources/ad_group_ad_asset_view.proto package resources @@ -56,7 +56,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.v21.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.v22.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 @@ -65,18 +65,18 @@ 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.v21.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.v22.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.v21.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.v22.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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,12,opt,name=source,proto3,enum=google.ads.googleads.v22.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAdAssetView) Reset() { *x = AdGroupAdAssetView{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *AdGroupAdAssetView) String() string { func (*AdGroupAdAssetView) ProtoMessage() {} func (x *AdGroupAdAssetView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101,7 +101,7 @@ func (x *AdGroupAdAssetView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetView.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAdAssetView) GetResourceName() string { @@ -173,17 +173,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAdAssetPolicySummary) Reset() { *x = AdGroupAdAssetPolicySummary{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -195,7 +195,7 @@ func (x *AdGroupAdAssetPolicySummary) String() string { func (*AdGroupAdAssetPolicySummary) ProtoMessage() {} func (x *AdGroupAdAssetPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -208,7 +208,7 @@ func (x *AdGroupAdAssetPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdAssetPolicySummary.ProtoReflect.Descriptor instead. func (*AdGroupAdAssetPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAdAssetPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -232,38 +232,38 @@ func (x *AdGroupAdAssetPolicySummary) GetApprovalStatus() enums.PolicyApprovalSt return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0) } -var File_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -289,7 +289,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, + 0x32, 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, @@ -297,7 +297,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -305,21 +305,21 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x50, 0x65, 0x72, + 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -339,13 +339,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -353,64 +353,64 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x47, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_goTypes = []any{ - (*AdGroupAdAssetView)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAdAssetView - (*AdGroupAdAssetPolicySummary)(nil), // 1: google.ads.googleads.v21.resources.AdGroupAdAssetPolicySummary - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 3: google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 4: google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (*common.PolicyTopicEntry)(nil), // 6: google.ads.googleads.v21.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 7: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 8: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_goTypes = []any{ + (*AdGroupAdAssetView)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAdAssetView + (*AdGroupAdAssetPolicySummary)(nil), // 1: google.ads.googleads.v22.resources.AdGroupAdAssetPolicySummary + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 3: google.ads.googleads.v22.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + (enums.ServedAssetFieldTypeEnum_ServedAssetFieldType)(0), // 4: google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (*common.PolicyTopicEntry)(nil), // 6: google.ads.googleads.v22.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 7: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 8: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus } -var file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.AdGroupAdAssetView.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 1, // 1: google.ads.googleads.v21.resources.AdGroupAdAssetView.policy_summary:type_name -> google.ads.googleads.v21.resources.AdGroupAdAssetPolicySummary - 3, // 2: google.ads.googleads.v21.resources.AdGroupAdAssetView.performance_label:type_name -> google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - 4, // 3: google.ads.googleads.v21.resources.AdGroupAdAssetView.pinned_field:type_name -> google.ads.googleads.v21.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType - 5, // 4: google.ads.googleads.v21.resources.AdGroupAdAssetView.source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 6, // 5: google.ads.googleads.v21.resources.AdGroupAdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 7, // 6: google.ads.googleads.v21.resources.AdGroupAdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 8, // 7: google.ads.googleads.v21.resources.AdGroupAdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +var file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.AdGroupAdAssetView.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 1, // 1: google.ads.googleads.v22.resources.AdGroupAdAssetView.policy_summary:type_name -> google.ads.googleads.v22.resources.AdGroupAdAssetPolicySummary + 3, // 2: google.ads.googleads.v22.resources.AdGroupAdAssetView.performance_label:type_name -> google.ads.googleads.v22.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel + 4, // 3: google.ads.googleads.v22.resources.AdGroupAdAssetView.pinned_field:type_name -> google.ads.googleads.v22.enums.ServedAssetFieldTypeEnum.ServedAssetFieldType + 5, // 4: google.ads.googleads.v22.resources.AdGroupAdAssetView.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 6, // 5: google.ads.googleads.v22.resources.AdGroupAdAssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 7, // 6: google.ads.googleads.v22.resources.AdGroupAdAssetPolicySummary.review_status:type_name -> google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 8, // 7: google.ads.googleads.v22.resources.AdGroupAdAssetPolicySummary.approval_status:type_name -> google.ads.googleads.v22.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 @@ -418,27 +418,27 @@ var file_google_ads_googleads_v21_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_v21_resources_ad_group_ad_asset_view_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_ad_asset_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_ad_asset_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 568a90c0..7700cc63 100644 --- a/resources/ad_group_ad_label.pb.go +++ b/resources/ad_group_ad_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_ad_label.proto +// source: google/ads/googleads/v22/resources/ad_group_ad_label.proto package resources @@ -53,7 +53,7 @@ type AdGroupAdLabel struct { func (x *AdGroupAdLabel) Reset() { *x = AdGroupAdLabel{} - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdGroupAdLabel) String() string { func (*AdGroupAdLabel) ProtoMessage() {} func (x *AdGroupAdLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AdGroupAdLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdLabel.ProtoReflect.Descriptor instead. func (*AdGroupAdLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAdLabel) GetResourceName() string { @@ -102,15 +102,15 @@ func (x *AdGroupAdLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v21_resources_ad_group_ad_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_ad_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -141,41 +141,41 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_goTypes = []any{ - (*AdGroupAdLabel)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAdLabel +var file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_goTypes = []any{ + (*AdGroupAdLabel)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAdLabel } -var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -183,27 +183,27 @@ var file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_ad_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_ad_label_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_ad_label_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_ad_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_ad_label_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_ad_label_proto_goTypes = nil + file_google_ads_googleads_v22_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 16bac8d7..65b4029a 100644 --- a/resources/ad_group_asset.pb.go +++ b/resources/ad_group_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_asset.proto +// source: google/ads/googleads/v22/resources/ad_group_asset.proto package resources @@ -51,31 +51,31 @@ 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.v21.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.v22.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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,6,opt,name=source,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAsset) Reset() { *x = AdGroupAsset{} - mi := &file_google_ads_googleads_v21_resources_ad_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87,7 +87,7 @@ func (x *AdGroupAsset) String() string { func (*AdGroupAsset) ProtoMessage() {} func (x *AdGroupAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100,7 +100,7 @@ func (x *AdGroupAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAsset.ProtoReflect.Descriptor instead. func (*AdGroupAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAsset) GetResourceName() string { @@ -166,36 +166,36 @@ func (x *AdGroupAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatusR return nil } -var File_google_ads_googleads_v21_resources_ad_group_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x32, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 0x32, 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, @@ -218,25 +218,25 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -244,7 +244,7 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -252,7 +252,7 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -268,53 +268,53 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_asset_proto_goTypes = []any{ - (*AdGroupAsset)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_ad_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_asset_proto_goTypes = []any{ + (*AdGroupAsset)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v21_resources_ad_group_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupAsset.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v21.resources.AdGroupAsset.source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v21.resources.AdGroupAsset.status:type_name -> google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v21.resources.AdGroupAsset.primary_status:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v21.resources.AdGroupAsset.primary_status_details:type_name -> google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v21.resources.AdGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_ad_group_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupAsset.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v22.resources.AdGroupAsset.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v22.resources.AdGroupAsset.status:type_name -> google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v22.resources.AdGroupAsset.primary_status:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v22.resources.AdGroupAsset.primary_status_details:type_name -> google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v22.resources.AdGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v22.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 @@ -322,26 +322,26 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_asset_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_asset_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_asset_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_asset_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_asset_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_asset_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_asset_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_asset_proto_goTypes = nil + file_google_ads_googleads_v22_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 b8121cf2..320f2353 100644 --- a/resources/ad_group_asset_set.pb.go +++ b/resources/ad_group_asset_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_asset_set.proto +// source: google/ads/googleads/v22/resources/ad_group_asset_set.proto package resources @@ -51,14 +51,14 @@ 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.v21.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupAssetSet) Reset() { *x = AdGroupAssetSet{} - mi := &file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *AdGroupAssetSet) String() string { func (*AdGroupAssetSet) ProtoMessage() {} func (x *AdGroupAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *AdGroupAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetSet.ProtoReflect.Descriptor instead. func (*AdGroupAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAssetSet) GetResourceName() string { @@ -114,17 +114,17 @@ func (x *AdGroupAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLinkS return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v21_resources_ad_group_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -148,7 +148,7 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,43 +161,43 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc = s 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_goTypes = []any{ - (*AdGroupAssetSet)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_goTypes = []any{ + (*AdGroupAssetSet)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v22.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupAssetSet.status:type_name -> google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupAssetSet.status:type_name -> google.ads.googleads.v22.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 @@ -205,26 +205,26 @@ var file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_asset_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_asset_set_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_asset_set_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_asset_set_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_asset_set_proto_goTypes = nil + file_google_ads_googleads_v22_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 a2db323f..233860fa 100644 --- a/resources/ad_group_audience_view.pb.go +++ b/resources/ad_group_audience_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_audience_view.proto +// source: google/ads/googleads/v22/resources/ad_group_audience_view.proto package resources @@ -53,7 +53,7 @@ type AdGroupAudienceView struct { func (x *AdGroupAudienceView) Reset() { *x = AdGroupAudienceView{} - mi := &file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdGroupAudienceView) String() string { func (*AdGroupAudienceView) ProtoMessage() {} func (x *AdGroupAudienceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AdGroupAudienceView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAudienceView.ProtoReflect.Descriptor instead. func (*AdGroupAudienceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescGZIP(), []int{0} } func (x *AdGroupAudienceView) GetResourceName() string { @@ -88,15 +88,15 @@ func (x *AdGroupAudienceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_ad_group_audience_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_audience_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -118,41 +118,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x41, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_goTypes = []any{ - (*AdGroupAudienceView)(nil), // 0: google.ads.googleads.v21.resources.AdGroupAudienceView +var file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_goTypes = []any{ + (*AdGroupAudienceView)(nil), // 0: google.ads.googleads.v22.resources.AdGroupAudienceView } -var file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -160,26 +160,26 @@ var file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_audience_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_audience_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_audience_view_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_audience_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_audience_view_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_audience_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 190afa47..46891029 100644 --- a/resources/ad_group_bid_modifier.pb.go +++ b/resources/ad_group_bid_modifier.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_bid_modifier.proto +// source: google/ads/googleads/v22/resources/ad_group_bid_modifier.proto package resources @@ -63,7 +63,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.v21.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.v22.enums.BidModifierSourceEnum_BidModifierSource" json:"bid_modifier_source,omitempty"` // The criterion of this ad group bid modifier. // // Required in create operations starting in V5. @@ -83,7 +83,7 @@ type AdGroupBidModifier struct { func (x *AdGroupBidModifier) Reset() { *x = AdGroupBidModifier{} - mi := &file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *AdGroupBidModifier) String() string { func (*AdGroupBidModifier) ProtoMessage() {} func (x *AdGroupBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *AdGroupBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupBidModifier.ProtoReflect.Descriptor instead. func (*AdGroupBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescGZIP(), []int{0} } func (x *AdGroupBidModifier) GetResourceName() string { @@ -262,20 +262,20 @@ func (*AdGroupBidModifier_Device) isAdGroupBidModifier_Criterion() {} func (*AdGroupBidModifier_HotelCheckInDateRange) isAdGroupBidModifier_Criterion() {} -var File_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -307,7 +307,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -331,26 +331,26 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -369,55 +369,55 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x41, 0x64, 0x47, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_goTypes = []any{ - (*AdGroupBidModifier)(nil), // 0: google.ads.googleads.v21.resources.AdGroupBidModifier - (enums.BidModifierSourceEnum_BidModifierSource)(0), // 1: google.ads.googleads.v21.enums.BidModifierSourceEnum.BidModifierSource - (*common.HotelDateSelectionTypeInfo)(nil), // 2: google.ads.googleads.v21.common.HotelDateSelectionTypeInfo - (*common.HotelAdvanceBookingWindowInfo)(nil), // 3: google.ads.googleads.v21.common.HotelAdvanceBookingWindowInfo - (*common.HotelLengthOfStayInfo)(nil), // 4: google.ads.googleads.v21.common.HotelLengthOfStayInfo - (*common.HotelCheckInDayInfo)(nil), // 5: google.ads.googleads.v21.common.HotelCheckInDayInfo - (*common.DeviceInfo)(nil), // 6: google.ads.googleads.v21.common.DeviceInfo - (*common.HotelCheckInDateRangeInfo)(nil), // 7: google.ads.googleads.v21.common.HotelCheckInDateRangeInfo +var file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_goTypes = []any{ + (*AdGroupBidModifier)(nil), // 0: google.ads.googleads.v22.resources.AdGroupBidModifier + (enums.BidModifierSourceEnum_BidModifierSource)(0), // 1: google.ads.googleads.v22.enums.BidModifierSourceEnum.BidModifierSource + (*common.HotelDateSelectionTypeInfo)(nil), // 2: google.ads.googleads.v22.common.HotelDateSelectionTypeInfo + (*common.HotelAdvanceBookingWindowInfo)(nil), // 3: google.ads.googleads.v22.common.HotelAdvanceBookingWindowInfo + (*common.HotelLengthOfStayInfo)(nil), // 4: google.ads.googleads.v22.common.HotelLengthOfStayInfo + (*common.HotelCheckInDayInfo)(nil), // 5: google.ads.googleads.v22.common.HotelCheckInDayInfo + (*common.DeviceInfo)(nil), // 6: google.ads.googleads.v22.common.DeviceInfo + (*common.HotelCheckInDateRangeInfo)(nil), // 7: google.ads.googleads.v22.common.HotelCheckInDateRangeInfo } -var file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupBidModifier.bid_modifier_source:type_name -> google.ads.googleads.v21.enums.BidModifierSourceEnum.BidModifierSource - 2, // 1: google.ads.googleads.v21.resources.AdGroupBidModifier.hotel_date_selection_type:type_name -> google.ads.googleads.v21.common.HotelDateSelectionTypeInfo - 3, // 2: google.ads.googleads.v21.resources.AdGroupBidModifier.hotel_advance_booking_window:type_name -> google.ads.googleads.v21.common.HotelAdvanceBookingWindowInfo - 4, // 3: google.ads.googleads.v21.resources.AdGroupBidModifier.hotel_length_of_stay:type_name -> google.ads.googleads.v21.common.HotelLengthOfStayInfo - 5, // 4: google.ads.googleads.v21.resources.AdGroupBidModifier.hotel_check_in_day:type_name -> google.ads.googleads.v21.common.HotelCheckInDayInfo - 6, // 5: google.ads.googleads.v21.resources.AdGroupBidModifier.device:type_name -> google.ads.googleads.v21.common.DeviceInfo - 7, // 6: google.ads.googleads.v21.resources.AdGroupBidModifier.hotel_check_in_date_range:type_name -> google.ads.googleads.v21.common.HotelCheckInDateRangeInfo +var file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupBidModifier.bid_modifier_source:type_name -> google.ads.googleads.v22.enums.BidModifierSourceEnum.BidModifierSource + 2, // 1: google.ads.googleads.v22.resources.AdGroupBidModifier.hotel_date_selection_type:type_name -> google.ads.googleads.v22.common.HotelDateSelectionTypeInfo + 3, // 2: google.ads.googleads.v22.resources.AdGroupBidModifier.hotel_advance_booking_window:type_name -> google.ads.googleads.v22.common.HotelAdvanceBookingWindowInfo + 4, // 3: google.ads.googleads.v22.resources.AdGroupBidModifier.hotel_length_of_stay:type_name -> google.ads.googleads.v22.common.HotelLengthOfStayInfo + 5, // 4: google.ads.googleads.v22.resources.AdGroupBidModifier.hotel_check_in_day:type_name -> google.ads.googleads.v22.common.HotelCheckInDayInfo + 6, // 5: google.ads.googleads.v22.resources.AdGroupBidModifier.device:type_name -> google.ads.googleads.v22.common.DeviceInfo + 7, // 6: google.ads.googleads.v22.resources.AdGroupBidModifier.hotel_check_in_date_range:type_name -> google.ads.googleads.v22.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 @@ -425,12 +425,12 @@ var file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_depIdxs 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_msgTypes[0].OneofWrappers = []any{ (*AdGroupBidModifier_HotelDateSelectionType)(nil), (*AdGroupBidModifier_HotelAdvanceBookingWindow)(nil), (*AdGroupBidModifier_HotelLengthOfStay)(nil), @@ -442,17 +442,17 @@ func file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_goTypes = nil + file_google_ads_googleads_v22_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 2da6e4a3..ae4312b9 100644 --- a/resources/ad_group_criterion.pb.go +++ b/resources/ad_group_criterion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_criterion.proto +// source: google/ads/googleads/v22/resources/ad_group_criterion.proto package resources @@ -66,22 +66,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.v21.enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus" json:"status,omitempty"` + Status enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,25,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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: @@ -115,13 +115,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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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 @@ -137,9 +137,9 @@ type AdGroupCriterion struct { // `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.v21.enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus,oneof" json:"primary_status,omitempty"` + PrimaryStatus *enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus `protobuf:"varint,85,opt,name=primary_status,json=primaryStatus,proto3,enum=google.ads.googleads.v22.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.v21.enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason" json:"primary_status_reasons,omitempty"` + PrimaryStatusReasons []enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason `protobuf:"varint,86,rep,packed,name=primary_status_reasons,json=primaryStatusReasons,proto3,enum=google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason" json:"primary_status_reasons,omitempty"` // The ad group criterion. // // Exactly one must be set. @@ -180,7 +180,7 @@ type AdGroupCriterion struct { func (x *AdGroupCriterion) Reset() { *x = AdGroupCriterion{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +192,7 @@ func (x *AdGroupCriterion) String() string { func (*AdGroupCriterion) ProtoMessage() {} func (x *AdGroupCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,7 +205,7 @@ func (x *AdGroupCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterion.ProtoReflect.Descriptor instead. func (*AdGroupCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterion) GetResourceName() string { @@ -891,19 +891,19 @@ 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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.enums.QualityScoreBucketEnum_QualityScoreBucket" json:"search_predicted_ctr,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdGroupCriterion_QualityInfo) Reset() { *x = AdGroupCriterion_QualityInfo{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -915,7 +915,7 @@ func (x *AdGroupCriterion_QualityInfo) String() string { func (*AdGroupCriterion_QualityInfo) ProtoMessage() {} func (x *AdGroupCriterion_QualityInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -928,7 +928,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_v21_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 0} } func (x *AdGroupCriterion_QualityInfo) GetQualityScore() int32 { @@ -983,7 +983,7 @@ type AdGroupCriterion_PositionEstimates struct { func (x *AdGroupCriterion_PositionEstimates) Reset() { *x = AdGroupCriterion_PositionEstimates{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -995,7 +995,7 @@ func (x *AdGroupCriterion_PositionEstimates) String() string { func (*AdGroupCriterion_PositionEstimates) ProtoMessage() {} func (x *AdGroupCriterion_PositionEstimates) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1008,7 +1008,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_v21_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescGZIP(), []int{0, 1} } func (x *AdGroupCriterion_PositionEstimates) GetFirstPageCpcMicros() int64 { @@ -1046,53 +1046,53 @@ func (x *AdGroupCriterion_PositionEstimates) GetEstimatedAddCostAtFirstPositionC return 0 } -var File_google_ads_googleads_v21_resources_ad_group_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x76, 0x32, 0x32, 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, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x1a, 0x4d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, - 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x71, 0x75, 0x61, 0x6c, 0x69, 0x74, + 0x76, 0x32, 0x32, 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, @@ -1112,14 +1112,14 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1130,7 +1130,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1139,7 +1139,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1148,7 +1148,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1198,7 +1198,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1206,7 +1206,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1214,7 +1214,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1223,7 +1223,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, + 0x76, 0x32, 0x32, 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, @@ -1231,7 +1231,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x76, 0x32, 0x32, 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, @@ -1250,13 +1250,13 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1265,7 +1265,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1275,158 +1275,158 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x50, 0x61, 0x79, 0x6d, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6d, 0x62, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x54, 0x0a, 0x0a, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x54, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x5a, 0x0a, 0x0c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x18, 0x58, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x12, 0x72, 0x0a, 0x14, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x18, 0x5a, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x13, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x12, 0x54, 0x0a, 0x0a, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x59, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, + 0x76, 0x32, 0x32, 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, 0x1a, 0xe2, 0x03, 0x0a, 0x0b, 0x51, 0x75, 0x61, 0x6c, 0x69, 0x74, 0x79, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x2d, 0x0a, 0x0d, 0x71, 0x75, @@ -1436,7 +1436,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1444,7 +1444,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1453,7 +1453,7 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x51, 0x75, 0x61, 0x6c, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -1526,122 +1526,122 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_goTypes = []any{ - (*AdGroupCriterion)(nil), // 0: google.ads.googleads.v21.resources.AdGroupCriterion - (*AdGroupCriterion_QualityInfo)(nil), // 1: google.ads.googleads.v21.resources.AdGroupCriterion.QualityInfo - (*AdGroupCriterion_PositionEstimates)(nil), // 2: google.ads.googleads.v21.resources.AdGroupCriterion.PositionEstimates - (enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 3: google.ads.googleads.v21.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus - (enums.CriterionTypeEnum_CriterionType)(0), // 4: google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - (enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 5: google.ads.googleads.v21.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus - (enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 6: google.ads.googleads.v21.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus - (enums.BiddingSourceEnum_BiddingSource)(0), // 7: google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - (*common.CustomParameter)(nil), // 8: google.ads.googleads.v21.common.CustomParameter - (enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 9: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus - (enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 10: google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason - (*common.KeywordInfo)(nil), // 11: google.ads.googleads.v21.common.KeywordInfo - (*common.PlacementInfo)(nil), // 12: google.ads.googleads.v21.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 13: google.ads.googleads.v21.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 14: google.ads.googleads.v21.common.MobileApplicationInfo - (*common.ListingGroupInfo)(nil), // 15: google.ads.googleads.v21.common.ListingGroupInfo - (*common.AgeRangeInfo)(nil), // 16: google.ads.googleads.v21.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 17: google.ads.googleads.v21.common.GenderInfo - (*common.IncomeRangeInfo)(nil), // 18: google.ads.googleads.v21.common.IncomeRangeInfo - (*common.ParentalStatusInfo)(nil), // 19: google.ads.googleads.v21.common.ParentalStatusInfo - (*common.UserListInfo)(nil), // 20: google.ads.googleads.v21.common.UserListInfo - (*common.YouTubeVideoInfo)(nil), // 21: google.ads.googleads.v21.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 22: google.ads.googleads.v21.common.YouTubeChannelInfo - (*common.TopicInfo)(nil), // 23: google.ads.googleads.v21.common.TopicInfo - (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v21.common.UserInterestInfo - (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v21.common.WebpageInfo - (*common.AppPaymentModelInfo)(nil), // 26: google.ads.googleads.v21.common.AppPaymentModelInfo - (*common.CustomAffinityInfo)(nil), // 27: google.ads.googleads.v21.common.CustomAffinityInfo - (*common.CustomIntentInfo)(nil), // 28: google.ads.googleads.v21.common.CustomIntentInfo - (*common.CustomAudienceInfo)(nil), // 29: google.ads.googleads.v21.common.CustomAudienceInfo - (*common.CombinedAudienceInfo)(nil), // 30: google.ads.googleads.v21.common.CombinedAudienceInfo - (*common.AudienceInfo)(nil), // 31: google.ads.googleads.v21.common.AudienceInfo - (*common.LocationInfo)(nil), // 32: google.ads.googleads.v21.common.LocationInfo - (*common.LanguageInfo)(nil), // 33: google.ads.googleads.v21.common.LanguageInfo - (*common.LifeEventInfo)(nil), // 34: google.ads.googleads.v21.common.LifeEventInfo - (*common.VideoLineupInfo)(nil), // 35: google.ads.googleads.v21.common.VideoLineupInfo - (*common.ExtendedDemographicInfo)(nil), // 36: google.ads.googleads.v21.common.ExtendedDemographicInfo - (*common.BrandListInfo)(nil), // 37: google.ads.googleads.v21.common.BrandListInfo - (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 38: google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket -} -var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.resources.AdGroupCriterion.status:type_name -> google.ads.googleads.v21.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus - 1, // 1: google.ads.googleads.v21.resources.AdGroupCriterion.quality_info:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion.QualityInfo - 4, // 2: google.ads.googleads.v21.resources.AdGroupCriterion.type:type_name -> google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - 5, // 3: google.ads.googleads.v21.resources.AdGroupCriterion.system_serving_status:type_name -> google.ads.googleads.v21.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus - 6, // 4: google.ads.googleads.v21.resources.AdGroupCriterion.approval_status:type_name -> google.ads.googleads.v21.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus - 7, // 5: google.ads.googleads.v21.resources.AdGroupCriterion.effective_cpc_bid_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 7, // 6: google.ads.googleads.v21.resources.AdGroupCriterion.effective_cpm_bid_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 7, // 7: google.ads.googleads.v21.resources.AdGroupCriterion.effective_cpv_bid_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 7, // 8: google.ads.googleads.v21.resources.AdGroupCriterion.effective_percent_cpc_bid_source:type_name -> google.ads.googleads.v21.enums.BiddingSourceEnum.BiddingSource - 2, // 9: google.ads.googleads.v21.resources.AdGroupCriterion.position_estimates:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion.PositionEstimates - 8, // 10: google.ads.googleads.v21.resources.AdGroupCriterion.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter - 9, // 11: google.ads.googleads.v21.resources.AdGroupCriterion.primary_status:type_name -> google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus - 10, // 12: google.ads.googleads.v21.resources.AdGroupCriterion.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason - 11, // 13: google.ads.googleads.v21.resources.AdGroupCriterion.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 12, // 14: google.ads.googleads.v21.resources.AdGroupCriterion.placement:type_name -> google.ads.googleads.v21.common.PlacementInfo - 13, // 15: google.ads.googleads.v21.resources.AdGroupCriterion.mobile_app_category:type_name -> google.ads.googleads.v21.common.MobileAppCategoryInfo - 14, // 16: google.ads.googleads.v21.resources.AdGroupCriterion.mobile_application:type_name -> google.ads.googleads.v21.common.MobileApplicationInfo - 15, // 17: google.ads.googleads.v21.resources.AdGroupCriterion.listing_group:type_name -> google.ads.googleads.v21.common.ListingGroupInfo - 16, // 18: google.ads.googleads.v21.resources.AdGroupCriterion.age_range:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 17, // 19: google.ads.googleads.v21.resources.AdGroupCriterion.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 18, // 20: google.ads.googleads.v21.resources.AdGroupCriterion.income_range:type_name -> google.ads.googleads.v21.common.IncomeRangeInfo - 19, // 21: google.ads.googleads.v21.resources.AdGroupCriterion.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusInfo - 20, // 22: google.ads.googleads.v21.resources.AdGroupCriterion.user_list:type_name -> google.ads.googleads.v21.common.UserListInfo - 21, // 23: google.ads.googleads.v21.resources.AdGroupCriterion.youtube_video:type_name -> google.ads.googleads.v21.common.YouTubeVideoInfo - 22, // 24: google.ads.googleads.v21.resources.AdGroupCriterion.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 23, // 25: google.ads.googleads.v21.resources.AdGroupCriterion.topic:type_name -> google.ads.googleads.v21.common.TopicInfo - 24, // 26: google.ads.googleads.v21.resources.AdGroupCriterion.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 25, // 27: google.ads.googleads.v21.resources.AdGroupCriterion.webpage:type_name -> google.ads.googleads.v21.common.WebpageInfo - 26, // 28: google.ads.googleads.v21.resources.AdGroupCriterion.app_payment_model:type_name -> google.ads.googleads.v21.common.AppPaymentModelInfo - 27, // 29: google.ads.googleads.v21.resources.AdGroupCriterion.custom_affinity:type_name -> google.ads.googleads.v21.common.CustomAffinityInfo - 28, // 30: google.ads.googleads.v21.resources.AdGroupCriterion.custom_intent:type_name -> google.ads.googleads.v21.common.CustomIntentInfo - 29, // 31: google.ads.googleads.v21.resources.AdGroupCriterion.custom_audience:type_name -> google.ads.googleads.v21.common.CustomAudienceInfo - 30, // 32: google.ads.googleads.v21.resources.AdGroupCriterion.combined_audience:type_name -> google.ads.googleads.v21.common.CombinedAudienceInfo - 31, // 33: google.ads.googleads.v21.resources.AdGroupCriterion.audience:type_name -> google.ads.googleads.v21.common.AudienceInfo - 32, // 34: google.ads.googleads.v21.resources.AdGroupCriterion.location:type_name -> google.ads.googleads.v21.common.LocationInfo - 33, // 35: google.ads.googleads.v21.resources.AdGroupCriterion.language:type_name -> google.ads.googleads.v21.common.LanguageInfo - 34, // 36: google.ads.googleads.v21.resources.AdGroupCriterion.life_event:type_name -> google.ads.googleads.v21.common.LifeEventInfo - 35, // 37: google.ads.googleads.v21.resources.AdGroupCriterion.video_lineup:type_name -> google.ads.googleads.v21.common.VideoLineupInfo - 36, // 38: google.ads.googleads.v21.resources.AdGroupCriterion.extended_demographic:type_name -> google.ads.googleads.v21.common.ExtendedDemographicInfo - 37, // 39: google.ads.googleads.v21.resources.AdGroupCriterion.brand_list:type_name -> google.ads.googleads.v21.common.BrandListInfo - 38, // 40: google.ads.googleads.v21.resources.AdGroupCriterion.QualityInfo.creative_quality_score:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - 38, // 41: google.ads.googleads.v21.resources.AdGroupCriterion.QualityInfo.post_click_quality_score:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket - 38, // 42: google.ads.googleads.v21.resources.AdGroupCriterion.QualityInfo.search_predicted_ctr:type_name -> google.ads.googleads.v21.enums.QualityScoreBucketEnum.QualityScoreBucket + return file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_ad_group_criterion_proto_goTypes = []any{ + (*AdGroupCriterion)(nil), // 0: google.ads.googleads.v22.resources.AdGroupCriterion + (*AdGroupCriterion_QualityInfo)(nil), // 1: google.ads.googleads.v22.resources.AdGroupCriterion.QualityInfo + (*AdGroupCriterion_PositionEstimates)(nil), // 2: google.ads.googleads.v22.resources.AdGroupCriterion.PositionEstimates + (enums.AdGroupCriterionStatusEnum_AdGroupCriterionStatus)(0), // 3: google.ads.googleads.v22.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus + (enums.CriterionTypeEnum_CriterionType)(0), // 4: google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + (enums.CriterionSystemServingStatusEnum_CriterionSystemServingStatus)(0), // 5: google.ads.googleads.v22.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus + (enums.AdGroupCriterionApprovalStatusEnum_AdGroupCriterionApprovalStatus)(0), // 6: google.ads.googleads.v22.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus + (enums.BiddingSourceEnum_BiddingSource)(0), // 7: google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + (*common.CustomParameter)(nil), // 8: google.ads.googleads.v22.common.CustomParameter + (enums.AdGroupCriterionPrimaryStatusEnum_AdGroupCriterionPrimaryStatus)(0), // 9: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus + (enums.AdGroupCriterionPrimaryStatusReasonEnum_AdGroupCriterionPrimaryStatusReason)(0), // 10: google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason + (*common.KeywordInfo)(nil), // 11: google.ads.googleads.v22.common.KeywordInfo + (*common.PlacementInfo)(nil), // 12: google.ads.googleads.v22.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 13: google.ads.googleads.v22.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 14: google.ads.googleads.v22.common.MobileApplicationInfo + (*common.ListingGroupInfo)(nil), // 15: google.ads.googleads.v22.common.ListingGroupInfo + (*common.AgeRangeInfo)(nil), // 16: google.ads.googleads.v22.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 17: google.ads.googleads.v22.common.GenderInfo + (*common.IncomeRangeInfo)(nil), // 18: google.ads.googleads.v22.common.IncomeRangeInfo + (*common.ParentalStatusInfo)(nil), // 19: google.ads.googleads.v22.common.ParentalStatusInfo + (*common.UserListInfo)(nil), // 20: google.ads.googleads.v22.common.UserListInfo + (*common.YouTubeVideoInfo)(nil), // 21: google.ads.googleads.v22.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 22: google.ads.googleads.v22.common.YouTubeChannelInfo + (*common.TopicInfo)(nil), // 23: google.ads.googleads.v22.common.TopicInfo + (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v22.common.UserInterestInfo + (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v22.common.WebpageInfo + (*common.AppPaymentModelInfo)(nil), // 26: google.ads.googleads.v22.common.AppPaymentModelInfo + (*common.CustomAffinityInfo)(nil), // 27: google.ads.googleads.v22.common.CustomAffinityInfo + (*common.CustomIntentInfo)(nil), // 28: google.ads.googleads.v22.common.CustomIntentInfo + (*common.CustomAudienceInfo)(nil), // 29: google.ads.googleads.v22.common.CustomAudienceInfo + (*common.CombinedAudienceInfo)(nil), // 30: google.ads.googleads.v22.common.CombinedAudienceInfo + (*common.AudienceInfo)(nil), // 31: google.ads.googleads.v22.common.AudienceInfo + (*common.LocationInfo)(nil), // 32: google.ads.googleads.v22.common.LocationInfo + (*common.LanguageInfo)(nil), // 33: google.ads.googleads.v22.common.LanguageInfo + (*common.LifeEventInfo)(nil), // 34: google.ads.googleads.v22.common.LifeEventInfo + (*common.VideoLineupInfo)(nil), // 35: google.ads.googleads.v22.common.VideoLineupInfo + (*common.ExtendedDemographicInfo)(nil), // 36: google.ads.googleads.v22.common.ExtendedDemographicInfo + (*common.BrandListInfo)(nil), // 37: google.ads.googleads.v22.common.BrandListInfo + (enums.QualityScoreBucketEnum_QualityScoreBucket)(0), // 38: google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket +} +var file_google_ads_googleads_v22_resources_ad_group_criterion_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.resources.AdGroupCriterion.status:type_name -> google.ads.googleads.v22.enums.AdGroupCriterionStatusEnum.AdGroupCriterionStatus + 1, // 1: google.ads.googleads.v22.resources.AdGroupCriterion.quality_info:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion.QualityInfo + 4, // 2: google.ads.googleads.v22.resources.AdGroupCriterion.type:type_name -> google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + 5, // 3: google.ads.googleads.v22.resources.AdGroupCriterion.system_serving_status:type_name -> google.ads.googleads.v22.enums.CriterionSystemServingStatusEnum.CriterionSystemServingStatus + 6, // 4: google.ads.googleads.v22.resources.AdGroupCriterion.approval_status:type_name -> google.ads.googleads.v22.enums.AdGroupCriterionApprovalStatusEnum.AdGroupCriterionApprovalStatus + 7, // 5: google.ads.googleads.v22.resources.AdGroupCriterion.effective_cpc_bid_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 7, // 6: google.ads.googleads.v22.resources.AdGroupCriterion.effective_cpm_bid_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 7, // 7: google.ads.googleads.v22.resources.AdGroupCriterion.effective_cpv_bid_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 7, // 8: google.ads.googleads.v22.resources.AdGroupCriterion.effective_percent_cpc_bid_source:type_name -> google.ads.googleads.v22.enums.BiddingSourceEnum.BiddingSource + 2, // 9: google.ads.googleads.v22.resources.AdGroupCriterion.position_estimates:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion.PositionEstimates + 8, // 10: google.ads.googleads.v22.resources.AdGroupCriterion.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter + 9, // 11: google.ads.googleads.v22.resources.AdGroupCriterion.primary_status:type_name -> google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusEnum.AdGroupCriterionPrimaryStatus + 10, // 12: google.ads.googleads.v22.resources.AdGroupCriterion.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.AdGroupCriterionPrimaryStatusReasonEnum.AdGroupCriterionPrimaryStatusReason + 11, // 13: google.ads.googleads.v22.resources.AdGroupCriterion.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 12, // 14: google.ads.googleads.v22.resources.AdGroupCriterion.placement:type_name -> google.ads.googleads.v22.common.PlacementInfo + 13, // 15: google.ads.googleads.v22.resources.AdGroupCriterion.mobile_app_category:type_name -> google.ads.googleads.v22.common.MobileAppCategoryInfo + 14, // 16: google.ads.googleads.v22.resources.AdGroupCriterion.mobile_application:type_name -> google.ads.googleads.v22.common.MobileApplicationInfo + 15, // 17: google.ads.googleads.v22.resources.AdGroupCriterion.listing_group:type_name -> google.ads.googleads.v22.common.ListingGroupInfo + 16, // 18: google.ads.googleads.v22.resources.AdGroupCriterion.age_range:type_name -> google.ads.googleads.v22.common.AgeRangeInfo + 17, // 19: google.ads.googleads.v22.resources.AdGroupCriterion.gender:type_name -> google.ads.googleads.v22.common.GenderInfo + 18, // 20: google.ads.googleads.v22.resources.AdGroupCriterion.income_range:type_name -> google.ads.googleads.v22.common.IncomeRangeInfo + 19, // 21: google.ads.googleads.v22.resources.AdGroupCriterion.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusInfo + 20, // 22: google.ads.googleads.v22.resources.AdGroupCriterion.user_list:type_name -> google.ads.googleads.v22.common.UserListInfo + 21, // 23: google.ads.googleads.v22.resources.AdGroupCriterion.youtube_video:type_name -> google.ads.googleads.v22.common.YouTubeVideoInfo + 22, // 24: google.ads.googleads.v22.resources.AdGroupCriterion.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 23, // 25: google.ads.googleads.v22.resources.AdGroupCriterion.topic:type_name -> google.ads.googleads.v22.common.TopicInfo + 24, // 26: google.ads.googleads.v22.resources.AdGroupCriterion.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestInfo + 25, // 27: google.ads.googleads.v22.resources.AdGroupCriterion.webpage:type_name -> google.ads.googleads.v22.common.WebpageInfo + 26, // 28: google.ads.googleads.v22.resources.AdGroupCriterion.app_payment_model:type_name -> google.ads.googleads.v22.common.AppPaymentModelInfo + 27, // 29: google.ads.googleads.v22.resources.AdGroupCriterion.custom_affinity:type_name -> google.ads.googleads.v22.common.CustomAffinityInfo + 28, // 30: google.ads.googleads.v22.resources.AdGroupCriterion.custom_intent:type_name -> google.ads.googleads.v22.common.CustomIntentInfo + 29, // 31: google.ads.googleads.v22.resources.AdGroupCriterion.custom_audience:type_name -> google.ads.googleads.v22.common.CustomAudienceInfo + 30, // 32: google.ads.googleads.v22.resources.AdGroupCriterion.combined_audience:type_name -> google.ads.googleads.v22.common.CombinedAudienceInfo + 31, // 33: google.ads.googleads.v22.resources.AdGroupCriterion.audience:type_name -> google.ads.googleads.v22.common.AudienceInfo + 32, // 34: google.ads.googleads.v22.resources.AdGroupCriterion.location:type_name -> google.ads.googleads.v22.common.LocationInfo + 33, // 35: google.ads.googleads.v22.resources.AdGroupCriterion.language:type_name -> google.ads.googleads.v22.common.LanguageInfo + 34, // 36: google.ads.googleads.v22.resources.AdGroupCriterion.life_event:type_name -> google.ads.googleads.v22.common.LifeEventInfo + 35, // 37: google.ads.googleads.v22.resources.AdGroupCriterion.video_lineup:type_name -> google.ads.googleads.v22.common.VideoLineupInfo + 36, // 38: google.ads.googleads.v22.resources.AdGroupCriterion.extended_demographic:type_name -> google.ads.googleads.v22.common.ExtendedDemographicInfo + 37, // 39: google.ads.googleads.v22.resources.AdGroupCriterion.brand_list:type_name -> google.ads.googleads.v22.common.BrandListInfo + 38, // 40: google.ads.googleads.v22.resources.AdGroupCriterion.QualityInfo.creative_quality_score:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + 38, // 41: google.ads.googleads.v22.resources.AdGroupCriterion.QualityInfo.post_click_quality_score:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket + 38, // 42: google.ads.googleads.v22.resources.AdGroupCriterion.QualityInfo.search_predicted_ctr:type_name -> google.ads.googleads.v22.enums.QualityScoreBucketEnum.QualityScoreBucket 43, // [43:43] is the sub-list for method output_type 43, // [43:43] is the sub-list for method input_type 43, // [43:43] is the sub-list for extension type_name @@ -1649,12 +1649,12 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_proto_depIdxs = [ 0, // [0:43] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_criterion_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_criterion_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_criterion_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_criterion_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_criterion_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_criterion_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[0].OneofWrappers = []any{ (*AdGroupCriterion_Keyword)(nil), (*AdGroupCriterion_Placement)(nil), (*AdGroupCriterion_MobileAppCategory)(nil), @@ -1683,23 +1683,23 @@ func file_google_ads_googleads_v21_resources_ad_group_criterion_proto_init() { (*AdGroupCriterion_ExtendedDemographic)(nil), (*AdGroupCriterion_BrandList)(nil), } - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_criterion_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_criterion_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_goTypes = nil + file_google_ads_googleads_v22_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 13dfd088..e70c32ed 100644 --- a/resources/ad_group_criterion_customizer.pb.go +++ b/resources/ad_group_criterion_customizer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_criterion_customizer.proto +// source: google/ads/googleads/v22/resources/ad_group_criterion_customizer.proto package resources @@ -54,7 +54,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.v21.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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 AdGroupCriterionCustomizer struct { func (x *AdGroupCriterionCustomizer) Reset() { *x = AdGroupCriterionCustomizer{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *AdGroupCriterionCustomizer) String() string { func (*AdGroupCriterionCustomizer) ProtoMessage() {} func (x *AdGroupCriterionCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *AdGroupCriterionCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionCustomizer.ProtoReflect.Descriptor instead. func (*AdGroupCriterionCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionCustomizer) GetResourceName() string { @@ -127,21 +127,21 @@ func (x *AdGroupCriterionCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x36, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -171,14 +171,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -194,46 +194,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_goTypes = []any{ - (*AdGroupCriterionCustomizer)(nil), // 0: google.ads.googleads.v21.resources.AdGroupCriterionCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_goTypes = []any{ + (*AdGroupCriterionCustomizer)(nil), // 0: google.ads.googleads.v22.resources.AdGroupCriterionCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v22.common.CustomizerValue } -var file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupCriterionCustomizer.status:type_name -> google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v21.resources.AdGroupCriterionCustomizer.value:type_name -> google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupCriterionCustomizer.status:type_name -> google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v22.resources.AdGroupCriterionCustomizer.value:type_name -> google.ads.googleads.v22.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 @@ -241,27 +241,27 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_criterion_customizer_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_criterion_customizer_proto_goTypes = nil + file_google_ads_googleads_v22_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 4a6b82e1..27a8cc98 100644 --- a/resources/ad_group_criterion_label.pb.go +++ b/resources/ad_group_criterion_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_criterion_label.proto +// source: google/ads/googleads/v22/resources/ad_group_criterion_label.proto package resources @@ -53,7 +53,7 @@ type AdGroupCriterionLabel struct { func (x *AdGroupCriterionLabel) Reset() { *x = AdGroupCriterionLabel{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdGroupCriterionLabel) String() string { func (*AdGroupCriterionLabel) ProtoMessage() {} func (x *AdGroupCriterionLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AdGroupCriterionLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionLabel.ProtoReflect.Descriptor instead. func (*AdGroupCriterionLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionLabel) GetResourceName() string { @@ -102,15 +102,15 @@ func (x *AdGroupCriterionLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v21_resources_ad_group_criterion_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_criterion_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_goTypes = []any{ - (*AdGroupCriterionLabel)(nil), // 0: google.ads.googleads.v21.resources.AdGroupCriterionLabel +var file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_goTypes = []any{ + (*AdGroupCriterionLabel)(nil), // 0: google.ads.googleads.v22.resources.AdGroupCriterionLabel } -var file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,27 +188,27 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_depId 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_criterion_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_criterion_label_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_criterion_label_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_criterion_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_criterion_label_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_criterion_label_proto_goTypes = nil + file_google_ads_googleads_v22_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 fd039931..cb6afe12 100644 --- a/resources/ad_group_criterion_simulation.pb.go +++ b/resources/ad_group_criterion_simulation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_criterion_simulation.proto +// source: google/ads/googleads/v22/resources/ad_group_criterion_simulation.proto package resources @@ -60,9 +60,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.v21.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -82,7 +82,7 @@ type AdGroupCriterionSimulation struct { func (x *AdGroupCriterionSimulation) Reset() { *x = AdGroupCriterionSimulation{} - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94,7 +94,7 @@ func (x *AdGroupCriterionSimulation) String() string { func (*AdGroupCriterionSimulation) ProtoMessage() {} func (x *AdGroupCriterionSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107,7 +107,7 @@ func (x *AdGroupCriterionSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionSimulation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCriterionSimulation) GetResourceName() string { @@ -202,25 +202,25 @@ func (*AdGroupCriterionSimulation_CpcBidPointList) isAdGroupCriterionSimulation_ func (*AdGroupCriterionSimulation_PercentCpcBidPointList) isAdGroupCriterionSimulation_PointList() {} -var File_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x30, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x69, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -242,14 +242,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, 0x6d, 0x75, 0x6c, 0x61, 0x74, + 0x32, 0x32, 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, @@ -263,14 +263,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x70, 0x63, 0x42, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -294,49 +294,49 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_goTypes = []any{ - (*AdGroupCriterionSimulation)(nil), // 0: google.ads.googleads.v21.resources.AdGroupCriterionSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v21.common.CpcBidSimulationPointList - (*common.PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v21.common.PercentCpcBidSimulationPointList +var file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_goTypes = []any{ + (*AdGroupCriterionSimulation)(nil), // 0: google.ads.googleads.v22.resources.AdGroupCriterionSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v22.common.CpcBidSimulationPointList + (*common.PercentCpcBidSimulationPointList)(nil), // 4: google.ads.googleads.v22.common.PercentCpcBidSimulationPointList } -var file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupCriterionSimulation.type:type_name -> google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v21.resources.AdGroupCriterionSimulation.modification_method:type_name -> google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v21.resources.AdGroupCriterionSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v21.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v21.resources.AdGroupCriterionSimulation.percent_cpc_bid_point_list:type_name -> google.ads.googleads.v21.common.PercentCpcBidSimulationPointList +var file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupCriterionSimulation.type:type_name -> google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v22.resources.AdGroupCriterionSimulation.modification_method:type_name -> google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v22.resources.AdGroupCriterionSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v22.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v22.resources.AdGroupCriterionSimulation.percent_cpc_bid_point_list:type_name -> google.ads.googleads.v22.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 @@ -344,12 +344,12 @@ var file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_msgTypes[0].OneofWrappers = []any{ (*AdGroupCriterionSimulation_CpcBidPointList)(nil), (*AdGroupCriterionSimulation_PercentCpcBidPointList)(nil), } @@ -357,17 +357,17 @@ func file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_criterion_simulation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_criterion_simulation_proto_goTypes = nil + file_google_ads_googleads_v22_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 b49a42c0..9f4e3675 100644 --- a/resources/ad_group_customizer.pb.go +++ b/resources/ad_group_customizer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_customizer.proto +// source: google/ads/googleads/v22/resources/ad_group_customizer.proto package resources @@ -53,7 +53,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.v21.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -63,7 +63,7 @@ type AdGroupCustomizer struct { func (x *AdGroupCustomizer) Reset() { *x = AdGroupCustomizer{} - mi := &file_google_ads_googleads_v21_resources_ad_group_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *AdGroupCustomizer) String() string { func (*AdGroupCustomizer) ProtoMessage() {} func (x *AdGroupCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_customizer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *AdGroupCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCustomizer.ProtoReflect.Descriptor instead. func (*AdGroupCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescGZIP(), []int{0} } func (x *AdGroupCustomizer) GetResourceName() string { @@ -126,21 +126,21 @@ func (x *AdGroupCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v21_resources_ad_group_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -166,14 +166,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -186,45 +186,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_customizer_proto_goTypes = []any{ - (*AdGroupCustomizer)(nil), // 0: google.ads.googleads.v21.resources.AdGroupCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_ad_group_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_customizer_proto_goTypes = []any{ + (*AdGroupCustomizer)(nil), // 0: google.ads.googleads.v22.resources.AdGroupCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v22.common.CustomizerValue } -var file_google_ads_googleads_v21_resources_ad_group_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupCustomizer.status:type_name -> google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v21.resources.AdGroupCustomizer.value:type_name -> google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_ad_group_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupCustomizer.status:type_name -> google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v22.resources.AdGroupCustomizer.value:type_name -> google.ads.googleads.v22.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 @@ -232,26 +232,26 @@ var file_google_ads_googleads_v21_resources_ad_group_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_customizer_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_customizer_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_customizer_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_customizer_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_customizer_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_customizer_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_customizer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_customizer_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_customizer_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_customizer_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_customizer_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_group_customizer_proto_depIdxs = nil } diff --git a/resources/ad_group_label.pb.go b/resources/ad_group_label.pb.go index e14302e1..d9ddcf84 100644 --- a/resources/ad_group_label.pb.go +++ b/resources/ad_group_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_label.proto +// source: google/ads/googleads/v22/resources/ad_group_label.proto package resources @@ -53,7 +53,7 @@ type AdGroupLabel struct { func (x *AdGroupLabel) Reset() { *x = AdGroupLabel{} - mi := &file_google_ads_googleads_v21_resources_ad_group_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AdGroupLabel) String() string { func (*AdGroupLabel) ProtoMessage() {} func (x *AdGroupLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AdGroupLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupLabel.ProtoReflect.Descriptor instead. func (*AdGroupLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescGZIP(), []int{0} } func (x *AdGroupLabel) GetResourceName() string { @@ -102,15 +102,15 @@ func (x *AdGroupLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v21_resources_ad_group_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -139,41 +139,41 @@ var file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_label_proto_goTypes = []any{ - (*AdGroupLabel)(nil), // 0: google.ads.googleads.v21.resources.AdGroupLabel +var file_google_ads_googleads_v22_resources_ad_group_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_label_proto_goTypes = []any{ + (*AdGroupLabel)(nil), // 0: google.ads.googleads.v22.resources.AdGroupLabel } -var file_google_ads_googleads_v21_resources_ad_group_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -181,27 +181,27 @@ var file_google_ads_googleads_v21_resources_ad_group_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_label_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_label_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_label_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_label_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_label_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_group_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_label_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_label_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_label_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_group_label_proto_depIdxs = nil } diff --git a/resources/ad_group_simulation.pb.go b/resources/ad_group_simulation.pb.go index 0c58aa2d..ba07e0c3 100644 --- a/resources/ad_group_simulation.pb.go +++ b/resources/ad_group_simulation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_group_simulation.proto +// source: google/ads/googleads/v22/resources/ad_group_simulation.proto package resources @@ -59,9 +59,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.v21.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -83,7 +83,7 @@ type AdGroupSimulation struct { func (x *AdGroupSimulation) Reset() { *x = AdGroupSimulation{} - mi := &file_google_ads_googleads_v21_resources_ad_group_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -95,7 +95,7 @@ func (x *AdGroupSimulation) String() string { func (*AdGroupSimulation) ProtoMessage() {} func (x *AdGroupSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_group_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_group_simulation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -108,7 +108,7 @@ func (x *AdGroupSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupSimulation.ProtoReflect.Descriptor instead. func (*AdGroupSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescGZIP(), []int{0} } func (x *AdGroupSimulation) GetResourceName() string { @@ -228,25 +228,25 @@ func (*AdGroupSimulation_TargetCpaPointList) isAdGroupSimulation_PointList() {} func (*AdGroupSimulation_TargetRoasPointList) isAdGroupSimulation_PointList() {} -var File_google_ads_googleads_v21_resources_ad_group_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_group_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, + 0x76, 0x32, 0x32, 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, @@ -263,14 +263,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -284,21 +284,21 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -306,7 +306,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -326,53 +326,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_group_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_group_simulation_proto_goTypes = []any{ - (*AdGroupSimulation)(nil), // 0: google.ads.googleads.v21.resources.AdGroupSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v21.common.CpcBidSimulationPointList - (*common.CpvBidSimulationPointList)(nil), // 4: google.ads.googleads.v21.common.CpvBidSimulationPointList - (*common.TargetCpaSimulationPointList)(nil), // 5: google.ads.googleads.v21.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 6: google.ads.googleads.v21.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v22_resources_ad_group_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_group_simulation_proto_goTypes = []any{ + (*AdGroupSimulation)(nil), // 0: google.ads.googleads.v22.resources.AdGroupSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v22.common.CpcBidSimulationPointList + (*common.CpvBidSimulationPointList)(nil), // 4: google.ads.googleads.v22.common.CpvBidSimulationPointList + (*common.TargetCpaSimulationPointList)(nil), // 5: google.ads.googleads.v22.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 6: google.ads.googleads.v22.common.TargetRoasSimulationPointList } -var file_google_ads_googleads_v21_resources_ad_group_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AdGroupSimulation.type:type_name -> google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v21.resources.AdGroupSimulation.modification_method:type_name -> google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v21.resources.AdGroupSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v21.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v21.resources.AdGroupSimulation.cpv_bid_point_list:type_name -> google.ads.googleads.v21.common.CpvBidSimulationPointList - 5, // 4: google.ads.googleads.v21.resources.AdGroupSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v21.common.TargetCpaSimulationPointList - 6, // 5: google.ads.googleads.v21.resources.AdGroupSimulation.target_roas_point_list:type_name -> google.ads.googleads.v21.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v22_resources_ad_group_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AdGroupSimulation.type:type_name -> google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v22.resources.AdGroupSimulation.modification_method:type_name -> google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v22.resources.AdGroupSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v22.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v22.resources.AdGroupSimulation.cpv_bid_point_list:type_name -> google.ads.googleads.v22.common.CpvBidSimulationPointList + 5, // 4: google.ads.googleads.v22.resources.AdGroupSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v22.common.TargetCpaSimulationPointList + 6, // 5: google.ads.googleads.v22.resources.AdGroupSimulation.target_roas_point_list:type_name -> google.ads.googleads.v22.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 @@ -380,12 +380,12 @@ var file_google_ads_googleads_v21_resources_ad_group_simulation_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_group_simulation_proto_init() } -func file_google_ads_googleads_v21_resources_ad_group_simulation_proto_init() { - if File_google_ads_googleads_v21_resources_ad_group_simulation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_group_simulation_proto_init() } +func file_google_ads_googleads_v22_resources_ad_group_simulation_proto_init() { + if File_google_ads_googleads_v22_resources_ad_group_simulation_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_msgTypes[0].OneofWrappers = []any{ (*AdGroupSimulation_CpcBidPointList)(nil), (*AdGroupSimulation_CpvBidPointList)(nil), (*AdGroupSimulation_TargetCpaPointList)(nil), @@ -395,17 +395,17 @@ func file_google_ads_googleads_v21_resources_ad_group_simulation_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_group_simulation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_group_simulation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_group_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_group_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_group_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_group_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_group_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_group_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_group_simulation_proto = out.File - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_group_simulation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_group_simulation_proto = out.File + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_group_simulation_proto_depIdxs = nil } diff --git a/resources/ad_parameter.pb.go b/resources/ad_parameter.pb.go index 7b5520c0..128d4ecb 100644 --- a/resources/ad_parameter.pb.go +++ b/resources/ad_parameter.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_parameter.proto +// source: google/ads/googleads/v22/resources/ad_parameter.proto package resources @@ -74,7 +74,7 @@ type AdParameter struct { func (x *AdParameter) Reset() { *x = AdParameter{} - mi := &file_google_ads_googleads_v21_resources_ad_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_parameter_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *AdParameter) String() string { func (*AdParameter) ProtoMessage() {} func (x *AdParameter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_parameter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_parameter_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99,7 +99,7 @@ func (x *AdParameter) ProtoReflect() protoreflect.Message { // Deprecated: Use AdParameter.ProtoReflect.Descriptor instead. func (*AdParameter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescGZIP(), []int{0} } func (x *AdParameter) GetResourceName() string { @@ -130,15 +130,15 @@ func (x *AdParameter) GetInsertionText() string { return "" } -var File_google_ads_googleads_v21_resources_ad_parameter_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_parameter_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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, @@ -174,41 +174,41 @@ var file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_parameter_proto_goTypes = []any{ - (*AdParameter)(nil), // 0: google.ads.googleads.v21.resources.AdParameter +var file_google_ads_googleads_v22_resources_ad_parameter_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_parameter_proto_goTypes = []any{ + (*AdParameter)(nil), // 0: google.ads.googleads.v22.resources.AdParameter } -var file_google_ads_googleads_v21_resources_ad_parameter_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -216,27 +216,27 @@ var file_google_ads_googleads_v21_resources_ad_parameter_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_parameter_proto_init() } -func file_google_ads_googleads_v21_resources_ad_parameter_proto_init() { - if File_google_ads_googleads_v21_resources_ad_parameter_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_parameter_proto_init() } +func file_google_ads_googleads_v22_resources_ad_parameter_proto_init() { + if File_google_ads_googleads_v22_resources_ad_parameter_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_parameter_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ad_parameter_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_parameter_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_parameter_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_parameter_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_parameter_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_parameter_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_parameter_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_parameter_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_parameter_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_parameter_proto = out.File - file_google_ads_googleads_v21_resources_ad_parameter_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_parameter_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_parameter_proto = out.File + file_google_ads_googleads_v22_resources_ad_parameter_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_parameter_proto_depIdxs = nil } diff --git a/resources/ad_schedule_view.pb.go b/resources/ad_schedule_view.pb.go index 76aa68cc..8df0029d 100644 --- a/resources/ad_schedule_view.pb.go +++ b/resources/ad_schedule_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ad_schedule_view.proto +// source: google/ads/googleads/v22/resources/ad_schedule_view.proto package resources @@ -51,7 +51,7 @@ type AdScheduleView struct { func (x *AdScheduleView) Reset() { *x = AdScheduleView{} - mi := &file_google_ads_googleads_v21_resources_ad_schedule_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_schedule_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *AdScheduleView) String() string { func (*AdScheduleView) ProtoMessage() {} func (x *AdScheduleView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ad_schedule_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ad_schedule_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *AdScheduleView) ProtoReflect() protoreflect.Message { // Deprecated: Use AdScheduleView.ProtoReflect.Descriptor instead. func (*AdScheduleView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescGZIP(), []int{0} } func (x *AdScheduleView) GetResourceName() string { @@ -86,15 +86,15 @@ func (x *AdScheduleView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_ad_schedule_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ad_schedule_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_goTypes = []any{ - (*AdScheduleView)(nil), // 0: google.ads.googleads.v21.resources.AdScheduleView +var file_google_ads_googleads_v22_resources_ad_schedule_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ad_schedule_view_proto_goTypes = []any{ + (*AdScheduleView)(nil), // 0: google.ads.googleads.v22.resources.AdScheduleView } -var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -156,26 +156,26 @@ var file_google_ads_googleads_v21_resources_ad_schedule_view_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_ad_schedule_view_proto_init() } -func file_google_ads_googleads_v21_resources_ad_schedule_view_proto_init() { - if File_google_ads_googleads_v21_resources_ad_schedule_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_ad_schedule_view_proto_init() } +func file_google_ads_googleads_v22_resources_ad_schedule_view_proto_init() { + if File_google_ads_googleads_v22_resources_ad_schedule_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ad_schedule_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ad_schedule_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ad_schedule_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ad_schedule_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ad_schedule_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ad_schedule_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ad_schedule_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ad_schedule_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ad_schedule_view_proto = out.File - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ad_schedule_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ad_schedule_view_proto = out.File + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ad_schedule_view_proto_depIdxs = nil } diff --git a/resources/age_range_view.pb.go b/resources/age_range_view.pb.go index f13a317c..344c465b 100644 --- a/resources/age_range_view.pb.go +++ b/resources/age_range_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/age_range_view.proto +// source: google/ads/googleads/v22/resources/age_range_view.proto package resources @@ -50,7 +50,7 @@ type AgeRangeView struct { func (x *AgeRangeView) Reset() { *x = AgeRangeView{} - mi := &file_google_ads_googleads_v21_resources_age_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_age_range_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *AgeRangeView) String() string { func (*AgeRangeView) ProtoMessage() {} func (x *AgeRangeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_age_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_age_range_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *AgeRangeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AgeRangeView.ProtoReflect.Descriptor instead. func (*AgeRangeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescGZIP(), []int{0} } func (x *AgeRangeView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *AgeRangeView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_age_range_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_age_range_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_age_range_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -112,41 +112,41 @@ var file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_age_range_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_age_range_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_age_range_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_age_range_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_age_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_age_range_view_proto_goTypes = []any{ - (*AgeRangeView)(nil), // 0: google.ads.googleads.v21.resources.AgeRangeView +var file_google_ads_googleads_v22_resources_age_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_age_range_view_proto_goTypes = []any{ + (*AgeRangeView)(nil), // 0: google.ads.googleads.v22.resources.AgeRangeView } -var file_google_ads_googleads_v21_resources_age_range_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -154,26 +154,26 @@ var file_google_ads_googleads_v21_resources_age_range_view_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_age_range_view_proto_init() } -func file_google_ads_googleads_v21_resources_age_range_view_proto_init() { - if File_google_ads_googleads_v21_resources_age_range_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_age_range_view_proto_init() } +func file_google_ads_googleads_v22_resources_age_range_view_proto_init() { + if File_google_ads_googleads_v22_resources_age_range_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_age_range_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_age_range_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_age_range_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_age_range_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_age_range_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_age_range_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_age_range_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_age_range_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_age_range_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_age_range_view_proto = out.File - file_google_ads_googleads_v21_resources_age_range_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_age_range_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_age_range_view_proto = out.File + file_google_ads_googleads_v22_resources_age_range_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_age_range_view_proto_depIdxs = nil } diff --git a/resources/ai_max_search_term_ad_combination_view.pb.go b/resources/ai_max_search_term_ad_combination_view.pb.go index b399cbb2..a13d63c3 100644 --- a/resources/ai_max_search_term_ad_combination_view.pb.go +++ b/resources/ai_max_search_term_ad_combination_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/ai_max_search_term_ad_combination_view.proto +// source: google/ads/googleads/v22/resources/ai_max_search_term_ad_combination_view.proto package resources @@ -62,7 +62,7 @@ type AiMaxSearchTermAdCombinationView struct { func (x *AiMaxSearchTermAdCombinationView) Reset() { *x = AiMaxSearchTermAdCombinationView{} - mi := &file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *AiMaxSearchTermAdCombinationView) String() string { func (*AiMaxSearchTermAdCombinationView) ProtoMessage() {} func (x *AiMaxSearchTermAdCombinationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *AiMaxSearchTermAdCombinationView) ProtoReflect() protoreflect.Message { // Deprecated: Use AiMaxSearchTermAdCombinationView.ProtoReflect.Descriptor instead. func (*AiMaxSearchTermAdCombinationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescGZIP(), []int{0} } func (x *AiMaxSearchTermAdCombinationView) GetResourceName() string { @@ -125,16 +125,16 @@ func (x *AiMaxSearchTermAdCombinationView) GetHeadline() string { return "" } -var File_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x61, 0x64, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -181,42 +181,42 @@ var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_vi 0x6c, 0x61, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x5f, 0x70, 0x61, 0x67, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x68, 0x65, 0x61, 0x64, 0x6c, 0x69, 0x6e, 0x65, 0x42, 0x97, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x25, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, 0x6d, 0x41, 0x64, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_goTypes = []any{ - (*AiMaxSearchTermAdCombinationView)(nil), // 0: google.ads.googleads.v21.resources.AiMaxSearchTermAdCombinationView +var file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_goTypes = []any{ + (*AiMaxSearchTermAdCombinationView)(nil), // 0: google.ads.googleads.v22.resources.AiMaxSearchTermAdCombinationView } -var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_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 @@ -225,28 +225,28 @@ var file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_vi } func init() { - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_init() + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_init() } -func file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_init() { - if File_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto != nil { +func file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_init() { + if File_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto != nil { return } - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto = out.File - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_ai_max_search_term_ad_combination_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto = out.File + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_ai_max_search_term_ad_combination_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 91fa7698..69c74312 100644 --- a/resources/android_privacy_shared_key_google_ad_group.pb.go +++ b/resources/android_privacy_shared_key_google_ad_group.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/android_privacy_shared_key_google_ad_group.proto +// source: google/ads/googleads/v22/resources/android_privacy_shared_key_google_ad_group.proto package resources @@ -48,12 +48,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.v21.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.v22.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.v21.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.v22.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, @@ -67,7 +67,7 @@ type AndroidPrivacySharedKeyGoogleAdGroup struct { func (x *AndroidPrivacySharedKeyGoogleAdGroup) Reset() { *x = AndroidPrivacySharedKeyGoogleAdGroup{} - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *AndroidPrivacySharedKeyGoogleAdGroup) String() string { func (*AndroidPrivacySharedKeyGoogleAdGroup) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *AndroidPrivacySharedKeyGoogleAdGroup) ProtoReflect() protoreflect.Messa // Deprecated: Use AndroidPrivacySharedKeyGoogleAdGroup.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleAdGroup) GetResourceName() string { @@ -144,23 +144,23 @@ func (x *AndroidPrivacySharedKeyGoogleAdGroup) GetSharedAdGroupKey() string { return "" } -var File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -182,7 +182,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -198,7 +198,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -228,46 +228,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDescData } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = []any{ - (*AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleAdGroup - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = []any{ + (*AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleAdGroup + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v22.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_interaction_type:type_name -> google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - 2, // 1: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_network_type:type_name -> google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_interaction_type:type_name -> google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + 2, // 1: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleAdGroup.android_privacy_network_type:type_name -> google.ads.googleads.v22.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 @@ -276,27 +276,27 @@ var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad } func init() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_init() + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_init() } -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_init() { - if File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto != nil { +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_init() { + if File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto = out.File - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = nil - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ad_group_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto = out.File + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_ad_group_proto_goTypes = nil + file_google_ads_googleads_v22_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 65d3ee9f..6e84e92e 100644 --- a/resources/android_privacy_shared_key_google_campaign.pb.go +++ b/resources/android_privacy_shared_key_google_campaign.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/android_privacy_shared_key_google_campaign.proto +// source: google/ads/googleads/v22/resources/android_privacy_shared_key_google_campaign.proto package resources @@ -48,7 +48,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.v21.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.v22.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"` @@ -63,7 +63,7 @@ type AndroidPrivacySharedKeyGoogleCampaign struct { func (x *AndroidPrivacySharedKeyGoogleCampaign) Reset() { *x = AndroidPrivacySharedKeyGoogleCampaign{} - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) String() string { func (*AndroidPrivacySharedKeyGoogleCampaign) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleCampaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) ProtoReflect() protoreflect.Mess // Deprecated: Use AndroidPrivacySharedKeyGoogleCampaign.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleCampaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleCampaign) GetResourceName() string { @@ -126,19 +126,19 @@ func (x *AndroidPrivacySharedKeyGoogleCampaign) GetSharedCampaignKey() string { return "" } -var File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x6e, 0x64, 0x72, 0x6f, 0x69, + 0x76, 0x32, 0x32, 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, @@ -160,7 +160,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -191,44 +191,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDescData + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDescData } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_goTypes = []any{ - (*AndroidPrivacySharedKeyGoogleCampaign)(nil), // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleCampaign - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_goTypes = []any{ + (*AndroidPrivacySharedKeyGoogleCampaign)(nil), // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleCampaign + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleCampaign.android_privacy_interaction_type:type_name -> google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleCampaign.android_privacy_interaction_type:type_name -> google.ads.googleads.v22.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 @@ -237,27 +237,27 @@ var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ca } func init() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_init() + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_init() } -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_init() { - if File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto != nil { +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_init() { + if File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto = out.File - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_goTypes = nil - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_campaign_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto = out.File + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_campaign_proto_goTypes = nil + file_google_ads_googleads_v22_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 87ff4b3d..5b0e1d2b 100644 --- a/resources/android_privacy_shared_key_google_network_type.pb.go +++ b/resources/android_privacy_shared_key_google_network_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/android_privacy_shared_key_google_network_type.proto +// source: google/ads/googleads/v22/resources/android_privacy_shared_key_google_network_type.proto package resources @@ -48,12 +48,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.v21.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.v22.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.v21.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.v22.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 @@ -65,7 +65,7 @@ type AndroidPrivacySharedKeyGoogleNetworkType struct { func (x *AndroidPrivacySharedKeyGoogleNetworkType) Reset() { *x = AndroidPrivacySharedKeyGoogleNetworkType{} - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) String() string { func (*AndroidPrivacySharedKeyGoogleNetworkType) ProtoMessage() {} func (x *AndroidPrivacySharedKeyGoogleNetworkType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) ProtoReflect() protoreflect.M // Deprecated: Use AndroidPrivacySharedKeyGoogleNetworkType.ProtoReflect.Descriptor instead. func (*AndroidPrivacySharedKeyGoogleNetworkType) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP(), []int{0} } func (x *AndroidPrivacySharedKeyGoogleNetworkType) GetResourceName() string { @@ -135,23 +135,23 @@ func (x *AndroidPrivacySharedKeyGoogleNetworkType) GetSharedNetworkTypeKey() str return "" } -var File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x45, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x6e, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -190,7 +190,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x6e, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -218,46 +218,46 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x2d, 0x41, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDescData + return file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDescData } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_goTypes = []any{ - (*AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleNetworkType - (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_goTypes = []any{ + (*AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleNetworkType + (enums.AndroidPrivacyInteractionTypeEnum_AndroidPrivacyInteractionType)(0), // 1: google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + (enums.AndroidPrivacyNetworkTypeEnum_AndroidPrivacyNetworkType)(0), // 2: google.ads.googleads.v22.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType } -var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_interaction_type:type_name -> google.ads.googleads.v21.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType - 2, // 1: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_network_type:type_name -> google.ads.googleads.v21.enums.AndroidPrivacyNetworkTypeEnum.AndroidPrivacyNetworkType +var file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_interaction_type:type_name -> google.ads.googleads.v22.enums.AndroidPrivacyInteractionTypeEnum.AndroidPrivacyInteractionType + 2, // 1: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleNetworkType.android_privacy_network_type:type_name -> google.ads.googleads.v22.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 @@ -266,27 +266,27 @@ var file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_ne } func init() { - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_init() + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_init() } -func file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_init() { - if File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto != nil { +func file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_init() { + if File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDesc), len(file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDesc), len(file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto = out.File - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_goTypes = nil - file_google_ads_googleads_v21_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto = out.File + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_goTypes = nil + file_google_ads_googleads_v22_resources_android_privacy_shared_key_google_network_type_proto_depIdxs = nil } diff --git a/resources/asset.pb.go b/resources/asset.pb.go index b94b8eec..029ea608 100644 --- a/resources/asset.pb.go +++ b/resources/asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset.proto +// source: google/ads/googleads/v22/resources/asset.proto package resources @@ -54,7 +54,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.v21.enums.AssetTypeEnum_AssetType" json:"type,omitempty"` + Type enums.AssetTypeEnum_AssetType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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. @@ -68,7 +68,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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,38,opt,name=source,proto3,enum=google.ads.googleads.v22.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. @@ -114,7 +114,7 @@ type Asset struct { func (x *Asset) Reset() { *x = Asset{} - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -126,7 +126,7 @@ func (x *Asset) String() string { func (*Asset) ProtoMessage() {} func (x *Asset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -139,7 +139,7 @@ func (x *Asset) ProtoReflect() protoreflect.Message { // Deprecated: Use Asset.ProtoReflect.Descriptor instead. func (*Asset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_proto_rawDescGZIP(), []int{0} } func (x *Asset) GetResourceName() string { @@ -721,9 +721,9 @@ func (*Asset_YoutubeVideoListAsset) isAsset_AssetData() {} type AssetFieldTypePolicySummary struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -732,7 +732,7 @@ type AssetFieldTypePolicySummary struct { func (x *AssetFieldTypePolicySummary) Reset() { *x = AssetFieldTypePolicySummary{} - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -744,7 +744,7 @@ func (x *AssetFieldTypePolicySummary) String() string { func (*AssetFieldTypePolicySummary) ProtoMessage() {} func (x *AssetFieldTypePolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -757,7 +757,7 @@ func (x *AssetFieldTypePolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetFieldTypePolicySummary.ProtoReflect.Descriptor instead. func (*AssetFieldTypePolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_asset_proto_rawDescGZIP(), []int{1} } func (x *AssetFieldTypePolicySummary) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { @@ -787,17 +787,17 @@ 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.v21.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.v22.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.v21.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.v22.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetPolicySummary) Reset() { *x = AssetPolicySummary{} - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -809,7 +809,7 @@ func (x *AssetPolicySummary) String() string { func (*AssetPolicySummary) ProtoMessage() {} func (x *AssetPolicySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -822,7 +822,7 @@ func (x *AssetPolicySummary) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetPolicySummary.ProtoReflect.Descriptor instead. func (*AssetPolicySummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_asset_proto_rawDescGZIP(), []int{2} } func (x *AssetPolicySummary) GetPolicyTopicEntries() []*common.PolicyTopicEntry { @@ -846,39 +846,39 @@ func (x *AssetPolicySummary) GetApprovalStatus() enums.PolicyApprovalStatusEnum_ return enums.PolicyApprovalStatusEnum_PolicyApprovalStatus(0) } -var File_google_ads_googleads_v21_resources_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x5f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x74, 0x79, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x5f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -895,7 +895,7 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -910,7 +910,7 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -918,20 +918,20 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -939,123 +939,123 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x65, 0x61, 0x64, 0x46, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x6f, 0x6f, 0x6b, 0x4f, 0x6e, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x61, 0x67, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, + 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x43, 0x61, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x79, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1063,7 +1063,7 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x86, 0x01, @@ -1071,60 +1071,60 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]byte{ 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x6d, 0x61, 0x6e, 0x64, 0x47, + 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x6d, 0x0a, 0x16, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x33, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x48, 0x00, 0x52, 0x14, 0x62, 0x75, 0x73, 0x69, 0x6e, 0x65, 0x73, 0x73, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x67, 0x0a, 0x13, 0x61, 0x70, 0x70, 0x5f, 0x64, 0x65, 0x65, 0x70, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x34, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x70, 0x70, 0x44, 0x65, 0x65, 0x70, 0x4c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x10, 0x61, 0x70, 0x70, 0x44, 0x65, 0x65, 0x70, 0x4c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x76, 0x0a, 0x18, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, 0x35, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x41, 0x73, 0x73, 0x65, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x15, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x73, 0x74, 0x41, @@ -1143,21 +1143,21 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]byte{ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1170,140 +1170,140 @@ var file_google_ads_googleads_v21_resources_asset_proto_rawDesc = string([]byte{ 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6f, 0x6c, 0x69, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_asset_proto_goTypes = []any{ - (*Asset)(nil), // 0: google.ads.googleads.v21.resources.Asset - (*AssetFieldTypePolicySummary)(nil), // 1: google.ads.googleads.v21.resources.AssetFieldTypePolicySummary - (*AssetPolicySummary)(nil), // 2: google.ads.googleads.v21.resources.AssetPolicySummary - (enums.AssetTypeEnum_AssetType)(0), // 3: google.ads.googleads.v21.enums.AssetTypeEnum.AssetType - (*common.CustomParameter)(nil), // 4: google.ads.googleads.v21.common.CustomParameter - (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (*common.YoutubeVideoAsset)(nil), // 6: google.ads.googleads.v21.common.YoutubeVideoAsset - (*common.MediaBundleAsset)(nil), // 7: google.ads.googleads.v21.common.MediaBundleAsset - (*common.ImageAsset)(nil), // 8: google.ads.googleads.v21.common.ImageAsset - (*common.TextAsset)(nil), // 9: google.ads.googleads.v21.common.TextAsset - (*common.LeadFormAsset)(nil), // 10: google.ads.googleads.v21.common.LeadFormAsset - (*common.BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v21.common.BookOnGoogleAsset - (*common.PromotionAsset)(nil), // 12: google.ads.googleads.v21.common.PromotionAsset - (*common.CalloutAsset)(nil), // 13: google.ads.googleads.v21.common.CalloutAsset - (*common.StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v21.common.StructuredSnippetAsset - (*common.SitelinkAsset)(nil), // 15: google.ads.googleads.v21.common.SitelinkAsset - (*common.PageFeedAsset)(nil), // 16: google.ads.googleads.v21.common.PageFeedAsset - (*common.DynamicEducationAsset)(nil), // 17: google.ads.googleads.v21.common.DynamicEducationAsset - (*common.MobileAppAsset)(nil), // 18: google.ads.googleads.v21.common.MobileAppAsset - (*common.HotelCalloutAsset)(nil), // 19: google.ads.googleads.v21.common.HotelCalloutAsset - (*common.CallAsset)(nil), // 20: google.ads.googleads.v21.common.CallAsset - (*common.PriceAsset)(nil), // 21: google.ads.googleads.v21.common.PriceAsset - (*common.CallToActionAsset)(nil), // 22: google.ads.googleads.v21.common.CallToActionAsset - (*common.DynamicRealEstateAsset)(nil), // 23: google.ads.googleads.v21.common.DynamicRealEstateAsset - (*common.DynamicCustomAsset)(nil), // 24: google.ads.googleads.v21.common.DynamicCustomAsset - (*common.DynamicHotelsAndRentalsAsset)(nil), // 25: google.ads.googleads.v21.common.DynamicHotelsAndRentalsAsset - (*common.DynamicFlightsAsset)(nil), // 26: google.ads.googleads.v21.common.DynamicFlightsAsset - (*common.DemandGenCarouselCardAsset)(nil), // 27: google.ads.googleads.v21.common.DemandGenCarouselCardAsset - (*common.DynamicTravelAsset)(nil), // 28: google.ads.googleads.v21.common.DynamicTravelAsset - (*common.DynamicLocalAsset)(nil), // 29: google.ads.googleads.v21.common.DynamicLocalAsset - (*common.DynamicJobsAsset)(nil), // 30: google.ads.googleads.v21.common.DynamicJobsAsset - (*common.LocationAsset)(nil), // 31: google.ads.googleads.v21.common.LocationAsset - (*common.HotelPropertyAsset)(nil), // 32: google.ads.googleads.v21.common.HotelPropertyAsset - (*common.BusinessMessageAsset)(nil), // 33: google.ads.googleads.v21.common.BusinessMessageAsset - (*common.AppDeepLinkAsset)(nil), // 34: google.ads.googleads.v21.common.AppDeepLinkAsset - (*common.YouTubeVideoListAsset)(nil), // 35: google.ads.googleads.v21.common.YouTubeVideoListAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 36: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (*common.PolicyTopicEntry)(nil), // 37: google.ads.googleads.v21.common.PolicyTopicEntry - (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 38: google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 39: google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus -} -var file_google_ads_googleads_v21_resources_asset_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.resources.Asset.type:type_name -> google.ads.googleads.v21.enums.AssetTypeEnum.AssetType - 4, // 1: google.ads.googleads.v21.resources.Asset.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter - 5, // 2: google.ads.googleads.v21.resources.Asset.source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 2, // 3: google.ads.googleads.v21.resources.Asset.policy_summary:type_name -> google.ads.googleads.v21.resources.AssetPolicySummary - 1, // 4: google.ads.googleads.v21.resources.Asset.field_type_policy_summaries:type_name -> google.ads.googleads.v21.resources.AssetFieldTypePolicySummary - 6, // 5: google.ads.googleads.v21.resources.Asset.youtube_video_asset:type_name -> google.ads.googleads.v21.common.YoutubeVideoAsset - 7, // 6: google.ads.googleads.v21.resources.Asset.media_bundle_asset:type_name -> google.ads.googleads.v21.common.MediaBundleAsset - 8, // 7: google.ads.googleads.v21.resources.Asset.image_asset:type_name -> google.ads.googleads.v21.common.ImageAsset - 9, // 8: google.ads.googleads.v21.resources.Asset.text_asset:type_name -> google.ads.googleads.v21.common.TextAsset - 10, // 9: google.ads.googleads.v21.resources.Asset.lead_form_asset:type_name -> google.ads.googleads.v21.common.LeadFormAsset - 11, // 10: google.ads.googleads.v21.resources.Asset.book_on_google_asset:type_name -> google.ads.googleads.v21.common.BookOnGoogleAsset - 12, // 11: google.ads.googleads.v21.resources.Asset.promotion_asset:type_name -> google.ads.googleads.v21.common.PromotionAsset - 13, // 12: google.ads.googleads.v21.resources.Asset.callout_asset:type_name -> google.ads.googleads.v21.common.CalloutAsset - 14, // 13: google.ads.googleads.v21.resources.Asset.structured_snippet_asset:type_name -> google.ads.googleads.v21.common.StructuredSnippetAsset - 15, // 14: google.ads.googleads.v21.resources.Asset.sitelink_asset:type_name -> google.ads.googleads.v21.common.SitelinkAsset - 16, // 15: google.ads.googleads.v21.resources.Asset.page_feed_asset:type_name -> google.ads.googleads.v21.common.PageFeedAsset - 17, // 16: google.ads.googleads.v21.resources.Asset.dynamic_education_asset:type_name -> google.ads.googleads.v21.common.DynamicEducationAsset - 18, // 17: google.ads.googleads.v21.resources.Asset.mobile_app_asset:type_name -> google.ads.googleads.v21.common.MobileAppAsset - 19, // 18: google.ads.googleads.v21.resources.Asset.hotel_callout_asset:type_name -> google.ads.googleads.v21.common.HotelCalloutAsset - 20, // 19: google.ads.googleads.v21.resources.Asset.call_asset:type_name -> google.ads.googleads.v21.common.CallAsset - 21, // 20: google.ads.googleads.v21.resources.Asset.price_asset:type_name -> google.ads.googleads.v21.common.PriceAsset - 22, // 21: google.ads.googleads.v21.resources.Asset.call_to_action_asset:type_name -> google.ads.googleads.v21.common.CallToActionAsset - 23, // 22: google.ads.googleads.v21.resources.Asset.dynamic_real_estate_asset:type_name -> google.ads.googleads.v21.common.DynamicRealEstateAsset - 24, // 23: google.ads.googleads.v21.resources.Asset.dynamic_custom_asset:type_name -> google.ads.googleads.v21.common.DynamicCustomAsset - 25, // 24: google.ads.googleads.v21.resources.Asset.dynamic_hotels_and_rentals_asset:type_name -> google.ads.googleads.v21.common.DynamicHotelsAndRentalsAsset - 26, // 25: google.ads.googleads.v21.resources.Asset.dynamic_flights_asset:type_name -> google.ads.googleads.v21.common.DynamicFlightsAsset - 27, // 26: google.ads.googleads.v21.resources.Asset.demand_gen_carousel_card_asset:type_name -> google.ads.googleads.v21.common.DemandGenCarouselCardAsset - 28, // 27: google.ads.googleads.v21.resources.Asset.dynamic_travel_asset:type_name -> google.ads.googleads.v21.common.DynamicTravelAsset - 29, // 28: google.ads.googleads.v21.resources.Asset.dynamic_local_asset:type_name -> google.ads.googleads.v21.common.DynamicLocalAsset - 30, // 29: google.ads.googleads.v21.resources.Asset.dynamic_jobs_asset:type_name -> google.ads.googleads.v21.common.DynamicJobsAsset - 31, // 30: google.ads.googleads.v21.resources.Asset.location_asset:type_name -> google.ads.googleads.v21.common.LocationAsset - 32, // 31: google.ads.googleads.v21.resources.Asset.hotel_property_asset:type_name -> google.ads.googleads.v21.common.HotelPropertyAsset - 33, // 32: google.ads.googleads.v21.resources.Asset.business_message_asset:type_name -> google.ads.googleads.v21.common.BusinessMessageAsset - 34, // 33: google.ads.googleads.v21.resources.Asset.app_deep_link_asset:type_name -> google.ads.googleads.v21.common.AppDeepLinkAsset - 35, // 34: google.ads.googleads.v21.resources.Asset.youtube_video_list_asset:type_name -> google.ads.googleads.v21.common.YouTubeVideoListAsset - 36, // 35: google.ads.googleads.v21.resources.AssetFieldTypePolicySummary.asset_field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 5, // 36: google.ads.googleads.v21.resources.AssetFieldTypePolicySummary.asset_source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 2, // 37: google.ads.googleads.v21.resources.AssetFieldTypePolicySummary.policy_summary_info:type_name -> google.ads.googleads.v21.resources.AssetPolicySummary - 37, // 38: google.ads.googleads.v21.resources.AssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v21.common.PolicyTopicEntry - 38, // 39: google.ads.googleads.v21.resources.AssetPolicySummary.review_status:type_name -> google.ads.googleads.v21.enums.PolicyReviewStatusEnum.PolicyReviewStatus - 39, // 40: google.ads.googleads.v21.resources.AssetPolicySummary.approval_status:type_name -> google.ads.googleads.v21.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus + return file_google_ads_googleads_v22_resources_asset_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_asset_proto_goTypes = []any{ + (*Asset)(nil), // 0: google.ads.googleads.v22.resources.Asset + (*AssetFieldTypePolicySummary)(nil), // 1: google.ads.googleads.v22.resources.AssetFieldTypePolicySummary + (*AssetPolicySummary)(nil), // 2: google.ads.googleads.v22.resources.AssetPolicySummary + (enums.AssetTypeEnum_AssetType)(0), // 3: google.ads.googleads.v22.enums.AssetTypeEnum.AssetType + (*common.CustomParameter)(nil), // 4: google.ads.googleads.v22.common.CustomParameter + (enums.AssetSourceEnum_AssetSource)(0), // 5: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (*common.YoutubeVideoAsset)(nil), // 6: google.ads.googleads.v22.common.YoutubeVideoAsset + (*common.MediaBundleAsset)(nil), // 7: google.ads.googleads.v22.common.MediaBundleAsset + (*common.ImageAsset)(nil), // 8: google.ads.googleads.v22.common.ImageAsset + (*common.TextAsset)(nil), // 9: google.ads.googleads.v22.common.TextAsset + (*common.LeadFormAsset)(nil), // 10: google.ads.googleads.v22.common.LeadFormAsset + (*common.BookOnGoogleAsset)(nil), // 11: google.ads.googleads.v22.common.BookOnGoogleAsset + (*common.PromotionAsset)(nil), // 12: google.ads.googleads.v22.common.PromotionAsset + (*common.CalloutAsset)(nil), // 13: google.ads.googleads.v22.common.CalloutAsset + (*common.StructuredSnippetAsset)(nil), // 14: google.ads.googleads.v22.common.StructuredSnippetAsset + (*common.SitelinkAsset)(nil), // 15: google.ads.googleads.v22.common.SitelinkAsset + (*common.PageFeedAsset)(nil), // 16: google.ads.googleads.v22.common.PageFeedAsset + (*common.DynamicEducationAsset)(nil), // 17: google.ads.googleads.v22.common.DynamicEducationAsset + (*common.MobileAppAsset)(nil), // 18: google.ads.googleads.v22.common.MobileAppAsset + (*common.HotelCalloutAsset)(nil), // 19: google.ads.googleads.v22.common.HotelCalloutAsset + (*common.CallAsset)(nil), // 20: google.ads.googleads.v22.common.CallAsset + (*common.PriceAsset)(nil), // 21: google.ads.googleads.v22.common.PriceAsset + (*common.CallToActionAsset)(nil), // 22: google.ads.googleads.v22.common.CallToActionAsset + (*common.DynamicRealEstateAsset)(nil), // 23: google.ads.googleads.v22.common.DynamicRealEstateAsset + (*common.DynamicCustomAsset)(nil), // 24: google.ads.googleads.v22.common.DynamicCustomAsset + (*common.DynamicHotelsAndRentalsAsset)(nil), // 25: google.ads.googleads.v22.common.DynamicHotelsAndRentalsAsset + (*common.DynamicFlightsAsset)(nil), // 26: google.ads.googleads.v22.common.DynamicFlightsAsset + (*common.DemandGenCarouselCardAsset)(nil), // 27: google.ads.googleads.v22.common.DemandGenCarouselCardAsset + (*common.DynamicTravelAsset)(nil), // 28: google.ads.googleads.v22.common.DynamicTravelAsset + (*common.DynamicLocalAsset)(nil), // 29: google.ads.googleads.v22.common.DynamicLocalAsset + (*common.DynamicJobsAsset)(nil), // 30: google.ads.googleads.v22.common.DynamicJobsAsset + (*common.LocationAsset)(nil), // 31: google.ads.googleads.v22.common.LocationAsset + (*common.HotelPropertyAsset)(nil), // 32: google.ads.googleads.v22.common.HotelPropertyAsset + (*common.BusinessMessageAsset)(nil), // 33: google.ads.googleads.v22.common.BusinessMessageAsset + (*common.AppDeepLinkAsset)(nil), // 34: google.ads.googleads.v22.common.AppDeepLinkAsset + (*common.YouTubeVideoListAsset)(nil), // 35: google.ads.googleads.v22.common.YouTubeVideoListAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 36: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (*common.PolicyTopicEntry)(nil), // 37: google.ads.googleads.v22.common.PolicyTopicEntry + (enums.PolicyReviewStatusEnum_PolicyReviewStatus)(0), // 38: google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + (enums.PolicyApprovalStatusEnum_PolicyApprovalStatus)(0), // 39: google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus +} +var file_google_ads_googleads_v22_resources_asset_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.resources.Asset.type:type_name -> google.ads.googleads.v22.enums.AssetTypeEnum.AssetType + 4, // 1: google.ads.googleads.v22.resources.Asset.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter + 5, // 2: google.ads.googleads.v22.resources.Asset.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 2, // 3: google.ads.googleads.v22.resources.Asset.policy_summary:type_name -> google.ads.googleads.v22.resources.AssetPolicySummary + 1, // 4: google.ads.googleads.v22.resources.Asset.field_type_policy_summaries:type_name -> google.ads.googleads.v22.resources.AssetFieldTypePolicySummary + 6, // 5: google.ads.googleads.v22.resources.Asset.youtube_video_asset:type_name -> google.ads.googleads.v22.common.YoutubeVideoAsset + 7, // 6: google.ads.googleads.v22.resources.Asset.media_bundle_asset:type_name -> google.ads.googleads.v22.common.MediaBundleAsset + 8, // 7: google.ads.googleads.v22.resources.Asset.image_asset:type_name -> google.ads.googleads.v22.common.ImageAsset + 9, // 8: google.ads.googleads.v22.resources.Asset.text_asset:type_name -> google.ads.googleads.v22.common.TextAsset + 10, // 9: google.ads.googleads.v22.resources.Asset.lead_form_asset:type_name -> google.ads.googleads.v22.common.LeadFormAsset + 11, // 10: google.ads.googleads.v22.resources.Asset.book_on_google_asset:type_name -> google.ads.googleads.v22.common.BookOnGoogleAsset + 12, // 11: google.ads.googleads.v22.resources.Asset.promotion_asset:type_name -> google.ads.googleads.v22.common.PromotionAsset + 13, // 12: google.ads.googleads.v22.resources.Asset.callout_asset:type_name -> google.ads.googleads.v22.common.CalloutAsset + 14, // 13: google.ads.googleads.v22.resources.Asset.structured_snippet_asset:type_name -> google.ads.googleads.v22.common.StructuredSnippetAsset + 15, // 14: google.ads.googleads.v22.resources.Asset.sitelink_asset:type_name -> google.ads.googleads.v22.common.SitelinkAsset + 16, // 15: google.ads.googleads.v22.resources.Asset.page_feed_asset:type_name -> google.ads.googleads.v22.common.PageFeedAsset + 17, // 16: google.ads.googleads.v22.resources.Asset.dynamic_education_asset:type_name -> google.ads.googleads.v22.common.DynamicEducationAsset + 18, // 17: google.ads.googleads.v22.resources.Asset.mobile_app_asset:type_name -> google.ads.googleads.v22.common.MobileAppAsset + 19, // 18: google.ads.googleads.v22.resources.Asset.hotel_callout_asset:type_name -> google.ads.googleads.v22.common.HotelCalloutAsset + 20, // 19: google.ads.googleads.v22.resources.Asset.call_asset:type_name -> google.ads.googleads.v22.common.CallAsset + 21, // 20: google.ads.googleads.v22.resources.Asset.price_asset:type_name -> google.ads.googleads.v22.common.PriceAsset + 22, // 21: google.ads.googleads.v22.resources.Asset.call_to_action_asset:type_name -> google.ads.googleads.v22.common.CallToActionAsset + 23, // 22: google.ads.googleads.v22.resources.Asset.dynamic_real_estate_asset:type_name -> google.ads.googleads.v22.common.DynamicRealEstateAsset + 24, // 23: google.ads.googleads.v22.resources.Asset.dynamic_custom_asset:type_name -> google.ads.googleads.v22.common.DynamicCustomAsset + 25, // 24: google.ads.googleads.v22.resources.Asset.dynamic_hotels_and_rentals_asset:type_name -> google.ads.googleads.v22.common.DynamicHotelsAndRentalsAsset + 26, // 25: google.ads.googleads.v22.resources.Asset.dynamic_flights_asset:type_name -> google.ads.googleads.v22.common.DynamicFlightsAsset + 27, // 26: google.ads.googleads.v22.resources.Asset.demand_gen_carousel_card_asset:type_name -> google.ads.googleads.v22.common.DemandGenCarouselCardAsset + 28, // 27: google.ads.googleads.v22.resources.Asset.dynamic_travel_asset:type_name -> google.ads.googleads.v22.common.DynamicTravelAsset + 29, // 28: google.ads.googleads.v22.resources.Asset.dynamic_local_asset:type_name -> google.ads.googleads.v22.common.DynamicLocalAsset + 30, // 29: google.ads.googleads.v22.resources.Asset.dynamic_jobs_asset:type_name -> google.ads.googleads.v22.common.DynamicJobsAsset + 31, // 30: google.ads.googleads.v22.resources.Asset.location_asset:type_name -> google.ads.googleads.v22.common.LocationAsset + 32, // 31: google.ads.googleads.v22.resources.Asset.hotel_property_asset:type_name -> google.ads.googleads.v22.common.HotelPropertyAsset + 33, // 32: google.ads.googleads.v22.resources.Asset.business_message_asset:type_name -> google.ads.googleads.v22.common.BusinessMessageAsset + 34, // 33: google.ads.googleads.v22.resources.Asset.app_deep_link_asset:type_name -> google.ads.googleads.v22.common.AppDeepLinkAsset + 35, // 34: google.ads.googleads.v22.resources.Asset.youtube_video_list_asset:type_name -> google.ads.googleads.v22.common.YouTubeVideoListAsset + 36, // 35: google.ads.googleads.v22.resources.AssetFieldTypePolicySummary.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 5, // 36: google.ads.googleads.v22.resources.AssetFieldTypePolicySummary.asset_source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 2, // 37: google.ads.googleads.v22.resources.AssetFieldTypePolicySummary.policy_summary_info:type_name -> google.ads.googleads.v22.resources.AssetPolicySummary + 37, // 38: google.ads.googleads.v22.resources.AssetPolicySummary.policy_topic_entries:type_name -> google.ads.googleads.v22.common.PolicyTopicEntry + 38, // 39: google.ads.googleads.v22.resources.AssetPolicySummary.review_status:type_name -> google.ads.googleads.v22.enums.PolicyReviewStatusEnum.PolicyReviewStatus + 39, // 40: google.ads.googleads.v22.resources.AssetPolicySummary.approval_status:type_name -> google.ads.googleads.v22.enums.PolicyApprovalStatusEnum.PolicyApprovalStatus 41, // [41:41] is the sub-list for method output_type 41, // [41:41] is the sub-list for method input_type 41, // [41:41] is the sub-list for extension type_name @@ -1311,12 +1311,12 @@ var file_google_ads_googleads_v21_resources_asset_proto_depIdxs = []int32{ 0, // [0:41] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_proto_init() } -func file_google_ads_googleads_v21_resources_asset_proto_init() { - if File_google_ads_googleads_v21_resources_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_proto_init() } +func file_google_ads_googleads_v22_resources_asset_proto_init() { + if File_google_ads_googleads_v22_resources_asset_proto != nil { return } - file_google_ads_googleads_v21_resources_asset_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_proto_msgTypes[0].OneofWrappers = []any{ (*Asset_YoutubeVideoAsset)(nil), (*Asset_MediaBundleAsset)(nil), (*Asset_ImageAsset)(nil), @@ -1348,22 +1348,22 @@ func file_google_ads_googleads_v21_resources_asset_proto_init() { (*Asset_AppDeepLinkAsset)(nil), (*Asset_YoutubeVideoListAsset)(nil), } - file_google_ads_googleads_v21_resources_asset_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_proto = out.File - file_google_ads_googleads_v21_resources_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_proto = out.File + file_google_ads_googleads_v22_resources_asset_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_proto_depIdxs = nil } diff --git a/resources/asset_field_type_view.pb.go b/resources/asset_field_type_view.pb.go index ec7adb19..e099efac 100644 --- a/resources/asset_field_type_view.pb.go +++ b/resources/asset_field_type_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_field_type_view.proto +// source: google/ads/googleads/v22/resources/asset_field_type_view.proto package resources @@ -48,14 +48,14 @@ 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.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetFieldTypeView) Reset() { *x = AssetFieldTypeView{} - mi := &file_google_ads_googleads_v21_resources_asset_field_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_field_type_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *AssetFieldTypeView) String() string { func (*AssetFieldTypeView) ProtoMessage() {} func (x *AssetFieldTypeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_field_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_field_type_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *AssetFieldTypeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetFieldTypeView.ProtoReflect.Descriptor instead. func (*AssetFieldTypeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescGZIP(), []int{0} } func (x *AssetFieldTypeView) GetResourceName() string { @@ -97,17 +97,17 @@ func (x *AssetFieldTypeView) GetFieldType() enums.AssetFieldTypeEnum_AssetFieldT return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v21_resources_asset_field_type_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_field_type_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -123,7 +123,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -135,43 +135,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_field_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_field_type_view_proto_goTypes = []any{ - (*AssetFieldTypeView)(nil), // 0: google.ads.googleads.v21.resources.AssetFieldTypeView - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_asset_field_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_field_type_view_proto_goTypes = []any{ + (*AssetFieldTypeView)(nil), // 0: google.ads.googleads.v22.resources.AssetFieldTypeView + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType } -var file_google_ads_googleads_v21_resources_asset_field_type_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetFieldTypeView.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_asset_field_type_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetFieldTypeView.field_type:type_name -> google.ads.googleads.v22.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 @@ -179,26 +179,26 @@ var file_google_ads_googleads_v21_resources_asset_field_type_view_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_field_type_view_proto_init() } -func file_google_ads_googleads_v21_resources_asset_field_type_view_proto_init() { - if File_google_ads_googleads_v21_resources_asset_field_type_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_field_type_view_proto_init() } +func file_google_ads_googleads_v22_resources_asset_field_type_view_proto_init() { + if File_google_ads_googleads_v22_resources_asset_field_type_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_field_type_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_field_type_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_field_type_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_field_type_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_field_type_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_field_type_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_field_type_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_field_type_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_field_type_view_proto = out.File - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_field_type_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_field_type_view_proto = out.File + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_field_type_view_proto_depIdxs = nil } diff --git a/resources/asset_group.pb.go b/resources/asset_group.pb.go index ace0c24e..c0dcd9a8 100644 --- a/resources/asset_group.pb.go +++ b/resources/asset_group.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group.proto +// source: google/ads/googleads/v22/resources/asset_group.proto package resources @@ -63,14 +63,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.v21.enums.AssetGroupStatusEnum_AssetGroupStatus" json:"status,omitempty"` + Status enums.AssetGroupStatusEnum_AssetGroupStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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"` @@ -78,7 +78,7 @@ 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.v21.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.v22.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"` // Output only. The asset coverage of this asset group. AssetCoverage *AssetCoverage `protobuf:"bytes,13,opt,name=asset_coverage,json=assetCoverage,proto3" json:"asset_coverage,omitempty"` unknownFields protoimpl.UnknownFields @@ -87,7 +87,7 @@ type AssetGroup struct { func (x *AssetGroup) Reset() { *x = AssetGroup{} - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_asset_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[0] if 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_v21_resources_asset_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_proto_rawDescGZIP(), []int{0} } func (x *AssetGroup) GetResourceName() string { @@ -218,7 +218,7 @@ type AssetCoverage struct { func (x *AssetCoverage) Reset() { *x = AssetCoverage{} - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -230,7 +230,7 @@ func (x *AssetCoverage) String() string { func (*AssetCoverage) ProtoMessage() {} func (x *AssetCoverage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -243,7 +243,7 @@ func (x *AssetCoverage) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetCoverage.ProtoReflect.Descriptor instead. func (*AssetCoverage) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_asset_group_proto_rawDescGZIP(), []int{1} } func (x *AssetCoverage) GetAdStrengthActionItems() []*AdStrengthActionItem { @@ -257,7 +257,7 @@ func (x *AssetCoverage) GetAdStrengthActionItems() []*AdStrengthActionItem { type AdStrengthActionItem struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. The action item type. - ActionItemType enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType `protobuf:"varint,1,opt,name=action_item_type,json=actionItemType,proto3,enum=google.ads.googleads.v21.enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType" json:"action_item_type,omitempty"` + ActionItemType enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType `protobuf:"varint,1,opt,name=action_item_type,json=actionItemType,proto3,enum=google.ads.googleads.v22.enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType" json:"action_item_type,omitempty"` // The details of this action item. // // Types that are valid to be assigned to ActionDetails: @@ -270,7 +270,7 @@ type AdStrengthActionItem struct { func (x *AdStrengthActionItem) Reset() { *x = AdStrengthActionItem{} - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -282,7 +282,7 @@ func (x *AdStrengthActionItem) String() string { func (*AdStrengthActionItem) ProtoMessage() {} func (x *AdStrengthActionItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -295,7 +295,7 @@ func (x *AdStrengthActionItem) ProtoReflect() protoreflect.Message { // Deprecated: Use AdStrengthActionItem.ProtoReflect.Descriptor instead. func (*AdStrengthActionItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_asset_group_proto_rawDescGZIP(), []int{2} } func (x *AdStrengthActionItem) GetActionItemType() enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType { @@ -336,21 +336,21 @@ func (*AdStrengthActionItem_AddAssetDetails_) isAdStrengthActionItem_ActionDetai type AdStrengthActionItem_AddAssetDetails struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. The asset field type of the asset(s) to add. - AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,1,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v21.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` + AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,1,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` // Output only. The number of assets to add. AssetCount *int32 `protobuf:"varint,2,opt,name=asset_count,json=assetCount,proto3,oneof" json:"asset_count,omitempty"` // Output only. For video field types, the required aspect ratio of the // video. When unset and asset_field_type is YOUTUBE_VIDEO, the system // recommends the advertiser upload any YouTube video, regardless of aspect // ratio. - VideoAspectRatioRequirement *enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement `protobuf:"varint,3,opt,name=video_aspect_ratio_requirement,json=videoAspectRatioRequirement,proto3,enum=google.ads.googleads.v21.enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement,oneof" json:"video_aspect_ratio_requirement,omitempty"` + VideoAspectRatioRequirement *enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement `protobuf:"varint,3,opt,name=video_aspect_ratio_requirement,json=videoAspectRatioRequirement,proto3,enum=google.ads.googleads.v22.enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement,oneof" json:"video_aspect_ratio_requirement,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AdStrengthActionItem_AddAssetDetails) Reset() { *x = AdStrengthActionItem_AddAssetDetails{} - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -362,7 +362,7 @@ func (x *AdStrengthActionItem_AddAssetDetails) String() string { func (*AdStrengthActionItem_AddAssetDetails) ProtoMessage() {} func (x *AdStrengthActionItem_AddAssetDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -375,7 +375,7 @@ func (x *AdStrengthActionItem_AddAssetDetails) ProtoReflect() protoreflect.Messa // Deprecated: Use AdStrengthActionItem_AddAssetDetails.ProtoReflect.Descriptor instead. func (*AdStrengthActionItem_AddAssetDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v22_resources_asset_group_proto_rawDescGZIP(), []int{2, 0} } func (x *AdStrengthActionItem_AddAssetDetails) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { @@ -399,41 +399,41 @@ func (x *AdStrengthActionItem_AddAssetDetails) GetVideoAspectRatioRequirement() return enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement(0) } -var File_google_ads_googleads_v21_resources_asset_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x41, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x52, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x73, 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, - 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x5f, 0x62, @@ -460,13 +460,13 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x79, 0x53, @@ -475,7 +475,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x79, 0x53, @@ -487,13 +487,13 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, + 0x32, 0x32, 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, 0x5d, 0x0a, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x18, 0x0d, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x0d, 0x61, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x3a, 0x77, 0xea, 0x41, 0x74, 0x0a, 0x23, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -508,7 +508,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x18, 0x61, 0x64, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x15, 0x61, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, @@ -517,7 +517,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x01, 0x0a, 0x10, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x74, 0x65, 0x6d, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x54, 0x79, 0x70, 0x65, @@ -525,7 +525,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x6d, 0x54, 0x79, 0x70, 0x65, 0x12, 0x7b, 0x0a, 0x11, 0x61, 0x64, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x74, 0x65, 0x6d, 0x2e, 0x41, 0x64, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, @@ -534,7 +534,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x12, 0x70, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, @@ -545,7 +545,7 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x70, 0x65, 0x63, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x73, 0x70, 0x65, 0x63, 0x74, 0x52, 0x61, 0x74, 0x69, 0x6f, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, @@ -559,61 +559,61 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc = string([ 0x6f, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x42, 0x10, 0x0a, 0x0e, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_asset_group_proto_goTypes = []any{ - (*AssetGroup)(nil), // 0: google.ads.googleads.v21.resources.AssetGroup - (*AssetCoverage)(nil), // 1: google.ads.googleads.v21.resources.AssetCoverage - (*AdStrengthActionItem)(nil), // 2: google.ads.googleads.v21.resources.AdStrengthActionItem - (*AdStrengthActionItem_AddAssetDetails)(nil), // 3: google.ads.googleads.v21.resources.AdStrengthActionItem.AddAssetDetails - (enums.AssetGroupStatusEnum_AssetGroupStatus)(0), // 4: google.ads.googleads.v21.enums.AssetGroupStatusEnum.AssetGroupStatus - (enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 5: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus - (enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 6: google.ads.googleads.v21.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason - (enums.AdStrengthEnum_AdStrength)(0), // 7: google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - (enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType)(0), // 8: google.ads.googleads.v21.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 9: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement)(0), // 10: google.ads.googleads.v21.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement -} -var file_google_ads_googleads_v21_resources_asset_group_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.resources.AssetGroup.status:type_name -> google.ads.googleads.v21.enums.AssetGroupStatusEnum.AssetGroupStatus - 5, // 1: google.ads.googleads.v21.resources.AssetGroup.primary_status:type_name -> google.ads.googleads.v21.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus - 6, // 2: google.ads.googleads.v21.resources.AssetGroup.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason - 7, // 3: google.ads.googleads.v21.resources.AssetGroup.ad_strength:type_name -> google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - 1, // 4: google.ads.googleads.v21.resources.AssetGroup.asset_coverage:type_name -> google.ads.googleads.v21.resources.AssetCoverage - 2, // 5: google.ads.googleads.v21.resources.AssetCoverage.ad_strength_action_items:type_name -> google.ads.googleads.v21.resources.AdStrengthActionItem - 8, // 6: google.ads.googleads.v21.resources.AdStrengthActionItem.action_item_type:type_name -> google.ads.googleads.v21.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType - 3, // 7: google.ads.googleads.v21.resources.AdStrengthActionItem.add_asset_details:type_name -> google.ads.googleads.v21.resources.AdStrengthActionItem.AddAssetDetails - 9, // 8: google.ads.googleads.v21.resources.AdStrengthActionItem.AddAssetDetails.asset_field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 10, // 9: google.ads.googleads.v21.resources.AdStrengthActionItem.AddAssetDetails.video_aspect_ratio_requirement:type_name -> google.ads.googleads.v21.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement + return file_google_ads_googleads_v22_resources_asset_group_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_asset_group_proto_goTypes = []any{ + (*AssetGroup)(nil), // 0: google.ads.googleads.v22.resources.AssetGroup + (*AssetCoverage)(nil), // 1: google.ads.googleads.v22.resources.AssetCoverage + (*AdStrengthActionItem)(nil), // 2: google.ads.googleads.v22.resources.AdStrengthActionItem + (*AdStrengthActionItem_AddAssetDetails)(nil), // 3: google.ads.googleads.v22.resources.AdStrengthActionItem.AddAssetDetails + (enums.AssetGroupStatusEnum_AssetGroupStatus)(0), // 4: google.ads.googleads.v22.enums.AssetGroupStatusEnum.AssetGroupStatus + (enums.AssetGroupPrimaryStatusEnum_AssetGroupPrimaryStatus)(0), // 5: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus + (enums.AssetGroupPrimaryStatusReasonEnum_AssetGroupPrimaryStatusReason)(0), // 6: google.ads.googleads.v22.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason + (enums.AdStrengthEnum_AdStrength)(0), // 7: google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + (enums.AdStrengthActionItemTypeEnum_AdStrengthActionItemType)(0), // 8: google.ads.googleads.v22.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 9: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetCoverageVideoAspectRatioRequirementEnum_AssetCoverageVideoAspectRatioRequirement)(0), // 10: google.ads.googleads.v22.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement +} +var file_google_ads_googleads_v22_resources_asset_group_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.resources.AssetGroup.status:type_name -> google.ads.googleads.v22.enums.AssetGroupStatusEnum.AssetGroupStatus + 5, // 1: google.ads.googleads.v22.resources.AssetGroup.primary_status:type_name -> google.ads.googleads.v22.enums.AssetGroupPrimaryStatusEnum.AssetGroupPrimaryStatus + 6, // 2: google.ads.googleads.v22.resources.AssetGroup.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.AssetGroupPrimaryStatusReasonEnum.AssetGroupPrimaryStatusReason + 7, // 3: google.ads.googleads.v22.resources.AssetGroup.ad_strength:type_name -> google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + 1, // 4: google.ads.googleads.v22.resources.AssetGroup.asset_coverage:type_name -> google.ads.googleads.v22.resources.AssetCoverage + 2, // 5: google.ads.googleads.v22.resources.AssetCoverage.ad_strength_action_items:type_name -> google.ads.googleads.v22.resources.AdStrengthActionItem + 8, // 6: google.ads.googleads.v22.resources.AdStrengthActionItem.action_item_type:type_name -> google.ads.googleads.v22.enums.AdStrengthActionItemTypeEnum.AdStrengthActionItemType + 3, // 7: google.ads.googleads.v22.resources.AdStrengthActionItem.add_asset_details:type_name -> google.ads.googleads.v22.resources.AdStrengthActionItem.AddAssetDetails + 9, // 8: google.ads.googleads.v22.resources.AdStrengthActionItem.AddAssetDetails.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 10, // 9: google.ads.googleads.v22.resources.AdStrengthActionItem.AddAssetDetails.video_aspect_ratio_requirement:type_name -> google.ads.googleads.v22.enums.AssetCoverageVideoAspectRatioRequirementEnum.AssetCoverageVideoAspectRatioRequirement 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 @@ -621,30 +621,30 @@ var file_google_ads_googleads_v21_resources_asset_group_proto_depIdxs = []int32{ 0, // [0:10] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_group_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_proto != nil { return } - file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[2].OneofWrappers = []any{ (*AdStrengthActionItem_AddAssetDetails_)(nil), } - file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes[3].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_group_proto_depIdxs = nil } diff --git a/resources/asset_group_asset.pb.go b/resources/asset_group_asset.pb.go index ecd30aa5..b903838a 100644 --- a/resources/asset_group_asset.pb.go +++ b/resources/asset_group_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group_asset.proto +// source: google/ads/googleads/v22/resources/asset_group_asset.proto package resources @@ -53,35 +53,33 @@ 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.v21.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.v22.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.v21.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,11,opt,name=source,proto3,enum=google.ads.googleads.v22.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetGroupAsset) Reset() { *x = AssetGroupAsset{} - mi := &file_google_ads_googleads_v21_resources_asset_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93,7 +91,7 @@ func (x *AssetGroupAsset) String() string { func (*AssetGroupAsset) ProtoMessage() {} func (x *AssetGroupAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106,7 +104,7 @@ func (x *AssetGroupAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAsset.ProtoReflect.Descriptor instead. func (*AssetGroupAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupAsset) GetResourceName() string { @@ -165,13 +163,6 @@ func (x *AssetGroupAsset) GetPrimaryStatusDetails() []*common.AssetLinkPrimarySt return nil } -func (x *AssetGroupAsset) GetPerformanceLabel() enums.AssetPerformanceLabelEnum_AssetPerformanceLabel { - if x != nil { - return x.PerformanceLabel - } - return enums.AssetPerformanceLabelEnum_AssetPerformanceLabel(0) -} - func (x *AssetGroupAsset) GetPolicySummary() *common.PolicySummary { if x != nil { return x.PolicySummary @@ -186,208 +177,194 @@ func (x *AssetGroupAsset) GetSource() enums.AssetSourceEnum_AssetSource { return enums.AssetSourceEnum_AssetSource(0) } -var File_google_ads_googleads_v21_resources_asset_group_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x85, 0x0a, - 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, - 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, 0x05, 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, 0x41, 0x73, 0x73, 0x65, 0x74, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, - 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x0b, 0x61, 0x73, 0x73, 0x65, - 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x2b, 0xe0, - 0x41, 0x05, 0xfa, 0x41, 0x25, 0x0a, 0x23, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0a, 0x61, 0x73, 0x73, 0x65, - 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x3c, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, 0x74, 0x18, - 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xe0, 0x41, 0x05, 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, 0x52, 0x05, 0x61, - 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, + 0x1a, 0x31, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, + 0x81, 0x09, 0x0a, 0x0f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, + 0x73, 0x65, 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, 0x05, 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, 0x41, 0x73, 0x73, + 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x0c, 0x72, 0x65, + 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x4c, 0x0a, 0x0b, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, + 0x2b, 0xe0, 0x41, 0x05, 0xfa, 0x41, 0x25, 0x0a, 0x23, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0a, 0x61, 0x73, + 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x3c, 0x0a, 0x05, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x26, 0xe0, 0x41, 0x05, 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, 0x52, + 0x05, 0x61, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, 0x61, 0x74, - 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, 0x32, 0x31, 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, 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, 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, 0x0a, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x3e, 0x2e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, - 0x6f, 0x6d, 0x2f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, - 0x65, 0x74, 0x12, 0x51, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, - 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, - 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, - 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0d, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x53, 0x74, + 0x61, 0x74, 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, 0x32, 0x32, + 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, 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, + 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x61, 0x64, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, + 0x2f, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x12, 0x51, 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, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x7b, 0x61, 0x73, 0x73, 0x65, + 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x61, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_group_asset_proto_goTypes = []any{ - (*AssetGroupAsset)(nil), // 0: google.ads.googleads.v21.resources.AssetGroupAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 3: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 4: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - (enums.AssetPerformanceLabelEnum_AssetPerformanceLabel)(0), // 6: google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - (*common.PolicySummary)(nil), // 7: google.ads.googleads.v21.common.PolicySummary - (enums.AssetSourceEnum_AssetSource)(0), // 8: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource +var file_google_ads_googleads_v22_resources_asset_group_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_group_asset_proto_goTypes = []any{ + (*AssetGroupAsset)(nil), // 0: google.ads.googleads.v22.resources.AssetGroupAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 3: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 4: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + (*common.PolicySummary)(nil), // 6: google.ads.googleads.v22.common.PolicySummary + (enums.AssetSourceEnum_AssetSource)(0), // 7: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource } -var file_google_ads_googleads_v21_resources_asset_group_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetGroupAsset.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v21.resources.AssetGroupAsset.status:type_name -> google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - 3, // 2: google.ads.googleads.v21.resources.AssetGroupAsset.primary_status:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 4, // 3: google.ads.googleads.v21.resources.AssetGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason - 5, // 4: google.ads.googleads.v21.resources.AssetGroupAsset.primary_status_details:type_name -> google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v21.resources.AssetGroupAsset.performance_label:type_name -> google.ads.googleads.v21.enums.AssetPerformanceLabelEnum.AssetPerformanceLabel - 7, // 6: google.ads.googleads.v21.resources.AssetGroupAsset.policy_summary:type_name -> google.ads.googleads.v21.common.PolicySummary - 8, // 7: google.ads.googleads.v21.resources.AssetGroupAsset.source:type_name -> google.ads.googleads.v21.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 - 8, // [8:8] is the sub-list for extension extendee - 0, // [0:8] is the sub-list for field type_name +var file_google_ads_googleads_v22_resources_asset_group_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetGroupAsset.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v22.resources.AssetGroupAsset.status:type_name -> google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + 3, // 2: google.ads.googleads.v22.resources.AssetGroupAsset.primary_status:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 4, // 3: google.ads.googleads.v22.resources.AssetGroupAsset.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason + 5, // 4: google.ads.googleads.v22.resources.AssetGroupAsset.primary_status_details:type_name -> google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v22.resources.AssetGroupAsset.policy_summary:type_name -> google.ads.googleads.v22.common.PolicySummary + 7, // 6: google.ads.googleads.v22.resources.AssetGroupAsset.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 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_v21_resources_asset_group_asset_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_asset_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_asset_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_asset_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_asset_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_asset_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_asset_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_asset_proto_goTypes = nil + file_google_ads_googleads_v22_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 d912eed8..2d73879c 100644 --- a/resources/asset_group_listing_group_filter.pb.go +++ b/resources/asset_group_listing_group_filter.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group_listing_group_filter.proto +// source: google/ads/googleads/v22/resources/asset_group_listing_group_filter.proto package resources @@ -52,9 +52,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.v21.enums.ListingGroupFilterTypeEnum_ListingGroupFilterType" json:"type,omitempty"` + Type enums.ListingGroupFilterTypeEnum_ListingGroupFilterType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -69,7 +69,7 @@ type AssetGroupListingGroupFilter struct { func (x *AssetGroupListingGroupFilter) Reset() { *x = AssetGroupListingGroupFilter{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *AssetGroupListingGroupFilter) String() string { func (*AssetGroupListingGroupFilter) ProtoMessage() {} func (x *AssetGroupListingGroupFilter) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94,7 +94,7 @@ func (x *AssetGroupListingGroupFilter) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupListingGroupFilter.ProtoReflect.Descriptor instead. func (*AssetGroupListingGroupFilter) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupListingGroupFilter) GetResourceName() string { @@ -165,7 +165,7 @@ type ListingGroupFilterDimensionPath struct { func (x *ListingGroupFilterDimensionPath) Reset() { *x = ListingGroupFilterDimensionPath{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -177,7 +177,7 @@ func (x *ListingGroupFilterDimensionPath) String() string { func (*ListingGroupFilterDimensionPath) ProtoMessage() {} func (x *ListingGroupFilterDimensionPath) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -190,7 +190,7 @@ func (x *ListingGroupFilterDimensionPath) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupFilterDimensionPath.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimensionPath) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{1} } func (x *ListingGroupFilterDimensionPath) GetDimensions() []*ListingGroupFilterDimension { @@ -222,7 +222,7 @@ type ListingGroupFilterDimension struct { func (x *ListingGroupFilterDimension) Reset() { *x = ListingGroupFilterDimension{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -234,7 +234,7 @@ func (x *ListingGroupFilterDimension) String() string { func (*ListingGroupFilterDimension) ProtoMessage() {} func (x *ListingGroupFilterDimension) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -247,7 +247,7 @@ func (x *ListingGroupFilterDimension) ProtoReflect() protoreflect.Message { // Deprecated: Use ListingGroupFilterDimension.ProtoReflect.Descriptor instead. func (*ListingGroupFilterDimension) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2} } func (x *ListingGroupFilterDimension) GetDimension() isListingGroupFilterDimension_Dimension { @@ -403,14 +403,14 @@ 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.v21.enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel" json:"level,omitempty"` + Level enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v22.enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel" json:"level,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListingGroupFilterDimension_ProductCategory) Reset() { *x = ListingGroupFilterDimension_ProductCategory{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -422,7 +422,7 @@ func (x *ListingGroupFilterDimension_ProductCategory) String() string { func (*ListingGroupFilterDimension_ProductCategory) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -435,7 +435,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 0} } func (x *ListingGroupFilterDimension_ProductCategory) GetCategoryId() int64 { @@ -463,7 +463,7 @@ type ListingGroupFilterDimension_ProductBrand struct { func (x *ListingGroupFilterDimension_ProductBrand) Reset() { *x = ListingGroupFilterDimension_ProductBrand{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -475,7 +475,7 @@ func (x *ListingGroupFilterDimension_ProductBrand) String() string { func (*ListingGroupFilterDimension_ProductBrand) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductBrand) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -488,7 +488,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 1} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 1} } func (x *ListingGroupFilterDimension_ProductBrand) GetValue() string { @@ -502,14 +502,14 @@ func (x *ListingGroupFilterDimension_ProductBrand) GetValue() string { type ListingGroupFilterDimension_ProductChannel struct { state protoimpl.MessageState `protogen:"open.v1"` // Value of the locality. - Channel enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v21.enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel" json:"channel,omitempty"` + Channel enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel `protobuf:"varint,1,opt,name=channel,proto3,enum=google.ads.googleads.v22.enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel" json:"channel,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListingGroupFilterDimension_ProductChannel) Reset() { *x = ListingGroupFilterDimension_ProductChannel{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -521,7 +521,7 @@ func (x *ListingGroupFilterDimension_ProductChannel) String() string { func (*ListingGroupFilterDimension_ProductChannel) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductChannel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -534,7 +534,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 2} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 2} } func (x *ListingGroupFilterDimension_ProductChannel) GetChannel() enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel { @@ -548,14 +548,14 @@ func (x *ListingGroupFilterDimension_ProductChannel) GetChannel() enums.ListingG type ListingGroupFilterDimension_ProductCondition struct { state protoimpl.MessageState `protogen:"open.v1"` // Value of the condition. - Condition enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v21.enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition" json:"condition,omitempty"` + Condition enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition `protobuf:"varint,1,opt,name=condition,proto3,enum=google.ads.googleads.v22.enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition" json:"condition,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListingGroupFilterDimension_ProductCondition) Reset() { *x = ListingGroupFilterDimension_ProductCondition{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -567,7 +567,7 @@ func (x *ListingGroupFilterDimension_ProductCondition) String() string { func (*ListingGroupFilterDimension_ProductCondition) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -580,7 +580,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 3} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 3} } func (x *ListingGroupFilterDimension_ProductCondition) GetCondition() enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition { @@ -596,14 +596,14 @@ 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.v21.enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex" json:"index,omitempty"` + Index enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex `protobuf:"varint,2,opt,name=index,proto3,enum=google.ads.googleads.v22.enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex" json:"index,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListingGroupFilterDimension_ProductCustomAttribute) Reset() { *x = ListingGroupFilterDimension_ProductCustomAttribute{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -615,7 +615,7 @@ func (x *ListingGroupFilterDimension_ProductCustomAttribute) String() string { func (*ListingGroupFilterDimension_ProductCustomAttribute) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductCustomAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -628,7 +628,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 4} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 4} } func (x *ListingGroupFilterDimension_ProductCustomAttribute) GetValue() string { @@ -656,7 +656,7 @@ type ListingGroupFilterDimension_ProductItemId struct { func (x *ListingGroupFilterDimension_ProductItemId) Reset() { *x = ListingGroupFilterDimension_ProductItemId{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -668,7 +668,7 @@ func (x *ListingGroupFilterDimension_ProductItemId) String() string { func (*ListingGroupFilterDimension_ProductItemId) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductItemId) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -681,7 +681,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 5} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 5} } func (x *ListingGroupFilterDimension_ProductItemId) GetValue() string { @@ -697,14 +697,14 @@ 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.v21.enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel" json:"level,omitempty"` + Level enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel `protobuf:"varint,2,opt,name=level,proto3,enum=google.ads.googleads.v22.enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel" json:"level,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListingGroupFilterDimension_ProductType) Reset() { *x = ListingGroupFilterDimension_ProductType{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -716,7 +716,7 @@ func (x *ListingGroupFilterDimension_ProductType) String() string { func (*ListingGroupFilterDimension_ProductType) ProtoMessage() {} func (x *ListingGroupFilterDimension_ProductType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -729,7 +729,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 6} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 6} } func (x *ListingGroupFilterDimension_ProductType) GetValue() string { @@ -770,7 +770,7 @@ type ListingGroupFilterDimension_Webpage struct { func (x *ListingGroupFilterDimension_Webpage) Reset() { *x = ListingGroupFilterDimension_Webpage{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -782,7 +782,7 @@ func (x *ListingGroupFilterDimension_Webpage) String() string { func (*ListingGroupFilterDimension_Webpage) ProtoMessage() {} func (x *ListingGroupFilterDimension_Webpage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -795,7 +795,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 7} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 7} } func (x *ListingGroupFilterDimension_Webpage) GetConditions() []*ListingGroupFilterDimension_WebpageCondition { @@ -821,7 +821,7 @@ type ListingGroupFilterDimension_WebpageCondition struct { func (x *ListingGroupFilterDimension_WebpageCondition) Reset() { *x = ListingGroupFilterDimension_WebpageCondition{} - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -833,7 +833,7 @@ func (x *ListingGroupFilterDimension_WebpageCondition) String() string { func (*ListingGroupFilterDimension_WebpageCondition) ProtoMessage() {} func (x *ListingGroupFilterDimension_WebpageCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -846,7 +846,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_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 8} + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP(), []int{2, 8} } func (x *ListingGroupFilterDimension_WebpageCondition) GetCondition() isListingGroupFilterDimension_WebpageCondition_Condition { @@ -897,47 +897,47 @@ func (*ListingGroupFilterDimension_WebpageCondition_CustomLabel) isListingGroupF func (*ListingGroupFilterDimension_WebpageCondition_UrlContains) isListingGroupFilterDimension_WebpageCondition_Condition() { } -var File_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -961,14 +961,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -977,7 +977,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -991,7 +991,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x32, 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, @@ -1009,7 +1009,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1018,14 +1018,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1033,7 +1033,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1041,7 +1041,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -1049,7 +1049,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1058,21 +1058,21 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1082,7 +1082,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1096,7 +1096,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1106,7 +1106,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1118,7 +1118,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, + 0x32, 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, @@ -1133,7 +1133,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1142,7 +1142,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1156,79 +1156,79 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_goTypes = []any{ - (*AssetGroupListingGroupFilter)(nil), // 0: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - (*ListingGroupFilterDimensionPath)(nil), // 1: google.ads.googleads.v21.resources.ListingGroupFilterDimensionPath - (*ListingGroupFilterDimension)(nil), // 2: google.ads.googleads.v21.resources.ListingGroupFilterDimension - (*ListingGroupFilterDimension_ProductCategory)(nil), // 3: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCategory - (*ListingGroupFilterDimension_ProductBrand)(nil), // 4: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductBrand - (*ListingGroupFilterDimension_ProductChannel)(nil), // 5: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductChannel - (*ListingGroupFilterDimension_ProductCondition)(nil), // 6: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCondition - (*ListingGroupFilterDimension_ProductCustomAttribute)(nil), // 7: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCustomAttribute - (*ListingGroupFilterDimension_ProductItemId)(nil), // 8: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductItemId - (*ListingGroupFilterDimension_ProductType)(nil), // 9: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductType - (*ListingGroupFilterDimension_Webpage)(nil), // 10: google.ads.googleads.v21.resources.ListingGroupFilterDimension.Webpage - (*ListingGroupFilterDimension_WebpageCondition)(nil), // 11: google.ads.googleads.v21.resources.ListingGroupFilterDimension.WebpageCondition - (enums.ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 12: google.ads.googleads.v21.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType - (enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 13: google.ads.googleads.v21.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource - (enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 14: google.ads.googleads.v21.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel - (enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 15: google.ads.googleads.v21.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel - (enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 16: google.ads.googleads.v21.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition - (enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 17: google.ads.googleads.v21.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex - (enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 18: google.ads.googleads.v21.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel -} -var file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_depIdxs = []int32{ - 12, // 0: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter.type:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType - 13, // 1: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter.listing_source:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource - 2, // 2: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter.case_value:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension - 1, // 3: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter.path:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimensionPath - 2, // 4: google.ads.googleads.v21.resources.ListingGroupFilterDimensionPath.dimensions:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension - 3, // 5: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_category:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCategory - 4, // 6: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_brand:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductBrand - 5, // 7: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_channel:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductChannel - 6, // 8: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_condition:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCondition - 7, // 9: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_custom_attribute:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCustomAttribute - 8, // 10: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_item_id:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductItemId - 9, // 11: google.ads.googleads.v21.resources.ListingGroupFilterDimension.product_type:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductType - 10, // 12: google.ads.googleads.v21.resources.ListingGroupFilterDimension.webpage:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.Webpage - 14, // 13: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCategory.level:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel - 15, // 14: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductChannel.channel:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel - 16, // 15: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCondition.condition:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition - 17, // 16: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductCustomAttribute.index:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex - 18, // 17: google.ads.googleads.v21.resources.ListingGroupFilterDimension.ProductType.level:type_name -> google.ads.googleads.v21.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel - 11, // 18: google.ads.googleads.v21.resources.ListingGroupFilterDimension.Webpage.conditions:type_name -> google.ads.googleads.v21.resources.ListingGroupFilterDimension.WebpageCondition + return file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_goTypes = []any{ + (*AssetGroupListingGroupFilter)(nil), // 0: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + (*ListingGroupFilterDimensionPath)(nil), // 1: google.ads.googleads.v22.resources.ListingGroupFilterDimensionPath + (*ListingGroupFilterDimension)(nil), // 2: google.ads.googleads.v22.resources.ListingGroupFilterDimension + (*ListingGroupFilterDimension_ProductCategory)(nil), // 3: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCategory + (*ListingGroupFilterDimension_ProductBrand)(nil), // 4: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductBrand + (*ListingGroupFilterDimension_ProductChannel)(nil), // 5: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductChannel + (*ListingGroupFilterDimension_ProductCondition)(nil), // 6: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCondition + (*ListingGroupFilterDimension_ProductCustomAttribute)(nil), // 7: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCustomAttribute + (*ListingGroupFilterDimension_ProductItemId)(nil), // 8: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductItemId + (*ListingGroupFilterDimension_ProductType)(nil), // 9: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductType + (*ListingGroupFilterDimension_Webpage)(nil), // 10: google.ads.googleads.v22.resources.ListingGroupFilterDimension.Webpage + (*ListingGroupFilterDimension_WebpageCondition)(nil), // 11: google.ads.googleads.v22.resources.ListingGroupFilterDimension.WebpageCondition + (enums.ListingGroupFilterTypeEnum_ListingGroupFilterType)(0), // 12: google.ads.googleads.v22.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType + (enums.ListingGroupFilterListingSourceEnum_ListingGroupFilterListingSource)(0), // 13: google.ads.googleads.v22.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource + (enums.ListingGroupFilterProductCategoryLevelEnum_ListingGroupFilterProductCategoryLevel)(0), // 14: google.ads.googleads.v22.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel + (enums.ListingGroupFilterProductChannelEnum_ListingGroupFilterProductChannel)(0), // 15: google.ads.googleads.v22.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel + (enums.ListingGroupFilterProductConditionEnum_ListingGroupFilterProductCondition)(0), // 16: google.ads.googleads.v22.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition + (enums.ListingGroupFilterCustomAttributeIndexEnum_ListingGroupFilterCustomAttributeIndex)(0), // 17: google.ads.googleads.v22.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex + (enums.ListingGroupFilterProductTypeLevelEnum_ListingGroupFilterProductTypeLevel)(0), // 18: google.ads.googleads.v22.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel +} +var file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_depIdxs = []int32{ + 12, // 0: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter.type:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterTypeEnum.ListingGroupFilterType + 13, // 1: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter.listing_source:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterListingSourceEnum.ListingGroupFilterListingSource + 2, // 2: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter.case_value:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension + 1, // 3: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter.path:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimensionPath + 2, // 4: google.ads.googleads.v22.resources.ListingGroupFilterDimensionPath.dimensions:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension + 3, // 5: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_category:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCategory + 4, // 6: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_brand:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductBrand + 5, // 7: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_channel:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductChannel + 6, // 8: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_condition:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCondition + 7, // 9: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_custom_attribute:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCustomAttribute + 8, // 10: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_item_id:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductItemId + 9, // 11: google.ads.googleads.v22.resources.ListingGroupFilterDimension.product_type:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductType + 10, // 12: google.ads.googleads.v22.resources.ListingGroupFilterDimension.webpage:type_name -> google.ads.googleads.v22.resources.ListingGroupFilterDimension.Webpage + 14, // 13: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCategory.level:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterProductCategoryLevelEnum.ListingGroupFilterProductCategoryLevel + 15, // 14: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductChannel.channel:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterProductChannelEnum.ListingGroupFilterProductChannel + 16, // 15: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCondition.condition:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterProductConditionEnum.ListingGroupFilterProductCondition + 17, // 16: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductCustomAttribute.index:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterCustomAttributeIndexEnum.ListingGroupFilterCustomAttributeIndex + 18, // 17: google.ads.googleads.v22.resources.ListingGroupFilterDimension.ProductType.level:type_name -> google.ads.googleads.v22.enums.ListingGroupFilterProductTypeLevelEnum.ListingGroupFilterProductTypeLevel + 11, // 18: google.ads.googleads.v22.resources.ListingGroupFilterDimension.Webpage.conditions:type_name -> google.ads.googleads.v22.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 @@ -1236,12 +1236,12 @@ var file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_pro 0, // [0:19] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto != nil { return } - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[2].OneofWrappers = []any{ (*ListingGroupFilterDimension_ProductCategory_)(nil), (*ListingGroupFilterDimension_ProductBrand_)(nil), (*ListingGroupFilterDimension_ProductChannel_)(nil), @@ -1251,12 +1251,12 @@ func file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_pr (*ListingGroupFilterDimension_ProductType_)(nil), (*ListingGroupFilterDimension_Webpage_)(nil), } - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes[11].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes[11].OneofWrappers = []any{ (*ListingGroupFilterDimension_WebpageCondition_CustomLabel)(nil), (*ListingGroupFilterDimension_WebpageCondition_UrlContains)(nil), } @@ -1264,17 +1264,17 @@ func file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_rawDesc)), NumEnums: 0, NumMessages: 12, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_listing_group_filter_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_listing_group_filter_proto_goTypes = nil + file_google_ads_googleads_v22_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 9bb67d53..395a0962 100644 --- a/resources/asset_group_product_group_view.pb.go +++ b/resources/asset_group_product_group_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group_product_group_view.proto +// source: google/ads/googleads/v22/resources/asset_group_product_group_view.proto package resources @@ -54,7 +54,7 @@ type AssetGroupProductGroupView struct { func (x *AssetGroupProductGroupView) Reset() { *x = AssetGroupProductGroupView{} - mi := &file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *AssetGroupProductGroupView) String() string { func (*AssetGroupProductGroupView) ProtoMessage() {} func (x *AssetGroupProductGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *AssetGroupProductGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupProductGroupView.ProtoReflect.Descriptor instead. func (*AssetGroupProductGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupProductGroupView) GetResourceName() string { @@ -103,16 +103,16 @@ func (x *AssetGroupProductGroupView) GetAssetGroupListingGroupFilter() string { return "" } -var File_google_ads_googleads_v21_resources_asset_group_product_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_product_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -149,42 +149,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_goTypes = []any{ - (*AssetGroupProductGroupView)(nil), // 0: google.ads.googleads.v21.resources.AssetGroupProductGroupView +var file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_goTypes = []any{ + (*AssetGroupProductGroupView)(nil), // 0: google.ads.googleads.v22.resources.AssetGroupProductGroupView } -var file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -192,26 +192,26 @@ var file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_product_group_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_product_group_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_product_group_view_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_product_group_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_product_group_view_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_product_group_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 97b06898..8cd3e59c 100644 --- a/resources/asset_group_signal.pb.go +++ b/resources/asset_group_signal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group_signal.proto +// source: google/ads/googleads/v22/resources/asset_group_signal.proto package resources @@ -54,7 +54,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.v21.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.v22.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"` @@ -71,7 +71,7 @@ type AssetGroupSignal struct { func (x *AssetGroupSignal) Reset() { *x = AssetGroupSignal{} - mi := &file_google_ads_googleads_v21_resources_asset_group_signal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_signal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *AssetGroupSignal) String() string { func (*AssetGroupSignal) ProtoMessage() {} func (x *AssetGroupSignal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_signal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_signal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96,7 +96,7 @@ func (x *AssetGroupSignal) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupSignal.ProtoReflect.Descriptor instead. func (*AssetGroupSignal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupSignal) GetResourceName() string { @@ -181,20 +181,20 @@ func (*AssetGroupSignal_Audience) isAssetGroupSignal_Signal() {} func (*AssetGroupSignal_SearchTheme) isAssetGroupSignal_Signal() {} -var File_google_ads_googleads_v21_resources_asset_group_signal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_signal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -216,7 +216,7 @@ var file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -228,12 +228,12 @@ var file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -246,47 +246,47 @@ var file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_group_signal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_group_signal_proto_goTypes = []any{ - (*AssetGroupSignal)(nil), // 0: google.ads.googleads.v21.resources.AssetGroupSignal - (enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 1: google.ads.googleads.v21.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus - (*common.AudienceInfo)(nil), // 2: google.ads.googleads.v21.common.AudienceInfo - (*common.SearchThemeInfo)(nil), // 3: google.ads.googleads.v21.common.SearchThemeInfo +var file_google_ads_googleads_v22_resources_asset_group_signal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_group_signal_proto_goTypes = []any{ + (*AssetGroupSignal)(nil), // 0: google.ads.googleads.v22.resources.AssetGroupSignal + (enums.AssetGroupSignalApprovalStatusEnum_AssetGroupSignalApprovalStatus)(0), // 1: google.ads.googleads.v22.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus + (*common.AudienceInfo)(nil), // 2: google.ads.googleads.v22.common.AudienceInfo + (*common.SearchThemeInfo)(nil), // 3: google.ads.googleads.v22.common.SearchThemeInfo } -var file_google_ads_googleads_v21_resources_asset_group_signal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetGroupSignal.approval_status:type_name -> google.ads.googleads.v21.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus - 2, // 1: google.ads.googleads.v21.resources.AssetGroupSignal.audience:type_name -> google.ads.googleads.v21.common.AudienceInfo - 3, // 2: google.ads.googleads.v21.resources.AssetGroupSignal.search_theme:type_name -> google.ads.googleads.v21.common.SearchThemeInfo +var file_google_ads_googleads_v22_resources_asset_group_signal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetGroupSignal.approval_status:type_name -> google.ads.googleads.v22.enums.AssetGroupSignalApprovalStatusEnum.AssetGroupSignalApprovalStatus + 2, // 1: google.ads.googleads.v22.resources.AssetGroupSignal.audience:type_name -> google.ads.googleads.v22.common.AudienceInfo + 3, // 2: google.ads.googleads.v22.resources.AssetGroupSignal.search_theme:type_name -> google.ads.googleads.v22.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 @@ -294,12 +294,12 @@ var file_google_ads_googleads_v21_resources_asset_group_signal_proto_depIdxs = [ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_group_signal_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_signal_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_signal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_signal_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_signal_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_signal_proto != nil { return } - file_google_ads_googleads_v21_resources_asset_group_signal_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_group_signal_proto_msgTypes[0].OneofWrappers = []any{ (*AssetGroupSignal_Audience)(nil), (*AssetGroupSignal_SearchTheme)(nil), } @@ -307,17 +307,17 @@ func file_google_ads_googleads_v21_resources_asset_group_signal_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_signal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_signal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_signal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_signal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_signal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_signal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_signal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_signal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_signal_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_signal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_signal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_signal_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_signal_proto_goTypes = nil + file_google_ads_googleads_v22_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 97288d34..4e8e7a0c 100644 --- a/resources/asset_group_top_combination_view.pb.go +++ b/resources/asset_group_top_combination_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_group_top_combination_view.proto +// source: google/ads/googleads/v22/resources/asset_group_top_combination_view.proto package resources @@ -52,7 +52,7 @@ type AssetGroupTopCombinationView struct { func (x *AssetGroupTopCombinationView) Reset() { *x = AssetGroupTopCombinationView{} - mi := &file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *AssetGroupTopCombinationView) String() string { func (*AssetGroupTopCombinationView) ProtoMessage() {} func (x *AssetGroupTopCombinationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *AssetGroupTopCombinationView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupTopCombinationView.ProtoReflect.Descriptor instead. func (*AssetGroupTopCombinationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{0} } func (x *AssetGroupTopCombinationView) GetResourceName() string { @@ -105,7 +105,7 @@ type AssetGroupAssetCombinationData struct { func (x *AssetGroupAssetCombinationData) Reset() { *x = AssetGroupAssetCombinationData{} - mi := &file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *AssetGroupAssetCombinationData) String() string { func (*AssetGroupAssetCombinationData) ProtoMessage() {} func (x *AssetGroupAssetCombinationData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,7 +130,7 @@ func (x *AssetGroupAssetCombinationData) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAssetCombinationData.ProtoReflect.Descriptor instead. func (*AssetGroupAssetCombinationData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupAssetCombinationData) GetAssetCombinationServedAssets() []*common.AssetUsage { @@ -140,18 +140,18 @@ func (x *AssetGroupAssetCombinationData) GetAssetCombinationServedAssets() []*co return nil } -var File_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -169,7 +169,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -190,51 +190,51 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_goTypes = []any{ - (*AssetGroupTopCombinationView)(nil), // 0: google.ads.googleads.v21.resources.AssetGroupTopCombinationView - (*AssetGroupAssetCombinationData)(nil), // 1: google.ads.googleads.v21.resources.AssetGroupAssetCombinationData - (*common.AssetUsage)(nil), // 2: google.ads.googleads.v21.common.AssetUsage +var file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_goTypes = []any{ + (*AssetGroupTopCombinationView)(nil), // 0: google.ads.googleads.v22.resources.AssetGroupTopCombinationView + (*AssetGroupAssetCombinationData)(nil), // 1: google.ads.googleads.v22.resources.AssetGroupAssetCombinationData + (*common.AssetUsage)(nil), // 2: google.ads.googleads.v22.common.AssetUsage } -var file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetGroupTopCombinationView.asset_group_top_combinations:type_name -> google.ads.googleads.v21.resources.AssetGroupAssetCombinationData - 2, // 1: google.ads.googleads.v21.resources.AssetGroupAssetCombinationData.asset_combination_served_assets:type_name -> google.ads.googleads.v21.common.AssetUsage +var file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetGroupTopCombinationView.asset_group_top_combinations:type_name -> google.ads.googleads.v22.resources.AssetGroupAssetCombinationData + 2, // 1: google.ads.googleads.v22.resources.AssetGroupAssetCombinationData.asset_combination_served_assets:type_name -> google.ads.googleads.v22.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 @@ -242,26 +242,26 @@ var file_google_ads_googleads_v21_resources_asset_group_top_combination_view_pro 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_init() } -func file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_init() { - if File_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_init() } +func file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_init() { + if File_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto = out.File - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_group_top_combination_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto = out.File + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_group_top_combination_view_proto_depIdxs = nil } diff --git a/resources/asset_set.pb.go b/resources/asset_set.pb.go index 4d6be6db..e92f0a4f 100644 --- a/resources/asset_set.pb.go +++ b/resources/asset_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_set.proto +// source: google/ads/googleads/v22/resources/asset_set.proto package resources @@ -53,15 +53,15 @@ 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.v21.enums.AssetSetTypeEnum_AssetSetType" json:"type,omitempty"` + Type enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetSetStatusEnum_AssetSetStatus" json:"status,omitempty"` + Status enums.AssetSetStatusEnum_AssetSetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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 + // Immutable. Parent asset set ID for the asset set where the elements of this // asset set come from. For example: the sync level location AssetSet id where - // the the elements in LocationGroup AssetSet come from. This field is - // required and only applicable for Location Group typed AssetSet. + // the elements in LocationGroup AssetSet come from. This field is required + // and only applicable for Location Group typed AssetSet. LocationGroupParentAssetSetId int64 `protobuf:"varint,10,opt,name=location_group_parent_asset_set_id,json=locationGroupParentAssetSetId,proto3" json:"location_group_parent_asset_set_id,omitempty"` // Output only. For Performance Max for travel goals campaigns with a Hotel // Center account link. Read-only. @@ -81,7 +81,7 @@ type AssetSet struct { func (x *AssetSet) Reset() { *x = AssetSet{} - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93,7 +93,7 @@ func (x *AssetSet) String() string { func (*AssetSet) ProtoMessage() {} func (x *AssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106,7 +106,7 @@ func (x *AssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSet.ProtoReflect.Descriptor instead. func (*AssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_set_proto_rawDescGZIP(), []int{0} } func (x *AssetSet) GetId() int64 { @@ -240,7 +240,7 @@ type AssetSet_MerchantCenterFeed struct { func (x *AssetSet_MerchantCenterFeed) Reset() { *x = AssetSet_MerchantCenterFeed{} - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -252,7 +252,7 @@ func (x *AssetSet_MerchantCenterFeed) String() string { func (*AssetSet_MerchantCenterFeed) ProtoMessage() {} func (x *AssetSet_MerchantCenterFeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -265,7 +265,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_v21_resources_asset_set_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_asset_set_proto_rawDescGZIP(), []int{0, 0} } func (x *AssetSet_MerchantCenterFeed) GetMerchantId() int64 { @@ -296,7 +296,7 @@ type AssetSet_HotelPropertyData struct { func (x *AssetSet_HotelPropertyData) Reset() { *x = AssetSet_HotelPropertyData{} - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -308,7 +308,7 @@ func (x *AssetSet_HotelPropertyData) String() string { func (*AssetSet_HotelPropertyData) ProtoMessage() {} func (x *AssetSet_HotelPropertyData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -321,7 +321,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_v21_resources_asset_set_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_asset_set_proto_rawDescGZIP(), []int{0, 1} } func (x *AssetSet_HotelPropertyData) GetHotelCenterId() int64 { @@ -338,23 +338,23 @@ func (x *AssetSet_HotelPropertyData) GetPartnerName() string { return "" } -var File_google_ads_googleads_v21_resources_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -371,20 +371,20 @@ var file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -396,20 +396,20 @@ var file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -417,7 +417,7 @@ var file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,54 +446,54 @@ var file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_set_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_asset_set_proto_goTypes = []any{ - (*AssetSet)(nil), // 0: google.ads.googleads.v21.resources.AssetSet - (*AssetSet_MerchantCenterFeed)(nil), // 1: google.ads.googleads.v21.resources.AssetSet.MerchantCenterFeed - (*AssetSet_HotelPropertyData)(nil), // 2: google.ads.googleads.v21.resources.AssetSet.HotelPropertyData - (enums.AssetSetTypeEnum_AssetSetType)(0), // 3: google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - (enums.AssetSetStatusEnum_AssetSetStatus)(0), // 4: google.ads.googleads.v21.enums.AssetSetStatusEnum.AssetSetStatus - (*common.LocationSet)(nil), // 5: google.ads.googleads.v21.common.LocationSet - (*common.BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v21.common.BusinessProfileLocationGroup - (*common.ChainLocationGroup)(nil), // 7: google.ads.googleads.v21.common.ChainLocationGroup -} -var file_google_ads_googleads_v21_resources_asset_set_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.resources.AssetSet.type:type_name -> google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - 4, // 1: google.ads.googleads.v21.resources.AssetSet.status:type_name -> google.ads.googleads.v21.enums.AssetSetStatusEnum.AssetSetStatus - 1, // 2: google.ads.googleads.v21.resources.AssetSet.merchant_center_feed:type_name -> google.ads.googleads.v21.resources.AssetSet.MerchantCenterFeed - 2, // 3: google.ads.googleads.v21.resources.AssetSet.hotel_property_data:type_name -> google.ads.googleads.v21.resources.AssetSet.HotelPropertyData - 5, // 4: google.ads.googleads.v21.resources.AssetSet.location_set:type_name -> google.ads.googleads.v21.common.LocationSet - 6, // 5: google.ads.googleads.v21.resources.AssetSet.business_profile_location_group:type_name -> google.ads.googleads.v21.common.BusinessProfileLocationGroup - 7, // 6: google.ads.googleads.v21.resources.AssetSet.chain_location_group:type_name -> google.ads.googleads.v21.common.ChainLocationGroup + return file_google_ads_googleads_v22_resources_asset_set_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_asset_set_proto_goTypes = []any{ + (*AssetSet)(nil), // 0: google.ads.googleads.v22.resources.AssetSet + (*AssetSet_MerchantCenterFeed)(nil), // 1: google.ads.googleads.v22.resources.AssetSet.MerchantCenterFeed + (*AssetSet_HotelPropertyData)(nil), // 2: google.ads.googleads.v22.resources.AssetSet.HotelPropertyData + (enums.AssetSetTypeEnum_AssetSetType)(0), // 3: google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + (enums.AssetSetStatusEnum_AssetSetStatus)(0), // 4: google.ads.googleads.v22.enums.AssetSetStatusEnum.AssetSetStatus + (*common.LocationSet)(nil), // 5: google.ads.googleads.v22.common.LocationSet + (*common.BusinessProfileLocationGroup)(nil), // 6: google.ads.googleads.v22.common.BusinessProfileLocationGroup + (*common.ChainLocationGroup)(nil), // 7: google.ads.googleads.v22.common.ChainLocationGroup +} +var file_google_ads_googleads_v22_resources_asset_set_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.resources.AssetSet.type:type_name -> google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + 4, // 1: google.ads.googleads.v22.resources.AssetSet.status:type_name -> google.ads.googleads.v22.enums.AssetSetStatusEnum.AssetSetStatus + 1, // 2: google.ads.googleads.v22.resources.AssetSet.merchant_center_feed:type_name -> google.ads.googleads.v22.resources.AssetSet.MerchantCenterFeed + 2, // 3: google.ads.googleads.v22.resources.AssetSet.hotel_property_data:type_name -> google.ads.googleads.v22.resources.AssetSet.HotelPropertyData + 5, // 4: google.ads.googleads.v22.resources.AssetSet.location_set:type_name -> google.ads.googleads.v22.common.LocationSet + 6, // 5: google.ads.googleads.v22.resources.AssetSet.business_profile_location_group:type_name -> google.ads.googleads.v22.common.BusinessProfileLocationGroup + 7, // 6: google.ads.googleads.v22.resources.AssetSet.chain_location_group:type_name -> google.ads.googleads.v22.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 @@ -501,33 +501,33 @@ var file_google_ads_googleads_v21_resources_asset_set_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_set_proto_init() } -func file_google_ads_googleads_v21_resources_asset_set_proto_init() { - if File_google_ads_googleads_v21_resources_asset_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_set_proto_init() } +func file_google_ads_googleads_v22_resources_asset_set_proto_init() { + if File_google_ads_googleads_v22_resources_asset_set_proto != nil { return } - file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[0].OneofWrappers = []any{ (*AssetSet_LocationSet)(nil), (*AssetSet_BusinessProfileLocationGroup)(nil), (*AssetSet_ChainLocationGroup)(nil), } - file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_set_proto = out.File - file_google_ads_googleads_v21_resources_asset_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_set_proto = out.File + file_google_ads_googleads_v22_resources_asset_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_set_proto_depIdxs = nil } diff --git a/resources/asset_set_asset.pb.go b/resources/asset_set_asset.pb.go index 48769e4d..b4c78687 100644 --- a/resources/asset_set_asset.pb.go +++ b/resources/asset_set_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_set_asset.proto +// source: google/ads/googleads/v22/resources/asset_set_asset.proto package resources @@ -51,14 +51,14 @@ 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.v21.enums.AssetSetAssetStatusEnum_AssetSetAssetStatus" json:"status,omitempty"` + Status enums.AssetSetAssetStatusEnum_AssetSetAssetStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetSetAssetStatusEnum_AssetSetAssetStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetSetAsset) Reset() { *x = AssetSetAsset{} - mi := &file_google_ads_googleads_v21_resources_asset_set_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *AssetSetAsset) String() string { func (*AssetSetAsset) ProtoMessage() {} func (x *AssetSetAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_set_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *AssetSetAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAsset.ProtoReflect.Descriptor instead. func (*AssetSetAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescGZIP(), []int{0} } func (x *AssetSetAsset) GetResourceName() string { @@ -114,17 +114,17 @@ func (x *AssetSetAsset) GetStatus() enums.AssetSetAssetStatusEnum_AssetSetAssetS return enums.AssetSetAssetStatusEnum_AssetSetAssetStatus(0) } -var File_google_ads_googleads_v21_resources_asset_set_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_set_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3b, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -147,7 +147,7 @@ var file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,43 +160,43 @@ var file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_set_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_set_asset_proto_goTypes = []any{ - (*AssetSetAsset)(nil), // 0: google.ads.googleads.v21.resources.AssetSetAsset - (enums.AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 1: google.ads.googleads.v21.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus +var file_google_ads_googleads_v22_resources_asset_set_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_set_asset_proto_goTypes = []any{ + (*AssetSetAsset)(nil), // 0: google.ads.googleads.v22.resources.AssetSetAsset + (enums.AssetSetAssetStatusEnum_AssetSetAssetStatus)(0), // 1: google.ads.googleads.v22.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus } -var file_google_ads_googleads_v21_resources_asset_set_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetSetAsset.status:type_name -> google.ads.googleads.v21.enums.AssetSetAssetStatusEnum.AssetSetAssetStatus +var file_google_ads_googleads_v22_resources_asset_set_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetSetAsset.status:type_name -> google.ads.googleads.v22.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 @@ -204,26 +204,26 @@ var file_google_ads_googleads_v21_resources_asset_set_asset_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_set_asset_proto_init() } -func file_google_ads_googleads_v21_resources_asset_set_asset_proto_init() { - if File_google_ads_googleads_v21_resources_asset_set_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_set_asset_proto_init() } +func file_google_ads_googleads_v22_resources_asset_set_asset_proto_init() { + if File_google_ads_googleads_v22_resources_asset_set_asset_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_set_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_set_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_set_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_set_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_set_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_set_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_set_asset_proto = out.File - file_google_ads_googleads_v21_resources_asset_set_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_set_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_set_asset_proto = out.File + file_google_ads_googleads_v22_resources_asset_set_asset_proto_goTypes = nil + file_google_ads_googleads_v22_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 a01e3eb2..2fe1fdbb 100644 --- a/resources/asset_set_type_view.pb.go +++ b/resources/asset_set_type_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/asset_set_type_view.proto +// source: google/ads/googleads/v22/resources/asset_set_type_view.proto package resources @@ -49,14 +49,14 @@ 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.v21.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.v22.enums.AssetSetTypeEnum_AssetSetType" json:"asset_set_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetSetTypeView) Reset() { *x = AssetSetTypeView{} - mi := &file_google_ads_googleads_v21_resources_asset_set_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_type_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *AssetSetTypeView) String() string { func (*AssetSetTypeView) ProtoMessage() {} func (x *AssetSetTypeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_asset_set_type_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_asset_set_type_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *AssetSetTypeView) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetTypeView.ProtoReflect.Descriptor instead. func (*AssetSetTypeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescGZIP(), []int{0} } func (x *AssetSetTypeView) GetResourceName() string { @@ -98,17 +98,17 @@ func (x *AssetSetTypeView) GetAssetSetType() enums.AssetSetTypeEnum_AssetSetType return enums.AssetSetTypeEnum_AssetSetType(0) } -var File_google_ads_googleads_v21_resources_asset_set_type_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_asset_set_type_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -124,7 +124,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x76, 0x32, 0x32, 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, @@ -136,43 +136,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_asset_set_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_asset_set_type_view_proto_goTypes = []any{ - (*AssetSetTypeView)(nil), // 0: google.ads.googleads.v21.resources.AssetSetTypeView - (enums.AssetSetTypeEnum_AssetSetType)(0), // 1: google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType +var file_google_ads_googleads_v22_resources_asset_set_type_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_asset_set_type_view_proto_goTypes = []any{ + (*AssetSetTypeView)(nil), // 0: google.ads.googleads.v22.resources.AssetSetTypeView + (enums.AssetSetTypeEnum_AssetSetType)(0), // 1: google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType } -var file_google_ads_googleads_v21_resources_asset_set_type_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.AssetSetTypeView.asset_set_type:type_name -> google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType +var file_google_ads_googleads_v22_resources_asset_set_type_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.AssetSetTypeView.asset_set_type:type_name -> google.ads.googleads.v22.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 @@ -180,26 +180,26 @@ var file_google_ads_googleads_v21_resources_asset_set_type_view_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_asset_set_type_view_proto_init() } -func file_google_ads_googleads_v21_resources_asset_set_type_view_proto_init() { - if File_google_ads_googleads_v21_resources_asset_set_type_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_asset_set_type_view_proto_init() } +func file_google_ads_googleads_v22_resources_asset_set_type_view_proto_init() { + if File_google_ads_googleads_v22_resources_asset_set_type_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_asset_set_type_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_asset_set_type_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_asset_set_type_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_asset_set_type_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_asset_set_type_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_asset_set_type_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_asset_set_type_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_asset_set_type_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_asset_set_type_view_proto = out.File - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_asset_set_type_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_asset_set_type_view_proto = out.File + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_asset_set_type_view_proto_depIdxs = nil } diff --git a/resources/audience.pb.go b/resources/audience.pb.go index fb5d022b..831a4f71 100644 --- a/resources/audience.pb.go +++ b/resources/audience.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/audience.proto +// source: google/ads/googleads/v22/resources/audience.proto package resources @@ -53,7 +53,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.v21.enums.AudienceStatusEnum_AudienceStatus" json:"status,omitempty"` + Status enums.AudienceStatusEnum_AudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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 @@ -69,7 +69,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.v21.enums.AudienceScopeEnum_AudienceScope" json:"scope,omitempty"` + Scope enums.AudienceScopeEnum_AudienceScope `protobuf:"varint,8,opt,name=scope,proto3,enum=google.ads.googleads.v22.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 @@ -81,7 +81,7 @@ type Audience struct { func (x *Audience) Reset() { *x = Audience{} - mi := &file_google_ads_googleads_v21_resources_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93,7 +93,7 @@ func (x *Audience) String() string { func (*Audience) ProtoMessage() {} func (x *Audience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_audience_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106,7 +106,7 @@ func (x *Audience) ProtoReflect() protoreflect.Message { // Deprecated: Use Audience.ProtoReflect.Descriptor instead. func (*Audience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_audience_proto_rawDescGZIP(), []int{0} } func (x *Audience) GetResourceName() string { @@ -172,23 +172,23 @@ func (x *Audience) GetAssetGroup() string { return "" } -var File_google_ads_googleads_v21_resources_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_audience_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_audience_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x75, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -203,7 +203,7 @@ var file_google_ads_googleads_v21_resources_audience_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -213,19 +213,19 @@ var file_google_ads_googleads_v21_resources_audience_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -241,48 +241,48 @@ var file_google_ads_googleads_v21_resources_audience_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_audience_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_audience_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_audience_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_audience_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_audience_proto_rawDescData + return file_google_ads_googleads_v22_resources_audience_proto_rawDescData } -var file_google_ads_googleads_v21_resources_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_audience_proto_goTypes = []any{ - (*Audience)(nil), // 0: google.ads.googleads.v21.resources.Audience - (enums.AudienceStatusEnum_AudienceStatus)(0), // 1: google.ads.googleads.v21.enums.AudienceStatusEnum.AudienceStatus - (*common.AudienceDimension)(nil), // 2: google.ads.googleads.v21.common.AudienceDimension - (*common.AudienceExclusionDimension)(nil), // 3: google.ads.googleads.v21.common.AudienceExclusionDimension - (enums.AudienceScopeEnum_AudienceScope)(0), // 4: google.ads.googleads.v21.enums.AudienceScopeEnum.AudienceScope +var file_google_ads_googleads_v22_resources_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_audience_proto_goTypes = []any{ + (*Audience)(nil), // 0: google.ads.googleads.v22.resources.Audience + (enums.AudienceStatusEnum_AudienceStatus)(0), // 1: google.ads.googleads.v22.enums.AudienceStatusEnum.AudienceStatus + (*common.AudienceDimension)(nil), // 2: google.ads.googleads.v22.common.AudienceDimension + (*common.AudienceExclusionDimension)(nil), // 3: google.ads.googleads.v22.common.AudienceExclusionDimension + (enums.AudienceScopeEnum_AudienceScope)(0), // 4: google.ads.googleads.v22.enums.AudienceScopeEnum.AudienceScope } -var file_google_ads_googleads_v21_resources_audience_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.Audience.status:type_name -> google.ads.googleads.v21.enums.AudienceStatusEnum.AudienceStatus - 2, // 1: google.ads.googleads.v21.resources.Audience.dimensions:type_name -> google.ads.googleads.v21.common.AudienceDimension - 3, // 2: google.ads.googleads.v21.resources.Audience.exclusion_dimension:type_name -> google.ads.googleads.v21.common.AudienceExclusionDimension - 4, // 3: google.ads.googleads.v21.resources.Audience.scope:type_name -> google.ads.googleads.v21.enums.AudienceScopeEnum.AudienceScope +var file_google_ads_googleads_v22_resources_audience_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Audience.status:type_name -> google.ads.googleads.v22.enums.AudienceStatusEnum.AudienceStatus + 2, // 1: google.ads.googleads.v22.resources.Audience.dimensions:type_name -> google.ads.googleads.v22.common.AudienceDimension + 3, // 2: google.ads.googleads.v22.resources.Audience.exclusion_dimension:type_name -> google.ads.googleads.v22.common.AudienceExclusionDimension + 4, // 3: google.ads.googleads.v22.resources.Audience.scope:type_name -> google.ads.googleads.v22.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 @@ -290,27 +290,27 @@ var file_google_ads_googleads_v21_resources_audience_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_audience_proto_init() } -func file_google_ads_googleads_v21_resources_audience_proto_init() { - if File_google_ads_googleads_v21_resources_audience_proto != nil { +func init() { file_google_ads_googleads_v22_resources_audience_proto_init() } +func file_google_ads_googleads_v22_resources_audience_proto_init() { + if File_google_ads_googleads_v22_resources_audience_proto != nil { return } - file_google_ads_googleads_v21_resources_audience_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_audience_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_audience_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_audience_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_audience_proto = out.File - file_google_ads_googleads_v21_resources_audience_proto_goTypes = nil - file_google_ads_googleads_v21_resources_audience_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_audience_proto = out.File + file_google_ads_googleads_v22_resources_audience_proto_goTypes = nil + file_google_ads_googleads_v22_resources_audience_proto_depIdxs = nil } diff --git a/resources/batch_job.pb.go b/resources/batch_job.pb.go index 5ffad01e..347ef0cb 100644 --- a/resources/batch_job.pb.go +++ b/resources/batch_job.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/batch_job.proto +// source: google/ads/googleads/v22/resources/batch_job.proto package resources @@ -55,7 +55,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.v21.enums.BatchJobStatusEnum_BatchJobStatus" json:"status,omitempty"` + Status enums.BatchJobStatusEnum_BatchJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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. @@ -66,7 +66,7 @@ type BatchJob struct { func (x *BatchJob) Reset() { *x = BatchJob{} - mi := &file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *BatchJob) String() string { func (*BatchJob) ProtoMessage() {} func (x *BatchJob) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *BatchJob) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJob.ProtoReflect.Descriptor instead. func (*BatchJob) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_batch_job_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_batch_job_proto_rawDescGZIP(), []int{0} } func (x *BatchJob) GetResourceName() string { @@ -167,7 +167,7 @@ type BatchJob_BatchJobMetadata struct { func (x *BatchJob_BatchJobMetadata) Reset() { *x = BatchJob_BatchJobMetadata{} - mi := &file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -179,7 +179,7 @@ func (x *BatchJob_BatchJobMetadata) String() string { func (*BatchJob_BatchJobMetadata) ProtoMessage() {} func (x *BatchJob_BatchJobMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -192,7 +192,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_v21_resources_batch_job_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_batch_job_proto_rawDescGZIP(), []int{0, 0} } func (x *BatchJob_BatchJobMetadata) GetCreationDateTime() string { @@ -244,17 +244,17 @@ func (x *BatchJob_BatchJobMetadata) GetExecutionLimitSeconds() int32 { return 0 } -var File_google_ads_googleads_v21_resources_batch_job_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_batch_job_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_batch_job_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x61, 0x74, 0x63, 0x68, 0x5f, 0x6a, + 0x32, 0x32, 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, @@ -273,13 +273,13 @@ var file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc = string([]b 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -337,45 +337,45 @@ var file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_batch_job_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_batch_job_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_batch_job_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_batch_job_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_batch_job_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_batch_job_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_batch_job_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc), len(file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_batch_job_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_batch_job_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_batch_job_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_batch_job_proto_rawDesc), len(file_google_ads_googleads_v22_resources_batch_job_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_batch_job_proto_rawDescData + return file_google_ads_googleads_v22_resources_batch_job_proto_rawDescData } -var file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_batch_job_proto_goTypes = []any{ - (*BatchJob)(nil), // 0: google.ads.googleads.v21.resources.BatchJob - (*BatchJob_BatchJobMetadata)(nil), // 1: google.ads.googleads.v21.resources.BatchJob.BatchJobMetadata - (enums.BatchJobStatusEnum_BatchJobStatus)(0), // 2: google.ads.googleads.v21.enums.BatchJobStatusEnum.BatchJobStatus +var file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_batch_job_proto_goTypes = []any{ + (*BatchJob)(nil), // 0: google.ads.googleads.v22.resources.BatchJob + (*BatchJob_BatchJobMetadata)(nil), // 1: google.ads.googleads.v22.resources.BatchJob.BatchJobMetadata + (enums.BatchJobStatusEnum_BatchJobStatus)(0), // 2: google.ads.googleads.v22.enums.BatchJobStatusEnum.BatchJobStatus } -var file_google_ads_googleads_v21_resources_batch_job_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.BatchJob.metadata:type_name -> google.ads.googleads.v21.resources.BatchJob.BatchJobMetadata - 2, // 1: google.ads.googleads.v21.resources.BatchJob.status:type_name -> google.ads.googleads.v21.enums.BatchJobStatusEnum.BatchJobStatus +var file_google_ads_googleads_v22_resources_batch_job_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.BatchJob.metadata:type_name -> google.ads.googleads.v22.resources.BatchJob.BatchJobMetadata + 2, // 1: google.ads.googleads.v22.resources.BatchJob.status:type_name -> google.ads.googleads.v22.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 @@ -383,28 +383,28 @@ var file_google_ads_googleads_v21_resources_batch_job_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_batch_job_proto_init() } -func file_google_ads_googleads_v21_resources_batch_job_proto_init() { - if File_google_ads_googleads_v21_resources_batch_job_proto != nil { +func init() { file_google_ads_googleads_v22_resources_batch_job_proto_init() } +func file_google_ads_googleads_v22_resources_batch_job_proto_init() { + if File_google_ads_googleads_v22_resources_batch_job_proto != nil { return } - file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc), len(file_google_ads_googleads_v21_resources_batch_job_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_batch_job_proto_rawDesc), len(file_google_ads_googleads_v22_resources_batch_job_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_batch_job_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_batch_job_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_batch_job_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_batch_job_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_batch_job_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_batch_job_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_batch_job_proto = out.File - file_google_ads_googleads_v21_resources_batch_job_proto_goTypes = nil - file_google_ads_googleads_v21_resources_batch_job_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_batch_job_proto = out.File + file_google_ads_googleads_v22_resources_batch_job_proto_goTypes = nil + file_google_ads_googleads_v22_resources_batch_job_proto_depIdxs = nil } diff --git a/resources/bidding_data_exclusion.pb.go b/resources/bidding_data_exclusion.pb.go index d880eb79..29ac0ef1 100644 --- a/resources/bidding_data_exclusion.pb.go +++ b/resources/bidding_data_exclusion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/bidding_data_exclusion.proto +// source: google/ads/googleads/v22/resources/bidding_data_exclusion.proto package resources @@ -52,9 +52,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.v21.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` + Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v22.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.v21.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` + Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` // Required. The inclusive start time of the data exclusion in yyyy-MM-dd // HH:mm:ss format. // @@ -76,7 +76,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.v21.enums.DeviceEnum_Device" json:"devices,omitempty"` + Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v22.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. @@ -89,14 +89,14 @@ 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.v21.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.v22.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BiddingDataExclusion) Reset() { *x = BiddingDataExclusion{} - mi := &file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108,7 +108,7 @@ func (x *BiddingDataExclusion) String() string { func (*BiddingDataExclusion) ProtoMessage() {} func (x *BiddingDataExclusion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121,7 +121,7 @@ func (x *BiddingDataExclusion) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingDataExclusion.ProtoReflect.Descriptor instead. func (*BiddingDataExclusion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescGZIP(), []int{0} } func (x *BiddingDataExclusion) GetResourceName() string { @@ -201,28 +201,28 @@ func (x *BiddingDataExclusion) GetAdvertisingChannelTypes() []enums.AdvertisingC return nil } -var File_google_ads_googleads_v21_resources_bidding_data_exclusion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_bidding_data_exclusion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -241,14 +241,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x32, 0x32, 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, @@ -263,7 +263,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -274,7 +274,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x76, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -289,49 +289,49 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x42, 0x69, 0x64, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDescData + return file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDescData } -var file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_goTypes = []any{ - (*BiddingDataExclusion)(nil), // 0: google.ads.googleads.v21.resources.BiddingDataExclusion - (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v21.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v21.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v21.enums.DeviceEnum.Device - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_goTypes = []any{ + (*BiddingDataExclusion)(nil), // 0: google.ads.googleads.v22.resources.BiddingDataExclusion + (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v22.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v22.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v22.enums.DeviceEnum.Device + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType } -var file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.BiddingDataExclusion.scope:type_name -> google.ads.googleads.v21.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - 2, // 1: google.ads.googleads.v21.resources.BiddingDataExclusion.status:type_name -> google.ads.googleads.v21.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - 3, // 2: google.ads.googleads.v21.resources.BiddingDataExclusion.devices:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 4, // 3: google.ads.googleads.v21.resources.BiddingDataExclusion.advertising_channel_types:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.BiddingDataExclusion.scope:type_name -> google.ads.googleads.v22.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + 2, // 1: google.ads.googleads.v22.resources.BiddingDataExclusion.status:type_name -> google.ads.googleads.v22.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + 3, // 2: google.ads.googleads.v22.resources.BiddingDataExclusion.devices:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 4, // 3: google.ads.googleads.v22.resources.BiddingDataExclusion.advertising_channel_types:type_name -> google.ads.googleads.v22.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 @@ -339,26 +339,26 @@ var file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_init() } -func file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_init() { - if File_google_ads_googleads_v21_resources_bidding_data_exclusion_proto != nil { +func init() { file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_init() } +func file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_init() { + if File_google_ads_googleads_v22_resources_bidding_data_exclusion_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_bidding_data_exclusion_proto = out.File - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_goTypes = nil - file_google_ads_googleads_v21_resources_bidding_data_exclusion_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_bidding_data_exclusion_proto = out.File + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_goTypes = nil + file_google_ads_googleads_v22_resources_bidding_data_exclusion_proto_depIdxs = nil } diff --git a/resources/bidding_seasonality_adjustment.pb.go b/resources/bidding_seasonality_adjustment.pb.go index c904425a..c530f789 100644 --- a/resources/bidding_seasonality_adjustment.pb.go +++ b/resources/bidding_seasonality_adjustment.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/bidding_seasonality_adjustment.proto +// source: google/ads/googleads/v22/resources/bidding_seasonality_adjustment.proto package resources @@ -52,9 +52,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.v21.enums.SeasonalityEventScopeEnum_SeasonalityEventScope" json:"scope,omitempty"` + Scope enums.SeasonalityEventScopeEnum_SeasonalityEventScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v22.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.v21.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` + Status enums.SeasonalityEventStatusEnum_SeasonalityEventStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.SeasonalityEventStatusEnum_SeasonalityEventStatus" json:"status,omitempty"` // Required. The inclusive start time of the seasonality adjustment in // yyyy-MM-dd HH:mm:ss format. // @@ -76,7 +76,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.v21.enums.DeviceEnum_Device" json:"devices,omitempty"` + Devices []enums.DeviceEnum_Device `protobuf:"varint,9,rep,packed,name=devices,proto3,enum=google.ads.googleads.v22.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. @@ -93,14 +93,14 @@ 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.v21.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.v22.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BiddingSeasonalityAdjustment) Reset() { *x = BiddingSeasonalityAdjustment{} - mi := &file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -112,7 +112,7 @@ func (x *BiddingSeasonalityAdjustment) String() string { func (*BiddingSeasonalityAdjustment) ProtoMessage() {} func (x *BiddingSeasonalityAdjustment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -125,7 +125,7 @@ func (x *BiddingSeasonalityAdjustment) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingSeasonalityAdjustment.ProtoReflect.Descriptor instead. func (*BiddingSeasonalityAdjustment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescGZIP(), []int{0} } func (x *BiddingSeasonalityAdjustment) GetResourceName() string { @@ -212,29 +212,29 @@ func (x *BiddingSeasonalityAdjustment) GetAdvertisingChannelTypes() []enums.Adve return nil } -var File_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3d, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x65, 0x76, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, 0x6c, + 0x32, 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, @@ -255,13 +255,13 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -277,7 +277,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -291,7 +291,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -307,50 +307,50 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDescData + return file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDescData } -var file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_goTypes = []any{ - (*BiddingSeasonalityAdjustment)(nil), // 0: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v21.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v21.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v21.enums.DeviceEnum.Device - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_goTypes = []any{ + (*BiddingSeasonalityAdjustment)(nil), // 0: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + (enums.SeasonalityEventScopeEnum_SeasonalityEventScope)(0), // 1: google.ads.googleads.v22.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + (enums.SeasonalityEventStatusEnum_SeasonalityEventStatus)(0), // 2: google.ads.googleads.v22.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + (enums.DeviceEnum_Device)(0), // 3: google.ads.googleads.v22.enums.DeviceEnum.Device + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 4: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType } -var file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment.scope:type_name -> google.ads.googleads.v21.enums.SeasonalityEventScopeEnum.SeasonalityEventScope - 2, // 1: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment.status:type_name -> google.ads.googleads.v21.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus - 3, // 2: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment.devices:type_name -> google.ads.googleads.v21.enums.DeviceEnum.Device - 4, // 3: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment.advertising_channel_types:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +var file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment.scope:type_name -> google.ads.googleads.v22.enums.SeasonalityEventScopeEnum.SeasonalityEventScope + 2, // 1: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment.status:type_name -> google.ads.googleads.v22.enums.SeasonalityEventStatusEnum.SeasonalityEventStatus + 3, // 2: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment.devices:type_name -> google.ads.googleads.v22.enums.DeviceEnum.Device + 4, // 3: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment.advertising_channel_types:type_name -> google.ads.googleads.v22.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 @@ -358,26 +358,26 @@ var file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_init() } -func file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_init() { - if File_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto != nil { +func init() { file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_init() } +func file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_init() { + if File_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto = out.File - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_goTypes = nil - file_google_ads_googleads_v21_resources_bidding_seasonality_adjustment_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto = out.File + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_goTypes = nil + file_google_ads_googleads_v22_resources_bidding_seasonality_adjustment_proto_depIdxs = nil } diff --git a/resources/bidding_strategy.pb.go b/resources/bidding_strategy.pb.go index 28c4b7fa..2a6b3f8e 100644 --- a/resources/bidding_strategy.pb.go +++ b/resources/bidding_strategy.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/bidding_strategy.proto +// source: google/ads/googleads/v22/resources/bidding_strategy.proto package resources @@ -57,12 +57,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.v21.enums.BiddingStrategyStatusEnum_BiddingStrategyStatus" json:"status,omitempty"` + Status enums.BiddingStrategyStatusEnum_BiddingStrategyStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"` + Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"` // Immutable. The currency used by the bidding strategy (ISO 4217 three-letter // code). // @@ -118,7 +118,7 @@ type BiddingStrategy struct { func (x *BiddingStrategy) Reset() { *x = BiddingStrategy{} - mi := &file_google_ads_googleads_v21_resources_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_strategy_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *BiddingStrategy) String() string { func (*BiddingStrategy) ProtoMessage() {} func (x *BiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_bidding_strategy_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_strategy_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +143,7 @@ func (x *BiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategy.ProtoReflect.Descriptor instead. func (*BiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescGZIP(), []int{0} } func (x *BiddingStrategy) GetResourceName() string { @@ -347,24 +347,24 @@ func (*BiddingStrategy_TargetRoas) isBiddingStrategy_Scheme() {} func (*BiddingStrategy_TargetSpend) isBiddingStrategy_Scheme() {} -var File_google_ads_googleads_v21_resources_bidding_strategy_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_bidding_strategy_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -382,14 +382,14 @@ var file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -414,43 +414,43 @@ var file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -468,59 +468,59 @@ var file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_bidding_strategy_proto_goTypes = []any{ - (*BiddingStrategy)(nil), // 0: google.ads.googleads.v21.resources.BiddingStrategy - (enums.BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 1: google.ads.googleads.v21.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 2: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (*common.EnhancedCpc)(nil), // 3: google.ads.googleads.v21.common.EnhancedCpc - (*common.MaximizeConversionValue)(nil), // 4: google.ads.googleads.v21.common.MaximizeConversionValue - (*common.MaximizeConversions)(nil), // 5: google.ads.googleads.v21.common.MaximizeConversions - (*common.TargetCpa)(nil), // 6: google.ads.googleads.v21.common.TargetCpa - (*common.TargetImpressionShare)(nil), // 7: google.ads.googleads.v21.common.TargetImpressionShare - (*common.TargetRoas)(nil), // 8: google.ads.googleads.v21.common.TargetRoas - (*common.TargetSpend)(nil), // 9: google.ads.googleads.v21.common.TargetSpend -} -var file_google_ads_googleads_v21_resources_bidding_strategy_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.BiddingStrategy.status:type_name -> google.ads.googleads.v21.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus - 2, // 1: google.ads.googleads.v21.resources.BiddingStrategy.type:type_name -> google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 3, // 2: google.ads.googleads.v21.resources.BiddingStrategy.enhanced_cpc:type_name -> google.ads.googleads.v21.common.EnhancedCpc - 4, // 3: google.ads.googleads.v21.resources.BiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v21.common.MaximizeConversionValue - 5, // 4: google.ads.googleads.v21.resources.BiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v21.common.MaximizeConversions - 6, // 5: google.ads.googleads.v21.resources.BiddingStrategy.target_cpa:type_name -> google.ads.googleads.v21.common.TargetCpa - 7, // 6: google.ads.googleads.v21.resources.BiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v21.common.TargetImpressionShare - 8, // 7: google.ads.googleads.v21.resources.BiddingStrategy.target_roas:type_name -> google.ads.googleads.v21.common.TargetRoas - 9, // 8: google.ads.googleads.v21.resources.BiddingStrategy.target_spend:type_name -> google.ads.googleads.v21.common.TargetSpend + return file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_bidding_strategy_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_bidding_strategy_proto_goTypes = []any{ + (*BiddingStrategy)(nil), // 0: google.ads.googleads.v22.resources.BiddingStrategy + (enums.BiddingStrategyStatusEnum_BiddingStrategyStatus)(0), // 1: google.ads.googleads.v22.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 2: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (*common.EnhancedCpc)(nil), // 3: google.ads.googleads.v22.common.EnhancedCpc + (*common.MaximizeConversionValue)(nil), // 4: google.ads.googleads.v22.common.MaximizeConversionValue + (*common.MaximizeConversions)(nil), // 5: google.ads.googleads.v22.common.MaximizeConversions + (*common.TargetCpa)(nil), // 6: google.ads.googleads.v22.common.TargetCpa + (*common.TargetImpressionShare)(nil), // 7: google.ads.googleads.v22.common.TargetImpressionShare + (*common.TargetRoas)(nil), // 8: google.ads.googleads.v22.common.TargetRoas + (*common.TargetSpend)(nil), // 9: google.ads.googleads.v22.common.TargetSpend +} +var file_google_ads_googleads_v22_resources_bidding_strategy_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.BiddingStrategy.status:type_name -> google.ads.googleads.v22.enums.BiddingStrategyStatusEnum.BiddingStrategyStatus + 2, // 1: google.ads.googleads.v22.resources.BiddingStrategy.type:type_name -> google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 3, // 2: google.ads.googleads.v22.resources.BiddingStrategy.enhanced_cpc:type_name -> google.ads.googleads.v22.common.EnhancedCpc + 4, // 3: google.ads.googleads.v22.resources.BiddingStrategy.maximize_conversion_value:type_name -> google.ads.googleads.v22.common.MaximizeConversionValue + 5, // 4: google.ads.googleads.v22.resources.BiddingStrategy.maximize_conversions:type_name -> google.ads.googleads.v22.common.MaximizeConversions + 6, // 5: google.ads.googleads.v22.resources.BiddingStrategy.target_cpa:type_name -> google.ads.googleads.v22.common.TargetCpa + 7, // 6: google.ads.googleads.v22.resources.BiddingStrategy.target_impression_share:type_name -> google.ads.googleads.v22.common.TargetImpressionShare + 8, // 7: google.ads.googleads.v22.resources.BiddingStrategy.target_roas:type_name -> google.ads.googleads.v22.common.TargetRoas + 9, // 8: google.ads.googleads.v22.resources.BiddingStrategy.target_spend:type_name -> google.ads.googleads.v22.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 @@ -528,12 +528,12 @@ var file_google_ads_googleads_v21_resources_bidding_strategy_proto_depIdxs = []i 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_bidding_strategy_proto_init() } -func file_google_ads_googleads_v21_resources_bidding_strategy_proto_init() { - if File_google_ads_googleads_v21_resources_bidding_strategy_proto != nil { +func init() { file_google_ads_googleads_v22_resources_bidding_strategy_proto_init() } +func file_google_ads_googleads_v22_resources_bidding_strategy_proto_init() { + if File_google_ads_googleads_v22_resources_bidding_strategy_proto != nil { return } - file_google_ads_googleads_v21_resources_bidding_strategy_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_bidding_strategy_proto_msgTypes[0].OneofWrappers = []any{ (*BiddingStrategy_EnhancedCpc)(nil), (*BiddingStrategy_MaximizeConversionValue)(nil), (*BiddingStrategy_MaximizeConversions)(nil), @@ -546,17 +546,17 @@ func file_google_ads_googleads_v21_resources_bidding_strategy_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_strategy_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_strategy_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_bidding_strategy_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_bidding_strategy_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_bidding_strategy_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_bidding_strategy_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_bidding_strategy_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_bidding_strategy_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_bidding_strategy_proto = out.File - file_google_ads_googleads_v21_resources_bidding_strategy_proto_goTypes = nil - file_google_ads_googleads_v21_resources_bidding_strategy_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_bidding_strategy_proto = out.File + file_google_ads_googleads_v22_resources_bidding_strategy_proto_goTypes = nil + file_google_ads_googleads_v22_resources_bidding_strategy_proto_depIdxs = nil } diff --git a/resources/bidding_strategy_simulation.pb.go b/resources/bidding_strategy_simulation.pb.go index 8b0a5cf3..7ebe2c5e 100644 --- a/resources/bidding_strategy_simulation.pb.go +++ b/resources/bidding_strategy_simulation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/bidding_strategy_simulation.proto +// source: google/ads/googleads/v22/resources/bidding_strategy_simulation.proto package resources @@ -53,9 +53,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.v21.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -75,7 +75,7 @@ type BiddingStrategySimulation struct { func (x *BiddingStrategySimulation) Reset() { *x = BiddingStrategySimulation{} - mi := &file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87,7 +87,7 @@ func (x *BiddingStrategySimulation) String() string { func (*BiddingStrategySimulation) ProtoMessage() {} func (x *BiddingStrategySimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100,7 +100,7 @@ func (x *BiddingStrategySimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategySimulation.ProtoReflect.Descriptor instead. func (*BiddingStrategySimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescGZIP(), []int{0} } func (x *BiddingStrategySimulation) GetResourceName() string { @@ -188,25 +188,25 @@ func (*BiddingStrategySimulation_TargetCpaPointList) isBiddingStrategySimulation func (*BiddingStrategySimulation_TargetRoasPointList) isBiddingStrategySimulation_PointList() {} -var File_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x73, 0x69, 0x6d, 0x75, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x69, 0x6d, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -225,14 +225,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -246,7 +246,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -254,7 +254,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, + 0x32, 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, @@ -272,50 +272,50 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDescData + return file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_goTypes = []any{ - (*BiddingStrategySimulation)(nil), // 0: google.ads.googleads.v21.resources.BiddingStrategySimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.TargetCpaSimulationPointList)(nil), // 3: google.ads.googleads.v21.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 4: google.ads.googleads.v21.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_goTypes = []any{ + (*BiddingStrategySimulation)(nil), // 0: google.ads.googleads.v22.resources.BiddingStrategySimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.TargetCpaSimulationPointList)(nil), // 3: google.ads.googleads.v22.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 4: google.ads.googleads.v22.common.TargetRoasSimulationPointList } -var file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.BiddingStrategySimulation.type:type_name -> google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v21.resources.BiddingStrategySimulation.modification_method:type_name -> google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v21.resources.BiddingStrategySimulation.target_cpa_point_list:type_name -> google.ads.googleads.v21.common.TargetCpaSimulationPointList - 4, // 3: google.ads.googleads.v21.resources.BiddingStrategySimulation.target_roas_point_list:type_name -> google.ads.googleads.v21.common.TargetRoasSimulationPointList +var file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.BiddingStrategySimulation.type:type_name -> google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v22.resources.BiddingStrategySimulation.modification_method:type_name -> google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v22.resources.BiddingStrategySimulation.target_cpa_point_list:type_name -> google.ads.googleads.v22.common.TargetCpaSimulationPointList + 4, // 3: google.ads.googleads.v22.resources.BiddingStrategySimulation.target_roas_point_list:type_name -> google.ads.googleads.v22.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 @@ -323,12 +323,12 @@ var file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_de 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_init() } -func file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_init() { - if File_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_init() } +func file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_init() { + if File_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto != nil { return } - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_msgTypes[0].OneofWrappers = []any{ (*BiddingStrategySimulation_TargetCpaPointList)(nil), (*BiddingStrategySimulation_TargetRoasPointList)(nil), } @@ -336,17 +336,17 @@ func file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto = out.File - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_bidding_strategy_simulation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto = out.File + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_bidding_strategy_simulation_proto_depIdxs = nil } diff --git a/resources/billing_setup.pb.go b/resources/billing_setup.pb.go index 7e9bc099..2297b16a 100644 --- a/resources/billing_setup.pb.go +++ b/resources/billing_setup.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/billing_setup.proto +// source: google/ads/googleads/v22/resources/billing_setup.proto package resources @@ -49,7 +49,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.v21.enums.BillingSetupStatusEnum_BillingSetupStatus" json:"status,omitempty"` + Status enums.BillingSetupStatusEnum_BillingSetupStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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: // @@ -91,7 +91,7 @@ type BillingSetup struct { func (x *BillingSetup) Reset() { *x = BillingSetup{} - mi := &file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -103,7 +103,7 @@ func (x *BillingSetup) String() string { func (*BillingSetup) ProtoMessage() {} func (x *BillingSetup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -116,7 +116,7 @@ func (x *BillingSetup) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetup.ProtoReflect.Descriptor instead. func (*BillingSetup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescGZIP(), []int{0} } func (x *BillingSetup) GetResourceName() string { @@ -216,7 +216,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + StartTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,10,opt,name=start_time_type,json=startTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*BillingSetup_StartDateTime) isBillingSetup_StartTime() {} @@ -235,7 +235,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.v21.enums.TimeTypeEnum_TimeType,oneof"` + EndTimeType enums.TimeTypeEnum_TimeType `protobuf:"varint,14,opt,name=end_time_type,json=endTimeType,proto3,enum=google.ads.googleads.v22.enums.TimeTypeEnum_TimeType,oneof"` } func (*BillingSetup_EndDateTime) isBillingSetup_EndTime() {} @@ -278,7 +278,7 @@ type BillingSetup_PaymentsAccountInfo struct { func (x *BillingSetup_PaymentsAccountInfo) Reset() { *x = BillingSetup_PaymentsAccountInfo{} - mi := &file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -290,7 +290,7 @@ func (x *BillingSetup_PaymentsAccountInfo) String() string { func (*BillingSetup_PaymentsAccountInfo) ProtoMessage() {} func (x *BillingSetup_PaymentsAccountInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -303,7 +303,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_v21_resources_billing_setup_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescGZIP(), []int{0, 0} } func (x *BillingSetup_PaymentsAccountInfo) GetPaymentsAccountId() string { @@ -341,21 +341,21 @@ func (x *BillingSetup_PaymentsAccountInfo) GetSecondaryPaymentsProfileId() strin return "" } -var File_google_ads_googleads_v21_resources_billing_setup_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_billing_setup_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_billing_setup_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x39, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x6c, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x69, 0x6d, 0x65, 0x5f, 0x74, 0x79, 0x70, + 0x32, 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, @@ -370,7 +370,7 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -448,48 +448,48 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc), len(file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_billing_setup_proto_rawDesc), len(file_google_ads_googleads_v22_resources_billing_setup_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_billing_setup_proto_rawDescData + return file_google_ads_googleads_v22_resources_billing_setup_proto_rawDescData } -var file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_billing_setup_proto_goTypes = []any{ - (*BillingSetup)(nil), // 0: google.ads.googleads.v21.resources.BillingSetup - (*BillingSetup_PaymentsAccountInfo)(nil), // 1: google.ads.googleads.v21.resources.BillingSetup.PaymentsAccountInfo - (enums.BillingSetupStatusEnum_BillingSetupStatus)(0), // 2: google.ads.googleads.v21.enums.BillingSetupStatusEnum.BillingSetupStatus - (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v21.enums.TimeTypeEnum.TimeType +var file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_billing_setup_proto_goTypes = []any{ + (*BillingSetup)(nil), // 0: google.ads.googleads.v22.resources.BillingSetup + (*BillingSetup_PaymentsAccountInfo)(nil), // 1: google.ads.googleads.v22.resources.BillingSetup.PaymentsAccountInfo + (enums.BillingSetupStatusEnum_BillingSetupStatus)(0), // 2: google.ads.googleads.v22.enums.BillingSetupStatusEnum.BillingSetupStatus + (enums.TimeTypeEnum_TimeType)(0), // 3: google.ads.googleads.v22.enums.TimeTypeEnum.TimeType } -var file_google_ads_googleads_v21_resources_billing_setup_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.BillingSetup.status:type_name -> google.ads.googleads.v21.enums.BillingSetupStatusEnum.BillingSetupStatus - 1, // 1: google.ads.googleads.v21.resources.BillingSetup.payments_account_info:type_name -> google.ads.googleads.v21.resources.BillingSetup.PaymentsAccountInfo - 3, // 2: google.ads.googleads.v21.resources.BillingSetup.start_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType - 3, // 3: google.ads.googleads.v21.resources.BillingSetup.end_time_type:type_name -> google.ads.googleads.v21.enums.TimeTypeEnum.TimeType +var file_google_ads_googleads_v22_resources_billing_setup_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.BillingSetup.status:type_name -> google.ads.googleads.v22.enums.BillingSetupStatusEnum.BillingSetupStatus + 1, // 1: google.ads.googleads.v22.resources.BillingSetup.payments_account_info:type_name -> google.ads.googleads.v22.resources.BillingSetup.PaymentsAccountInfo + 3, // 2: google.ads.googleads.v22.resources.BillingSetup.start_time_type:type_name -> google.ads.googleads.v22.enums.TimeTypeEnum.TimeType + 3, // 3: google.ads.googleads.v22.resources.BillingSetup.end_time_type:type_name -> google.ads.googleads.v22.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 @@ -497,33 +497,33 @@ var file_google_ads_googleads_v21_resources_billing_setup_proto_depIdxs = []int3 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_billing_setup_proto_init() } -func file_google_ads_googleads_v21_resources_billing_setup_proto_init() { - if File_google_ads_googleads_v21_resources_billing_setup_proto != nil { +func init() { file_google_ads_googleads_v22_resources_billing_setup_proto_init() } +func file_google_ads_googleads_v22_resources_billing_setup_proto_init() { + if File_google_ads_googleads_v22_resources_billing_setup_proto != nil { return } - file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[0].OneofWrappers = []any{ (*BillingSetup_StartDateTime)(nil), (*BillingSetup_StartTimeType)(nil), (*BillingSetup_EndDateTime)(nil), (*BillingSetup_EndTimeType)(nil), } - file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc), len(file_google_ads_googleads_v21_resources_billing_setup_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_billing_setup_proto_rawDesc), len(file_google_ads_googleads_v22_resources_billing_setup_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_billing_setup_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_billing_setup_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_billing_setup_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_billing_setup_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_billing_setup_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_billing_setup_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_billing_setup_proto = out.File - file_google_ads_googleads_v21_resources_billing_setup_proto_goTypes = nil - file_google_ads_googleads_v21_resources_billing_setup_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_billing_setup_proto = out.File + file_google_ads_googleads_v22_resources_billing_setup_proto_goTypes = nil + file_google_ads_googleads_v22_resources_billing_setup_proto_depIdxs = nil } diff --git a/resources/call_view.pb.go b/resources/call_view.pb.go index b475772d..9cb308c7 100644 --- a/resources/call_view.pb.go +++ b/resources/call_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/call_view.proto +// source: google/ads/googleads/v22/resources/call_view.proto package resources @@ -58,18 +58,18 @@ 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.v21.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.v22.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.v21.enums.CallTypeEnum_CallType" json:"type,omitempty"` + Type enums.CallTypeEnum_CallType `protobuf:"varint,8,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus" json:"call_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CallView) Reset() { *x = CallView{} - mi := &file_google_ads_googleads_v21_resources_call_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_call_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *CallView) String() string { func (*CallView) ProtoMessage() {} func (x *CallView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_call_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_call_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94,7 +94,7 @@ func (x *CallView) ProtoReflect() protoreflect.Message { // Deprecated: Use CallView.ProtoReflect.Descriptor instead. func (*CallView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_call_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_call_view_proto_rawDescGZIP(), []int{0} } func (x *CallView) GetResourceName() string { @@ -160,24 +160,24 @@ func (x *CallView) GetCallStatus() enums.GoogleVoiceCallStatusEnum_GoogleVoiceCa return enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus(0) } -var File_google_ads_googleads_v21_resources_call_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_call_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_call_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_call_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, 0x6c, 0x6c, 0x5f, 0x74, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -209,7 +209,7 @@ var file_google_ads_googleads_v21_resources_call_view_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -218,13 +218,13 @@ var file_google_ads_googleads_v21_resources_call_view_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x56, + 0x32, 0x32, 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, @@ -236,46 +236,46 @@ var file_google_ads_googleads_v21_resources_call_view_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_call_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_call_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_call_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_call_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_call_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_call_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_call_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_call_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_call_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_call_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_call_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_call_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_call_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_call_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_call_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_call_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_call_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_call_view_proto_goTypes = []any{ - (*CallView)(nil), // 0: google.ads.googleads.v21.resources.CallView - (enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 1: google.ads.googleads.v21.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation - (enums.CallTypeEnum_CallType)(0), // 2: google.ads.googleads.v21.enums.CallTypeEnum.CallType - (enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 3: google.ads.googleads.v21.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus +var file_google_ads_googleads_v22_resources_call_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_call_view_proto_goTypes = []any{ + (*CallView)(nil), // 0: google.ads.googleads.v22.resources.CallView + (enums.CallTrackingDisplayLocationEnum_CallTrackingDisplayLocation)(0), // 1: google.ads.googleads.v22.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation + (enums.CallTypeEnum_CallType)(0), // 2: google.ads.googleads.v22.enums.CallTypeEnum.CallType + (enums.GoogleVoiceCallStatusEnum_GoogleVoiceCallStatus)(0), // 3: google.ads.googleads.v22.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus } -var file_google_ads_googleads_v21_resources_call_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CallView.call_tracking_display_location:type_name -> google.ads.googleads.v21.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation - 2, // 1: google.ads.googleads.v21.resources.CallView.type:type_name -> google.ads.googleads.v21.enums.CallTypeEnum.CallType - 3, // 2: google.ads.googleads.v21.resources.CallView.call_status:type_name -> google.ads.googleads.v21.enums.GoogleVoiceCallStatusEnum.GoogleVoiceCallStatus +var file_google_ads_googleads_v22_resources_call_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CallView.call_tracking_display_location:type_name -> google.ads.googleads.v22.enums.CallTrackingDisplayLocationEnum.CallTrackingDisplayLocation + 2, // 1: google.ads.googleads.v22.resources.CallView.type:type_name -> google.ads.googleads.v22.enums.CallTypeEnum.CallType + 3, // 2: google.ads.googleads.v22.resources.CallView.call_status:type_name -> google.ads.googleads.v22.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 @@ -283,26 +283,26 @@ var file_google_ads_googleads_v21_resources_call_view_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_call_view_proto_init() } -func file_google_ads_googleads_v21_resources_call_view_proto_init() { - if File_google_ads_googleads_v21_resources_call_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_call_view_proto_init() } +func file_google_ads_googleads_v22_resources_call_view_proto_init() { + if File_google_ads_googleads_v22_resources_call_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_call_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_call_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_call_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_call_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_call_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_call_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_call_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_call_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_call_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_call_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_call_view_proto = out.File - file_google_ads_googleads_v21_resources_call_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_call_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_call_view_proto = out.File + file_google_ads_googleads_v22_resources_call_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_call_view_proto_depIdxs = nil } diff --git a/resources/campaign.pb.go b/resources/campaign.pb.go index 1a5262aa..167a1052 100644 --- a/resources/campaign.pb.go +++ b/resources/campaign.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign.proto +// source: google/ads/googleads/v22/resources/campaign.proto package resources @@ -84,11 +84,11 @@ func (x Campaign_AiMaxSetting_AiMaxBundlingRequired) String() string { } func (Campaign_AiMaxSetting_AiMaxBundlingRequired) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_resources_campaign_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_resources_campaign_proto_enumTypes[0].Descriptor() } func (Campaign_AiMaxSetting_AiMaxBundlingRequired) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_resources_campaign_proto_enumTypes[0] + return &file_google_ads_googleads_v22_resources_campaign_proto_enumTypes[0] } func (x Campaign_AiMaxSetting_AiMaxBundlingRequired) Number() protoreflect.EnumNumber { @@ -97,7 +97,7 @@ func (x Campaign_AiMaxSetting_AiMaxBundlingRequired) Number() protoreflect.EnumN // Deprecated: Use Campaign_AiMaxSetting_AiMaxBundlingRequired.Descriptor instead. func (Campaign_AiMaxSetting_AiMaxBundlingRequired) EnumDescriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 21, 0} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 21, 0} } // A campaign. @@ -123,23 +123,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.v21.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.v22.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.v21.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.v22.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.v21.enums.CampaignStatusEnum_CampaignStatus" json:"status,omitempty"` + Status enums.CampaignStatusEnum_CampaignStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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`. // @@ -148,13 +148,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.v21.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.v22.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.v21.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.v22.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 @@ -194,7 +194,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.v21.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.v22.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`. // @@ -209,7 +209,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.v21.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.v22.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 @@ -237,7 +237,7 @@ type Campaign struct { // 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.v21.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` + VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,42,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v22.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 @@ -252,7 +252,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.v21.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.v22.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. @@ -268,7 +268,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.v21.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.v22.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. @@ -279,14 +279,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.v21.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. - // If opted in (false), the entire domain will be targeted. This field can - // only be set for Performance Max campaigns, where the default value is - // false. - UrlExpansionOptOut *bool `protobuf:"varint,72,opt,name=url_expansion_opt_out,json=urlExpansionOptOut,proto3,oneof" json:"url_expansion_opt_out,omitempty"` + ExcludedParentAssetSetTypes []enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,80,rep,packed,name=excluded_parent_asset_set_types,json=excludedParentAssetSetTypes,proto3,enum=google.ads.googleads.v22.enums.AssetSetTypeEnum_AssetSetType" json:"excluded_parent_asset_set_types,omitempty"` // Output only. Information about campaigns being upgraded to Performance Max. PerformanceMaxUpgrade *Campaign_PerformanceMaxUpgrade `protobuf:"bytes,77,opt,name=performance_max_upgrade,json=performanceMaxUpgrade,proto3" json:"performance_max_upgrade,omitempty"` // Immutable. The resource name for a set of hotel properties for Performance @@ -294,14 +287,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.v21.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.v22.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.v21.enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType" json:"keyword_match_type,omitempty"` + KeywordMatchType enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType `protobuf:"varint,90,opt,name=keyword_match_type,json=keywordMatchType,proto3,enum=google.ads.googleads.v22.enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType" json:"keyword_match_type,omitempty"` // Immutable. Whether Brand Guidelines are enabled for this Campaign. // Only applicable to Performance Max campaigns. If enabled, business name // and logo assets must be linked as CampaignAssets instead of @@ -332,7 +325,9 @@ type Campaign struct { AiMaxSetting *Campaign_AiMaxSetting `protobuf:"bytes,101,opt,name=ai_max_setting,json=aiMaxSetting,proto3" json:"ai_max_setting,omitempty"` // The advertiser should self-declare whether this campaign contains // political advertising content targeted towards the European Union. - ContainsEuPoliticalAdvertising enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus `protobuf:"varint,102,opt,name=contains_eu_political_advertising,json=containsEuPoliticalAdvertising,proto3,enum=google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus" json:"contains_eu_political_advertising,omitempty"` + ContainsEuPoliticalAdvertising enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus `protobuf:"varint,102,opt,name=contains_eu_political_advertising,json=containsEuPoliticalAdvertising,proto3,enum=google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus" json:"contains_eu_political_advertising,omitempty"` + // Output only. Types of feeds that are attached directly to this campaign. + FeedTypes []enums.AssetSetTypeEnum_AssetSetType `protobuf:"varint,103,rep,packed,name=feed_types,json=feedTypes,proto3,enum=google.ads.googleads.v22.enums.AssetSetTypeEnum_AssetSetType" json:"feed_types,omitempty"` // The bidding strategy for the campaign. // // Must be either portfolio (created through BiddingStrategy service) or @@ -356,6 +351,7 @@ type Campaign struct { // *Campaign_TargetCpm // *Campaign_FixedCpm // *Campaign_TargetCpv + // *Campaign_TargetCpc CampaignBiddingStrategy isCampaign_CampaignBiddingStrategy `protobuf_oneof:"campaign_bidding_strategy"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -363,7 +359,7 @@ type Campaign struct { func (x *Campaign) Reset() { *x = Campaign{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -375,7 +371,7 @@ func (x *Campaign) String() string { func (*Campaign) ProtoMessage() {} func (x *Campaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -388,7 +384,7 @@ func (x *Campaign) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign.ProtoReflect.Descriptor instead. func (*Campaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0} } func (x *Campaign) GetResourceName() string { @@ -727,13 +723,6 @@ func (x *Campaign) GetExcludedParentAssetSetTypes() []enums.AssetSetTypeEnum_Ass return nil } -func (x *Campaign) GetUrlExpansionOptOut() bool { - if x != nil && x.UrlExpansionOptOut != nil { - return *x.UrlExpansionOptOut - } - return false -} - func (x *Campaign) GetPerformanceMaxUpgrade() *Campaign_PerformanceMaxUpgrade { if x != nil { return x.PerformanceMaxUpgrade @@ -804,6 +793,13 @@ func (x *Campaign) GetContainsEuPoliticalAdvertising() enums.EuPoliticalAdvertis return enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus(0) } +func (x *Campaign) GetFeedTypes() []enums.AssetSetTypeEnum_AssetSetType { + if x != nil { + return x.FeedTypes + } + return nil +} + func (x *Campaign) GetCampaignBiddingStrategy() isCampaign_CampaignBiddingStrategy { if x != nil { return x.CampaignBiddingStrategy @@ -955,6 +951,15 @@ func (x *Campaign) GetTargetCpv() *common.TargetCpv { return nil } +func (x *Campaign) GetTargetCpc() *common.TargetCpc { + if x != nil { + if x, ok := x.CampaignBiddingStrategy.(*Campaign_TargetCpc); ok { + return x.TargetCpc + } + } + return nil +} + type isCampaign_CampaignBiddingStrategy interface { isCampaign_CampaignBiddingStrategy() } @@ -1055,6 +1060,12 @@ type Campaign_TargetCpv struct { TargetCpv *common.TargetCpv `protobuf:"bytes,93,opt,name=target_cpv,json=targetCpv,proto3,oneof"` } +type Campaign_TargetCpc struct { + // An automated bidding strategy that sets bids to help get as many clicks + // as possible at the target cost-per-click (CPC) you set. + TargetCpc *common.TargetCpc `protobuf:"bytes,99,opt,name=target_cpc,json=targetCpc,proto3,oneof"` +} + func (*Campaign_BiddingStrategy) isCampaign_CampaignBiddingStrategy() {} func (*Campaign_Commission) isCampaign_CampaignBiddingStrategy() {} @@ -1087,6 +1098,8 @@ func (*Campaign_FixedCpm) isCampaign_CampaignBiddingStrategy() {} func (*Campaign_TargetCpv) isCampaign_CampaignBiddingStrategy() {} +func (*Campaign_TargetCpc) isCampaign_CampaignBiddingStrategy() {} + // Information about a campaign being upgraded to Performance Max. type Campaign_PerformanceMaxUpgrade struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -1098,14 +1111,14 @@ 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.v21.enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus" json:"status,omitempty"` + Status enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_PerformanceMaxUpgrade) Reset() { *x = Campaign_PerformanceMaxUpgrade{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1117,7 +1130,7 @@ func (x *Campaign_PerformanceMaxUpgrade) String() string { func (*Campaign_PerformanceMaxUpgrade) ProtoMessage() {} func (x *Campaign_PerformanceMaxUpgrade) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1130,7 +1143,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 0} } func (x *Campaign_PerformanceMaxUpgrade) GetPerformanceMaxCampaign() string { @@ -1178,7 +1191,7 @@ type Campaign_NetworkSettings struct { func (x *Campaign_NetworkSettings) Reset() { *x = Campaign_NetworkSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1190,7 +1203,7 @@ func (x *Campaign_NetworkSettings) String() string { func (*Campaign_NetworkSettings) ProtoMessage() {} func (x *Campaign_NetworkSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1203,7 +1216,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 1} } func (x *Campaign_NetworkSettings) GetTargetGoogleSearch() bool { @@ -1259,7 +1272,7 @@ type Campaign_HotelSettingInfo struct { func (x *Campaign_HotelSettingInfo) Reset() { *x = Campaign_HotelSettingInfo{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1271,7 +1284,7 @@ func (x *Campaign_HotelSettingInfo) String() string { func (*Campaign_HotelSettingInfo) ProtoMessage() {} func (x *Campaign_HotelSettingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1284,7 +1297,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 2} } func (x *Campaign_HotelSettingInfo) GetHotelCenterId() int64 { @@ -1311,7 +1324,7 @@ type Campaign_DynamicSearchAdsSetting struct { func (x *Campaign_DynamicSearchAdsSetting) Reset() { *x = Campaign_DynamicSearchAdsSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1323,7 +1336,7 @@ func (x *Campaign_DynamicSearchAdsSetting) String() string { func (*Campaign_DynamicSearchAdsSetting) ProtoMessage() {} func (x *Campaign_DynamicSearchAdsSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1336,7 +1349,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 3} } func (x *Campaign_DynamicSearchAdsSetting) GetDomainName() string { @@ -1392,7 +1405,7 @@ type Campaign_ShoppingSetting struct { // The list of Google Ads accounts IDs of advertising partners cooperating // within the campaign. // This feature is currently available only for accounts having an - // advertising partner link. + // advertising partner link. Once set, the field is immutable. // This feature is currently supported only for Performance Max, Shopping, // Search and Demand Gen campaign types. AdvertisingPartnerIds []int64 `protobuf:"varint,11,rep,packed,name=advertising_partner_ids,json=advertisingPartnerIds,proto3" json:"advertising_partner_ids,omitempty"` @@ -1407,7 +1420,7 @@ type Campaign_ShoppingSetting struct { func (x *Campaign_ShoppingSetting) Reset() { *x = Campaign_ShoppingSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1419,7 +1432,7 @@ func (x *Campaign_ShoppingSetting) String() string { func (*Campaign_ShoppingSetting) ProtoMessage() {} func (x *Campaign_ShoppingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1432,7 +1445,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 4} } func (x *Campaign_ShoppingSetting) GetMerchantId() int64 { @@ -1495,7 +1508,7 @@ type Campaign_TrackingSetting struct { func (x *Campaign_TrackingSetting) Reset() { *x = Campaign_TrackingSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1507,7 +1520,7 @@ func (x *Campaign_TrackingSetting) String() string { func (*Campaign_TrackingSetting) ProtoMessage() {} func (x *Campaign_TrackingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1520,7 +1533,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 5} } func (x *Campaign_TrackingSetting) GetTrackingUrl() string { @@ -1534,16 +1547,16 @@ func (x *Campaign_TrackingSetting) GetTrackingUrl() string { type Campaign_GeoTargetTypeSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType" json:"negative_geo_target_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_GeoTargetTypeSetting) Reset() { *x = Campaign_GeoTargetTypeSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1555,7 +1568,7 @@ func (x *Campaign_GeoTargetTypeSetting) String() string { func (*Campaign_GeoTargetTypeSetting) ProtoMessage() {} func (x *Campaign_GeoTargetTypeSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1568,7 +1581,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 6} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 6} } func (x *Campaign_GeoTargetTypeSetting) GetPositiveGeoTargetType() enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType { @@ -1589,14 +1602,14 @@ func (x *Campaign_GeoTargetTypeSetting) GetNegativeGeoTargetType() enums.Negativ type Campaign_LocalCampaignSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.LocationSourceTypeEnum_LocationSourceType" json:"location_source_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_LocalCampaignSetting) Reset() { *x = Campaign_LocalCampaignSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1608,7 +1621,7 @@ func (x *Campaign_LocalCampaignSetting) String() string { func (*Campaign_LocalCampaignSetting) ProtoMessage() {} func (x *Campaign_LocalCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1621,7 +1634,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 7} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 7} } func (x *Campaign_LocalCampaignSetting) GetLocationSourceType() enums.LocationSourceTypeEnum_LocationSourceType { @@ -1636,18 +1649,18 @@ type Campaign_AppCampaignSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.AppCampaignAppStoreEnum_AppCampaignAppStore" json:"app_store,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_AppCampaignSetting) Reset() { *x = Campaign_AppCampaignSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1659,7 +1672,7 @@ func (x *Campaign_AppCampaignSetting) String() string { func (*Campaign_AppCampaignSetting) ProtoMessage() {} func (x *Campaign_AppCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1672,7 +1685,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 8} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 8} } func (x *Campaign_AppCampaignSetting) GetBiddingStrategyGoalType() enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType { @@ -1700,17 +1713,17 @@ func (x *Campaign_AppCampaignSetting) GetAppStore() enums.AppCampaignAppStoreEnu type Campaign_VanityPharma struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.VanityPharmaTextEnum_VanityPharmaText" json:"vanity_pharma_text,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_VanityPharma) Reset() { *x = Campaign_VanityPharma{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1722,7 +1735,7 @@ func (x *Campaign_VanityPharma) String() string { func (*Campaign_VanityPharma) ProtoMessage() {} func (x *Campaign_VanityPharma) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1735,7 +1748,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 9} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 9} } func (x *Campaign_VanityPharma) GetVanityPharmaDisplayUrlMode() enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode { @@ -1768,7 +1781,7 @@ type Campaign_SelectiveOptimization struct { func (x *Campaign_SelectiveOptimization) Reset() { *x = Campaign_SelectiveOptimization{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1780,7 +1793,7 @@ func (x *Campaign_SelectiveOptimization) String() string { func (*Campaign_SelectiveOptimization) ProtoMessage() {} func (x *Campaign_SelectiveOptimization) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1793,7 +1806,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 10} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 10} } func (x *Campaign_SelectiveOptimization) GetConversionActions() []string { @@ -1808,14 +1821,14 @@ func (x *Campaign_SelectiveOptimization) GetConversionActions() []string { type Campaign_OptimizationGoalSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.OptimizationGoalTypeEnum_OptimizationGoalType" json:"optimization_goal_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_OptimizationGoalSetting) Reset() { *x = Campaign_OptimizationGoalSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1827,7 +1840,7 @@ func (x *Campaign_OptimizationGoalSetting) String() string { func (*Campaign_OptimizationGoalSetting) ProtoMessage() {} func (x *Campaign_OptimizationGoalSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1840,7 +1853,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 11} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 11} } func (x *Campaign_OptimizationGoalSetting) GetOptimizationGoalTypes() []enums.OptimizationGoalTypeEnum_OptimizationGoalType { @@ -1863,7 +1876,7 @@ type Campaign_AudienceSetting struct { func (x *Campaign_AudienceSetting) Reset() { *x = Campaign_AudienceSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1875,7 +1888,7 @@ func (x *Campaign_AudienceSetting) String() string { func (*Campaign_AudienceSetting) ProtoMessage() {} func (x *Campaign_AudienceSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1888,7 +1901,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 12} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 12} } func (x *Campaign_AudienceSetting) GetUseAudienceGrouped() bool { @@ -1909,7 +1922,7 @@ type Campaign_LocalServicesCampaignSettings struct { func (x *Campaign_LocalServicesCampaignSettings) Reset() { *x = Campaign_LocalServicesCampaignSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1921,7 +1934,7 @@ func (x *Campaign_LocalServicesCampaignSettings) String() string { func (*Campaign_LocalServicesCampaignSettings) ProtoMessage() {} func (x *Campaign_LocalServicesCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1934,7 +1947,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 13} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 13} } func (x *Campaign_LocalServicesCampaignSettings) GetCategoryBids() []*Campaign_CategoryBid { @@ -1963,7 +1976,7 @@ type Campaign_CategoryBid struct { func (x *Campaign_CategoryBid) Reset() { *x = Campaign_CategoryBid{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1975,7 +1988,7 @@ func (x *Campaign_CategoryBid) String() string { func (*Campaign_CategoryBid) ProtoMessage() {} func (x *Campaign_CategoryBid) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1988,7 +2001,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 14} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 14} } func (x *Campaign_CategoryBid) GetCategoryId() string { @@ -2023,7 +2036,7 @@ type Campaign_TravelCampaignSettings struct { func (x *Campaign_TravelCampaignSettings) Reset() { *x = Campaign_TravelCampaignSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2035,7 +2048,7 @@ func (x *Campaign_TravelCampaignSettings) String() string { func (*Campaign_TravelCampaignSettings) ProtoMessage() {} func (x *Campaign_TravelCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2048,7 +2061,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 15} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 15} } func (x *Campaign_TravelCampaignSettings) GetTravelAccountId() int64 { @@ -2073,7 +2086,7 @@ type Campaign_DemandGenCampaignSettings struct { func (x *Campaign_DemandGenCampaignSettings) Reset() { *x = Campaign_DemandGenCampaignSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2085,7 +2098,7 @@ func (x *Campaign_DemandGenCampaignSettings) String() string { func (*Campaign_DemandGenCampaignSettings) ProtoMessage() {} func (x *Campaign_DemandGenCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2098,7 +2111,7 @@ func (x *Campaign_DemandGenCampaignSettings) ProtoReflect() protoreflect.Message // Deprecated: Use Campaign_DemandGenCampaignSettings.ProtoReflect.Descriptor instead. func (*Campaign_DemandGenCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 16} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 16} } func (x *Campaign_DemandGenCampaignSettings) GetUpgradedTargeting() bool { @@ -2126,7 +2139,7 @@ type Campaign_VideoCampaignSettings struct { func (x *Campaign_VideoCampaignSettings) Reset() { *x = Campaign_VideoCampaignSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2138,7 +2151,7 @@ func (x *Campaign_VideoCampaignSettings) String() string { func (*Campaign_VideoCampaignSettings) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2151,7 +2164,7 @@ func (x *Campaign_VideoCampaignSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_VideoCampaignSettings.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17} } func (x *Campaign_VideoCampaignSettings) GetVideoAdSequence() *Campaign_VideoCampaignSettings_VideoAdSequence { @@ -2218,7 +2231,7 @@ type Campaign_PmaxCampaignSettings struct { func (x *Campaign_PmaxCampaignSettings) Reset() { *x = Campaign_PmaxCampaignSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2230,7 +2243,7 @@ func (x *Campaign_PmaxCampaignSettings) String() string { func (*Campaign_PmaxCampaignSettings) ProtoMessage() {} func (x *Campaign_PmaxCampaignSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2243,7 +2256,7 @@ func (x *Campaign_PmaxCampaignSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_PmaxCampaignSettings.ProtoReflect.Descriptor instead. func (*Campaign_PmaxCampaignSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 18} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 18} } func (x *Campaign_PmaxCampaignSettings) GetBrandTargetingOverrides() *Campaign_PmaxCampaignSettings_BrandTargetingOverrides { @@ -2258,16 +2271,16 @@ func (x *Campaign_PmaxCampaignSettings) GetBrandTargetingOverrides() *Campaign_P type Campaign_AssetAutomationSetting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.AssetAutomationStatusEnum_AssetAutomationStatus,oneof" json:"asset_automation_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_AssetAutomationSetting) Reset() { *x = Campaign_AssetAutomationSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2279,7 +2292,7 @@ func (x *Campaign_AssetAutomationSetting) String() string { func (*Campaign_AssetAutomationSetting) ProtoMessage() {} func (x *Campaign_AssetAutomationSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2292,7 +2305,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_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 19} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 19} } func (x *Campaign_AssetAutomationSetting) GetAssetAutomationType() enums.AssetAutomationTypeEnum_AssetAutomationType { @@ -2330,7 +2343,7 @@ type Campaign_BrandGuidelines struct { func (x *Campaign_BrandGuidelines) Reset() { *x = Campaign_BrandGuidelines{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2342,7 +2355,7 @@ func (x *Campaign_BrandGuidelines) String() string { func (*Campaign_BrandGuidelines) ProtoMessage() {} func (x *Campaign_BrandGuidelines) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2355,7 +2368,7 @@ func (x *Campaign_BrandGuidelines) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_BrandGuidelines.ProtoReflect.Descriptor instead. func (*Campaign_BrandGuidelines) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 20} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 20} } func (x *Campaign_BrandGuidelines) GetMainColor() string { @@ -2382,7 +2395,7 @@ func (x *Campaign_BrandGuidelines) GetPredefinedFontFamily() string { // Settings for AI Max in search campaigns. type Campaign_AiMaxSetting struct { state protoimpl.MessageState `protogen:"open.v1"` - // Controls whether or not AI Max features are serve for this campaign. + // Controls whether or not AI Max features are served for this campaign. // // Individual AI Max features are enabled or disabled by their respective // settings. But if enable_ai_max is set to false or cleared, then no AI @@ -2395,14 +2408,14 @@ type Campaign_AiMaxSetting struct { // Output only. Indicates whether a search campaign has adopted AI Max // before, and is required to have AI Max enabled to adopt campaign-level // text asset automation and brand list targeting in all API versions. - BundlingRequired *Campaign_AiMaxSetting_AiMaxBundlingRequired `protobuf:"varint,2,opt,name=bundling_required,json=bundlingRequired,proto3,enum=google.ads.googleads.v21.resources.Campaign_AiMaxSetting_AiMaxBundlingRequired,oneof" json:"bundling_required,omitempty"` + BundlingRequired *Campaign_AiMaxSetting_AiMaxBundlingRequired `protobuf:"varint,2,opt,name=bundling_required,json=bundlingRequired,proto3,enum=google.ads.googleads.v22.resources.Campaign_AiMaxSetting_AiMaxBundlingRequired,oneof" json:"bundling_required,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_AiMaxSetting) Reset() { *x = Campaign_AiMaxSetting{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2414,7 +2427,7 @@ func (x *Campaign_AiMaxSetting) String() string { func (*Campaign_AiMaxSetting) ProtoMessage() {} func (x *Campaign_AiMaxSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2427,7 +2440,7 @@ func (x *Campaign_AiMaxSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use Campaign_AiMaxSetting.ProtoReflect.Descriptor instead. func (*Campaign_AiMaxSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 21} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 21} } func (x *Campaign_AiMaxSetting) GetEnableAiMax() bool { @@ -2466,7 +2479,7 @@ type Campaign_VideoCampaignSettings_VideoAdInventoryControl struct { func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) Reset() { *x = Campaign_VideoCampaignSettings_VideoAdInventoryControl{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2478,7 +2491,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) String() string func (*Campaign_VideoCampaignSettings_VideoAdInventoryControl) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2491,7 +2504,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) ProtoReflect() // Deprecated: Use Campaign_VideoCampaignSettings_VideoAdInventoryControl.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings_VideoAdInventoryControl) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 0} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 0} } func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) GetAllowInStream() bool { @@ -2527,7 +2540,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdInventoryControl) GetAllowNonSkip type Campaign_VideoCampaignSettings_VideoAdFormatControl struct { state protoimpl.MessageState `protogen:"open.v1"` // All contained responsive ads are expected to respect this restriction. - FormatRestriction enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction `protobuf:"varint,1,opt,name=format_restriction,json=formatRestriction,proto3,enum=google.ads.googleads.v21.enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction" json:"format_restriction,omitempty"` + FormatRestriction enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction `protobuf:"varint,1,opt,name=format_restriction,json=formatRestriction,proto3,enum=google.ads.googleads.v22.enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction" json:"format_restriction,omitempty"` // Restrictions for non-skippable format. NonSkippableInStreamRestrictions *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions `protobuf:"bytes,2,opt,name=non_skippable_in_stream_restrictions,json=nonSkippableInStreamRestrictions,proto3" json:"non_skippable_in_stream_restrictions,omitempty"` unknownFields protoimpl.UnknownFields @@ -2536,7 +2549,7 @@ type Campaign_VideoCampaignSettings_VideoAdFormatControl struct { func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) Reset() { *x = Campaign_VideoCampaignSettings_VideoAdFormatControl{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2548,7 +2561,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) String() string { func (*Campaign_VideoCampaignSettings_VideoAdFormatControl) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2561,7 +2574,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) ProtoReflect() pro // Deprecated: Use Campaign_VideoCampaignSettings_VideoAdFormatControl.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings_VideoAdFormatControl) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 1} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 1} } func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) GetFormatRestriction() enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction { @@ -2582,16 +2595,16 @@ func (x *Campaign_VideoCampaignSettings_VideoAdFormatControl) GetNonSkippableInS type Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions struct { state protoimpl.MessageState `protogen:"open.v1"` // The minimum allowed duration for non-skippable ads. - MinDuration enums.NonSkippableMinDurationEnum_NonSkippableMinDuration `protobuf:"varint,1,opt,name=min_duration,json=minDuration,proto3,enum=google.ads.googleads.v21.enums.NonSkippableMinDurationEnum_NonSkippableMinDuration" json:"min_duration,omitempty"` + MinDuration enums.NonSkippableMinDurationEnum_NonSkippableMinDuration `protobuf:"varint,1,opt,name=min_duration,json=minDuration,proto3,enum=google.ads.googleads.v22.enums.NonSkippableMinDurationEnum_NonSkippableMinDuration" json:"min_duration,omitempty"` // The maximum allowed duration for non-skippable ads. - MaxDuration enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration `protobuf:"varint,2,opt,name=max_duration,json=maxDuration,proto3,enum=google.ads.googleads.v21.enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration" json:"max_duration,omitempty"` + MaxDuration enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration `protobuf:"varint,2,opt,name=max_duration,json=maxDuration,proto3,enum=google.ads.googleads.v22.enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration" json:"max_duration,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) Reset() { *x = Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2603,7 +2616,7 @@ func (x *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) String func (*Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2616,7 +2629,7 @@ func (x *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) ProtoR // Deprecated: Use Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 2} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 2} } func (x *Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions) GetMinDuration() enums.NonSkippableMinDurationEnum_NonSkippableMinDuration { @@ -2640,14 +2653,14 @@ type Campaign_VideoCampaignSettings_VideoAdSequence struct { Steps []*Campaign_VideoCampaignSettings_VideoAdSequenceStep `protobuf:"bytes,1,rep,name=steps,proto3" json:"steps,omitempty"` // Users are eligible to repeat sequence after this period. Defaults to // WEEK if not specified. - MinimumDuration enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration `protobuf:"varint,2,opt,name=minimum_duration,json=minimumDuration,proto3,enum=google.ads.googleads.v21.enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration" json:"minimum_duration,omitempty"` + MinimumDuration enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration `protobuf:"varint,2,opt,name=minimum_duration,json=minimumDuration,proto3,enum=google.ads.googleads.v22.enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration" json:"minimum_duration,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_VideoCampaignSettings_VideoAdSequence) Reset() { *x = Campaign_VideoCampaignSettings_VideoAdSequence{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2659,7 +2672,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdSequence) String() string { func (*Campaign_VideoCampaignSettings_VideoAdSequence) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings_VideoAdSequence) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2672,7 +2685,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdSequence) ProtoReflect() protoref // Deprecated: Use Campaign_VideoCampaignSettings_VideoAdSequence.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings_VideoAdSequence) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 3} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 3} } func (x *Campaign_VideoCampaignSettings_VideoAdSequence) GetSteps() []*Campaign_VideoCampaignSettings_VideoAdSequenceStep { @@ -2698,7 +2711,7 @@ type Campaign_VideoCampaignSettings_VideoAdSequenceStep struct { // YOUTUBE_VIDEO. AssetId int64 `protobuf:"varint,2,opt,name=asset_id,json=assetId,proto3" json:"asset_id,omitempty"` // The ad group type for this step (denoting the video format). - AdGroupType enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,3,opt,name=ad_group_type,json=adGroupType,proto3,enum=google.ads.googleads.v21.enums.AdGroupTypeEnum_AdGroupType" json:"ad_group_type,omitempty"` + AdGroupType enums.AdGroupTypeEnum_AdGroupType `protobuf:"varint,3,opt,name=ad_group_type,json=adGroupType,proto3,enum=google.ads.googleads.v22.enums.AdGroupTypeEnum_AdGroupType" json:"ad_group_type,omitempty"` // The ID of the previous step. This field is required for all // steps except the first one. It must point to a step that appears in the // step definition list before this step. @@ -2706,14 +2719,14 @@ type Campaign_VideoCampaignSettings_VideoAdSequenceStep struct { // Type of interaction *on the previous step* required in order for the // user to advance to this step. As with the previous step ID, it's // required for every step except for the first one. - PreviousStepInteractionType enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType `protobuf:"varint,5,opt,name=previous_step_interaction_type,json=previousStepInteractionType,proto3,enum=google.ads.googleads.v21.enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType" json:"previous_step_interaction_type,omitempty"` + PreviousStepInteractionType enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType `protobuf:"varint,5,opt,name=previous_step_interaction_type,json=previousStepInteractionType,proto3,enum=google.ads.googleads.v22.enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType" json:"previous_step_interaction_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Campaign_VideoCampaignSettings_VideoAdSequenceStep) Reset() { *x = Campaign_VideoCampaignSettings_VideoAdSequenceStep{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2725,7 +2738,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdSequenceStep) String() string { func (*Campaign_VideoCampaignSettings_VideoAdSequenceStep) ProtoMessage() {} func (x *Campaign_VideoCampaignSettings_VideoAdSequenceStep) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2738,7 +2751,7 @@ func (x *Campaign_VideoCampaignSettings_VideoAdSequenceStep) ProtoReflect() prot // Deprecated: Use Campaign_VideoCampaignSettings_VideoAdSequenceStep.ProtoReflect.Descriptor instead. func (*Campaign_VideoCampaignSettings_VideoAdSequenceStep) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 4} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 17, 4} } func (x *Campaign_VideoCampaignSettings_VideoAdSequenceStep) GetVideoAdSequenceStepId() int64 { @@ -2787,7 +2800,7 @@ type Campaign_PmaxCampaignSettings_BrandTargetingOverrides struct { func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) Reset() { *x = Campaign_PmaxCampaignSettings_BrandTargetingOverrides{} - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2799,7 +2812,7 @@ func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) String() string func (*Campaign_PmaxCampaignSettings_BrandTargetingOverrides) ProtoMessage() {} func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2812,7 +2825,7 @@ func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) ProtoReflect() p // Deprecated: Use Campaign_PmaxCampaignSettings_BrandTargetingOverrides.ProtoReflect.Descriptor instead. func (*Campaign_PmaxCampaignSettings_BrandTargetingOverrides) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP(), []int{0, 18, 0} + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP(), []int{0, 18, 0} } func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) GetIgnoreExclusionsForShoppingAds() bool { @@ -2822,175 +2835,175 @@ func (x *Campaign_PmaxCampaignSettings_BrandTargetingOverrides) GetIgnoreExclusi return false } -var File_google_ads_googleads_v21_resources_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x46, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x43, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x70, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x61, 0x64, - 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x44, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x75, 0x5f, 0x70, 0x6f, 0x6c, + 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, 0x75, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, 0x6e, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x61, 0x79, 0x6d, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x61, 0x6e, 0x69, 0x74, 0x79, 0x5f, 0x70, + 0x32, 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, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x64, 0x75, 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, 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, 0xd2, 0x76, 0x0a, 0x08, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x4e, 0x0a, + 0x22, 0xb0, 0x77, 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, @@ -3002,7 +3015,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x76, 0x32, 0x32, 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, @@ -3010,7 +3023,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3019,13 +3032,13 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -3034,7 +3047,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x32, 0x32, 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, @@ -3044,7 +3057,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3054,7 +3067,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3063,7 +3076,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3076,7 +3089,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3084,7 +3097,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, @@ -3092,7 +3105,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3101,7 +3114,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x32, 0x32, 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, @@ -3109,7 +3122,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x5e, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, @@ -3117,27 +3130,27 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x61, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x50, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x14, 0x70, 0x6d, 0x61, 0x78, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3145,27 +3158,27 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3173,14 +3186,14 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3188,7 +3201,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, @@ -3199,7 +3212,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3218,7 +3231,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3247,14 +3260,14 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x53, + 0x76, 0x32, 0x32, 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, @@ -3262,14 +3275,14 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x32, 0x32, 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, @@ -3277,21 +3290,21 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x61, 0x79, 0x6d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3302,7 +3315,7 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -3310,851 +3323,860 @@ var file_google_ads_googleads_v21_resources_campaign_proto_rawDesc = string([]by 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x42, 0x0a, 0x18, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, - 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, - 0x18, 0x60, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x0f, 0x52, 0x16, 0x62, - 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x45, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x67, 0x0a, 0x10, 0x62, 0x72, 0x61, 0x6e, - 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x18, 0x62, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x73, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, - 0x52, 0x0f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, - 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x20, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, - 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, - 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x64, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, - 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, - 0x6e, 0x65, 0x72, 0x73, 0x52, 0x1d, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, - 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, - 0x65, 0x72, 0x73, 0x12, 0x5f, 0x0a, 0x0e, 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x65, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, - 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x0c, 0x61, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x12, 0xa8, 0x01, 0x0a, 0x21, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, - 0x73, 0x5f, 0x65, 0x75, 0x5f, 0x70, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x61, - 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x18, 0x66, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, - 0x73, 0x2e, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, - 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, - 0x75, 0x6d, 0x2e, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, - 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, - 0x1e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, - 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, + 0x0c, 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, 0x32, 0x32, 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, 0x0d, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x42, 0x0a, 0x18, + 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, + 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x18, 0x60, 0x20, 0x01, 0x28, 0x08, 0x42, 0x03, + 0xe0, 0x41, 0x05, 0x48, 0x0e, 0x52, 0x16, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, + 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x64, 0x88, 0x01, 0x01, + 0x12, 0x67, 0x0a, 0x10, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, + 0x69, 0x6e, 0x65, 0x73, 0x18, 0x62, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, + 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x52, 0x0f, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x47, + 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x8f, 0x01, 0x0a, 0x20, 0x74, 0x68, + 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x64, + 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x54, + 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x52, 0x1d, 0x74, 0x68, + 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x12, 0x5f, 0x0a, 0x0e, 0x61, + 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x18, 0x65, 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, 0x32, 0x32, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x52, 0x0c, + 0x61, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0xa8, 0x01, 0x0a, + 0x21, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, 0x73, 0x5f, 0x65, 0x75, 0x5f, 0x70, 0x6f, 0x6c, + 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x5f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, + 0x6e, 0x67, 0x18, 0x66, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, + 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, + 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x45, 0x75, 0x50, 0x6f, 0x6c, + 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, + 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x1e, 0x63, 0x6f, 0x6e, 0x74, 0x61, 0x69, 0x6e, + 0x73, 0x45, 0x75, 0x50, 0x6f, 0x6c, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x41, 0x64, 0x76, 0x65, + 0x72, 0x74, 0x69, 0x73, 0x69, 0x6e, 0x67, 0x12, 0x61, 0x0a, 0x0a, 0x66, 0x65, 0x65, 0x64, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x67, 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, 0x32, 0x32, 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, + 0x09, 0x66, 0x65, 0x65, 0x64, 0x54, 0x79, 0x70, 0x65, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, - 0x32, 0x31, 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, - 0x12, 0x48, 0x0a, 0x09, 0x66, 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x5c, 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, 0x32, 0x31, 0x2e, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x48, 0x00, - 0x52, 0x08, 0x66, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x76, 0x18, 0x5d, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2a, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x12, 0x48, 0x0a, 0x09, 0x66, + 0x69, 0x78, 0x65, 0x64, 0x5f, 0x63, 0x70, 0x6d, 0x18, 0x5c, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x76, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, - 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x76, 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, 0x32, 0x31, 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, 0xbe, 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, 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, 0xa8, 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, 0x36, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x2e, 0x46, 0x69, 0x78, 0x65, 0x64, 0x43, 0x70, 0x6d, 0x48, 0x00, 0x52, 0x08, 0x66, 0x69, 0x78, + 0x65, 0x64, 0x43, 0x70, 0x6d, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, + 0x63, 0x70, 0x76, 0x18, 0x5d, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x43, 0x70, 0x76, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, + 0x70, 0x76, 0x12, 0x4b, 0x0a, 0x0a, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x63, + 0x18, 0x63, 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, 0x32, - 0x31, 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, + 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, + 0x70, 0x63, 0x48, 0x00, 0x52, 0x09, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x70, 0x63, 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, 0x32, 0x32, 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, 0xbe, 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, 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, 0xa8, 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, 0x36, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, - 0x32, 0x31, 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, - 0xe7, 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, 0x12, 0x36, 0x0a, - 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, 0x5f, - 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x12, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x42, - 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0xb1, 0x10, 0x0a, - 0x15, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x7e, 0x0a, 0x11, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, - 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x18, 0x04, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, - 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, - 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, - 0x75, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x0f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, - 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x99, 0x01, 0x0a, 0x1a, 0x76, 0x69, 0x64, 0x65, 0x6f, - 0x5f, 0x61, 0x64, 0x5f, 0x69, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, - 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x02, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, - 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, - 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, - 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x00, 0x52, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, - 0x41, 0x64, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, - 0x6f, 0x6c, 0x12, 0x90, 0x01, 0x0a, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, - 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x03, - 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, 0x32, 0x31, 0x2e, - 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, - 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, - 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x00, 0x52, - 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x43, 0x6f, - 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x1a, 0xb7, 0x02, 0x0a, 0x17, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, - 0x64, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, - 0x6c, 0x12, 0x2b, 0x0a, 0x0f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, - 0x72, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x6c, - 0x6c, 0x6f, 0x77, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x27, - 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x49, 0x6e, - 0x46, 0x65, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, - 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, - 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, - 0x45, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, - 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, 0x52, 0x19, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4e, - 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, - 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, - 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, - 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x42, 0x0f, 0x0a, 0x0d, - 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x42, 0x20, 0x0a, - 0x1e, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, - 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x1a, - 0xd3, 0x02, 0x0a, 0x14, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, - 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x84, 0x01, 0x0a, 0x12, 0x66, 0x6f, 0x72, - 0x6d, 0x61, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, - 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, - 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, - 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, - 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x66, 0x6f, - 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, - 0xb3, 0x01, 0x0a, 0x24, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x74, - 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, - 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, - 0x67, 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, - 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, - 0x6f, 0x6e, 0x73, 0x52, 0x20, 0x6e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, - 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, - 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x92, 0x02, 0x0a, 0x20, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, - 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, - 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x76, 0x0a, 0x0c, 0x6d, 0x69, - 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, - 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x69, - 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, - 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x69, 0x6e, 0x44, 0x75, 0x72, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6d, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x0c, 0x6d, 0x61, 0x78, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x53, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, + 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0xe7, 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, 0x12, 0x36, 0x0a, 0x15, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, + 0x63, 0x70, 0x61, 0x5f, 0x62, 0x69, 0x64, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x03, + 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x12, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 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, 0xb1, 0x10, 0x0a, 0x15, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x7e, + 0x0a, 0x11, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x65, 0x18, 0x04, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, + 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x52, 0x0f, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x99, + 0x01, 0x0a, 0x1a, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x69, 0x6e, 0x76, 0x65, + 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x02, 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, 0x32, 0x32, 0x2e, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, + 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, + 0x00, 0x52, 0x17, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, + 0x6f, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x90, 0x01, 0x0a, 0x17, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x63, + 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x18, 0x03, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, + 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, + 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x43, 0x6f, + 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x48, 0x00, 0x52, 0x14, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, + 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x1a, 0xb7, 0x02, + 0x0a, 0x17, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x49, 0x6e, 0x76, 0x65, 0x6e, 0x74, 0x6f, + 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x12, 0x2b, 0x0a, 0x0f, 0x61, 0x6c, 0x6c, + 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x08, 0x48, 0x00, 0x52, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x49, 0x6e, 0x53, 0x74, 0x72, + 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x12, 0x27, 0x0a, 0x0d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, + 0x69, 0x6e, 0x5f, 0x66, 0x65, 0x65, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x48, 0x01, 0x52, + 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x49, 0x6e, 0x46, 0x65, 0x65, 0x64, 0x88, 0x01, 0x01, 0x12, + 0x26, 0x0a, 0x0c, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x18, + 0x03, 0x20, 0x01, 0x28, 0x08, 0x48, 0x02, 0x52, 0x0b, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x53, 0x68, + 0x6f, 0x72, 0x74, 0x73, 0x88, 0x01, 0x01, 0x12, 0x45, 0x0a, 0x1d, 0x61, 0x6c, 0x6c, 0x6f, 0x77, + 0x5f, 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, + 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x48, 0x03, + 0x52, 0x19, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, + 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x88, 0x01, 0x01, 0x42, 0x12, + 0x0a, 0x10, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, 0x65, + 0x61, 0x6d, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x69, 0x6e, 0x5f, + 0x66, 0x65, 0x65, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, 0x73, + 0x68, 0x6f, 0x72, 0x74, 0x73, 0x42, 0x20, 0x0a, 0x1e, 0x5f, 0x61, 0x6c, 0x6c, 0x6f, 0x77, 0x5f, + 0x6e, 0x6f, 0x6e, 0x5f, 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6e, + 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x1a, 0xd3, 0x02, 0x0a, 0x14, 0x56, 0x69, 0x64, 0x65, + 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x43, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, + 0x12, 0x84, 0x01, 0x0a, 0x12, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x74, + 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, + 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, + 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, + 0x6f, 0x41, 0x64, 0x46, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x11, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x74, 0x52, 0x65, 0x73, 0x74, + 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0xb3, 0x01, 0x0a, 0x24, 0x6e, 0x6f, 0x6e, 0x5f, + 0x73, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6e, 0x5f, 0x73, 0x74, 0x72, + 0x65, 0x61, 0x6d, 0x5f, 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b, 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, 0x32, + 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, + 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, + 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x52, 0x20, 0x6e, 0x6f, 0x6e, + 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, 0x53, 0x74, 0x72, 0x65, 0x61, + 0x6d, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x1a, 0x92, 0x02, + 0x0a, 0x20, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6e, + 0x53, 0x74, 0x72, 0x65, 0x61, 0x6d, 0x52, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x12, 0x76, 0x0a, 0x0c, 0x6d, 0x69, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, - 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, + 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, - 0x6c, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6d, - 0x61, 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x8e, 0x02, 0x0a, 0x0f, 0x56, - 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x6c, - 0x0a, 0x05, 0x73, 0x74, 0x65, 0x70, 0x73, 0x18, 0x01, 0x20, 0x03, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, - 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, - 0x65, 0x53, 0x74, 0x65, 0x70, 0x52, 0x05, 0x73, 0x74, 0x65, 0x70, 0x73, 0x12, 0x8c, 0x01, 0x0a, - 0x10, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, - 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, - 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, - 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6e, 0x69, 0x6d, - 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0f, 0x6d, 0x69, 0x6e, 0x69, - 0x6d, 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x1a, 0x9e, 0x03, 0x0a, 0x13, - 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x53, - 0x74, 0x65, 0x70, 0x12, 0x38, 0x0a, 0x19, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, - 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x64, - 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, - 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x65, 0x70, 0x49, 0x64, 0x12, 0x19, 0x0a, - 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x07, 0x61, 0x73, 0x73, 0x65, 0x74, 0x49, 0x64, 0x12, 0x5f, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, - 0x72, 0x6f, 0x75, 0x70, 0x5f, 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, 0x32, 0x31, 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, 0x52, 0x0b, 0x61, 0x64, - 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x65, - 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x53, 0x74, 0x65, - 0x70, 0x49, 0x64, 0x12, 0xa6, 0x01, 0x0a, 0x1e, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, - 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x69, - 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, + 0x6c, 0x65, 0x4d, 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6d, + 0x69, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x76, 0x0a, 0x0c, 0x6d, 0x61, + 0x78, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2e, 0x4e, 0x6f, 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, + 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x4e, 0x6f, + 0x6e, 0x53, 0x6b, 0x69, 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x4d, 0x61, 0x78, 0x44, 0x75, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x0b, 0x6d, 0x61, 0x78, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x1a, 0x8e, 0x02, 0x0a, 0x0f, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, + 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x6c, 0x0a, 0x05, 0x73, 0x74, 0x65, 0x70, 0x73, 0x18, + 0x01, 0x20, 0x03, 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, 0x32, 0x32, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, + 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, + 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x65, 0x70, 0x52, 0x05, 0x73, + 0x74, 0x65, 0x70, 0x73, 0x12, 0x8c, 0x01, 0x0a, 0x10, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, + 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, - 0x1b, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x53, 0x74, 0x65, 0x70, 0x49, 0x6e, 0x74, - 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x42, 0x12, 0x0a, 0x10, - 0x66, 0x6c, 0x75, 0x69, 0x64, 0x69, 0x74, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, - 0x1a, 0xc2, 0x02, 0x0a, 0x14, 0x50, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, - 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x95, 0x01, 0x0a, 0x19, 0x62, 0x72, - 0x61, 0x6e, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x76, - 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x50, 0x6d, 0x61, 0x78, - 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, - 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, - 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x52, 0x17, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x54, - 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, - 0x73, 0x1a, 0x91, 0x01, 0x0a, 0x17, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x12, 0x4f, 0x0a, - 0x22, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, - 0x61, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x1e, 0x69, 0x67, 0x6e, - 0x6f, 0x72, 0x65, 0x45, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x6f, 0x72, - 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x41, 0x64, 0x73, 0x88, 0x01, 0x01, 0x42, 0x25, - 0x0a, 0x23, 0x5f, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, - 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, - 0x67, 0x5f, 0x61, 0x64, 0x73, 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, 0x32, 0x31, 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, + 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, + 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x65, 0x4d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x52, 0x0f, 0x6d, 0x69, 0x6e, 0x69, 0x6d, 0x75, 0x6d, 0x44, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x1a, 0x9e, 0x03, 0x0a, 0x13, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, + 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x74, 0x65, 0x70, 0x12, 0x38, 0x0a, 0x19, 0x76, + 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x61, 0x64, 0x5f, 0x73, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, + 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, + 0x76, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x53, + 0x74, 0x65, 0x70, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x69, + 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x61, 0x73, 0x73, 0x65, 0x74, 0x49, 0x64, + 0x12, 0x5f, 0x0a, 0x0d, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 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, + 0x32, 0x32, 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, 0x52, 0x0b, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x54, 0x79, 0x70, + 0x65, 0x12, 0x28, 0x0a, 0x10, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x73, 0x74, + 0x65, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x65, + 0x76, 0x69, 0x6f, 0x75, 0x73, 0x53, 0x74, 0x65, 0x70, 0x49, 0x64, 0x12, 0xa6, 0x01, 0x0a, 0x1e, + 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x69, 0x6e, + 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x32, 0x32, 0x2e, + 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, 0x53, 0x65, 0x71, + 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x41, 0x64, + 0x53, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, + 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x52, 0x1b, 0x70, 0x72, 0x65, 0x76, 0x69, 0x6f, 0x75, + 0x73, 0x53, 0x74, 0x65, 0x70, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x54, 0x79, 0x70, 0x65, 0x42, 0x12, 0x0a, 0x10, 0x66, 0x6c, 0x75, 0x69, 0x64, 0x69, 0x74, 0x79, + 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x72, 0x6f, 0x6c, 0x1a, 0xc2, 0x02, 0x0a, 0x14, 0x50, 0x6d, 0x61, + 0x78, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x73, 0x12, 0x95, 0x01, 0x0a, 0x19, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 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, 0x32, 0x32, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x2e, 0x50, 0x6d, 0x61, 0x78, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x54, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, + 0x52, 0x17, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, + 0x4f, 0x76, 0x65, 0x72, 0x72, 0x69, 0x64, 0x65, 0x73, 0x1a, 0x91, 0x01, 0x0a, 0x17, 0x42, 0x72, + 0x61, 0x6e, 0x64, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x76, 0x65, 0x72, + 0x72, 0x69, 0x64, 0x65, 0x73, 0x12, 0x4f, 0x0a, 0x22, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x5f, + 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x6f, 0x72, 0x5f, 0x73, + 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x64, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x08, 0x48, 0x00, 0x52, 0x1e, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x45, 0x78, 0x63, 0x6c, 0x75, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x46, 0x6f, 0x72, 0x53, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, + 0x41, 0x64, 0x73, 0x88, 0x01, 0x01, 0x42, 0x25, 0x0a, 0x23, 0x5f, 0x69, 0x67, 0x6e, 0x6f, 0x72, + 0x65, 0x5f, 0x65, 0x78, 0x63, 0x6c, 0x75, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x5f, 0x66, 0x6f, 0x72, + 0x5f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, 0x6e, 0x67, 0x5f, 0x61, 0x64, 0x73, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x1a, 0x89, 0x01, 0x0a, 0x0f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, + 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x69, 0x6e, + 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, + 0x69, 0x6e, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x6e, + 0x74, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, + 0x63, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x72, + 0x65, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x5f, 0x66, 0x6f, 0x6e, 0x74, 0x5f, 0x66, 0x61, + 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x72, 0x65, 0x64, + 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x46, 0x6f, 0x6e, 0x74, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, + 0x1a, 0xbf, 0x02, 0x0a, 0x0c, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x12, 0x27, 0x0a, 0x0d, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x69, 0x5f, 0x6d, + 0x61, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x61, 0x62, + 0x6c, 0x65, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x88, 0x01, 0x01, 0x12, 0x86, 0x01, 0x0a, 0x11, 0x62, + 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, + 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, 0x32, + 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x52, + 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x10, + 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, + 0x88, 0x01, 0x01, 0x22, 0x55, 0x0a, 0x15, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x42, 0x75, 0x6e, 0x64, + 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 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, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, + 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, 0x10, 0x03, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x65, + 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x42, 0x14, 0x0a, 0x12, + 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, + 0x65, 0x64, 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, 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, 0x1b, 0x0a, 0x19, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, + 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x65, 0x6e, 0x61, 0x62, + 0x6c, 0x65, 0x64, 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, 0x32, 0x31, 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, 0x1a, 0x89, 0x01, 0x0a, - 0x0f, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, - 0x12, 0x1d, 0x0a, 0x0a, 0x6d, 0x61, 0x69, 0x6e, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x69, 0x6e, 0x43, 0x6f, 0x6c, 0x6f, 0x72, 0x12, - 0x21, 0x0a, 0x0c, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x61, 0x63, 0x63, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6c, - 0x6f, 0x72, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x72, 0x65, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, - 0x5f, 0x66, 0x6f, 0x6e, 0x74, 0x5f, 0x66, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x18, 0x03, 0x20, 0x01, - 0x28, 0x09, 0x52, 0x14, 0x70, 0x72, 0x65, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x65, 0x64, 0x46, 0x6f, - 0x6e, 0x74, 0x46, 0x61, 0x6d, 0x69, 0x6c, 0x79, 0x1a, 0xbf, 0x02, 0x0a, 0x0c, 0x41, 0x69, 0x4d, - 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x27, 0x0a, 0x0d, 0x65, 0x6e, 0x61, - 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, - 0x48, 0x00, 0x52, 0x0b, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x88, - 0x01, 0x01, 0x12, 0x86, 0x01, 0x0a, 0x11, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x5f, - 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x2e, 0x41, 0x69, 0x4d, - 0x61, 0x78, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x42, - 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x42, - 0x03, 0xe0, 0x41, 0x03, 0x48, 0x01, 0x52, 0x10, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, - 0x52, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 0x88, 0x01, 0x01, 0x22, 0x55, 0x0a, 0x15, 0x41, - 0x69, 0x4d, 0x61, 0x78, 0x42, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x75, - 0x69, 0x72, 0x65, 0x64, 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, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, - 0x45, 0x44, 0x10, 0x02, 0x12, 0x0c, 0x0a, 0x08, 0x52, 0x45, 0x51, 0x55, 0x49, 0x52, 0x45, 0x44, - 0x10, 0x03, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x61, 0x69, - 0x5f, 0x6d, 0x61, 0x78, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x62, 0x75, 0x6e, 0x64, 0x6c, 0x69, 0x6e, - 0x67, 0x5f, 0x72, 0x65, 0x71, 0x75, 0x69, 0x72, 0x65, 0x64, 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, 0x1b, 0x0a, 0x19, 0x5f, 0x62, 0x72, 0x61, - 0x6e, 0x64, 0x5f, 0x67, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x5f, 0x65, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x64, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_campaign_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 29) -var file_google_ads_googleads_v21_resources_campaign_proto_goTypes = []any{ - (Campaign_AiMaxSetting_AiMaxBundlingRequired)(0), // 0: google.ads.googleads.v21.resources.Campaign.AiMaxSetting.AiMaxBundlingRequired - (*Campaign)(nil), // 1: google.ads.googleads.v21.resources.Campaign - (*Campaign_PerformanceMaxUpgrade)(nil), // 2: google.ads.googleads.v21.resources.Campaign.PerformanceMaxUpgrade - (*Campaign_NetworkSettings)(nil), // 3: google.ads.googleads.v21.resources.Campaign.NetworkSettings - (*Campaign_HotelSettingInfo)(nil), // 4: google.ads.googleads.v21.resources.Campaign.HotelSettingInfo - (*Campaign_DynamicSearchAdsSetting)(nil), // 5: google.ads.googleads.v21.resources.Campaign.DynamicSearchAdsSetting - (*Campaign_ShoppingSetting)(nil), // 6: google.ads.googleads.v21.resources.Campaign.ShoppingSetting - (*Campaign_TrackingSetting)(nil), // 7: google.ads.googleads.v21.resources.Campaign.TrackingSetting - (*Campaign_GeoTargetTypeSetting)(nil), // 8: google.ads.googleads.v21.resources.Campaign.GeoTargetTypeSetting - (*Campaign_LocalCampaignSetting)(nil), // 9: google.ads.googleads.v21.resources.Campaign.LocalCampaignSetting - (*Campaign_AppCampaignSetting)(nil), // 10: google.ads.googleads.v21.resources.Campaign.AppCampaignSetting - (*Campaign_VanityPharma)(nil), // 11: google.ads.googleads.v21.resources.Campaign.VanityPharma - (*Campaign_SelectiveOptimization)(nil), // 12: google.ads.googleads.v21.resources.Campaign.SelectiveOptimization - (*Campaign_OptimizationGoalSetting)(nil), // 13: google.ads.googleads.v21.resources.Campaign.OptimizationGoalSetting - (*Campaign_AudienceSetting)(nil), // 14: google.ads.googleads.v21.resources.Campaign.AudienceSetting - (*Campaign_LocalServicesCampaignSettings)(nil), // 15: google.ads.googleads.v21.resources.Campaign.LocalServicesCampaignSettings - (*Campaign_CategoryBid)(nil), // 16: google.ads.googleads.v21.resources.Campaign.CategoryBid - (*Campaign_TravelCampaignSettings)(nil), // 17: google.ads.googleads.v21.resources.Campaign.TravelCampaignSettings - (*Campaign_DemandGenCampaignSettings)(nil), // 18: google.ads.googleads.v21.resources.Campaign.DemandGenCampaignSettings - (*Campaign_VideoCampaignSettings)(nil), // 19: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings - (*Campaign_PmaxCampaignSettings)(nil), // 20: google.ads.googleads.v21.resources.Campaign.PmaxCampaignSettings - (*Campaign_AssetAutomationSetting)(nil), // 21: google.ads.googleads.v21.resources.Campaign.AssetAutomationSetting - (*Campaign_BrandGuidelines)(nil), // 22: google.ads.googleads.v21.resources.Campaign.BrandGuidelines - (*Campaign_AiMaxSetting)(nil), // 23: google.ads.googleads.v21.resources.Campaign.AiMaxSetting - (*Campaign_VideoCampaignSettings_VideoAdInventoryControl)(nil), // 24: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl - (*Campaign_VideoCampaignSettings_VideoAdFormatControl)(nil), // 25: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl - (*Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions)(nil), // 26: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions - (*Campaign_VideoCampaignSettings_VideoAdSequence)(nil), // 27: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequence - (*Campaign_VideoCampaignSettings_VideoAdSequenceStep)(nil), // 28: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep - (*Campaign_PmaxCampaignSettings_BrandTargetingOverrides)(nil), // 29: google.ads.googleads.v21.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides - (enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 30: google.ads.googleads.v21.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus - (enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 31: google.ads.googleads.v21.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason - (enums.CampaignStatusEnum_CampaignStatus)(0), // 32: google.ads.googleads.v21.enums.CampaignStatusEnum.CampaignStatus - (enums.CampaignServingStatusEnum_CampaignServingStatus)(0), // 33: google.ads.googleads.v21.enums.CampaignServingStatusEnum.CampaignServingStatus - (enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 34: google.ads.googleads.v21.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus - (enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 35: google.ads.googleads.v21.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 36: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 37: google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - (*common.CustomParameter)(nil), // 38: google.ads.googleads.v21.common.CustomParameter - (*common.RealTimeBiddingSetting)(nil), // 39: google.ads.googleads.v21.common.RealTimeBiddingSetting - (*common.TargetingSetting)(nil), // 40: google.ads.googleads.v21.common.TargetingSetting - (enums.CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 41: google.ads.googleads.v21.enums.CampaignExperimentTypeEnum.CampaignExperimentType - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 42: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (*common.FrequencyCapEntry)(nil), // 43: google.ads.googleads.v21.common.FrequencyCapEntry - (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 44: google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - (enums.PaymentModeEnum_PaymentMode)(0), // 45: google.ads.googleads.v21.enums.PaymentModeEnum.PaymentMode - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 46: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSetTypeEnum_AssetSetType)(0), // 47: google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - (enums.ListingTypeEnum_ListingType)(0), // 48: google.ads.googleads.v21.enums.ListingTypeEnum.ListingType - (enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 49: google.ads.googleads.v21.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType - (*common.CampaignThirdPartyIntegrationPartners)(nil), // 50: google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners - (enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus)(0), // 51: google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus - (*common.Commission)(nil), // 52: google.ads.googleads.v21.common.Commission - (*common.ManualCpa)(nil), // 53: google.ads.googleads.v21.common.ManualCpa - (*common.ManualCpc)(nil), // 54: google.ads.googleads.v21.common.ManualCpc - (*common.ManualCpm)(nil), // 55: google.ads.googleads.v21.common.ManualCpm - (*common.ManualCpv)(nil), // 56: google.ads.googleads.v21.common.ManualCpv - (*common.MaximizeConversions)(nil), // 57: google.ads.googleads.v21.common.MaximizeConversions - (*common.MaximizeConversionValue)(nil), // 58: google.ads.googleads.v21.common.MaximizeConversionValue - (*common.TargetCpa)(nil), // 59: google.ads.googleads.v21.common.TargetCpa - (*common.TargetImpressionShare)(nil), // 60: google.ads.googleads.v21.common.TargetImpressionShare - (*common.TargetRoas)(nil), // 61: google.ads.googleads.v21.common.TargetRoas - (*common.TargetSpend)(nil), // 62: google.ads.googleads.v21.common.TargetSpend - (*common.PercentCpc)(nil), // 63: google.ads.googleads.v21.common.PercentCpc - (*common.TargetCpm)(nil), // 64: google.ads.googleads.v21.common.TargetCpm - (*common.FixedCpm)(nil), // 65: google.ads.googleads.v21.common.FixedCpm - (*common.TargetCpv)(nil), // 66: google.ads.googleads.v21.common.TargetCpv - (enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 67: google.ads.googleads.v21.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus - (enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 68: google.ads.googleads.v21.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType - (enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 69: google.ads.googleads.v21.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType - (enums.LocationSourceTypeEnum_LocationSourceType)(0), // 70: google.ads.googleads.v21.enums.LocationSourceTypeEnum.LocationSourceType - (enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 71: google.ads.googleads.v21.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType - (enums.AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 72: google.ads.googleads.v21.enums.AppCampaignAppStoreEnum.AppCampaignAppStore - (enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 73: google.ads.googleads.v21.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode - (enums.VanityPharmaTextEnum_VanityPharmaText)(0), // 74: google.ads.googleads.v21.enums.VanityPharmaTextEnum.VanityPharmaText - (enums.OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 75: google.ads.googleads.v21.enums.OptimizationGoalTypeEnum.OptimizationGoalType - (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 76: google.ads.googleads.v21.enums.AssetAutomationTypeEnum.AssetAutomationType - (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 77: google.ads.googleads.v21.enums.AssetAutomationStatusEnum.AssetAutomationStatus - (enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction)(0), // 78: google.ads.googleads.v21.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction - (enums.NonSkippableMinDurationEnum_NonSkippableMinDuration)(0), // 79: google.ads.googleads.v21.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration - (enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration)(0), // 80: google.ads.googleads.v21.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration - (enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration)(0), // 81: google.ads.googleads.v21.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration - (enums.AdGroupTypeEnum_AdGroupType)(0), // 82: google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - (enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType)(0), // 83: google.ads.googleads.v21.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType -} -var file_google_ads_googleads_v21_resources_campaign_proto_depIdxs = []int32{ - 30, // 0: google.ads.googleads.v21.resources.Campaign.primary_status:type_name -> google.ads.googleads.v21.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus - 31, // 1: google.ads.googleads.v21.resources.Campaign.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason - 32, // 2: google.ads.googleads.v21.resources.Campaign.status:type_name -> google.ads.googleads.v21.enums.CampaignStatusEnum.CampaignStatus - 33, // 3: google.ads.googleads.v21.resources.Campaign.serving_status:type_name -> google.ads.googleads.v21.enums.CampaignServingStatusEnum.CampaignServingStatus - 34, // 4: google.ads.googleads.v21.resources.Campaign.bidding_strategy_system_status:type_name -> google.ads.googleads.v21.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus - 35, // 5: google.ads.googleads.v21.resources.Campaign.ad_serving_optimization_status:type_name -> google.ads.googleads.v21.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus - 36, // 6: google.ads.googleads.v21.resources.Campaign.advertising_channel_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 37, // 7: google.ads.googleads.v21.resources.Campaign.advertising_channel_sub_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType - 38, // 8: google.ads.googleads.v21.resources.Campaign.url_custom_parameters:type_name -> google.ads.googleads.v21.common.CustomParameter - 15, // 9: google.ads.googleads.v21.resources.Campaign.local_services_campaign_settings:type_name -> google.ads.googleads.v21.resources.Campaign.LocalServicesCampaignSettings - 17, // 10: google.ads.googleads.v21.resources.Campaign.travel_campaign_settings:type_name -> google.ads.googleads.v21.resources.Campaign.TravelCampaignSettings - 18, // 11: google.ads.googleads.v21.resources.Campaign.demand_gen_campaign_settings:type_name -> google.ads.googleads.v21.resources.Campaign.DemandGenCampaignSettings - 19, // 12: google.ads.googleads.v21.resources.Campaign.video_campaign_settings:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings - 20, // 13: google.ads.googleads.v21.resources.Campaign.pmax_campaign_settings:type_name -> google.ads.googleads.v21.resources.Campaign.PmaxCampaignSettings - 39, // 14: google.ads.googleads.v21.resources.Campaign.real_time_bidding_setting:type_name -> google.ads.googleads.v21.common.RealTimeBiddingSetting - 3, // 15: google.ads.googleads.v21.resources.Campaign.network_settings:type_name -> google.ads.googleads.v21.resources.Campaign.NetworkSettings - 4, // 16: google.ads.googleads.v21.resources.Campaign.hotel_setting:type_name -> google.ads.googleads.v21.resources.Campaign.HotelSettingInfo - 5, // 17: google.ads.googleads.v21.resources.Campaign.dynamic_search_ads_setting:type_name -> google.ads.googleads.v21.resources.Campaign.DynamicSearchAdsSetting - 6, // 18: google.ads.googleads.v21.resources.Campaign.shopping_setting:type_name -> google.ads.googleads.v21.resources.Campaign.ShoppingSetting - 40, // 19: google.ads.googleads.v21.resources.Campaign.targeting_setting:type_name -> google.ads.googleads.v21.common.TargetingSetting - 14, // 20: google.ads.googleads.v21.resources.Campaign.audience_setting:type_name -> google.ads.googleads.v21.resources.Campaign.AudienceSetting - 8, // 21: google.ads.googleads.v21.resources.Campaign.geo_target_type_setting:type_name -> google.ads.googleads.v21.resources.Campaign.GeoTargetTypeSetting - 9, // 22: google.ads.googleads.v21.resources.Campaign.local_campaign_setting:type_name -> google.ads.googleads.v21.resources.Campaign.LocalCampaignSetting - 10, // 23: google.ads.googleads.v21.resources.Campaign.app_campaign_setting:type_name -> google.ads.googleads.v21.resources.Campaign.AppCampaignSetting - 41, // 24: google.ads.googleads.v21.resources.Campaign.experiment_type:type_name -> google.ads.googleads.v21.enums.CampaignExperimentTypeEnum.CampaignExperimentType - 42, // 25: google.ads.googleads.v21.resources.Campaign.bidding_strategy_type:type_name -> google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 43, // 26: google.ads.googleads.v21.resources.Campaign.frequency_caps:type_name -> google.ads.googleads.v21.common.FrequencyCapEntry - 44, // 27: google.ads.googleads.v21.resources.Campaign.video_brand_safety_suitability:type_name -> google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - 11, // 28: google.ads.googleads.v21.resources.Campaign.vanity_pharma:type_name -> google.ads.googleads.v21.resources.Campaign.VanityPharma - 12, // 29: google.ads.googleads.v21.resources.Campaign.selective_optimization:type_name -> google.ads.googleads.v21.resources.Campaign.SelectiveOptimization - 13, // 30: google.ads.googleads.v21.resources.Campaign.optimization_goal_setting:type_name -> google.ads.googleads.v21.resources.Campaign.OptimizationGoalSetting - 7, // 31: google.ads.googleads.v21.resources.Campaign.tracking_setting:type_name -> google.ads.googleads.v21.resources.Campaign.TrackingSetting - 45, // 32: google.ads.googleads.v21.resources.Campaign.payment_mode:type_name -> google.ads.googleads.v21.enums.PaymentModeEnum.PaymentMode - 46, // 33: google.ads.googleads.v21.resources.Campaign.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 47, // 34: google.ads.googleads.v21.resources.Campaign.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v21.enums.AssetSetTypeEnum.AssetSetType - 2, // 35: google.ads.googleads.v21.resources.Campaign.performance_max_upgrade:type_name -> google.ads.googleads.v21.resources.Campaign.PerformanceMaxUpgrade - 48, // 36: google.ads.googleads.v21.resources.Campaign.listing_type:type_name -> google.ads.googleads.v21.enums.ListingTypeEnum.ListingType - 21, // 37: google.ads.googleads.v21.resources.Campaign.asset_automation_settings:type_name -> google.ads.googleads.v21.resources.Campaign.AssetAutomationSetting - 49, // 38: google.ads.googleads.v21.resources.Campaign.keyword_match_type:type_name -> google.ads.googleads.v21.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType - 22, // 39: google.ads.googleads.v21.resources.Campaign.brand_guidelines:type_name -> google.ads.googleads.v21.resources.Campaign.BrandGuidelines - 50, // 40: google.ads.googleads.v21.resources.Campaign.third_party_integration_partners:type_name -> google.ads.googleads.v21.common.CampaignThirdPartyIntegrationPartners - 23, // 41: google.ads.googleads.v21.resources.Campaign.ai_max_setting:type_name -> google.ads.googleads.v21.resources.Campaign.AiMaxSetting - 51, // 42: google.ads.googleads.v21.resources.Campaign.contains_eu_political_advertising:type_name -> google.ads.googleads.v21.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus - 52, // 43: google.ads.googleads.v21.resources.Campaign.commission:type_name -> google.ads.googleads.v21.common.Commission - 53, // 44: google.ads.googleads.v21.resources.Campaign.manual_cpa:type_name -> google.ads.googleads.v21.common.ManualCpa - 54, // 45: google.ads.googleads.v21.resources.Campaign.manual_cpc:type_name -> google.ads.googleads.v21.common.ManualCpc - 55, // 46: google.ads.googleads.v21.resources.Campaign.manual_cpm:type_name -> google.ads.googleads.v21.common.ManualCpm - 56, // 47: google.ads.googleads.v21.resources.Campaign.manual_cpv:type_name -> google.ads.googleads.v21.common.ManualCpv - 57, // 48: google.ads.googleads.v21.resources.Campaign.maximize_conversions:type_name -> google.ads.googleads.v21.common.MaximizeConversions - 58, // 49: google.ads.googleads.v21.resources.Campaign.maximize_conversion_value:type_name -> google.ads.googleads.v21.common.MaximizeConversionValue - 59, // 50: google.ads.googleads.v21.resources.Campaign.target_cpa:type_name -> google.ads.googleads.v21.common.TargetCpa - 60, // 51: google.ads.googleads.v21.resources.Campaign.target_impression_share:type_name -> google.ads.googleads.v21.common.TargetImpressionShare - 61, // 52: google.ads.googleads.v21.resources.Campaign.target_roas:type_name -> google.ads.googleads.v21.common.TargetRoas - 62, // 53: google.ads.googleads.v21.resources.Campaign.target_spend:type_name -> google.ads.googleads.v21.common.TargetSpend - 63, // 54: google.ads.googleads.v21.resources.Campaign.percent_cpc:type_name -> google.ads.googleads.v21.common.PercentCpc - 64, // 55: google.ads.googleads.v21.resources.Campaign.target_cpm:type_name -> google.ads.googleads.v21.common.TargetCpm - 65, // 56: google.ads.googleads.v21.resources.Campaign.fixed_cpm:type_name -> google.ads.googleads.v21.common.FixedCpm - 66, // 57: google.ads.googleads.v21.resources.Campaign.target_cpv:type_name -> google.ads.googleads.v21.common.TargetCpv - 67, // 58: google.ads.googleads.v21.resources.Campaign.PerformanceMaxUpgrade.status:type_name -> google.ads.googleads.v21.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus - 68, // 59: google.ads.googleads.v21.resources.Campaign.GeoTargetTypeSetting.positive_geo_target_type:type_name -> google.ads.googleads.v21.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType - 69, // 60: google.ads.googleads.v21.resources.Campaign.GeoTargetTypeSetting.negative_geo_target_type:type_name -> google.ads.googleads.v21.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType - 70, // 61: google.ads.googleads.v21.resources.Campaign.LocalCampaignSetting.location_source_type:type_name -> google.ads.googleads.v21.enums.LocationSourceTypeEnum.LocationSourceType - 71, // 62: google.ads.googleads.v21.resources.Campaign.AppCampaignSetting.bidding_strategy_goal_type:type_name -> google.ads.googleads.v21.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType - 72, // 63: google.ads.googleads.v21.resources.Campaign.AppCampaignSetting.app_store:type_name -> google.ads.googleads.v21.enums.AppCampaignAppStoreEnum.AppCampaignAppStore - 73, // 64: google.ads.googleads.v21.resources.Campaign.VanityPharma.vanity_pharma_display_url_mode:type_name -> google.ads.googleads.v21.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode - 74, // 65: google.ads.googleads.v21.resources.Campaign.VanityPharma.vanity_pharma_text:type_name -> google.ads.googleads.v21.enums.VanityPharmaTextEnum.VanityPharmaText - 75, // 66: google.ads.googleads.v21.resources.Campaign.OptimizationGoalSetting.optimization_goal_types:type_name -> google.ads.googleads.v21.enums.OptimizationGoalTypeEnum.OptimizationGoalType - 16, // 67: google.ads.googleads.v21.resources.Campaign.LocalServicesCampaignSettings.category_bids:type_name -> google.ads.googleads.v21.resources.Campaign.CategoryBid - 27, // 68: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.video_ad_sequence:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequence - 24, // 69: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.video_ad_inventory_control:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl - 25, // 70: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.video_ad_format_control:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl - 29, // 71: google.ads.googleads.v21.resources.Campaign.PmaxCampaignSettings.brand_targeting_overrides:type_name -> google.ads.googleads.v21.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides - 76, // 72: google.ads.googleads.v21.resources.Campaign.AssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v21.enums.AssetAutomationTypeEnum.AssetAutomationType - 77, // 73: google.ads.googleads.v21.resources.Campaign.AssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v21.enums.AssetAutomationStatusEnum.AssetAutomationStatus - 0, // 74: google.ads.googleads.v21.resources.Campaign.AiMaxSetting.bundling_required:type_name -> google.ads.googleads.v21.resources.Campaign.AiMaxSetting.AiMaxBundlingRequired - 78, // 75: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.format_restriction:type_name -> google.ads.googleads.v21.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction - 26, // 76: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.non_skippable_in_stream_restrictions:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions - 79, // 77: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions.min_duration:type_name -> google.ads.googleads.v21.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration - 80, // 78: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions.max_duration:type_name -> google.ads.googleads.v21.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration - 28, // 79: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequence.steps:type_name -> google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep - 81, // 80: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequence.minimum_duration:type_name -> google.ads.googleads.v21.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration - 82, // 81: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep.ad_group_type:type_name -> google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - 83, // 82: google.ads.googleads.v21.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep.previous_step_interaction_type:type_name -> google.ads.googleads.v21.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType - 83, // [83:83] is the sub-list for method output_type - 83, // [83:83] is the sub-list for method input_type - 83, // [83:83] is the sub-list for extension type_name - 83, // [83:83] is the sub-list for extension extendee - 0, // [0:83] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_resources_campaign_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_proto != nil { + return file_google_ads_googleads_v22_resources_campaign_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_campaign_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 29) +var file_google_ads_googleads_v22_resources_campaign_proto_goTypes = []any{ + (Campaign_AiMaxSetting_AiMaxBundlingRequired)(0), // 0: google.ads.googleads.v22.resources.Campaign.AiMaxSetting.AiMaxBundlingRequired + (*Campaign)(nil), // 1: google.ads.googleads.v22.resources.Campaign + (*Campaign_PerformanceMaxUpgrade)(nil), // 2: google.ads.googleads.v22.resources.Campaign.PerformanceMaxUpgrade + (*Campaign_NetworkSettings)(nil), // 3: google.ads.googleads.v22.resources.Campaign.NetworkSettings + (*Campaign_HotelSettingInfo)(nil), // 4: google.ads.googleads.v22.resources.Campaign.HotelSettingInfo + (*Campaign_DynamicSearchAdsSetting)(nil), // 5: google.ads.googleads.v22.resources.Campaign.DynamicSearchAdsSetting + (*Campaign_ShoppingSetting)(nil), // 6: google.ads.googleads.v22.resources.Campaign.ShoppingSetting + (*Campaign_TrackingSetting)(nil), // 7: google.ads.googleads.v22.resources.Campaign.TrackingSetting + (*Campaign_GeoTargetTypeSetting)(nil), // 8: google.ads.googleads.v22.resources.Campaign.GeoTargetTypeSetting + (*Campaign_LocalCampaignSetting)(nil), // 9: google.ads.googleads.v22.resources.Campaign.LocalCampaignSetting + (*Campaign_AppCampaignSetting)(nil), // 10: google.ads.googleads.v22.resources.Campaign.AppCampaignSetting + (*Campaign_VanityPharma)(nil), // 11: google.ads.googleads.v22.resources.Campaign.VanityPharma + (*Campaign_SelectiveOptimization)(nil), // 12: google.ads.googleads.v22.resources.Campaign.SelectiveOptimization + (*Campaign_OptimizationGoalSetting)(nil), // 13: google.ads.googleads.v22.resources.Campaign.OptimizationGoalSetting + (*Campaign_AudienceSetting)(nil), // 14: google.ads.googleads.v22.resources.Campaign.AudienceSetting + (*Campaign_LocalServicesCampaignSettings)(nil), // 15: google.ads.googleads.v22.resources.Campaign.LocalServicesCampaignSettings + (*Campaign_CategoryBid)(nil), // 16: google.ads.googleads.v22.resources.Campaign.CategoryBid + (*Campaign_TravelCampaignSettings)(nil), // 17: google.ads.googleads.v22.resources.Campaign.TravelCampaignSettings + (*Campaign_DemandGenCampaignSettings)(nil), // 18: google.ads.googleads.v22.resources.Campaign.DemandGenCampaignSettings + (*Campaign_VideoCampaignSettings)(nil), // 19: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings + (*Campaign_PmaxCampaignSettings)(nil), // 20: google.ads.googleads.v22.resources.Campaign.PmaxCampaignSettings + (*Campaign_AssetAutomationSetting)(nil), // 21: google.ads.googleads.v22.resources.Campaign.AssetAutomationSetting + (*Campaign_BrandGuidelines)(nil), // 22: google.ads.googleads.v22.resources.Campaign.BrandGuidelines + (*Campaign_AiMaxSetting)(nil), // 23: google.ads.googleads.v22.resources.Campaign.AiMaxSetting + (*Campaign_VideoCampaignSettings_VideoAdInventoryControl)(nil), // 24: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl + (*Campaign_VideoCampaignSettings_VideoAdFormatControl)(nil), // 25: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl + (*Campaign_VideoCampaignSettings_NonSkippableInStreamRestrictions)(nil), // 26: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions + (*Campaign_VideoCampaignSettings_VideoAdSequence)(nil), // 27: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequence + (*Campaign_VideoCampaignSettings_VideoAdSequenceStep)(nil), // 28: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep + (*Campaign_PmaxCampaignSettings_BrandTargetingOverrides)(nil), // 29: google.ads.googleads.v22.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides + (enums.CampaignPrimaryStatusEnum_CampaignPrimaryStatus)(0), // 30: google.ads.googleads.v22.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus + (enums.CampaignPrimaryStatusReasonEnum_CampaignPrimaryStatusReason)(0), // 31: google.ads.googleads.v22.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason + (enums.CampaignStatusEnum_CampaignStatus)(0), // 32: google.ads.googleads.v22.enums.CampaignStatusEnum.CampaignStatus + (enums.CampaignServingStatusEnum_CampaignServingStatus)(0), // 33: google.ads.googleads.v22.enums.CampaignServingStatusEnum.CampaignServingStatus + (enums.BiddingStrategySystemStatusEnum_BiddingStrategySystemStatus)(0), // 34: google.ads.googleads.v22.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus + (enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus)(0), // 35: google.ads.googleads.v22.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 36: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType)(0), // 37: google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + (*common.CustomParameter)(nil), // 38: google.ads.googleads.v22.common.CustomParameter + (*common.RealTimeBiddingSetting)(nil), // 39: google.ads.googleads.v22.common.RealTimeBiddingSetting + (*common.TargetingSetting)(nil), // 40: google.ads.googleads.v22.common.TargetingSetting + (enums.CampaignExperimentTypeEnum_CampaignExperimentType)(0), // 41: google.ads.googleads.v22.enums.CampaignExperimentTypeEnum.CampaignExperimentType + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 42: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (*common.FrequencyCapEntry)(nil), // 43: google.ads.googleads.v22.common.FrequencyCapEntry + (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 44: google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + (enums.PaymentModeEnum_PaymentMode)(0), // 45: google.ads.googleads.v22.enums.PaymentModeEnum.PaymentMode + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 46: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSetTypeEnum_AssetSetType)(0), // 47: google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + (enums.ListingTypeEnum_ListingType)(0), // 48: google.ads.googleads.v22.enums.ListingTypeEnum.ListingType + (enums.CampaignKeywordMatchTypeEnum_CampaignKeywordMatchType)(0), // 49: google.ads.googleads.v22.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType + (*common.CampaignThirdPartyIntegrationPartners)(nil), // 50: google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners + (enums.EuPoliticalAdvertisingStatusEnum_EuPoliticalAdvertisingStatus)(0), // 51: google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus + (*common.Commission)(nil), // 52: google.ads.googleads.v22.common.Commission + (*common.ManualCpa)(nil), // 53: google.ads.googleads.v22.common.ManualCpa + (*common.ManualCpc)(nil), // 54: google.ads.googleads.v22.common.ManualCpc + (*common.ManualCpm)(nil), // 55: google.ads.googleads.v22.common.ManualCpm + (*common.ManualCpv)(nil), // 56: google.ads.googleads.v22.common.ManualCpv + (*common.MaximizeConversions)(nil), // 57: google.ads.googleads.v22.common.MaximizeConversions + (*common.MaximizeConversionValue)(nil), // 58: google.ads.googleads.v22.common.MaximizeConversionValue + (*common.TargetCpa)(nil), // 59: google.ads.googleads.v22.common.TargetCpa + (*common.TargetImpressionShare)(nil), // 60: google.ads.googleads.v22.common.TargetImpressionShare + (*common.TargetRoas)(nil), // 61: google.ads.googleads.v22.common.TargetRoas + (*common.TargetSpend)(nil), // 62: google.ads.googleads.v22.common.TargetSpend + (*common.PercentCpc)(nil), // 63: google.ads.googleads.v22.common.PercentCpc + (*common.TargetCpm)(nil), // 64: google.ads.googleads.v22.common.TargetCpm + (*common.FixedCpm)(nil), // 65: google.ads.googleads.v22.common.FixedCpm + (*common.TargetCpv)(nil), // 66: google.ads.googleads.v22.common.TargetCpv + (*common.TargetCpc)(nil), // 67: google.ads.googleads.v22.common.TargetCpc + (enums.PerformanceMaxUpgradeStatusEnum_PerformanceMaxUpgradeStatus)(0), // 68: google.ads.googleads.v22.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus + (enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType)(0), // 69: google.ads.googleads.v22.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType + (enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType)(0), // 70: google.ads.googleads.v22.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType + (enums.LocationSourceTypeEnum_LocationSourceType)(0), // 71: google.ads.googleads.v22.enums.LocationSourceTypeEnum.LocationSourceType + (enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType)(0), // 72: google.ads.googleads.v22.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType + (enums.AppCampaignAppStoreEnum_AppCampaignAppStore)(0), // 73: google.ads.googleads.v22.enums.AppCampaignAppStoreEnum.AppCampaignAppStore + (enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode)(0), // 74: google.ads.googleads.v22.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode + (enums.VanityPharmaTextEnum_VanityPharmaText)(0), // 75: google.ads.googleads.v22.enums.VanityPharmaTextEnum.VanityPharmaText + (enums.OptimizationGoalTypeEnum_OptimizationGoalType)(0), // 76: google.ads.googleads.v22.enums.OptimizationGoalTypeEnum.OptimizationGoalType + (enums.AssetAutomationTypeEnum_AssetAutomationType)(0), // 77: google.ads.googleads.v22.enums.AssetAutomationTypeEnum.AssetAutomationType + (enums.AssetAutomationStatusEnum_AssetAutomationStatus)(0), // 78: google.ads.googleads.v22.enums.AssetAutomationStatusEnum.AssetAutomationStatus + (enums.VideoAdFormatRestrictionEnum_VideoAdFormatRestriction)(0), // 79: google.ads.googleads.v22.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction + (enums.NonSkippableMinDurationEnum_NonSkippableMinDuration)(0), // 80: google.ads.googleads.v22.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration + (enums.NonSkippableMaxDurationEnum_NonSkippableMaxDuration)(0), // 81: google.ads.googleads.v22.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration + (enums.VideoAdSequenceMinimumDurationEnum_VideoAdSequenceMinimumDuration)(0), // 82: google.ads.googleads.v22.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration + (enums.AdGroupTypeEnum_AdGroupType)(0), // 83: google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + (enums.VideoAdSequenceInteractionTypeEnum_VideoAdSequenceInteractionType)(0), // 84: google.ads.googleads.v22.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType +} +var file_google_ads_googleads_v22_resources_campaign_proto_depIdxs = []int32{ + 30, // 0: google.ads.googleads.v22.resources.Campaign.primary_status:type_name -> google.ads.googleads.v22.enums.CampaignPrimaryStatusEnum.CampaignPrimaryStatus + 31, // 1: google.ads.googleads.v22.resources.Campaign.primary_status_reasons:type_name -> google.ads.googleads.v22.enums.CampaignPrimaryStatusReasonEnum.CampaignPrimaryStatusReason + 32, // 2: google.ads.googleads.v22.resources.Campaign.status:type_name -> google.ads.googleads.v22.enums.CampaignStatusEnum.CampaignStatus + 33, // 3: google.ads.googleads.v22.resources.Campaign.serving_status:type_name -> google.ads.googleads.v22.enums.CampaignServingStatusEnum.CampaignServingStatus + 34, // 4: google.ads.googleads.v22.resources.Campaign.bidding_strategy_system_status:type_name -> google.ads.googleads.v22.enums.BiddingStrategySystemStatusEnum.BiddingStrategySystemStatus + 35, // 5: google.ads.googleads.v22.resources.Campaign.ad_serving_optimization_status:type_name -> google.ads.googleads.v22.enums.AdServingOptimizationStatusEnum.AdServingOptimizationStatus + 36, // 6: google.ads.googleads.v22.resources.Campaign.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 37, // 7: google.ads.googleads.v22.resources.Campaign.advertising_channel_sub_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelSubTypeEnum.AdvertisingChannelSubType + 38, // 8: google.ads.googleads.v22.resources.Campaign.url_custom_parameters:type_name -> google.ads.googleads.v22.common.CustomParameter + 15, // 9: google.ads.googleads.v22.resources.Campaign.local_services_campaign_settings:type_name -> google.ads.googleads.v22.resources.Campaign.LocalServicesCampaignSettings + 17, // 10: google.ads.googleads.v22.resources.Campaign.travel_campaign_settings:type_name -> google.ads.googleads.v22.resources.Campaign.TravelCampaignSettings + 18, // 11: google.ads.googleads.v22.resources.Campaign.demand_gen_campaign_settings:type_name -> google.ads.googleads.v22.resources.Campaign.DemandGenCampaignSettings + 19, // 12: google.ads.googleads.v22.resources.Campaign.video_campaign_settings:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings + 20, // 13: google.ads.googleads.v22.resources.Campaign.pmax_campaign_settings:type_name -> google.ads.googleads.v22.resources.Campaign.PmaxCampaignSettings + 39, // 14: google.ads.googleads.v22.resources.Campaign.real_time_bidding_setting:type_name -> google.ads.googleads.v22.common.RealTimeBiddingSetting + 3, // 15: google.ads.googleads.v22.resources.Campaign.network_settings:type_name -> google.ads.googleads.v22.resources.Campaign.NetworkSettings + 4, // 16: google.ads.googleads.v22.resources.Campaign.hotel_setting:type_name -> google.ads.googleads.v22.resources.Campaign.HotelSettingInfo + 5, // 17: google.ads.googleads.v22.resources.Campaign.dynamic_search_ads_setting:type_name -> google.ads.googleads.v22.resources.Campaign.DynamicSearchAdsSetting + 6, // 18: google.ads.googleads.v22.resources.Campaign.shopping_setting:type_name -> google.ads.googleads.v22.resources.Campaign.ShoppingSetting + 40, // 19: google.ads.googleads.v22.resources.Campaign.targeting_setting:type_name -> google.ads.googleads.v22.common.TargetingSetting + 14, // 20: google.ads.googleads.v22.resources.Campaign.audience_setting:type_name -> google.ads.googleads.v22.resources.Campaign.AudienceSetting + 8, // 21: google.ads.googleads.v22.resources.Campaign.geo_target_type_setting:type_name -> google.ads.googleads.v22.resources.Campaign.GeoTargetTypeSetting + 9, // 22: google.ads.googleads.v22.resources.Campaign.local_campaign_setting:type_name -> google.ads.googleads.v22.resources.Campaign.LocalCampaignSetting + 10, // 23: google.ads.googleads.v22.resources.Campaign.app_campaign_setting:type_name -> google.ads.googleads.v22.resources.Campaign.AppCampaignSetting + 41, // 24: google.ads.googleads.v22.resources.Campaign.experiment_type:type_name -> google.ads.googleads.v22.enums.CampaignExperimentTypeEnum.CampaignExperimentType + 42, // 25: google.ads.googleads.v22.resources.Campaign.bidding_strategy_type:type_name -> google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 43, // 26: google.ads.googleads.v22.resources.Campaign.frequency_caps:type_name -> google.ads.googleads.v22.common.FrequencyCapEntry + 44, // 27: google.ads.googleads.v22.resources.Campaign.video_brand_safety_suitability:type_name -> google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + 11, // 28: google.ads.googleads.v22.resources.Campaign.vanity_pharma:type_name -> google.ads.googleads.v22.resources.Campaign.VanityPharma + 12, // 29: google.ads.googleads.v22.resources.Campaign.selective_optimization:type_name -> google.ads.googleads.v22.resources.Campaign.SelectiveOptimization + 13, // 30: google.ads.googleads.v22.resources.Campaign.optimization_goal_setting:type_name -> google.ads.googleads.v22.resources.Campaign.OptimizationGoalSetting + 7, // 31: google.ads.googleads.v22.resources.Campaign.tracking_setting:type_name -> google.ads.googleads.v22.resources.Campaign.TrackingSetting + 45, // 32: google.ads.googleads.v22.resources.Campaign.payment_mode:type_name -> google.ads.googleads.v22.enums.PaymentModeEnum.PaymentMode + 46, // 33: google.ads.googleads.v22.resources.Campaign.excluded_parent_asset_field_types:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 47, // 34: google.ads.googleads.v22.resources.Campaign.excluded_parent_asset_set_types:type_name -> google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + 2, // 35: google.ads.googleads.v22.resources.Campaign.performance_max_upgrade:type_name -> google.ads.googleads.v22.resources.Campaign.PerformanceMaxUpgrade + 48, // 36: google.ads.googleads.v22.resources.Campaign.listing_type:type_name -> google.ads.googleads.v22.enums.ListingTypeEnum.ListingType + 21, // 37: google.ads.googleads.v22.resources.Campaign.asset_automation_settings:type_name -> google.ads.googleads.v22.resources.Campaign.AssetAutomationSetting + 49, // 38: google.ads.googleads.v22.resources.Campaign.keyword_match_type:type_name -> google.ads.googleads.v22.enums.CampaignKeywordMatchTypeEnum.CampaignKeywordMatchType + 22, // 39: google.ads.googleads.v22.resources.Campaign.brand_guidelines:type_name -> google.ads.googleads.v22.resources.Campaign.BrandGuidelines + 50, // 40: google.ads.googleads.v22.resources.Campaign.third_party_integration_partners:type_name -> google.ads.googleads.v22.common.CampaignThirdPartyIntegrationPartners + 23, // 41: google.ads.googleads.v22.resources.Campaign.ai_max_setting:type_name -> google.ads.googleads.v22.resources.Campaign.AiMaxSetting + 51, // 42: google.ads.googleads.v22.resources.Campaign.contains_eu_political_advertising:type_name -> google.ads.googleads.v22.enums.EuPoliticalAdvertisingStatusEnum.EuPoliticalAdvertisingStatus + 47, // 43: google.ads.googleads.v22.resources.Campaign.feed_types:type_name -> google.ads.googleads.v22.enums.AssetSetTypeEnum.AssetSetType + 52, // 44: google.ads.googleads.v22.resources.Campaign.commission:type_name -> google.ads.googleads.v22.common.Commission + 53, // 45: google.ads.googleads.v22.resources.Campaign.manual_cpa:type_name -> google.ads.googleads.v22.common.ManualCpa + 54, // 46: google.ads.googleads.v22.resources.Campaign.manual_cpc:type_name -> google.ads.googleads.v22.common.ManualCpc + 55, // 47: google.ads.googleads.v22.resources.Campaign.manual_cpm:type_name -> google.ads.googleads.v22.common.ManualCpm + 56, // 48: google.ads.googleads.v22.resources.Campaign.manual_cpv:type_name -> google.ads.googleads.v22.common.ManualCpv + 57, // 49: google.ads.googleads.v22.resources.Campaign.maximize_conversions:type_name -> google.ads.googleads.v22.common.MaximizeConversions + 58, // 50: google.ads.googleads.v22.resources.Campaign.maximize_conversion_value:type_name -> google.ads.googleads.v22.common.MaximizeConversionValue + 59, // 51: google.ads.googleads.v22.resources.Campaign.target_cpa:type_name -> google.ads.googleads.v22.common.TargetCpa + 60, // 52: google.ads.googleads.v22.resources.Campaign.target_impression_share:type_name -> google.ads.googleads.v22.common.TargetImpressionShare + 61, // 53: google.ads.googleads.v22.resources.Campaign.target_roas:type_name -> google.ads.googleads.v22.common.TargetRoas + 62, // 54: google.ads.googleads.v22.resources.Campaign.target_spend:type_name -> google.ads.googleads.v22.common.TargetSpend + 63, // 55: google.ads.googleads.v22.resources.Campaign.percent_cpc:type_name -> google.ads.googleads.v22.common.PercentCpc + 64, // 56: google.ads.googleads.v22.resources.Campaign.target_cpm:type_name -> google.ads.googleads.v22.common.TargetCpm + 65, // 57: google.ads.googleads.v22.resources.Campaign.fixed_cpm:type_name -> google.ads.googleads.v22.common.FixedCpm + 66, // 58: google.ads.googleads.v22.resources.Campaign.target_cpv:type_name -> google.ads.googleads.v22.common.TargetCpv + 67, // 59: google.ads.googleads.v22.resources.Campaign.target_cpc:type_name -> google.ads.googleads.v22.common.TargetCpc + 68, // 60: google.ads.googleads.v22.resources.Campaign.PerformanceMaxUpgrade.status:type_name -> google.ads.googleads.v22.enums.PerformanceMaxUpgradeStatusEnum.PerformanceMaxUpgradeStatus + 69, // 61: google.ads.googleads.v22.resources.Campaign.GeoTargetTypeSetting.positive_geo_target_type:type_name -> google.ads.googleads.v22.enums.PositiveGeoTargetTypeEnum.PositiveGeoTargetType + 70, // 62: google.ads.googleads.v22.resources.Campaign.GeoTargetTypeSetting.negative_geo_target_type:type_name -> google.ads.googleads.v22.enums.NegativeGeoTargetTypeEnum.NegativeGeoTargetType + 71, // 63: google.ads.googleads.v22.resources.Campaign.LocalCampaignSetting.location_source_type:type_name -> google.ads.googleads.v22.enums.LocationSourceTypeEnum.LocationSourceType + 72, // 64: google.ads.googleads.v22.resources.Campaign.AppCampaignSetting.bidding_strategy_goal_type:type_name -> google.ads.googleads.v22.enums.AppCampaignBiddingStrategyGoalTypeEnum.AppCampaignBiddingStrategyGoalType + 73, // 65: google.ads.googleads.v22.resources.Campaign.AppCampaignSetting.app_store:type_name -> google.ads.googleads.v22.enums.AppCampaignAppStoreEnum.AppCampaignAppStore + 74, // 66: google.ads.googleads.v22.resources.Campaign.VanityPharma.vanity_pharma_display_url_mode:type_name -> google.ads.googleads.v22.enums.VanityPharmaDisplayUrlModeEnum.VanityPharmaDisplayUrlMode + 75, // 67: google.ads.googleads.v22.resources.Campaign.VanityPharma.vanity_pharma_text:type_name -> google.ads.googleads.v22.enums.VanityPharmaTextEnum.VanityPharmaText + 76, // 68: google.ads.googleads.v22.resources.Campaign.OptimizationGoalSetting.optimization_goal_types:type_name -> google.ads.googleads.v22.enums.OptimizationGoalTypeEnum.OptimizationGoalType + 16, // 69: google.ads.googleads.v22.resources.Campaign.LocalServicesCampaignSettings.category_bids:type_name -> google.ads.googleads.v22.resources.Campaign.CategoryBid + 27, // 70: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.video_ad_sequence:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequence + 24, // 71: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.video_ad_inventory_control:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdInventoryControl + 25, // 72: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.video_ad_format_control:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl + 29, // 73: google.ads.googleads.v22.resources.Campaign.PmaxCampaignSettings.brand_targeting_overrides:type_name -> google.ads.googleads.v22.resources.Campaign.PmaxCampaignSettings.BrandTargetingOverrides + 77, // 74: google.ads.googleads.v22.resources.Campaign.AssetAutomationSetting.asset_automation_type:type_name -> google.ads.googleads.v22.enums.AssetAutomationTypeEnum.AssetAutomationType + 78, // 75: google.ads.googleads.v22.resources.Campaign.AssetAutomationSetting.asset_automation_status:type_name -> google.ads.googleads.v22.enums.AssetAutomationStatusEnum.AssetAutomationStatus + 0, // 76: google.ads.googleads.v22.resources.Campaign.AiMaxSetting.bundling_required:type_name -> google.ads.googleads.v22.resources.Campaign.AiMaxSetting.AiMaxBundlingRequired + 79, // 77: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.format_restriction:type_name -> google.ads.googleads.v22.enums.VideoAdFormatRestrictionEnum.VideoAdFormatRestriction + 26, // 78: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdFormatControl.non_skippable_in_stream_restrictions:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions + 80, // 79: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions.min_duration:type_name -> google.ads.googleads.v22.enums.NonSkippableMinDurationEnum.NonSkippableMinDuration + 81, // 80: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.NonSkippableInStreamRestrictions.max_duration:type_name -> google.ads.googleads.v22.enums.NonSkippableMaxDurationEnum.NonSkippableMaxDuration + 28, // 81: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequence.steps:type_name -> google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep + 82, // 82: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequence.minimum_duration:type_name -> google.ads.googleads.v22.enums.VideoAdSequenceMinimumDurationEnum.VideoAdSequenceMinimumDuration + 83, // 83: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep.ad_group_type:type_name -> google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + 84, // 84: google.ads.googleads.v22.resources.Campaign.VideoCampaignSettings.VideoAdSequenceStep.previous_step_interaction_type:type_name -> google.ads.googleads.v22.enums.VideoAdSequenceInteractionTypeEnum.VideoAdSequenceInteractionType + 85, // [85:85] is the sub-list for method output_type + 85, // [85:85] is the sub-list for method input_type + 85, // [85:85] is the sub-list for extension type_name + 85, // [85:85] is the sub-list for extension extendee + 0, // [0:85] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_resources_campaign_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[0].OneofWrappers = []any{ (*Campaign_BiddingStrategy)(nil), (*Campaign_Commission)(nil), (*Campaign_ManualCpa)(nil), @@ -4171,41 +4193,42 @@ func file_google_ads_googleads_v21_resources_campaign_proto_init() { (*Campaign_TargetCpm)(nil), (*Campaign_FixedCpm)(nil), (*Campaign_TargetCpv)(nil), - } - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[15].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[16].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[17].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[18].OneofWrappers = []any{ + (*Campaign_TargetCpc)(nil), + } + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[13].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[15].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[16].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[18].OneofWrappers = []any{ (*Campaign_VideoCampaignSettings_VideoAdInventoryControl_)(nil), (*Campaign_VideoCampaignSettings_VideoAdFormatControl_)(nil), } - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[20].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[22].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[23].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_campaign_proto_msgTypes[28].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[20].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[22].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[23].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_proto_msgTypes[28].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_proto_rawDesc)), NumEnums: 1, NumMessages: 29, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_resources_campaign_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_resources_campaign_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_proto = out.File - file_google_ads_googleads_v21_resources_campaign_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_proto = out.File + file_google_ads_googleads_v22_resources_campaign_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_proto_depIdxs = nil } diff --git a/resources/campaign_aggregate_asset_view.pb.go b/resources/campaign_aggregate_asset_view.pb.go index 845f38c4..29f34dcf 100644 --- a/resources/campaign_aggregate_asset_view.pb.go +++ b/resources/campaign_aggregate_asset_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_aggregate_asset_view.proto +// source: google/ads/googleads/v22/resources/campaign_aggregate_asset_view.proto package resources @@ -51,16 +51,16 @@ type CampaignAggregateAssetView struct { // 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.v21.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` + AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,4,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` + FieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,5,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CampaignAggregateAssetView) Reset() { *x = CampaignAggregateAssetView{} - mi := &file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CampaignAggregateAssetView) String() string { func (*CampaignAggregateAssetView) ProtoMessage() {} func (x *CampaignAggregateAssetView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CampaignAggregateAssetView) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAggregateAssetView.ProtoReflect.Descriptor instead. func (*CampaignAggregateAssetView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescGZIP(), []int{0} } func (x *CampaignAggregateAssetView) GetResourceName() string { @@ -123,21 +123,21 @@ func (x *CampaignAggregateAssetView) GetFieldType() enums.AssetFieldTypeEnum_Ass return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x35, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -163,13 +163,13 @@ var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_ 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,46 +189,46 @@ var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_ 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_goTypes = []any{ - (*CampaignAggregateAssetView)(nil), // 0: google.ads.googleads.v21.resources.CampaignAggregateAssetView - (enums.AssetSourceEnum_AssetSource)(0), // 1: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_goTypes = []any{ + (*CampaignAggregateAssetView)(nil), // 0: google.ads.googleads.v22.resources.CampaignAggregateAssetView + (enums.AssetSourceEnum_AssetSource)(0), // 1: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 2: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType } -var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignAggregateAssetView.asset_source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 2, // 1: google.ads.googleads.v21.resources.CampaignAggregateAssetView.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignAggregateAssetView.asset_source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 2, // 1: google.ads.googleads.v22.resources.CampaignAggregateAssetView.field_type:type_name -> google.ads.googleads.v22.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 @@ -236,27 +236,27 @@ var file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto = out.File - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_aggregate_asset_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto = out.File + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_aggregate_asset_view_proto_depIdxs = nil } diff --git a/resources/campaign_asset.pb.go b/resources/campaign_asset.pb.go index 857d1f53..f41042ba 100644 --- a/resources/campaign_asset.pb.go +++ b/resources/campaign_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_asset.proto +// source: google/ads/googleads/v22/resources/campaign_asset.proto package resources @@ -52,31 +52,31 @@ 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.v21.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.v22.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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,8,opt,name=source,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CampaignAsset) Reset() { *x = CampaignAsset{} - mi := &file_google_ads_googleads_v21_resources_campaign_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -88,7 +88,7 @@ func (x *CampaignAsset) String() string { func (*CampaignAsset) ProtoMessage() {} func (x *CampaignAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -101,7 +101,7 @@ func (x *CampaignAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAsset.ProtoReflect.Descriptor instead. func (*CampaignAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescGZIP(), []int{0} } func (x *CampaignAsset) GetResourceName() string { @@ -167,36 +167,36 @@ func (x *CampaignAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatus return nil } -var File_google_ads_googleads_v21_resources_campaign_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x32, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 0x32, 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, @@ -219,25 +219,25 @@ var file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -246,14 +246,14 @@ var file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -271,52 +271,52 @@ var file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_asset_proto_goTypes = []any{ - (*CampaignAsset)(nil), // 0: google.ads.googleads.v21.resources.CampaignAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_campaign_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_asset_proto_goTypes = []any{ + (*CampaignAsset)(nil), // 0: google.ads.googleads.v22.resources.CampaignAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v21_resources_campaign_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignAsset.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v21.resources.CampaignAsset.source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v21.resources.CampaignAsset.status:type_name -> google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v21.resources.CampaignAsset.primary_status:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v21.resources.CampaignAsset.primary_status_details:type_name -> google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v21.resources.CampaignAsset.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_campaign_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignAsset.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v22.resources.CampaignAsset.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v22.resources.CampaignAsset.status:type_name -> google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v22.resources.CampaignAsset.primary_status:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v22.resources.CampaignAsset.primary_status_details:type_name -> google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v22.resources.CampaignAsset.primary_status_reasons:type_name -> google.ads.googleads.v22.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,27 +324,27 @@ var file_google_ads_googleads_v21_resources_campaign_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_asset_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_asset_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_asset_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_asset_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_asset_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_asset_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_asset_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_asset_proto = out.File - file_google_ads_googleads_v21_resources_campaign_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_asset_proto = out.File + file_google_ads_googleads_v22_resources_campaign_asset_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_asset_proto_depIdxs = nil } diff --git a/resources/campaign_asset_set.pb.go b/resources/campaign_asset_set.pb.go index 3ef5d696..0180a563 100644 --- a/resources/campaign_asset_set.pb.go +++ b/resources/campaign_asset_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_asset_set.proto +// source: google/ads/googleads/v22/resources/campaign_asset_set.proto package resources @@ -51,14 +51,14 @@ 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.v21.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CampaignAssetSet) Reset() { *x = CampaignAssetSet{} - mi := &file_google_ads_googleads_v21_resources_campaign_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *CampaignAssetSet) String() string { func (*CampaignAssetSet) ProtoMessage() {} func (x *CampaignAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_asset_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *CampaignAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetSet.ProtoReflect.Descriptor instead. func (*CampaignAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescGZIP(), []int{0} } func (x *CampaignAssetSet) GetResourceName() string { @@ -114,17 +114,17 @@ func (x *CampaignAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLink return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v21_resources_campaign_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -148,7 +148,7 @@ var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc = s 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -162,43 +162,43 @@ var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_goTypes = []any{ - (*CampaignAssetSet)(nil), // 0: google.ads.googleads.v21.resources.CampaignAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_campaign_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_asset_set_proto_goTypes = []any{ + (*CampaignAssetSet)(nil), // 0: google.ads.googleads.v22.resources.CampaignAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v22.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignAssetSet.status:type_name -> google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_campaign_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignAssetSet.status:type_name -> google.ads.googleads.v22.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 @@ -206,26 +206,26 @@ var file_google_ads_googleads_v21_resources_campaign_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_asset_set_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_asset_set_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_asset_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_asset_set_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_asset_set_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_asset_set_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_asset_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_asset_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_asset_set_proto = out.File - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_asset_set_proto = out.File + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_depIdxs = nil } diff --git a/resources/campaign_audience_view.pb.go b/resources/campaign_audience_view.pb.go index 189f80a5..7fa5477b 100644 --- a/resources/campaign_audience_view.pb.go +++ b/resources/campaign_audience_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_audience_view.proto +// source: google/ads/googleads/v22/resources/campaign_audience_view.proto package resources @@ -54,7 +54,7 @@ type CampaignAudienceView struct { func (x *CampaignAudienceView) Reset() { *x = CampaignAudienceView{} - mi := &file_google_ads_googleads_v21_resources_campaign_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_audience_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *CampaignAudienceView) String() string { func (*CampaignAudienceView) ProtoMessage() {} func (x *CampaignAudienceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_audience_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_audience_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *CampaignAudienceView) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAudienceView.ProtoReflect.Descriptor instead. func (*CampaignAudienceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescGZIP(), []int{0} } func (x *CampaignAudienceView) GetResourceName() string { @@ -89,15 +89,15 @@ func (x *CampaignAudienceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_campaign_audience_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_audience_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -119,41 +119,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_audience_view_proto_goTypes = []any{ - (*CampaignAudienceView)(nil), // 0: google.ads.googleads.v21.resources.CampaignAudienceView +var file_google_ads_googleads_v22_resources_campaign_audience_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_audience_view_proto_goTypes = []any{ + (*CampaignAudienceView)(nil), // 0: google.ads.googleads.v22.resources.CampaignAudienceView } -var file_google_ads_googleads_v21_resources_campaign_audience_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -161,26 +161,26 @@ var file_google_ads_googleads_v21_resources_campaign_audience_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_audience_view_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_audience_view_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_audience_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_audience_view_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_audience_view_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_audience_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_audience_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_audience_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_audience_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_audience_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_audience_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_audience_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_audience_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_audience_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_audience_view_proto = out.File - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_audience_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_audience_view_proto = out.File + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_audience_view_proto_depIdxs = nil } diff --git a/resources/campaign_bid_modifier.pb.go b/resources/campaign_bid_modifier.pb.go index 8427307c..dc9a31e3 100644 --- a/resources/campaign_bid_modifier.pb.go +++ b/resources/campaign_bid_modifier.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_bid_modifier.proto +// source: google/ads/googleads/v22/resources/campaign_bid_modifier.proto package resources @@ -67,7 +67,7 @@ type CampaignBidModifier struct { func (x *CampaignBidModifier) Reset() { *x = CampaignBidModifier{} - mi := &file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *CampaignBidModifier) String() string { func (*CampaignBidModifier) ProtoMessage() {} func (x *CampaignBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *CampaignBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBidModifier.ProtoReflect.Descriptor instead. func (*CampaignBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_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_v21_resources_campaign_bid_modifier_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_bid_modifier_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_goTypes = []any{ - (*CampaignBidModifier)(nil), // 0: google.ads.googleads.v21.resources.CampaignBidModifier - (*common.InteractionTypeInfo)(nil), // 1: google.ads.googleads.v21.common.InteractionTypeInfo +var file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_goTypes = []any{ + (*CampaignBidModifier)(nil), // 0: google.ads.googleads.v22.resources.CampaignBidModifier + (*common.InteractionTypeInfo)(nil), // 1: google.ads.googleads.v22.common.InteractionTypeInfo } -var file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignBidModifier.interaction_type:type_name -> google.ads.googleads.v21.common.InteractionTypeInfo +var file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignBidModifier.interaction_type:type_name -> google.ads.googleads.v22.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,29 +248,29 @@ var file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_bid_modifier_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_bid_modifier_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_msgTypes[0].OneofWrappers = []any{ (*CampaignBidModifier_InteractionType)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_bid_modifier_proto = out.File - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_bid_modifier_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_bid_modifier_proto = out.File + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_bid_modifier_proto_depIdxs = nil } diff --git a/resources/campaign_budget.pb.go b/resources/campaign_budget.pb.go index 03abfafc..3420724c 100644 --- a/resources/campaign_budget.pb.go +++ b/resources/campaign_budget.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_budget.proto +// source: google/ads/googleads/v22/resources/campaign_budget.proto package resources @@ -71,12 +71,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.v21.enums.BudgetStatusEnum_BudgetStatus" json:"status,omitempty"` + Status enums.BudgetStatusEnum_BudgetStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod" json:"delivery_method,omitempty"` // Specifies whether the budget is explicitly shared. Defaults to true if // unspecified in a create operation. // @@ -110,7 +110,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.v21.enums.BudgetPeriodEnum_BudgetPeriod" json:"period,omitempty"` + Period enums.BudgetPeriodEnum_BudgetPeriod `protobuf:"varint,13,opt,name=period,proto3,enum=google.ads.googleads.v22.enums.BudgetPeriodEnum_BudgetPeriod" json:"period,omitempty"` // Output only. The estimated change in weekly clicks if the recommended // budget is applied. // @@ -133,7 +133,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.v21.enums.BudgetTypeEnum_BudgetType" json:"type,omitempty"` + Type enums.BudgetTypeEnum_BudgetType `protobuf:"varint,18,opt,name=type,proto3,enum=google.ads.googleads.v22.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 @@ -146,7 +146,7 @@ type CampaignBudget struct { func (x *CampaignBudget) Reset() { *x = CampaignBudget{} - mi := &file_google_ads_googleads_v21_resources_campaign_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_budget_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -158,7 +158,7 @@ func (x *CampaignBudget) String() string { func (*CampaignBudget) ProtoMessage() {} func (x *CampaignBudget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_budget_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_budget_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -171,7 +171,7 @@ func (x *CampaignBudget) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudget.ProtoReflect.Descriptor instead. func (*CampaignBudget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescGZIP(), []int{0} } func (x *CampaignBudget) GetResourceName() string { @@ -300,27 +300,27 @@ func (x *CampaignBudget) GetAlignedBiddingStrategyId() int64 { return 0 } -var File_google_ads_googleads_v21_resources_campaign_budget_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_budget_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3b, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x75, 0x64, 0x67, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -344,13 +344,13 @@ var file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -373,7 +373,7 @@ var file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 0x76, 0x32, 0x32, 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, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -448,49 +448,49 @@ var file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_budget_proto_goTypes = []any{ - (*CampaignBudget)(nil), // 0: google.ads.googleads.v21.resources.CampaignBudget - (enums.BudgetStatusEnum_BudgetStatus)(0), // 1: google.ads.googleads.v21.enums.BudgetStatusEnum.BudgetStatus - (enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 2: google.ads.googleads.v21.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod - (enums.BudgetPeriodEnum_BudgetPeriod)(0), // 3: google.ads.googleads.v21.enums.BudgetPeriodEnum.BudgetPeriod - (enums.BudgetTypeEnum_BudgetType)(0), // 4: google.ads.googleads.v21.enums.BudgetTypeEnum.BudgetType +var file_google_ads_googleads_v22_resources_campaign_budget_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_budget_proto_goTypes = []any{ + (*CampaignBudget)(nil), // 0: google.ads.googleads.v22.resources.CampaignBudget + (enums.BudgetStatusEnum_BudgetStatus)(0), // 1: google.ads.googleads.v22.enums.BudgetStatusEnum.BudgetStatus + (enums.BudgetDeliveryMethodEnum_BudgetDeliveryMethod)(0), // 2: google.ads.googleads.v22.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod + (enums.BudgetPeriodEnum_BudgetPeriod)(0), // 3: google.ads.googleads.v22.enums.BudgetPeriodEnum.BudgetPeriod + (enums.BudgetTypeEnum_BudgetType)(0), // 4: google.ads.googleads.v22.enums.BudgetTypeEnum.BudgetType } -var file_google_ads_googleads_v21_resources_campaign_budget_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignBudget.status:type_name -> google.ads.googleads.v21.enums.BudgetStatusEnum.BudgetStatus - 2, // 1: google.ads.googleads.v21.resources.CampaignBudget.delivery_method:type_name -> google.ads.googleads.v21.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod - 3, // 2: google.ads.googleads.v21.resources.CampaignBudget.period:type_name -> google.ads.googleads.v21.enums.BudgetPeriodEnum.BudgetPeriod - 4, // 3: google.ads.googleads.v21.resources.CampaignBudget.type:type_name -> google.ads.googleads.v21.enums.BudgetTypeEnum.BudgetType +var file_google_ads_googleads_v22_resources_campaign_budget_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignBudget.status:type_name -> google.ads.googleads.v22.enums.BudgetStatusEnum.BudgetStatus + 2, // 1: google.ads.googleads.v22.resources.CampaignBudget.delivery_method:type_name -> google.ads.googleads.v22.enums.BudgetDeliveryMethodEnum.BudgetDeliveryMethod + 3, // 2: google.ads.googleads.v22.resources.CampaignBudget.period:type_name -> google.ads.googleads.v22.enums.BudgetPeriodEnum.BudgetPeriod + 4, // 3: google.ads.googleads.v22.resources.CampaignBudget.type:type_name -> google.ads.googleads.v22.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 @@ -498,27 +498,27 @@ var file_google_ads_googleads_v21_resources_campaign_budget_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_budget_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_budget_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_budget_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_budget_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_budget_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_budget_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_budget_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_budget_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_budget_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_budget_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_budget_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_budget_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_budget_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_budget_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_budget_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_budget_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_budget_proto = out.File - file_google_ads_googleads_v21_resources_campaign_budget_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_budget_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_budget_proto = out.File + file_google_ads_googleads_v22_resources_campaign_budget_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_budget_proto_depIdxs = nil } diff --git a/resources/campaign_conversion_goal.pb.go b/resources/campaign_conversion_goal.pb.go index b4c5cdaf..990b4a0f 100644 --- a/resources/campaign_conversion_goal.pb.go +++ b/resources/campaign_conversion_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_conversion_goal.proto +// source: google/ads/googleads/v22/resources/campaign_conversion_goal.proto package resources @@ -50,9 +50,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.v21.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v22.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.v21.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,4,opt,name=origin,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -61,7 +61,7 @@ type CampaignConversionGoal struct { func (x *CampaignConversionGoal) Reset() { *x = CampaignConversionGoal{} - mi := &file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *CampaignConversionGoal) String() string { func (*CampaignConversionGoal) ProtoMessage() {} func (x *CampaignConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *CampaignConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignConversionGoal.ProtoReflect.Descriptor instead. func (*CampaignConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CampaignConversionGoal) GetResourceName() string { @@ -124,22 +124,22 @@ func (x *CampaignConversionGoal) GetBiddable() bool { return false } -var File_google_ads_googleads_v21_resources_campaign_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 0x32, 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, @@ -159,14 +159,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -182,45 +182,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_goTypes = []any{ - (*CampaignConversionGoal)(nil), // 0: google.ads.googleads.v21.resources.CampaignConversionGoal - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_goTypes = []any{ + (*CampaignConversionGoal)(nil), // 0: google.ads.googleads.v22.resources.CampaignConversionGoal + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v22.enums.ConversionOriginEnum.ConversionOrigin } -var file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignConversionGoal.category:type_name -> google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 1: google.ads.googleads.v21.resources.CampaignConversionGoal.origin:type_name -> google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignConversionGoal.category:type_name -> google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 1: google.ads.googleads.v22.resources.CampaignConversionGoal.origin:type_name -> google.ads.googleads.v22.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 @@ -228,26 +228,26 @@ var file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_depId 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_conversion_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_conversion_goal_proto = out.File - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_conversion_goal_proto = out.File + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_conversion_goal_proto_depIdxs = nil } diff --git a/resources/campaign_criterion.pb.go b/resources/campaign_criterion.pb.go index 05b94dcf..30a7849d 100644 --- a/resources/campaign_criterion.pb.go +++ b/resources/campaign_criterion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_criterion.proto +// source: google/ads/googleads/v22/resources/campaign_criterion.proto package resources @@ -63,9 +63,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.v21.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.CampaignCriterionStatusEnum_CampaignCriterionStatus" json:"status,omitempty"` + Status enums.CampaignCriterionStatusEnum_CampaignCriterionStatus `protobuf:"varint,35,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CampaignCriterionStatusEnum_CampaignCriterionStatus" json:"status,omitempty"` // The campaign criterion. // // Exactly one must be set. @@ -115,7 +115,7 @@ type CampaignCriterion struct { func (x *CampaignCriterion) Reset() { *x = CampaignCriterion{} - mi := &file_google_ads_googleads_v21_resources_campaign_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -127,7 +127,7 @@ func (x *CampaignCriterion) String() string { func (*CampaignCriterion) ProtoMessage() {} func (x *CampaignCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_criterion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -140,7 +140,7 @@ func (x *CampaignCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterion.ProtoReflect.Descriptor instead. func (*CampaignCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescGZIP(), []int{0} } func (x *CampaignCriterion) GetResourceName() string { @@ -787,24 +787,24 @@ func (*CampaignCriterion_VideoLineup) isCampaignCriterion_Criterion() {} func (*CampaignCriterion_ExtendedDemographic) isCampaignCriterion_Criterion() {} -var File_google_ads_googleads_v21_resources_campaign_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -834,147 +834,147 @@ var file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x41, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x65, 0x76, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x6f, 0x70, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x70, 0x42, 0x6c, 0x6f, 0x63, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -982,73 +982,73 @@ var file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc = s 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, 0x44, + 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x54, 0x0a, 0x0a, 0x6c, 0x69, 0x66, 0x65, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x18, 0x30, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x09, 0x6c, 0x69, 0x66, 0x65, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x12, 0x5a, 0x0a, 0x0c, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x31, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x57, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x5a, 0x0a, 0x0c, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x18, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, + 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0b, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x4c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x12, 0x72, 0x0a, 0x14, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x5f, 0x64, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x13, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x64, 0x65, 0x64, 0x44, 0x65, 0x6d, 0x6f, 0x67, 0x72, 0x61, 0x70, 0x68, @@ -1066,117 +1066,117 @@ var file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc = s 0x64, 0x69, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_campaign_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_criterion_proto_goTypes = []any{ - (*CampaignCriterion)(nil), // 0: google.ads.googleads.v21.resources.CampaignCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - (enums.CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 2: google.ads.googleads.v21.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus - (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v21.common.KeywordInfo - (*common.PlacementInfo)(nil), // 4: google.ads.googleads.v21.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 5: google.ads.googleads.v21.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 6: google.ads.googleads.v21.common.MobileApplicationInfo - (*common.LocationInfo)(nil), // 7: google.ads.googleads.v21.common.LocationInfo - (*common.DeviceInfo)(nil), // 8: google.ads.googleads.v21.common.DeviceInfo - (*common.AdScheduleInfo)(nil), // 9: google.ads.googleads.v21.common.AdScheduleInfo - (*common.AgeRangeInfo)(nil), // 10: google.ads.googleads.v21.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 11: google.ads.googleads.v21.common.GenderInfo - (*common.IncomeRangeInfo)(nil), // 12: google.ads.googleads.v21.common.IncomeRangeInfo - (*common.ParentalStatusInfo)(nil), // 13: google.ads.googleads.v21.common.ParentalStatusInfo - (*common.UserListInfo)(nil), // 14: google.ads.googleads.v21.common.UserListInfo - (*common.YouTubeVideoInfo)(nil), // 15: google.ads.googleads.v21.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v21.common.YouTubeChannelInfo - (*common.ProximityInfo)(nil), // 17: google.ads.googleads.v21.common.ProximityInfo - (*common.TopicInfo)(nil), // 18: google.ads.googleads.v21.common.TopicInfo - (*common.ListingScopeInfo)(nil), // 19: google.ads.googleads.v21.common.ListingScopeInfo - (*common.LanguageInfo)(nil), // 20: google.ads.googleads.v21.common.LanguageInfo - (*common.IpBlockInfo)(nil), // 21: google.ads.googleads.v21.common.IpBlockInfo - (*common.ContentLabelInfo)(nil), // 22: google.ads.googleads.v21.common.ContentLabelInfo - (*common.CarrierInfo)(nil), // 23: google.ads.googleads.v21.common.CarrierInfo - (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v21.common.UserInterestInfo - (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v21.common.WebpageInfo - (*common.OperatingSystemVersionInfo)(nil), // 26: google.ads.googleads.v21.common.OperatingSystemVersionInfo - (*common.MobileDeviceInfo)(nil), // 27: google.ads.googleads.v21.common.MobileDeviceInfo - (*common.LocationGroupInfo)(nil), // 28: google.ads.googleads.v21.common.LocationGroupInfo - (*common.CustomAffinityInfo)(nil), // 29: google.ads.googleads.v21.common.CustomAffinityInfo - (*common.CustomAudienceInfo)(nil), // 30: google.ads.googleads.v21.common.CustomAudienceInfo - (*common.CombinedAudienceInfo)(nil), // 31: google.ads.googleads.v21.common.CombinedAudienceInfo - (*common.KeywordThemeInfo)(nil), // 32: google.ads.googleads.v21.common.KeywordThemeInfo - (*common.LocalServiceIdInfo)(nil), // 33: google.ads.googleads.v21.common.LocalServiceIdInfo - (*common.BrandListInfo)(nil), // 34: google.ads.googleads.v21.common.BrandListInfo - (*common.LifeEventInfo)(nil), // 35: google.ads.googleads.v21.common.LifeEventInfo - (*common.WebpageListInfo)(nil), // 36: google.ads.googleads.v21.common.WebpageListInfo - (*common.VideoLineupInfo)(nil), // 37: google.ads.googleads.v21.common.VideoLineupInfo - (*common.ExtendedDemographicInfo)(nil), // 38: google.ads.googleads.v21.common.ExtendedDemographicInfo -} -var file_google_ads_googleads_v21_resources_campaign_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignCriterion.type:type_name -> google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v21.resources.CampaignCriterion.status:type_name -> google.ads.googleads.v21.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus - 3, // 2: google.ads.googleads.v21.resources.CampaignCriterion.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 4, // 3: google.ads.googleads.v21.resources.CampaignCriterion.placement:type_name -> google.ads.googleads.v21.common.PlacementInfo - 5, // 4: google.ads.googleads.v21.resources.CampaignCriterion.mobile_app_category:type_name -> google.ads.googleads.v21.common.MobileAppCategoryInfo - 6, // 5: google.ads.googleads.v21.resources.CampaignCriterion.mobile_application:type_name -> google.ads.googleads.v21.common.MobileApplicationInfo - 7, // 6: google.ads.googleads.v21.resources.CampaignCriterion.location:type_name -> google.ads.googleads.v21.common.LocationInfo - 8, // 7: google.ads.googleads.v21.resources.CampaignCriterion.device:type_name -> google.ads.googleads.v21.common.DeviceInfo - 9, // 8: google.ads.googleads.v21.resources.CampaignCriterion.ad_schedule:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 10, // 9: google.ads.googleads.v21.resources.CampaignCriterion.age_range:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 11, // 10: google.ads.googleads.v21.resources.CampaignCriterion.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 12, // 11: google.ads.googleads.v21.resources.CampaignCriterion.income_range:type_name -> google.ads.googleads.v21.common.IncomeRangeInfo - 13, // 12: google.ads.googleads.v21.resources.CampaignCriterion.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusInfo - 14, // 13: google.ads.googleads.v21.resources.CampaignCriterion.user_list:type_name -> google.ads.googleads.v21.common.UserListInfo - 15, // 14: google.ads.googleads.v21.resources.CampaignCriterion.youtube_video:type_name -> google.ads.googleads.v21.common.YouTubeVideoInfo - 16, // 15: google.ads.googleads.v21.resources.CampaignCriterion.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 17, // 16: google.ads.googleads.v21.resources.CampaignCriterion.proximity:type_name -> google.ads.googleads.v21.common.ProximityInfo - 18, // 17: google.ads.googleads.v21.resources.CampaignCriterion.topic:type_name -> google.ads.googleads.v21.common.TopicInfo - 19, // 18: google.ads.googleads.v21.resources.CampaignCriterion.listing_scope:type_name -> google.ads.googleads.v21.common.ListingScopeInfo - 20, // 19: google.ads.googleads.v21.resources.CampaignCriterion.language:type_name -> google.ads.googleads.v21.common.LanguageInfo - 21, // 20: google.ads.googleads.v21.resources.CampaignCriterion.ip_block:type_name -> google.ads.googleads.v21.common.IpBlockInfo - 22, // 21: google.ads.googleads.v21.resources.CampaignCriterion.content_label:type_name -> google.ads.googleads.v21.common.ContentLabelInfo - 23, // 22: google.ads.googleads.v21.resources.CampaignCriterion.carrier:type_name -> google.ads.googleads.v21.common.CarrierInfo - 24, // 23: google.ads.googleads.v21.resources.CampaignCriterion.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 25, // 24: google.ads.googleads.v21.resources.CampaignCriterion.webpage:type_name -> google.ads.googleads.v21.common.WebpageInfo - 26, // 25: google.ads.googleads.v21.resources.CampaignCriterion.operating_system_version:type_name -> google.ads.googleads.v21.common.OperatingSystemVersionInfo - 27, // 26: google.ads.googleads.v21.resources.CampaignCriterion.mobile_device:type_name -> google.ads.googleads.v21.common.MobileDeviceInfo - 28, // 27: google.ads.googleads.v21.resources.CampaignCriterion.location_group:type_name -> google.ads.googleads.v21.common.LocationGroupInfo - 29, // 28: google.ads.googleads.v21.resources.CampaignCriterion.custom_affinity:type_name -> google.ads.googleads.v21.common.CustomAffinityInfo - 30, // 29: google.ads.googleads.v21.resources.CampaignCriterion.custom_audience:type_name -> google.ads.googleads.v21.common.CustomAudienceInfo - 31, // 30: google.ads.googleads.v21.resources.CampaignCriterion.combined_audience:type_name -> google.ads.googleads.v21.common.CombinedAudienceInfo - 32, // 31: google.ads.googleads.v21.resources.CampaignCriterion.keyword_theme:type_name -> google.ads.googleads.v21.common.KeywordThemeInfo - 33, // 32: google.ads.googleads.v21.resources.CampaignCriterion.local_service_id:type_name -> google.ads.googleads.v21.common.LocalServiceIdInfo - 34, // 33: google.ads.googleads.v21.resources.CampaignCriterion.brand_list:type_name -> google.ads.googleads.v21.common.BrandListInfo - 35, // 34: google.ads.googleads.v21.resources.CampaignCriterion.life_event:type_name -> google.ads.googleads.v21.common.LifeEventInfo - 36, // 35: google.ads.googleads.v21.resources.CampaignCriterion.webpage_list:type_name -> google.ads.googleads.v21.common.WebpageListInfo - 37, // 36: google.ads.googleads.v21.resources.CampaignCriterion.video_lineup:type_name -> google.ads.googleads.v21.common.VideoLineupInfo - 38, // 37: google.ads.googleads.v21.resources.CampaignCriterion.extended_demographic:type_name -> google.ads.googleads.v21.common.ExtendedDemographicInfo + return file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_campaign_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_criterion_proto_goTypes = []any{ + (*CampaignCriterion)(nil), // 0: google.ads.googleads.v22.resources.CampaignCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + (enums.CampaignCriterionStatusEnum_CampaignCriterionStatus)(0), // 2: google.ads.googleads.v22.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus + (*common.KeywordInfo)(nil), // 3: google.ads.googleads.v22.common.KeywordInfo + (*common.PlacementInfo)(nil), // 4: google.ads.googleads.v22.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 5: google.ads.googleads.v22.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 6: google.ads.googleads.v22.common.MobileApplicationInfo + (*common.LocationInfo)(nil), // 7: google.ads.googleads.v22.common.LocationInfo + (*common.DeviceInfo)(nil), // 8: google.ads.googleads.v22.common.DeviceInfo + (*common.AdScheduleInfo)(nil), // 9: google.ads.googleads.v22.common.AdScheduleInfo + (*common.AgeRangeInfo)(nil), // 10: google.ads.googleads.v22.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 11: google.ads.googleads.v22.common.GenderInfo + (*common.IncomeRangeInfo)(nil), // 12: google.ads.googleads.v22.common.IncomeRangeInfo + (*common.ParentalStatusInfo)(nil), // 13: google.ads.googleads.v22.common.ParentalStatusInfo + (*common.UserListInfo)(nil), // 14: google.ads.googleads.v22.common.UserListInfo + (*common.YouTubeVideoInfo)(nil), // 15: google.ads.googleads.v22.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v22.common.YouTubeChannelInfo + (*common.ProximityInfo)(nil), // 17: google.ads.googleads.v22.common.ProximityInfo + (*common.TopicInfo)(nil), // 18: google.ads.googleads.v22.common.TopicInfo + (*common.ListingScopeInfo)(nil), // 19: google.ads.googleads.v22.common.ListingScopeInfo + (*common.LanguageInfo)(nil), // 20: google.ads.googleads.v22.common.LanguageInfo + (*common.IpBlockInfo)(nil), // 21: google.ads.googleads.v22.common.IpBlockInfo + (*common.ContentLabelInfo)(nil), // 22: google.ads.googleads.v22.common.ContentLabelInfo + (*common.CarrierInfo)(nil), // 23: google.ads.googleads.v22.common.CarrierInfo + (*common.UserInterestInfo)(nil), // 24: google.ads.googleads.v22.common.UserInterestInfo + (*common.WebpageInfo)(nil), // 25: google.ads.googleads.v22.common.WebpageInfo + (*common.OperatingSystemVersionInfo)(nil), // 26: google.ads.googleads.v22.common.OperatingSystemVersionInfo + (*common.MobileDeviceInfo)(nil), // 27: google.ads.googleads.v22.common.MobileDeviceInfo + (*common.LocationGroupInfo)(nil), // 28: google.ads.googleads.v22.common.LocationGroupInfo + (*common.CustomAffinityInfo)(nil), // 29: google.ads.googleads.v22.common.CustomAffinityInfo + (*common.CustomAudienceInfo)(nil), // 30: google.ads.googleads.v22.common.CustomAudienceInfo + (*common.CombinedAudienceInfo)(nil), // 31: google.ads.googleads.v22.common.CombinedAudienceInfo + (*common.KeywordThemeInfo)(nil), // 32: google.ads.googleads.v22.common.KeywordThemeInfo + (*common.LocalServiceIdInfo)(nil), // 33: google.ads.googleads.v22.common.LocalServiceIdInfo + (*common.BrandListInfo)(nil), // 34: google.ads.googleads.v22.common.BrandListInfo + (*common.LifeEventInfo)(nil), // 35: google.ads.googleads.v22.common.LifeEventInfo + (*common.WebpageListInfo)(nil), // 36: google.ads.googleads.v22.common.WebpageListInfo + (*common.VideoLineupInfo)(nil), // 37: google.ads.googleads.v22.common.VideoLineupInfo + (*common.ExtendedDemographicInfo)(nil), // 38: google.ads.googleads.v22.common.ExtendedDemographicInfo +} +var file_google_ads_googleads_v22_resources_campaign_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignCriterion.type:type_name -> google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v22.resources.CampaignCriterion.status:type_name -> google.ads.googleads.v22.enums.CampaignCriterionStatusEnum.CampaignCriterionStatus + 3, // 2: google.ads.googleads.v22.resources.CampaignCriterion.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 4, // 3: google.ads.googleads.v22.resources.CampaignCriterion.placement:type_name -> google.ads.googleads.v22.common.PlacementInfo + 5, // 4: google.ads.googleads.v22.resources.CampaignCriterion.mobile_app_category:type_name -> google.ads.googleads.v22.common.MobileAppCategoryInfo + 6, // 5: google.ads.googleads.v22.resources.CampaignCriterion.mobile_application:type_name -> google.ads.googleads.v22.common.MobileApplicationInfo + 7, // 6: google.ads.googleads.v22.resources.CampaignCriterion.location:type_name -> google.ads.googleads.v22.common.LocationInfo + 8, // 7: google.ads.googleads.v22.resources.CampaignCriterion.device:type_name -> google.ads.googleads.v22.common.DeviceInfo + 9, // 8: google.ads.googleads.v22.resources.CampaignCriterion.ad_schedule:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 10, // 9: google.ads.googleads.v22.resources.CampaignCriterion.age_range:type_name -> google.ads.googleads.v22.common.AgeRangeInfo + 11, // 10: google.ads.googleads.v22.resources.CampaignCriterion.gender:type_name -> google.ads.googleads.v22.common.GenderInfo + 12, // 11: google.ads.googleads.v22.resources.CampaignCriterion.income_range:type_name -> google.ads.googleads.v22.common.IncomeRangeInfo + 13, // 12: google.ads.googleads.v22.resources.CampaignCriterion.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusInfo + 14, // 13: google.ads.googleads.v22.resources.CampaignCriterion.user_list:type_name -> google.ads.googleads.v22.common.UserListInfo + 15, // 14: google.ads.googleads.v22.resources.CampaignCriterion.youtube_video:type_name -> google.ads.googleads.v22.common.YouTubeVideoInfo + 16, // 15: google.ads.googleads.v22.resources.CampaignCriterion.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 17, // 16: google.ads.googleads.v22.resources.CampaignCriterion.proximity:type_name -> google.ads.googleads.v22.common.ProximityInfo + 18, // 17: google.ads.googleads.v22.resources.CampaignCriterion.topic:type_name -> google.ads.googleads.v22.common.TopicInfo + 19, // 18: google.ads.googleads.v22.resources.CampaignCriterion.listing_scope:type_name -> google.ads.googleads.v22.common.ListingScopeInfo + 20, // 19: google.ads.googleads.v22.resources.CampaignCriterion.language:type_name -> google.ads.googleads.v22.common.LanguageInfo + 21, // 20: google.ads.googleads.v22.resources.CampaignCriterion.ip_block:type_name -> google.ads.googleads.v22.common.IpBlockInfo + 22, // 21: google.ads.googleads.v22.resources.CampaignCriterion.content_label:type_name -> google.ads.googleads.v22.common.ContentLabelInfo + 23, // 22: google.ads.googleads.v22.resources.CampaignCriterion.carrier:type_name -> google.ads.googleads.v22.common.CarrierInfo + 24, // 23: google.ads.googleads.v22.resources.CampaignCriterion.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestInfo + 25, // 24: google.ads.googleads.v22.resources.CampaignCriterion.webpage:type_name -> google.ads.googleads.v22.common.WebpageInfo + 26, // 25: google.ads.googleads.v22.resources.CampaignCriterion.operating_system_version:type_name -> google.ads.googleads.v22.common.OperatingSystemVersionInfo + 27, // 26: google.ads.googleads.v22.resources.CampaignCriterion.mobile_device:type_name -> google.ads.googleads.v22.common.MobileDeviceInfo + 28, // 27: google.ads.googleads.v22.resources.CampaignCriterion.location_group:type_name -> google.ads.googleads.v22.common.LocationGroupInfo + 29, // 28: google.ads.googleads.v22.resources.CampaignCriterion.custom_affinity:type_name -> google.ads.googleads.v22.common.CustomAffinityInfo + 30, // 29: google.ads.googleads.v22.resources.CampaignCriterion.custom_audience:type_name -> google.ads.googleads.v22.common.CustomAudienceInfo + 31, // 30: google.ads.googleads.v22.resources.CampaignCriterion.combined_audience:type_name -> google.ads.googleads.v22.common.CombinedAudienceInfo + 32, // 31: google.ads.googleads.v22.resources.CampaignCriterion.keyword_theme:type_name -> google.ads.googleads.v22.common.KeywordThemeInfo + 33, // 32: google.ads.googleads.v22.resources.CampaignCriterion.local_service_id:type_name -> google.ads.googleads.v22.common.LocalServiceIdInfo + 34, // 33: google.ads.googleads.v22.resources.CampaignCriterion.brand_list:type_name -> google.ads.googleads.v22.common.BrandListInfo + 35, // 34: google.ads.googleads.v22.resources.CampaignCriterion.life_event:type_name -> google.ads.googleads.v22.common.LifeEventInfo + 36, // 35: google.ads.googleads.v22.resources.CampaignCriterion.webpage_list:type_name -> google.ads.googleads.v22.common.WebpageListInfo + 37, // 36: google.ads.googleads.v22.resources.CampaignCriterion.video_lineup:type_name -> google.ads.googleads.v22.common.VideoLineupInfo + 38, // 37: google.ads.googleads.v22.resources.CampaignCriterion.extended_demographic:type_name -> google.ads.googleads.v22.common.ExtendedDemographicInfo 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 @@ -1184,12 +1184,12 @@ var file_google_ads_googleads_v21_resources_campaign_criterion_proto_depIdxs = [ 0, // [0:38] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_criterion_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_criterion_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_criterion_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_criterion_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_criterion_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_criterion_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_criterion_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_campaign_criterion_proto_msgTypes[0].OneofWrappers = []any{ (*CampaignCriterion_Keyword)(nil), (*CampaignCriterion_Placement)(nil), (*CampaignCriterion_MobileAppCategory)(nil), @@ -1231,17 +1231,17 @@ func file_google_ads_googleads_v21_resources_campaign_criterion_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_criterion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_criterion_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_criterion_proto = out.File - file_google_ads_googleads_v21_resources_campaign_criterion_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_criterion_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_criterion_proto = out.File + file_google_ads_googleads_v22_resources_campaign_criterion_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_criterion_proto_depIdxs = nil } diff --git a/resources/campaign_customizer.pb.go b/resources/campaign_customizer.pb.go index 1c2a5e88..aa3db37c 100644 --- a/resources/campaign_customizer.pb.go +++ b/resources/campaign_customizer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_customizer.proto +// source: google/ads/googleads/v22/resources/campaign_customizer.proto package resources @@ -53,7 +53,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.v21.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -63,7 +63,7 @@ type CampaignCustomizer struct { func (x *CampaignCustomizer) Reset() { *x = CampaignCustomizer{} - mi := &file_google_ads_googleads_v21_resources_campaign_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *CampaignCustomizer) String() string { func (*CampaignCustomizer) ProtoMessage() {} func (x *CampaignCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_customizer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *CampaignCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCustomizer.ProtoReflect.Descriptor instead. func (*CampaignCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescGZIP(), []int{0} } func (x *CampaignCustomizer) GetResourceName() string { @@ -126,21 +126,21 @@ func (x *CampaignCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v21_resources_campaign_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -167,13 +167,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -186,45 +186,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_customizer_proto_goTypes = []any{ - (*CampaignCustomizer)(nil), // 0: google.ads.googleads.v21.resources.CampaignCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_campaign_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_customizer_proto_goTypes = []any{ + (*CampaignCustomizer)(nil), // 0: google.ads.googleads.v22.resources.CampaignCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v22.common.CustomizerValue } -var file_google_ads_googleads_v21_resources_campaign_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignCustomizer.status:type_name -> google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v21.resources.CampaignCustomizer.value:type_name -> google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_campaign_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignCustomizer.status:type_name -> google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v22.resources.CampaignCustomizer.value:type_name -> google.ads.googleads.v22.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 @@ -232,26 +232,26 @@ var file_google_ads_googleads_v21_resources_campaign_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_customizer_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_customizer_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_customizer_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_customizer_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_customizer_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_customizer_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_customizer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_customizer_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_customizer_proto = out.File - file_google_ads_googleads_v21_resources_campaign_customizer_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_customizer_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_customizer_proto = out.File + file_google_ads_googleads_v22_resources_campaign_customizer_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_customizer_proto_depIdxs = nil } diff --git a/resources/campaign_draft.pb.go b/resources/campaign_draft.pb.go index 0325ab2c..3112eb72 100644 --- a/resources/campaign_draft.pb.go +++ b/resources/campaign_draft.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_draft.proto +// source: google/ads/googleads/v22/resources/campaign_draft.proto package resources @@ -67,7 +67,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.v21.enums.CampaignDraftStatusEnum_CampaignDraftStatus" json:"status,omitempty"` + Status enums.CampaignDraftStatusEnum_CampaignDraftStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -81,7 +81,7 @@ type CampaignDraft struct { func (x *CampaignDraft) Reset() { *x = CampaignDraft{} - mi := &file_google_ads_googleads_v21_resources_campaign_draft_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_draft_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -93,7 +93,7 @@ func (x *CampaignDraft) String() string { func (*CampaignDraft) ProtoMessage() {} func (x *CampaignDraft) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_draft_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_draft_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -106,7 +106,7 @@ func (x *CampaignDraft) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraft.ProtoReflect.Descriptor instead. func (*CampaignDraft) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescGZIP(), []int{0} } func (x *CampaignDraft) GetResourceName() string { @@ -165,17 +165,17 @@ func (x *CampaignDraft) GetLongRunningOperation() string { return "" } -var File_google_ads_googleads_v21_resources_campaign_draft_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_draft_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -205,7 +205,7 @@ var file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x32, 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, @@ -233,43 +233,43 @@ var file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_draft_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_draft_proto_goTypes = []any{ - (*CampaignDraft)(nil), // 0: google.ads.googleads.v21.resources.CampaignDraft - (enums.CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 1: google.ads.googleads.v21.enums.CampaignDraftStatusEnum.CampaignDraftStatus +var file_google_ads_googleads_v22_resources_campaign_draft_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_draft_proto_goTypes = []any{ + (*CampaignDraft)(nil), // 0: google.ads.googleads.v22.resources.CampaignDraft + (enums.CampaignDraftStatusEnum_CampaignDraftStatus)(0), // 1: google.ads.googleads.v22.enums.CampaignDraftStatusEnum.CampaignDraftStatus } -var file_google_ads_googleads_v21_resources_campaign_draft_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignDraft.status:type_name -> google.ads.googleads.v21.enums.CampaignDraftStatusEnum.CampaignDraftStatus +var file_google_ads_googleads_v22_resources_campaign_draft_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignDraft.status:type_name -> google.ads.googleads.v22.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 @@ -277,27 +277,27 @@ var file_google_ads_googleads_v21_resources_campaign_draft_proto_depIdxs = []int 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_draft_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_draft_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_draft_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_draft_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_draft_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_draft_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_draft_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_draft_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_draft_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_draft_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_draft_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_draft_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_draft_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_draft_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_draft_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_draft_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_draft_proto = out.File - file_google_ads_googleads_v21_resources_campaign_draft_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_draft_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_draft_proto = out.File + file_google_ads_googleads_v22_resources_campaign_draft_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_draft_proto_depIdxs = nil } diff --git a/resources/campaign_goal_config.pb.go b/resources/campaign_goal_config.pb.go new file mode 100644 index 00000000..0f4239dc --- /dev/null +++ b/resources/campaign_goal_config.pb.go @@ -0,0 +1,283 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/resources/campaign_goal_config.proto + +package resources + +import ( + common "github.com/shenzhencenter/google-ads-pb/common" + 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" + unsafe "unsafe" +) + +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 link between a campaign and a goal enabling campaign-specific optimization. +type CampaignGoalConfig struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Immutable. The resource name of the campaign goal config. + // campaign goal config resource names have the form: + // `customers/{customer_id}/campaignGoalConfigs/{campaign_id}~{goal_id}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Immutable. The resource name of the campaign for this link. + Campaign string `protobuf:"bytes,2,opt,name=campaign,proto3" json:"campaign,omitempty"` + // Immutable. The resource name of the goal this link is attached to. + Goal string `protobuf:"bytes,3,opt,name=goal,proto3" json:"goal,omitempty"` + // Output only. The goal type this link is attached to. + GoalType enums.GoalTypeEnum_GoalType `protobuf:"varint,4,opt,name=goal_type,json=goalType,proto3,enum=google.ads.googleads.v22.enums.GoalTypeEnum_GoalType" json:"goal_type,omitempty"` + // The settings specific to this campaign goal config. + // + // Types that are valid to be assigned to CampaignGoalConfigSettings: + // + // *CampaignGoalConfig_CampaignRetentionSettings + CampaignGoalConfigSettings isCampaignGoalConfig_CampaignGoalConfigSettings `protobuf_oneof:"campaign_goal_config_settings"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CampaignGoalConfig) Reset() { + *x = CampaignGoalConfig{} + mi := &file_google_ads_googleads_v22_resources_campaign_goal_config_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CampaignGoalConfig) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignGoalConfig) ProtoMessage() {} + +func (x *CampaignGoalConfig) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_resources_campaign_goal_config_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CampaignGoalConfig.ProtoReflect.Descriptor instead. +func (*CampaignGoalConfig) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescGZIP(), []int{0} +} + +func (x *CampaignGoalConfig) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *CampaignGoalConfig) GetCampaign() string { + if x != nil { + return x.Campaign + } + return "" +} + +func (x *CampaignGoalConfig) GetGoal() string { + if x != nil { + return x.Goal + } + return "" +} + +func (x *CampaignGoalConfig) GetGoalType() enums.GoalTypeEnum_GoalType { + if x != nil { + return x.GoalType + } + return enums.GoalTypeEnum_GoalType(0) +} + +func (x *CampaignGoalConfig) GetCampaignGoalConfigSettings() isCampaignGoalConfig_CampaignGoalConfigSettings { + if x != nil { + return x.CampaignGoalConfigSettings + } + return nil +} + +func (x *CampaignGoalConfig) GetCampaignRetentionSettings() *common.CampaignGoalSettings_CampaignRetentionGoalSettings { + if x != nil { + if x, ok := x.CampaignGoalConfigSettings.(*CampaignGoalConfig_CampaignRetentionSettings); ok { + return x.CampaignRetentionSettings + } + } + return nil +} + +type isCampaignGoalConfig_CampaignGoalConfigSettings interface { + isCampaignGoalConfig_CampaignGoalConfigSettings() +} + +type CampaignGoalConfig_CampaignRetentionSettings struct { + // Retention goal campaign settings. + CampaignRetentionSettings *common.CampaignGoalSettings_CampaignRetentionGoalSettings `protobuf:"bytes,5,opt,name=campaign_retention_settings,json=campaignRetentionSettings,proto3,oneof"` +} + +func (*CampaignGoalConfig_CampaignRetentionSettings) isCampaignGoalConfig_CampaignGoalConfigSettings() { +} + +var File_google_ads_googleads_v22_resources_campaign_goal_config_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, + 0x61, 0x6c, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, + 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x81, 0x05, + 0x0a, 0x12, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x12, 0x58, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x33, 0xe0, 0x41, 0x05, + 0xfa, 0x41, 0x2d, 0x0a, 0x2b, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, + 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x45, + 0x0a, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, 0x08, 0x63, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x12, 0x39, 0x0a, 0x04, 0x67, 0x6f, 0x61, 0x6c, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x05, 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, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x04, 0x67, 0x6f, 0x61, 0x6c, + 0x12, 0x57, 0x0a, 0x09, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x32, 0x32, 0x2e, 0x65, + 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, + 0x6d, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, + 0x08, 0x67, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x95, 0x01, 0x0a, 0x1b, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x05, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, + 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x52, + 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x73, 0x48, 0x00, 0x52, 0x19, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x52, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 0x73, 0x3a, 0x7d, 0xea, 0x41, 0x7a, 0x0a, 0x2b, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x12, 0x4b, 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, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x73, + 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, + 0x75, 0x6e, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x7d, + 0x42, 0x1f, 0x0a, 0x1d, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, + 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, + 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, + 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x43, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_campaign_goal_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_goal_config_proto_goTypes = []any{ + (*CampaignGoalConfig)(nil), // 0: google.ads.googleads.v22.resources.CampaignGoalConfig + (enums.GoalTypeEnum_GoalType)(0), // 1: google.ads.googleads.v22.enums.GoalTypeEnum.GoalType + (*common.CampaignGoalSettings_CampaignRetentionGoalSettings)(nil), // 2: google.ads.googleads.v22.common.CampaignGoalSettings.CampaignRetentionGoalSettings +} +var file_google_ads_googleads_v22_resources_campaign_goal_config_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignGoalConfig.goal_type:type_name -> google.ads.googleads.v22.enums.GoalTypeEnum.GoalType + 2, // 1: google.ads.googleads.v22.resources.CampaignGoalConfig.campaign_retention_settings:type_name -> google.ads.googleads.v22.common.CampaignGoalSettings.CampaignRetentionGoalSettings + 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_v22_resources_campaign_goal_config_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_goal_config_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_goal_config_proto != nil { + return + } + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_msgTypes[0].OneofWrappers = []any{ + (*CampaignGoalConfig_CampaignRetentionSettings)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_goal_config_proto_rawDesc)), + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_resources_campaign_goal_config_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_goal_config_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_goal_config_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_resources_campaign_goal_config_proto = out.File + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_goal_config_proto_depIdxs = nil +} diff --git a/resources/campaign_group.pb.go b/resources/campaign_group.pb.go index b7768e8f..8411ab9d 100644 --- a/resources/campaign_group.pb.go +++ b/resources/campaign_group.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_group.proto +// source: google/ads/googleads/v22/resources/campaign_group.proto package resources @@ -58,14 +58,14 @@ 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.v21.enums.CampaignGroupStatusEnum_CampaignGroupStatus" json:"status,omitempty"` + Status enums.CampaignGroupStatusEnum_CampaignGroupStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CampaignGroupStatusEnum_CampaignGroupStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CampaignGroup) Reset() { *x = CampaignGroup{} - mi := &file_google_ads_googleads_v21_resources_campaign_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *CampaignGroup) String() string { func (*CampaignGroup) ProtoMessage() {} func (x *CampaignGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_group_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *CampaignGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignGroup.ProtoReflect.Descriptor instead. func (*CampaignGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescGZIP(), []int{0} } func (x *CampaignGroup) GetResourceName() string { @@ -121,17 +121,17 @@ func (x *CampaignGroup) GetStatus() enums.CampaignGroupStatusEnum_CampaignGroupS return enums.CampaignGroupStatusEnum_CampaignGroupStatus(0) } -var File_google_ads_googleads_v21_resources_campaign_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_group_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -148,7 +148,7 @@ var file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc = strin 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,43 +161,43 @@ var file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_group_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_group_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_group_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_group_proto_goTypes = []any{ - (*CampaignGroup)(nil), // 0: google.ads.googleads.v21.resources.CampaignGroup - (enums.CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 1: google.ads.googleads.v21.enums.CampaignGroupStatusEnum.CampaignGroupStatus +var file_google_ads_googleads_v22_resources_campaign_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_group_proto_goTypes = []any{ + (*CampaignGroup)(nil), // 0: google.ads.googleads.v22.resources.CampaignGroup + (enums.CampaignGroupStatusEnum_CampaignGroupStatus)(0), // 1: google.ads.googleads.v22.enums.CampaignGroupStatusEnum.CampaignGroupStatus } -var file_google_ads_googleads_v21_resources_campaign_group_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignGroup.status:type_name -> google.ads.googleads.v21.enums.CampaignGroupStatusEnum.CampaignGroupStatus +var file_google_ads_googleads_v22_resources_campaign_group_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignGroup.status:type_name -> google.ads.googleads.v22.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 @@ -205,26 +205,26 @@ var file_google_ads_googleads_v21_resources_campaign_group_proto_depIdxs = []int 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_group_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_group_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_group_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_group_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_group_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_group_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_group_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_group_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_group_proto = out.File - file_google_ads_googleads_v21_resources_campaign_group_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_group_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_group_proto = out.File + file_google_ads_googleads_v22_resources_campaign_group_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_group_proto_depIdxs = nil } diff --git a/resources/campaign_label.pb.go b/resources/campaign_label.pb.go index 822cf8df..ea9ef3b2 100644 --- a/resources/campaign_label.pb.go +++ b/resources/campaign_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_label.proto +// source: google/ads/googleads/v22/resources/campaign_label.proto package resources @@ -53,7 +53,7 @@ type CampaignLabel struct { func (x *CampaignLabel) Reset() { *x = CampaignLabel{} - mi := &file_google_ads_googleads_v21_resources_campaign_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *CampaignLabel) String() string { func (*CampaignLabel) ProtoMessage() {} func (x *CampaignLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *CampaignLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLabel.ProtoReflect.Descriptor instead. func (*CampaignLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescGZIP(), []int{0} } func (x *CampaignLabel) GetResourceName() string { @@ -102,15 +102,15 @@ func (x *CampaignLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v21_resources_campaign_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -140,41 +140,41 @@ var file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_label_proto_goTypes = []any{ - (*CampaignLabel)(nil), // 0: google.ads.googleads.v21.resources.CampaignLabel +var file_google_ads_googleads_v22_resources_campaign_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_label_proto_goTypes = []any{ + (*CampaignLabel)(nil), // 0: google.ads.googleads.v22.resources.CampaignLabel } -var file_google_ads_googleads_v21_resources_campaign_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -182,27 +182,27 @@ var file_google_ads_googleads_v21_resources_campaign_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_label_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_label_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_label_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_label_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_label_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_label_proto = out.File - file_google_ads_googleads_v21_resources_campaign_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_label_proto = out.File + file_google_ads_googleads_v22_resources_campaign_label_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_label_proto_depIdxs = nil } diff --git a/resources/campaign_lifecycle_goal.pb.go b/resources/campaign_lifecycle_goal.pb.go index 08680dfd..f1fed837 100644 --- a/resources/campaign_lifecycle_goal.pb.go +++ b/resources/campaign_lifecycle_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_lifecycle_goal.proto +// source: google/ads/googleads/v22/resources/campaign_lifecycle_goal.proto package resources @@ -57,7 +57,7 @@ type CampaignLifecycleGoal struct { func (x *CampaignLifecycleGoal) Reset() { *x = CampaignLifecycleGoal{} - mi := &file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *CampaignLifecycleGoal) String() string { func (*CampaignLifecycleGoal) ProtoMessage() {} func (x *CampaignLifecycleGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *CampaignLifecycleGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLifecycleGoal.ProtoReflect.Descriptor instead. func (*CampaignLifecycleGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{0} } func (x *CampaignLifecycleGoal) GetResourceName() string { @@ -110,7 +110,7 @@ func (x *CampaignLifecycleGoal) GetCustomerAcquisitionGoalSettings() *CustomerAc type CustomerAcquisitionGoalSettings struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -119,7 +119,7 @@ type CustomerAcquisitionGoalSettings struct { func (x *CustomerAcquisitionGoalSettings) Reset() { *x = CustomerAcquisitionGoalSettings{} - mi := &file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *CustomerAcquisitionGoalSettings) String() string { func (*CustomerAcquisitionGoalSettings) ProtoMessage() {} func (x *CustomerAcquisitionGoalSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,7 +144,7 @@ func (x *CustomerAcquisitionGoalSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAcquisitionGoalSettings.ProtoReflect.Descriptor instead. func (*CustomerAcquisitionGoalSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescGZIP(), []int{1} } func (x *CustomerAcquisitionGoalSettings) GetOptimizationMode() enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode { @@ -161,21 +161,21 @@ func (x *CustomerAcquisitionGoalSettings) GetValueSettings() *common.LifecycleGo return nil } -var File_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -198,7 +198,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -216,7 +216,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -226,53 +226,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_goTypes = []any{ - (*CampaignLifecycleGoal)(nil), // 0: google.ads.googleads.v21.resources.CampaignLifecycleGoal - (*CustomerAcquisitionGoalSettings)(nil), // 1: google.ads.googleads.v21.resources.CustomerAcquisitionGoalSettings - (enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 2: google.ads.googleads.v21.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode - (*common.LifecycleGoalValueSettings)(nil), // 3: google.ads.googleads.v21.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_goTypes = []any{ + (*CampaignLifecycleGoal)(nil), // 0: google.ads.googleads.v22.resources.CampaignLifecycleGoal + (*CustomerAcquisitionGoalSettings)(nil), // 1: google.ads.googleads.v22.resources.CustomerAcquisitionGoalSettings + (enums.CustomerAcquisitionOptimizationModeEnum_CustomerAcquisitionOptimizationMode)(0), // 2: google.ads.googleads.v22.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode + (*common.LifecycleGoalValueSettings)(nil), // 3: google.ads.googleads.v22.common.LifecycleGoalValueSettings } -var file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignLifecycleGoal.customer_acquisition_goal_settings:type_name -> google.ads.googleads.v21.resources.CustomerAcquisitionGoalSettings - 2, // 1: google.ads.googleads.v21.resources.CustomerAcquisitionGoalSettings.optimization_mode:type_name -> google.ads.googleads.v21.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode - 3, // 2: google.ads.googleads.v21.resources.CustomerAcquisitionGoalSettings.value_settings:type_name -> google.ads.googleads.v21.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignLifecycleGoal.customer_acquisition_goal_settings:type_name -> google.ads.googleads.v22.resources.CustomerAcquisitionGoalSettings + 2, // 1: google.ads.googleads.v22.resources.CustomerAcquisitionGoalSettings.optimization_mode:type_name -> google.ads.googleads.v22.enums.CustomerAcquisitionOptimizationModeEnum.CustomerAcquisitionOptimizationMode + 3, // 2: google.ads.googleads.v22.resources.CustomerAcquisitionGoalSettings.value_settings:type_name -> google.ads.googleads.v22.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 @@ -280,26 +280,26 @@ var file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_depIdx 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto = out.File - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_lifecycle_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto = out.File + file_google_ads_googleads_v22_resources_campaign_lifecycle_goal_proto_goTypes = nil + file_google_ads_googleads_v22_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 7e40f3a7..ac113f09 100644 --- a/resources/campaign_search_term_insight.pb.go +++ b/resources/campaign_search_term_insight.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_search_term_insight.proto +// source: google/ads/googleads/v22/resources/campaign_search_term_insight.proto package resources @@ -60,7 +60,7 @@ type CampaignSearchTermInsight struct { func (x *CampaignSearchTermInsight) Reset() { *x = CampaignSearchTermInsight{} - mi := &file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_campaign_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_msgTypes[0] if 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_v21_resources_campaign_search_term_insight_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_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_v21_resources_campaign_search_term_insight_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_search_term_insight_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x61, 0x6d, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_goTypes = []any{ - (*CampaignSearchTermInsight)(nil), // 0: google.ads.googleads.v21.resources.CampaignSearchTermInsight +var file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_goTypes = []any{ + (*CampaignSearchTermInsight)(nil), // 0: google.ads.googleads.v22.resources.CampaignSearchTermInsight } -var file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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,27 +200,27 @@ var file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_search_term_insight_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_search_term_insight_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_search_term_insight_proto = out.File - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_search_term_insight_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_search_term_insight_proto = out.File + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_search_term_insight_proto_depIdxs = nil } diff --git a/resources/campaign_search_term_view.pb.go b/resources/campaign_search_term_view.pb.go index 9d9af03b..56b60186 100644 --- a/resources/campaign_search_term_view.pb.go +++ b/resources/campaign_search_term_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_search_term_view.proto +// source: google/ads/googleads/v22/resources/campaign_search_term_view.proto package resources @@ -55,7 +55,7 @@ type CampaignSearchTermView struct { func (x *CampaignSearchTermView) Reset() { *x = CampaignSearchTermView{} - mi := &file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *CampaignSearchTermView) String() string { func (*CampaignSearchTermView) ProtoMessage() {} func (x *CampaignSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *CampaignSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSearchTermView.ProtoReflect.Descriptor instead. func (*CampaignSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *CampaignSearchTermView) GetResourceName() string { @@ -104,15 +104,15 @@ func (x *CampaignSearchTermView) GetCampaign() string { return "" } -var File_google_ads_googleads_v21_resources_campaign_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -143,42 +143,42 @@ var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawD 0x7d, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1b, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_goTypes = []any{ - (*CampaignSearchTermView)(nil), // 0: google.ads.googleads.v21.resources.CampaignSearchTermView +var file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_goTypes = []any{ + (*CampaignSearchTermView)(nil), // 0: google.ads.googleads.v22.resources.CampaignSearchTermView } -var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_resources_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,27 +186,27 @@ var file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_search_term_view_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_search_term_view_proto = out.File - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_search_term_view_proto = out.File + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_search_term_view_proto_depIdxs = nil } diff --git a/resources/campaign_shared_set.pb.go b/resources/campaign_shared_set.pb.go index 933c3e18..b0c387da 100644 --- a/resources/campaign_shared_set.pb.go +++ b/resources/campaign_shared_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_shared_set.proto +// source: google/ads/googleads/v22/resources/campaign_shared_set.proto package resources @@ -56,14 +56,14 @@ 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.v21.enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus" json:"status,omitempty"` + Status enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus `protobuf:"varint,2,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CampaignSharedSet) Reset() { *x = CampaignSharedSet{} - mi := &file_google_ads_googleads_v21_resources_campaign_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_shared_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *CampaignSharedSet) String() string { func (*CampaignSharedSet) ProtoMessage() {} func (x *CampaignSharedSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_shared_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *CampaignSharedSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSet.ProtoReflect.Descriptor instead. func (*CampaignSharedSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescGZIP(), []int{0} } func (x *CampaignSharedSet) GetResourceName() string { @@ -119,17 +119,17 @@ func (x *CampaignSharedSet) GetStatus() enums.CampaignSharedSetStatusEnum_Campai return enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus(0) } -var File_google_ads_googleads_v21_resources_campaign_shared_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_shared_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -155,7 +155,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,43 +171,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x16, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_shared_set_proto_goTypes = []any{ - (*CampaignSharedSet)(nil), // 0: google.ads.googleads.v21.resources.CampaignSharedSet - (enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 1: google.ads.googleads.v21.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus +var file_google_ads_googleads_v22_resources_campaign_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_shared_set_proto_goTypes = []any{ + (*CampaignSharedSet)(nil), // 0: google.ads.googleads.v22.resources.CampaignSharedSet + (enums.CampaignSharedSetStatusEnum_CampaignSharedSetStatus)(0), // 1: google.ads.googleads.v22.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus } -var file_google_ads_googleads_v21_resources_campaign_shared_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignSharedSet.status:type_name -> google.ads.googleads.v21.enums.CampaignSharedSetStatusEnum.CampaignSharedSetStatus +var file_google_ads_googleads_v22_resources_campaign_shared_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignSharedSet.status:type_name -> google.ads.googleads.v22.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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_resources_campaign_shared_set_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_shared_set_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_shared_set_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_shared_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_shared_set_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_shared_set_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_shared_set_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_shared_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_shared_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_shared_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_shared_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_shared_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_shared_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_shared_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_shared_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_shared_set_proto = out.File - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_shared_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_shared_set_proto = out.File + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_shared_set_proto_depIdxs = nil } diff --git a/resources/campaign_simulation.pb.go b/resources/campaign_simulation.pb.go index f7df1969..50b0af7d 100644 --- a/resources/campaign_simulation.pb.go +++ b/resources/campaign_simulation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/campaign_simulation.proto +// source: google/ads/googleads/v22/resources/campaign_simulation.proto package resources @@ -68,9 +68,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.v21.enums.SimulationTypeEnum_SimulationType" json:"type,omitempty"` + Type enums.SimulationTypeEnum_SimulationType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -93,7 +93,7 @@ type CampaignSimulation struct { func (x *CampaignSimulation) Reset() { *x = CampaignSimulation{} - mi := &file_google_ads_googleads_v21_resources_campaign_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_simulation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *CampaignSimulation) String() string { func (*CampaignSimulation) ProtoMessage() {} func (x *CampaignSimulation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_campaign_simulation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_campaign_simulation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,7 +118,7 @@ func (x *CampaignSimulation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSimulation.ProtoReflect.Descriptor instead. func (*CampaignSimulation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescGZIP(), []int{0} } func (x *CampaignSimulation) GetResourceName() string { @@ -255,25 +255,25 @@ func (*CampaignSimulation_TargetImpressionSharePointList) isCampaignSimulation_P func (*CampaignSimulation_BudgetPointList) isCampaignSimulation_PointList() {} -var File_google_ads_googleads_v21_resources_campaign_simulation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_campaign_simulation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x69, 0x6d, 0x75, 0x6c, 0x61, + 0x76, 0x32, 0x32, 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, @@ -290,14 +290,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -310,7 +310,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -318,14 +318,14 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -334,7 +334,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -343,7 +343,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x75, 0x64, 0x67, 0x65, 0x74, + 0x32, 0x32, 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, @@ -359,56 +359,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDescData + return file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_campaign_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_campaign_simulation_proto_goTypes = []any{ - (*CampaignSimulation)(nil), // 0: google.ads.googleads.v21.resources.CampaignSimulation - (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v21.common.CpcBidSimulationPointList - (*common.TargetCpaSimulationPointList)(nil), // 4: google.ads.googleads.v21.common.TargetCpaSimulationPointList - (*common.TargetRoasSimulationPointList)(nil), // 5: google.ads.googleads.v21.common.TargetRoasSimulationPointList - (*common.TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v21.common.TargetImpressionShareSimulationPointList - (*common.BudgetSimulationPointList)(nil), // 7: google.ads.googleads.v21.common.BudgetSimulationPointList +var file_google_ads_googleads_v22_resources_campaign_simulation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_campaign_simulation_proto_goTypes = []any{ + (*CampaignSimulation)(nil), // 0: google.ads.googleads.v22.resources.CampaignSimulation + (enums.SimulationTypeEnum_SimulationType)(0), // 1: google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + (enums.SimulationModificationMethodEnum_SimulationModificationMethod)(0), // 2: google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + (*common.CpcBidSimulationPointList)(nil), // 3: google.ads.googleads.v22.common.CpcBidSimulationPointList + (*common.TargetCpaSimulationPointList)(nil), // 4: google.ads.googleads.v22.common.TargetCpaSimulationPointList + (*common.TargetRoasSimulationPointList)(nil), // 5: google.ads.googleads.v22.common.TargetRoasSimulationPointList + (*common.TargetImpressionShareSimulationPointList)(nil), // 6: google.ads.googleads.v22.common.TargetImpressionShareSimulationPointList + (*common.BudgetSimulationPointList)(nil), // 7: google.ads.googleads.v22.common.BudgetSimulationPointList } -var file_google_ads_googleads_v21_resources_campaign_simulation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CampaignSimulation.type:type_name -> google.ads.googleads.v21.enums.SimulationTypeEnum.SimulationType - 2, // 1: google.ads.googleads.v21.resources.CampaignSimulation.modification_method:type_name -> google.ads.googleads.v21.enums.SimulationModificationMethodEnum.SimulationModificationMethod - 3, // 2: google.ads.googleads.v21.resources.CampaignSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v21.common.CpcBidSimulationPointList - 4, // 3: google.ads.googleads.v21.resources.CampaignSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v21.common.TargetCpaSimulationPointList - 5, // 4: google.ads.googleads.v21.resources.CampaignSimulation.target_roas_point_list:type_name -> google.ads.googleads.v21.common.TargetRoasSimulationPointList - 6, // 5: google.ads.googleads.v21.resources.CampaignSimulation.target_impression_share_point_list:type_name -> google.ads.googleads.v21.common.TargetImpressionShareSimulationPointList - 7, // 6: google.ads.googleads.v21.resources.CampaignSimulation.budget_point_list:type_name -> google.ads.googleads.v21.common.BudgetSimulationPointList +var file_google_ads_googleads_v22_resources_campaign_simulation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CampaignSimulation.type:type_name -> google.ads.googleads.v22.enums.SimulationTypeEnum.SimulationType + 2, // 1: google.ads.googleads.v22.resources.CampaignSimulation.modification_method:type_name -> google.ads.googleads.v22.enums.SimulationModificationMethodEnum.SimulationModificationMethod + 3, // 2: google.ads.googleads.v22.resources.CampaignSimulation.cpc_bid_point_list:type_name -> google.ads.googleads.v22.common.CpcBidSimulationPointList + 4, // 3: google.ads.googleads.v22.resources.CampaignSimulation.target_cpa_point_list:type_name -> google.ads.googleads.v22.common.TargetCpaSimulationPointList + 5, // 4: google.ads.googleads.v22.resources.CampaignSimulation.target_roas_point_list:type_name -> google.ads.googleads.v22.common.TargetRoasSimulationPointList + 6, // 5: google.ads.googleads.v22.resources.CampaignSimulation.target_impression_share_point_list:type_name -> google.ads.googleads.v22.common.TargetImpressionShareSimulationPointList + 7, // 6: google.ads.googleads.v22.resources.CampaignSimulation.budget_point_list:type_name -> google.ads.googleads.v22.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 @@ -416,12 +416,12 @@ var file_google_ads_googleads_v21_resources_campaign_simulation_proto_depIdxs = 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_campaign_simulation_proto_init() } -func file_google_ads_googleads_v21_resources_campaign_simulation_proto_init() { - if File_google_ads_googleads_v21_resources_campaign_simulation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_campaign_simulation_proto_init() } +func file_google_ads_googleads_v22_resources_campaign_simulation_proto_init() { + if File_google_ads_googleads_v22_resources_campaign_simulation_proto != nil { return } - file_google_ads_googleads_v21_resources_campaign_simulation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_campaign_simulation_proto_msgTypes[0].OneofWrappers = []any{ (*CampaignSimulation_CpcBidPointList)(nil), (*CampaignSimulation_TargetCpaPointList)(nil), (*CampaignSimulation_TargetRoasPointList)(nil), @@ -432,17 +432,17 @@ func file_google_ads_googleads_v21_resources_campaign_simulation_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_campaign_simulation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_campaign_simulation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_campaign_simulation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_campaign_simulation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_campaign_simulation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_campaign_simulation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_campaign_simulation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_campaign_simulation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_campaign_simulation_proto = out.File - file_google_ads_googleads_v21_resources_campaign_simulation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_campaign_simulation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_campaign_simulation_proto = out.File + file_google_ads_googleads_v22_resources_campaign_simulation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_campaign_simulation_proto_depIdxs = nil } diff --git a/resources/carrier_constant.pb.go b/resources/carrier_constant.pb.go index aec4d80a..eae3bd96 100644 --- a/resources/carrier_constant.pb.go +++ b/resources/carrier_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/carrier_constant.proto +// source: google/ads/googleads/v22/resources/carrier_constant.proto package resources @@ -57,7 +57,7 @@ type CarrierConstant struct { func (x *CarrierConstant) Reset() { *x = CarrierConstant{} - mi := &file_google_ads_googleads_v21_resources_carrier_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_carrier_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *CarrierConstant) String() string { func (*CarrierConstant) ProtoMessage() {} func (x *CarrierConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_carrier_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_carrier_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *CarrierConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use CarrierConstant.ProtoReflect.Descriptor instead. func (*CarrierConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescGZIP(), []int{0} } func (x *CarrierConstant) GetResourceName() string { @@ -113,15 +113,15 @@ func (x *CarrierConstant) GetCountryCode() string { return "" } -var File_google_ads_googleads_v21_resources_carrier_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_carrier_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -147,41 +147,41 @@ var file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_carrier_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_carrier_constant_proto_goTypes = []any{ - (*CarrierConstant)(nil), // 0: google.ads.googleads.v21.resources.CarrierConstant +var file_google_ads_googleads_v22_resources_carrier_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_carrier_constant_proto_goTypes = []any{ + (*CarrierConstant)(nil), // 0: google.ads.googleads.v22.resources.CarrierConstant } -var file_google_ads_googleads_v21_resources_carrier_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -189,27 +189,27 @@ var file_google_ads_googleads_v21_resources_carrier_constant_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_carrier_constant_proto_init() } -func file_google_ads_googleads_v21_resources_carrier_constant_proto_init() { - if File_google_ads_googleads_v21_resources_carrier_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_carrier_constant_proto_init() } +func file_google_ads_googleads_v22_resources_carrier_constant_proto_init() { + if File_google_ads_googleads_v22_resources_carrier_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_carrier_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_carrier_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_carrier_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_carrier_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_carrier_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_carrier_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_carrier_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_carrier_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_carrier_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_carrier_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_carrier_constant_proto = out.File - file_google_ads_googleads_v21_resources_carrier_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_carrier_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_carrier_constant_proto = out.File + file_google_ads_googleads_v22_resources_carrier_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_carrier_constant_proto_depIdxs = nil } diff --git a/resources/change_event.pb.go b/resources/change_event.pb.go index 70c83208..6343643d 100644 --- a/resources/change_event.pb.go +++ b/resources/change_event.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/change_event.proto +// source: google/ads/googleads/v22/resources/change_event.proto package resources @@ -53,11 +53,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.v21.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.v22.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.v21.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.v22.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 @@ -67,7 +67,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.v21.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.v22.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. @@ -82,7 +82,7 @@ type ChangeEvent struct { func (x *ChangeEvent) Reset() { *x = ChangeEvent{} - mi := &file_google_ads_googleads_v21_resources_change_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_change_event_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -94,7 +94,7 @@ func (x *ChangeEvent) String() string { func (*ChangeEvent) ProtoMessage() {} func (x *ChangeEvent) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_change_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_change_event_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -107,7 +107,7 @@ func (x *ChangeEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeEvent.ProtoReflect.Descriptor instead. func (*ChangeEvent) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_change_event_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_change_event_proto_rawDescGZIP(), []int{0} } func (x *ChangeEvent) GetResourceName() string { @@ -241,7 +241,7 @@ type ChangeEvent_ChangedResource struct { func (x *ChangeEvent_ChangedResource) Reset() { *x = ChangeEvent_ChangedResource{} - mi := &file_google_ads_googleads_v21_resources_change_event_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_change_event_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -253,7 +253,7 @@ func (x *ChangeEvent_ChangedResource) String() string { func (*ChangeEvent_ChangedResource) ProtoMessage() {} func (x *ChangeEvent_ChangedResource) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_change_event_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_change_event_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -266,7 +266,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_v21_resources_change_event_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_change_event_proto_rawDescGZIP(), []int{0, 0} } func (x *ChangeEvent_ChangedResource) GetAd() *Ad { @@ -374,77 +374,77 @@ func (x *ChangeEvent_ChangedResource) GetCampaignAssetSet() *CampaignAssetSet { return nil } -var File_google_ads_googleads_v21_resources_change_event_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_change_event_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_change_event_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x37, 0x67, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, @@ -465,7 +465,7 @@ var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string( 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, 0x67, 0x65, 0x45, + 0x32, 0x32, 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, 0x03, 0xe0, 0x41, @@ -476,7 +476,7 @@ var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x52, 0x0a, 0x63, @@ -485,21 +485,21 @@ var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string( 0x41, 0x03, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x45, 0x6d, 0x61, 0x69, 0x6c, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x63, 0x65, 0x12, 0x94, 0x01, 0x0a, 0x19, 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, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -526,86 +526,86 @@ var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -618,82 +618,82 @@ var file_google_ads_googleads_v21_resources_change_event_proto_rawDesc = string( 0x63, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_change_event_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_change_event_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_change_event_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_change_event_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_change_event_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_change_event_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_change_event_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_change_event_proto_rawDesc), len(file_google_ads_googleads_v21_resources_change_event_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_change_event_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_change_event_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_change_event_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_change_event_proto_rawDesc), len(file_google_ads_googleads_v22_resources_change_event_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_change_event_proto_rawDescData + return file_google_ads_googleads_v22_resources_change_event_proto_rawDescData } -var file_google_ads_googleads_v21_resources_change_event_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_change_event_proto_goTypes = []any{ - (*ChangeEvent)(nil), // 0: google.ads.googleads.v21.resources.ChangeEvent - (*ChangeEvent_ChangedResource)(nil), // 1: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource - (enums.ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 2: google.ads.googleads.v21.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType - (enums.ChangeClientTypeEnum_ChangeClientType)(0), // 3: google.ads.googleads.v21.enums.ChangeClientTypeEnum.ChangeClientType - (enums.ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 4: google.ads.googleads.v21.enums.ResourceChangeOperationEnum.ResourceChangeOperation +var file_google_ads_googleads_v22_resources_change_event_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_change_event_proto_goTypes = []any{ + (*ChangeEvent)(nil), // 0: google.ads.googleads.v22.resources.ChangeEvent + (*ChangeEvent_ChangedResource)(nil), // 1: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource + (enums.ChangeEventResourceTypeEnum_ChangeEventResourceType)(0), // 2: google.ads.googleads.v22.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType + (enums.ChangeClientTypeEnum_ChangeClientType)(0), // 3: google.ads.googleads.v22.enums.ChangeClientTypeEnum.ChangeClientType + (enums.ResourceChangeOperationEnum_ResourceChangeOperation)(0), // 4: google.ads.googleads.v22.enums.ResourceChangeOperationEnum.ResourceChangeOperation (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*Ad)(nil), // 6: google.ads.googleads.v21.resources.Ad - (*AdGroup)(nil), // 7: google.ads.googleads.v21.resources.AdGroup - (*AdGroupCriterion)(nil), // 8: google.ads.googleads.v21.resources.AdGroupCriterion - (*Campaign)(nil), // 9: google.ads.googleads.v21.resources.Campaign - (*CampaignBudget)(nil), // 10: google.ads.googleads.v21.resources.CampaignBudget - (*AdGroupBidModifier)(nil), // 11: google.ads.googleads.v21.resources.AdGroupBidModifier - (*CampaignCriterion)(nil), // 12: google.ads.googleads.v21.resources.CampaignCriterion - (*AdGroupAd)(nil), // 13: google.ads.googleads.v21.resources.AdGroupAd - (*Asset)(nil), // 14: google.ads.googleads.v21.resources.Asset - (*CustomerAsset)(nil), // 15: google.ads.googleads.v21.resources.CustomerAsset - (*CampaignAsset)(nil), // 16: google.ads.googleads.v21.resources.CampaignAsset - (*AdGroupAsset)(nil), // 17: google.ads.googleads.v21.resources.AdGroupAsset - (*AssetSet)(nil), // 18: google.ads.googleads.v21.resources.AssetSet - (*AssetSetAsset)(nil), // 19: google.ads.googleads.v21.resources.AssetSetAsset - (*CampaignAssetSet)(nil), // 20: google.ads.googleads.v21.resources.CampaignAssetSet -} -var file_google_ads_googleads_v21_resources_change_event_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.ChangeEvent.change_resource_type:type_name -> google.ads.googleads.v21.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType - 3, // 1: google.ads.googleads.v21.resources.ChangeEvent.client_type:type_name -> google.ads.googleads.v21.enums.ChangeClientTypeEnum.ChangeClientType - 1, // 2: google.ads.googleads.v21.resources.ChangeEvent.old_resource:type_name -> google.ads.googleads.v21.resources.ChangeEvent.ChangedResource - 1, // 3: google.ads.googleads.v21.resources.ChangeEvent.new_resource:type_name -> google.ads.googleads.v21.resources.ChangeEvent.ChangedResource - 4, // 4: google.ads.googleads.v21.resources.ChangeEvent.resource_change_operation:type_name -> google.ads.googleads.v21.enums.ResourceChangeOperationEnum.ResourceChangeOperation - 5, // 5: google.ads.googleads.v21.resources.ChangeEvent.changed_fields:type_name -> google.protobuf.FieldMask - 6, // 6: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad:type_name -> google.ads.googleads.v21.resources.Ad - 7, // 7: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad_group:type_name -> google.ads.googleads.v21.resources.AdGroup - 8, // 8: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad_group_criterion:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion - 9, // 9: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.campaign:type_name -> google.ads.googleads.v21.resources.Campaign - 10, // 10: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.campaign_budget:type_name -> google.ads.googleads.v21.resources.CampaignBudget - 11, // 11: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad_group_bid_modifier:type_name -> google.ads.googleads.v21.resources.AdGroupBidModifier - 12, // 12: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.campaign_criterion:type_name -> google.ads.googleads.v21.resources.CampaignCriterion - 13, // 13: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad_group_ad:type_name -> google.ads.googleads.v21.resources.AdGroupAd - 14, // 14: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.asset:type_name -> google.ads.googleads.v21.resources.Asset - 15, // 15: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.customer_asset:type_name -> google.ads.googleads.v21.resources.CustomerAsset - 16, // 16: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.campaign_asset:type_name -> google.ads.googleads.v21.resources.CampaignAsset - 17, // 17: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.ad_group_asset:type_name -> google.ads.googleads.v21.resources.AdGroupAsset - 18, // 18: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.asset_set:type_name -> google.ads.googleads.v21.resources.AssetSet - 19, // 19: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.asset_set_asset:type_name -> google.ads.googleads.v21.resources.AssetSetAsset - 20, // 20: google.ads.googleads.v21.resources.ChangeEvent.ChangedResource.campaign_asset_set:type_name -> google.ads.googleads.v21.resources.CampaignAssetSet + (*Ad)(nil), // 6: google.ads.googleads.v22.resources.Ad + (*AdGroup)(nil), // 7: google.ads.googleads.v22.resources.AdGroup + (*AdGroupCriterion)(nil), // 8: google.ads.googleads.v22.resources.AdGroupCriterion + (*Campaign)(nil), // 9: google.ads.googleads.v22.resources.Campaign + (*CampaignBudget)(nil), // 10: google.ads.googleads.v22.resources.CampaignBudget + (*AdGroupBidModifier)(nil), // 11: google.ads.googleads.v22.resources.AdGroupBidModifier + (*CampaignCriterion)(nil), // 12: google.ads.googleads.v22.resources.CampaignCriterion + (*AdGroupAd)(nil), // 13: google.ads.googleads.v22.resources.AdGroupAd + (*Asset)(nil), // 14: google.ads.googleads.v22.resources.Asset + (*CustomerAsset)(nil), // 15: google.ads.googleads.v22.resources.CustomerAsset + (*CampaignAsset)(nil), // 16: google.ads.googleads.v22.resources.CampaignAsset + (*AdGroupAsset)(nil), // 17: google.ads.googleads.v22.resources.AdGroupAsset + (*AssetSet)(nil), // 18: google.ads.googleads.v22.resources.AssetSet + (*AssetSetAsset)(nil), // 19: google.ads.googleads.v22.resources.AssetSetAsset + (*CampaignAssetSet)(nil), // 20: google.ads.googleads.v22.resources.CampaignAssetSet +} +var file_google_ads_googleads_v22_resources_change_event_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.ChangeEvent.change_resource_type:type_name -> google.ads.googleads.v22.enums.ChangeEventResourceTypeEnum.ChangeEventResourceType + 3, // 1: google.ads.googleads.v22.resources.ChangeEvent.client_type:type_name -> google.ads.googleads.v22.enums.ChangeClientTypeEnum.ChangeClientType + 1, // 2: google.ads.googleads.v22.resources.ChangeEvent.old_resource:type_name -> google.ads.googleads.v22.resources.ChangeEvent.ChangedResource + 1, // 3: google.ads.googleads.v22.resources.ChangeEvent.new_resource:type_name -> google.ads.googleads.v22.resources.ChangeEvent.ChangedResource + 4, // 4: google.ads.googleads.v22.resources.ChangeEvent.resource_change_operation:type_name -> google.ads.googleads.v22.enums.ResourceChangeOperationEnum.ResourceChangeOperation + 5, // 5: google.ads.googleads.v22.resources.ChangeEvent.changed_fields:type_name -> google.protobuf.FieldMask + 6, // 6: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad:type_name -> google.ads.googleads.v22.resources.Ad + 7, // 7: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad_group:type_name -> google.ads.googleads.v22.resources.AdGroup + 8, // 8: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad_group_criterion:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion + 9, // 9: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.campaign:type_name -> google.ads.googleads.v22.resources.Campaign + 10, // 10: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.campaign_budget:type_name -> google.ads.googleads.v22.resources.CampaignBudget + 11, // 11: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad_group_bid_modifier:type_name -> google.ads.googleads.v22.resources.AdGroupBidModifier + 12, // 12: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.campaign_criterion:type_name -> google.ads.googleads.v22.resources.CampaignCriterion + 13, // 13: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad_group_ad:type_name -> google.ads.googleads.v22.resources.AdGroupAd + 14, // 14: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.asset:type_name -> google.ads.googleads.v22.resources.Asset + 15, // 15: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.customer_asset:type_name -> google.ads.googleads.v22.resources.CustomerAsset + 16, // 16: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.campaign_asset:type_name -> google.ads.googleads.v22.resources.CampaignAsset + 17, // 17: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.ad_group_asset:type_name -> google.ads.googleads.v22.resources.AdGroupAsset + 18, // 18: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.asset_set:type_name -> google.ads.googleads.v22.resources.AssetSet + 19, // 19: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.asset_set_asset:type_name -> google.ads.googleads.v22.resources.AssetSetAsset + 20, // 20: google.ads.googleads.v22.resources.ChangeEvent.ChangedResource.campaign_asset_set:type_name -> google.ads.googleads.v22.resources.CampaignAssetSet 21, // [21:21] is the sub-list for method output_type 21, // [21:21] is the sub-list for method input_type 21, // [21:21] is the sub-list for extension type_name @@ -701,41 +701,41 @@ var file_google_ads_googleads_v21_resources_change_event_proto_depIdxs = []int32 0, // [0:21] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_change_event_proto_init() } -func file_google_ads_googleads_v21_resources_change_event_proto_init() { - if File_google_ads_googleads_v21_resources_change_event_proto != nil { +func init() { file_google_ads_googleads_v22_resources_change_event_proto_init() } +func file_google_ads_googleads_v22_resources_change_event_proto_init() { + if File_google_ads_googleads_v22_resources_change_event_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_proto_init() - file_google_ads_googleads_v21_resources_ad_group_proto_init() - file_google_ads_googleads_v21_resources_ad_group_ad_proto_init() - file_google_ads_googleads_v21_resources_ad_group_asset_proto_init() - file_google_ads_googleads_v21_resources_ad_group_bid_modifier_proto_init() - file_google_ads_googleads_v21_resources_ad_group_criterion_proto_init() - file_google_ads_googleads_v21_resources_asset_proto_init() - file_google_ads_googleads_v21_resources_asset_set_proto_init() - file_google_ads_googleads_v21_resources_asset_set_asset_proto_init() - file_google_ads_googleads_v21_resources_campaign_proto_init() - file_google_ads_googleads_v21_resources_campaign_asset_proto_init() - file_google_ads_googleads_v21_resources_campaign_asset_set_proto_init() - file_google_ads_googleads_v21_resources_campaign_budget_proto_init() - file_google_ads_googleads_v21_resources_campaign_criterion_proto_init() - file_google_ads_googleads_v21_resources_customer_asset_proto_init() + file_google_ads_googleads_v22_resources_ad_proto_init() + file_google_ads_googleads_v22_resources_ad_group_proto_init() + file_google_ads_googleads_v22_resources_ad_group_ad_proto_init() + file_google_ads_googleads_v22_resources_ad_group_asset_proto_init() + file_google_ads_googleads_v22_resources_ad_group_bid_modifier_proto_init() + file_google_ads_googleads_v22_resources_ad_group_criterion_proto_init() + file_google_ads_googleads_v22_resources_asset_proto_init() + file_google_ads_googleads_v22_resources_asset_set_proto_init() + file_google_ads_googleads_v22_resources_asset_set_asset_proto_init() + file_google_ads_googleads_v22_resources_campaign_proto_init() + file_google_ads_googleads_v22_resources_campaign_asset_proto_init() + file_google_ads_googleads_v22_resources_campaign_asset_set_proto_init() + file_google_ads_googleads_v22_resources_campaign_budget_proto_init() + file_google_ads_googleads_v22_resources_campaign_criterion_proto_init() + file_google_ads_googleads_v22_resources_customer_asset_proto_init() type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_change_event_proto_rawDesc), len(file_google_ads_googleads_v21_resources_change_event_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_change_event_proto_rawDesc), len(file_google_ads_googleads_v22_resources_change_event_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_change_event_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_change_event_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_change_event_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_change_event_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_change_event_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_change_event_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_change_event_proto = out.File - file_google_ads_googleads_v21_resources_change_event_proto_goTypes = nil - file_google_ads_googleads_v21_resources_change_event_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_change_event_proto = out.File + file_google_ads_googleads_v22_resources_change_event_proto_goTypes = nil + file_google_ads_googleads_v22_resources_change_event_proto_depIdxs = nil } diff --git a/resources/change_status.pb.go b/resources/change_status.pb.go index 12e7b50c..b86ac0f3 100644 --- a/resources/change_status.pb.go +++ b/resources/change_status.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/change_status.proto +// source: google/ads/googleads/v22/resources/change_status.proto package resources @@ -52,13 +52,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.v21.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.v22.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.v21.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.v22.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. @@ -95,7 +95,7 @@ type ChangeStatus struct { func (x *ChangeStatus) Reset() { *x = ChangeStatus{} - mi := &file_google_ads_googleads_v21_resources_change_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_change_status_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107,7 +107,7 @@ func (x *ChangeStatus) String() string { func (*ChangeStatus) ProtoMessage() {} func (x *ChangeStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_change_status_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_change_status_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120,7 +120,7 @@ func (x *ChangeStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use ChangeStatus.ProtoReflect.Descriptor instead. func (*ChangeStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_change_status_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_change_status_proto_rawDescGZIP(), []int{0} } func (x *ChangeStatus) GetResourceName() string { @@ -270,21 +270,21 @@ func (x *ChangeStatus) GetCampaignAssetSet() string { return "" } -var File_google_ads_googleads_v21_resources_change_status_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_change_status_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_change_status_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_change_status_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3c, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x68, 0x61, 0x6e, 0x67, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -303,7 +303,7 @@ var file_google_ads_googleads_v21_resources_change_status_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -321,7 +321,7 @@ var file_google_ads_googleads_v21_resources_change_status_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x68, 0x61, 0x6e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -425,45 +425,45 @@ var file_google_ads_googleads_v21_resources_change_status_proto_rawDesc = string 0x72, 0x69, 0x6f, 0x6e, 0x42, 0x18, 0x0a, 0x16, 0x5f, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_change_status_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_change_status_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_change_status_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_change_status_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_change_status_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_change_status_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_change_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_change_status_proto_rawDesc), len(file_google_ads_googleads_v21_resources_change_status_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_change_status_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_change_status_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_change_status_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_change_status_proto_rawDesc), len(file_google_ads_googleads_v22_resources_change_status_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_change_status_proto_rawDescData + return file_google_ads_googleads_v22_resources_change_status_proto_rawDescData } -var file_google_ads_googleads_v21_resources_change_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_change_status_proto_goTypes = []any{ - (*ChangeStatus)(nil), // 0: google.ads.googleads.v21.resources.ChangeStatus - (enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 1: google.ads.googleads.v21.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType - (enums.ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 2: google.ads.googleads.v21.enums.ChangeStatusOperationEnum.ChangeStatusOperation +var file_google_ads_googleads_v22_resources_change_status_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_change_status_proto_goTypes = []any{ + (*ChangeStatus)(nil), // 0: google.ads.googleads.v22.resources.ChangeStatus + (enums.ChangeStatusResourceTypeEnum_ChangeStatusResourceType)(0), // 1: google.ads.googleads.v22.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType + (enums.ChangeStatusOperationEnum_ChangeStatusOperation)(0), // 2: google.ads.googleads.v22.enums.ChangeStatusOperationEnum.ChangeStatusOperation } -var file_google_ads_googleads_v21_resources_change_status_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ChangeStatus.resource_type:type_name -> google.ads.googleads.v21.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType - 2, // 1: google.ads.googleads.v21.resources.ChangeStatus.resource_status:type_name -> google.ads.googleads.v21.enums.ChangeStatusOperationEnum.ChangeStatusOperation +var file_google_ads_googleads_v22_resources_change_status_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ChangeStatus.resource_type:type_name -> google.ads.googleads.v22.enums.ChangeStatusResourceTypeEnum.ChangeStatusResourceType + 2, // 1: google.ads.googleads.v22.resources.ChangeStatus.resource_status:type_name -> google.ads.googleads.v22.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 @@ -471,27 +471,27 @@ var file_google_ads_googleads_v21_resources_change_status_proto_depIdxs = []int3 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_change_status_proto_init() } -func file_google_ads_googleads_v21_resources_change_status_proto_init() { - if File_google_ads_googleads_v21_resources_change_status_proto != nil { +func init() { file_google_ads_googleads_v22_resources_change_status_proto_init() } +func file_google_ads_googleads_v22_resources_change_status_proto_init() { + if File_google_ads_googleads_v22_resources_change_status_proto != nil { return } - file_google_ads_googleads_v21_resources_change_status_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_change_status_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_change_status_proto_rawDesc), len(file_google_ads_googleads_v21_resources_change_status_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_change_status_proto_rawDesc), len(file_google_ads_googleads_v22_resources_change_status_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_change_status_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_change_status_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_change_status_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_change_status_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_change_status_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_change_status_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_change_status_proto = out.File - file_google_ads_googleads_v21_resources_change_status_proto_goTypes = nil - file_google_ads_googleads_v21_resources_change_status_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_change_status_proto = out.File + file_google_ads_googleads_v22_resources_change_status_proto_goTypes = nil + file_google_ads_googleads_v22_resources_change_status_proto_depIdxs = nil } diff --git a/resources/channel_aggregate_asset_view.pb.go b/resources/channel_aggregate_asset_view.pb.go index e2ec8911..ddfabc35 100644 --- a/resources/channel_aggregate_asset_view.pb.go +++ b/resources/channel_aggregate_asset_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/channel_aggregate_asset_view.proto +// source: google/ads/googleads/v22/resources/channel_aggregate_asset_view.proto package resources @@ -47,20 +47,20 @@ type ChannelAggregateAssetView struct { // `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.v21.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType,oneof" json:"advertising_channel_type,omitempty"` + AdvertisingChannelType *enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,2,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetSourceEnum_AssetSource,oneof" json:"asset_source,omitempty"` + AssetSource *enums.AssetSourceEnum_AssetSource `protobuf:"varint,4,opt,name=asset_source,json=assetSource,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` + FieldType *enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,5,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType,oneof" json:"field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ChannelAggregateAssetView) Reset() { *x = ChannelAggregateAssetView{} - mi := &file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *ChannelAggregateAssetView) String() string { func (*ChannelAggregateAssetView) ProtoMessage() {} func (x *ChannelAggregateAssetView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *ChannelAggregateAssetView) ProtoReflect() protoreflect.Message { // Deprecated: Use ChannelAggregateAssetView.ProtoReflect.Descriptor instead. func (*ChannelAggregateAssetView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescGZIP(), []int{0} } func (x *ChannelAggregateAssetView) GetResourceName() string { @@ -123,25 +123,25 @@ func (x *ChannelAggregateAssetView) GetFieldType() enums.AssetFieldTypeEnum_Asse return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3d, 0x67, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -158,7 +158,7 @@ var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_r 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,14 +171,14 @@ var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_r 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, + 0x76, 0x32, 0x32, 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, @@ -199,48 +199,48 @@ var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_r 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_goTypes = []any{ - (*ChannelAggregateAssetView)(nil), // 0: google.ads.googleads.v21.resources.ChannelAggregateAssetView - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 1: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 3: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_goTypes = []any{ + (*ChannelAggregateAssetView)(nil), // 0: google.ads.googleads.v22.resources.ChannelAggregateAssetView + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 1: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 3: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType } -var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ChannelAggregateAssetView.advertising_channel_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 2, // 1: google.ads.googleads.v21.resources.ChannelAggregateAssetView.asset_source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v21.resources.ChannelAggregateAssetView.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ChannelAggregateAssetView.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 2, // 1: google.ads.googleads.v22.resources.ChannelAggregateAssetView.asset_source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v22.resources.ChannelAggregateAssetView.field_type:type_name -> google.ads.googleads.v22.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 @@ -248,27 +248,27 @@ var file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_d 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_init() } -func file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_init() { - if File_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_init() } +func file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_init() { + if File_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto != nil { return } - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto = out.File - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_channel_aggregate_asset_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto = out.File + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_channel_aggregate_asset_view_proto_depIdxs = nil } diff --git a/resources/click_view.pb.go b/resources/click_view.pb.go index 5b0c24bd..eeb15f63 100644 --- a/resources/click_view.pb.go +++ b/resources/click_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/click_view.proto +// source: google/ads/googleads/v22/resources/click_view.proto package resources @@ -77,7 +77,7 @@ type ClickView struct { func (x *ClickView) Reset() { *x = ClickView{} - mi := &file_google_ads_googleads_v21_resources_click_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_click_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -89,7 +89,7 @@ func (x *ClickView) String() string { func (*ClickView) ProtoMessage() {} func (x *ClickView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_click_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_click_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -102,7 +102,7 @@ func (x *ClickView) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickView.ProtoReflect.Descriptor instead. func (*ClickView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_click_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_click_view_proto_rawDescGZIP(), []int{0} } func (x *ClickView) GetResourceName() string { @@ -175,20 +175,20 @@ func (x *ClickView) GetKeywordInfo() *common.KeywordInfo { return nil } -var File_google_ads_googleads_v21_resources_click_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_click_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_click_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_click_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6c, 0x69, 0x63, 0x6b, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -204,14 +204,14 @@ var file_google_ads_googleads_v21_resources_click_view_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x4c, + 0x32, 0x32, 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, @@ -241,7 +241,7 @@ var file_google_ads_googleads_v21_resources_click_view_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -257,45 +257,45 @@ var file_google_ads_googleads_v21_resources_click_view_proto_rawDesc = string([] 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, 0x43, 0x6c, 0x69, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_click_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_click_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_click_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_click_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_click_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_click_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_click_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_click_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_click_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_click_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_click_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_click_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_click_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_click_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_click_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_click_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_click_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_click_view_proto_goTypes = []any{ - (*ClickView)(nil), // 0: google.ads.googleads.v21.resources.ClickView - (*common.ClickLocation)(nil), // 1: google.ads.googleads.v21.common.ClickLocation - (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v21.common.KeywordInfo +var file_google_ads_googleads_v22_resources_click_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_click_view_proto_goTypes = []any{ + (*ClickView)(nil), // 0: google.ads.googleads.v22.resources.ClickView + (*common.ClickLocation)(nil), // 1: google.ads.googleads.v22.common.ClickLocation + (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v22.common.KeywordInfo } -var file_google_ads_googleads_v21_resources_click_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ClickView.area_of_interest:type_name -> google.ads.googleads.v21.common.ClickLocation - 1, // 1: google.ads.googleads.v21.resources.ClickView.location_of_presence:type_name -> google.ads.googleads.v21.common.ClickLocation - 2, // 2: google.ads.googleads.v21.resources.ClickView.keyword_info:type_name -> google.ads.googleads.v21.common.KeywordInfo +var file_google_ads_googleads_v22_resources_click_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ClickView.area_of_interest:type_name -> google.ads.googleads.v22.common.ClickLocation + 1, // 1: google.ads.googleads.v22.resources.ClickView.location_of_presence:type_name -> google.ads.googleads.v22.common.ClickLocation + 2, // 2: google.ads.googleads.v22.resources.ClickView.keyword_info:type_name -> google.ads.googleads.v22.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 @@ -303,27 +303,27 @@ var file_google_ads_googleads_v21_resources_click_view_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_click_view_proto_init() } -func file_google_ads_googleads_v21_resources_click_view_proto_init() { - if File_google_ads_googleads_v21_resources_click_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_click_view_proto_init() } +func file_google_ads_googleads_v22_resources_click_view_proto_init() { + if File_google_ads_googleads_v22_resources_click_view_proto != nil { return } - file_google_ads_googleads_v21_resources_click_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_click_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_click_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_click_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_click_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_click_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_click_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_click_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_click_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_click_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_click_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_click_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_click_view_proto = out.File - file_google_ads_googleads_v21_resources_click_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_click_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_click_view_proto = out.File + file_google_ads_googleads_v22_resources_click_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_click_view_proto_depIdxs = nil } diff --git a/resources/combined_audience.pb.go b/resources/combined_audience.pb.go index 94b1cd50..ad76bfb9 100644 --- a/resources/combined_audience.pb.go +++ b/resources/combined_audience.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/combined_audience.proto +// source: google/ads/googleads/v22/resources/combined_audience.proto package resources @@ -50,7 +50,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.v21.enums.CombinedAudienceStatusEnum_CombinedAudienceStatus" json:"status,omitempty"` + Status enums.CombinedAudienceStatusEnum_CombinedAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -62,7 +62,7 @@ type CombinedAudience struct { func (x *CombinedAudience) Reset() { *x = CombinedAudience{} - mi := &file_google_ads_googleads_v21_resources_combined_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_combined_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *CombinedAudience) String() string { func (*CombinedAudience) ProtoMessage() {} func (x *CombinedAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_combined_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_combined_audience_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *CombinedAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use CombinedAudience.ProtoReflect.Descriptor instead. func (*CombinedAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescGZIP(), []int{0} } func (x *CombinedAudience) GetResourceName() string { @@ -125,17 +125,17 @@ func (x *CombinedAudience) GetDescription() string { return "" } -var File_google_ads_googleads_v21_resources_combined_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_combined_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_combined_audience_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -152,7 +152,7 @@ var file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -169,44 +169,44 @@ var file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc = st 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_combined_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_combined_audience_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_combined_audience_proto_rawDescData + return file_google_ads_googleads_v22_resources_combined_audience_proto_rawDescData } -var file_google_ads_googleads_v21_resources_combined_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_combined_audience_proto_goTypes = []any{ - (*CombinedAudience)(nil), // 0: google.ads.googleads.v21.resources.CombinedAudience - (enums.CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 1: google.ads.googleads.v21.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus +var file_google_ads_googleads_v22_resources_combined_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_combined_audience_proto_goTypes = []any{ + (*CombinedAudience)(nil), // 0: google.ads.googleads.v22.resources.CombinedAudience + (enums.CombinedAudienceStatusEnum_CombinedAudienceStatus)(0), // 1: google.ads.googleads.v22.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus } -var file_google_ads_googleads_v21_resources_combined_audience_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CombinedAudience.status:type_name -> google.ads.googleads.v21.enums.CombinedAudienceStatusEnum.CombinedAudienceStatus +var file_google_ads_googleads_v22_resources_combined_audience_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CombinedAudience.status:type_name -> google.ads.googleads.v22.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 @@ -214,26 +214,26 @@ var file_google_ads_googleads_v21_resources_combined_audience_proto_depIdxs = [] 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_combined_audience_proto_init() } -func file_google_ads_googleads_v21_resources_combined_audience_proto_init() { - if File_google_ads_googleads_v21_resources_combined_audience_proto != nil { +func init() { file_google_ads_googleads_v22_resources_combined_audience_proto_init() } +func file_google_ads_googleads_v22_resources_combined_audience_proto_init() { + if File_google_ads_googleads_v22_resources_combined_audience_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_combined_audience_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_combined_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_combined_audience_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_combined_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_combined_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_combined_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_combined_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_combined_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_combined_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_combined_audience_proto = out.File - file_google_ads_googleads_v21_resources_combined_audience_proto_goTypes = nil - file_google_ads_googleads_v21_resources_combined_audience_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_combined_audience_proto = out.File + file_google_ads_googleads_v22_resources_combined_audience_proto_goTypes = nil + file_google_ads_googleads_v22_resources_combined_audience_proto_depIdxs = nil } diff --git a/resources/content_criterion_view.pb.go b/resources/content_criterion_view.pb.go index 7d5dc2b8..4ac7fc17 100644 --- a/resources/content_criterion_view.pb.go +++ b/resources/content_criterion_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/content_criterion_view.proto +// source: google/ads/googleads/v22/resources/content_criterion_view.proto package resources @@ -50,7 +50,7 @@ type ContentCriterionView struct { func (x *ContentCriterionView) Reset() { *x = ContentCriterionView{} - mi := &file_google_ads_googleads_v21_resources_content_criterion_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_content_criterion_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *ContentCriterionView) String() string { func (*ContentCriterionView) ProtoMessage() {} func (x *ContentCriterionView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_content_criterion_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_content_criterion_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *ContentCriterionView) ProtoReflect() protoreflect.Message { // Deprecated: Use ContentCriterionView.ProtoReflect.Descriptor instead. func (*ContentCriterionView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescGZIP(), []int{0} } func (x *ContentCriterionView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *ContentCriterionView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_content_criterion_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_content_criterion_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_resources_content_criterion_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_content_criterion_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_content_criterion_view_proto_goTypes = []any{ - (*ContentCriterionView)(nil), // 0: google.ads.googleads.v21.resources.ContentCriterionView +var file_google_ads_googleads_v22_resources_content_criterion_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_content_criterion_view_proto_goTypes = []any{ + (*ContentCriterionView)(nil), // 0: google.ads.googleads.v22.resources.ContentCriterionView } -var file_google_ads_googleads_v21_resources_content_criterion_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_resources_content_criterion_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,26 +157,26 @@ var file_google_ads_googleads_v21_resources_content_criterion_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_content_criterion_view_proto_init() } -func file_google_ads_googleads_v21_resources_content_criterion_view_proto_init() { - if File_google_ads_googleads_v21_resources_content_criterion_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_content_criterion_view_proto_init() } +func file_google_ads_googleads_v22_resources_content_criterion_view_proto_init() { + if File_google_ads_googleads_v22_resources_content_criterion_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_content_criterion_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_content_criterion_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_content_criterion_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_content_criterion_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_content_criterion_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_content_criterion_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_content_criterion_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_content_criterion_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_content_criterion_view_proto = out.File - file_google_ads_googleads_v21_resources_content_criterion_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_content_criterion_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_content_criterion_view_proto = out.File + file_google_ads_googleads_v22_resources_content_criterion_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_content_criterion_view_proto_depIdxs = nil } diff --git a/resources/conversion_action.pb.go b/resources/conversion_action.pb.go index 42b2606a..85c17c96 100644 --- a/resources/conversion_action.pb.go +++ b/resources/conversion_action.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/conversion_action.proto +// source: google/ads/googleads/v22/resources/conversion_action.proto package resources @@ -54,11 +54,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.v21.enums.ConversionActionStatusEnum_ConversionActionStatus" json:"status,omitempty"` + Status enums.ConversionActionStatusEnum_ConversionActionStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.ConversionActionTypeEnum_ConversionActionType" json:"type,omitempty"` + Type enums.ConversionActionTypeEnum_ConversionActionType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,30,opt,name=origin,proto3,enum=google.ads.googleads.v22.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. @@ -71,7 +71,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.v21.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,6,opt,name=category,proto3,enum=google.ads.googleads.v22.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"` @@ -88,7 +88,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.v21.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.v22.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. @@ -101,7 +101,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.v21.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.v22.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 @@ -116,7 +116,7 @@ type ConversionAction struct { func (x *ConversionAction) Reset() { *x = ConversionAction{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *ConversionAction) String() string { func (*ConversionAction) ProtoMessage() {} func (x *ConversionAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,7 +141,7 @@ func (x *ConversionAction) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAction.ProtoReflect.Descriptor instead. func (*ConversionAction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0} } func (x *ConversionAction) GetResourceName() string { @@ -302,17 +302,17 @@ func (x *ConversionAction) GetGoogleAnalytics_4Settings() *ConversionAction_Goog type ConversionAction_AttributionModelSettings struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.enums.DataDrivenModelStatusEnum_DataDrivenModelStatus" json:"data_driven_model_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionAction_AttributionModelSettings) Reset() { *x = ConversionAction_AttributionModelSettings{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -324,7 +324,7 @@ func (x *ConversionAction_AttributionModelSettings) String() string { func (*ConversionAction_AttributionModelSettings) ProtoMessage() {} func (x *ConversionAction_AttributionModelSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -337,7 +337,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_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0, 0} } func (x *ConversionAction_AttributionModelSettings) GetAttributionModel() enums.AttributionModelEnum_AttributionModel { @@ -376,7 +376,7 @@ type ConversionAction_ValueSettings struct { func (x *ConversionAction_ValueSettings) Reset() { *x = ConversionAction_ValueSettings{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -388,7 +388,7 @@ func (x *ConversionAction_ValueSettings) String() string { func (*ConversionAction_ValueSettings) ProtoMessage() {} func (x *ConversionAction_ValueSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -401,7 +401,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_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0, 1} } func (x *ConversionAction_ValueSettings) GetDefaultValue() float64 { @@ -438,7 +438,7 @@ type ConversionAction_ThirdPartyAppAnalyticsSettings struct { func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) Reset() { *x = ConversionAction_ThirdPartyAppAnalyticsSettings{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -450,7 +450,7 @@ func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) String() string { func (*ConversionAction_ThirdPartyAppAnalyticsSettings) ProtoMessage() {} func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -463,7 +463,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_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0, 2} } func (x *ConversionAction_ThirdPartyAppAnalyticsSettings) GetEventName() string { @@ -497,7 +497,7 @@ type ConversionAction_FirebaseSettings struct { func (x *ConversionAction_FirebaseSettings) Reset() { *x = ConversionAction_FirebaseSettings{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -509,7 +509,7 @@ func (x *ConversionAction_FirebaseSettings) String() string { func (*ConversionAction_FirebaseSettings) ProtoMessage() {} func (x *ConversionAction_FirebaseSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -522,7 +522,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_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0, 3} } func (x *ConversionAction_FirebaseSettings) GetEventName() string { @@ -568,7 +568,7 @@ type ConversionAction_GoogleAnalytics4Settings struct { func (x *ConversionAction_GoogleAnalytics4Settings) Reset() { *x = ConversionAction_GoogleAnalytics4Settings{} - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -580,7 +580,7 @@ func (x *ConversionAction_GoogleAnalytics4Settings) String() string { func (*ConversionAction_GoogleAnalytics4Settings) ProtoMessage() {} func (x *ConversionAction_GoogleAnalytics4Settings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -593,7 +593,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_v21_resources_conversion_action_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP(), []int{0, 4} } func (x *ConversionAction_GoogleAnalytics4Settings) GetEventName() string { @@ -617,47 +617,47 @@ func (x *ConversionAction_GoogleAnalytics4Settings) GetPropertyId() int64 { return 0 } -var File_google_ads_googleads_v21_resources_conversion_action_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_conversion_action_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_conversion_action_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -676,20 +676,20 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -698,7 +698,7 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -726,13 +726,13 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -742,14 +742,14 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -761,14 +761,14 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -777,7 +777,7 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -787,7 +787,7 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -798,14 +798,14 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -879,69 +879,69 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_action_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_action_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_conversion_action_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_resources_conversion_action_proto_goTypes = []any{ - (*ConversionAction)(nil), // 0: google.ads.googleads.v21.resources.ConversionAction - (*ConversionAction_AttributionModelSettings)(nil), // 1: google.ads.googleads.v21.resources.ConversionAction.AttributionModelSettings - (*ConversionAction_ValueSettings)(nil), // 2: google.ads.googleads.v21.resources.ConversionAction.ValueSettings - (*ConversionAction_ThirdPartyAppAnalyticsSettings)(nil), // 3: google.ads.googleads.v21.resources.ConversionAction.ThirdPartyAppAnalyticsSettings - (*ConversionAction_FirebaseSettings)(nil), // 4: google.ads.googleads.v21.resources.ConversionAction.FirebaseSettings - (*ConversionAction_GoogleAnalytics4Settings)(nil), // 5: google.ads.googleads.v21.resources.ConversionAction.GoogleAnalytics4Settings - (enums.ConversionActionStatusEnum_ConversionActionStatus)(0), // 6: google.ads.googleads.v21.enums.ConversionActionStatusEnum.ConversionActionStatus - (enums.ConversionActionTypeEnum_ConversionActionType)(0), // 7: google.ads.googleads.v21.enums.ConversionActionTypeEnum.ConversionActionType - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 8: google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 10: google.ads.googleads.v21.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType - (*common.TagSnippet)(nil), // 11: google.ads.googleads.v21.common.TagSnippet - (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 12: google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor - (enums.AttributionModelEnum_AttributionModel)(0), // 13: google.ads.googleads.v21.enums.AttributionModelEnum.AttributionModel - (enums.DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 14: google.ads.googleads.v21.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus -} -var file_google_ads_googleads_v21_resources_conversion_action_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.resources.ConversionAction.status:type_name -> google.ads.googleads.v21.enums.ConversionActionStatusEnum.ConversionActionStatus - 7, // 1: google.ads.googleads.v21.resources.ConversionAction.type:type_name -> google.ads.googleads.v21.enums.ConversionActionTypeEnum.ConversionActionType - 8, // 2: google.ads.googleads.v21.resources.ConversionAction.origin:type_name -> google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin - 9, // 3: google.ads.googleads.v21.resources.ConversionAction.category:type_name -> google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 4: google.ads.googleads.v21.resources.ConversionAction.value_settings:type_name -> google.ads.googleads.v21.resources.ConversionAction.ValueSettings - 10, // 5: google.ads.googleads.v21.resources.ConversionAction.counting_type:type_name -> google.ads.googleads.v21.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType - 1, // 6: google.ads.googleads.v21.resources.ConversionAction.attribution_model_settings:type_name -> google.ads.googleads.v21.resources.ConversionAction.AttributionModelSettings - 11, // 7: google.ads.googleads.v21.resources.ConversionAction.tag_snippets:type_name -> google.ads.googleads.v21.common.TagSnippet - 12, // 8: google.ads.googleads.v21.resources.ConversionAction.mobile_app_vendor:type_name -> google.ads.googleads.v21.enums.MobileAppVendorEnum.MobileAppVendor - 4, // 9: google.ads.googleads.v21.resources.ConversionAction.firebase_settings:type_name -> google.ads.googleads.v21.resources.ConversionAction.FirebaseSettings - 3, // 10: google.ads.googleads.v21.resources.ConversionAction.third_party_app_analytics_settings:type_name -> google.ads.googleads.v21.resources.ConversionAction.ThirdPartyAppAnalyticsSettings - 5, // 11: google.ads.googleads.v21.resources.ConversionAction.google_analytics_4_settings:type_name -> google.ads.googleads.v21.resources.ConversionAction.GoogleAnalytics4Settings - 13, // 12: google.ads.googleads.v21.resources.ConversionAction.AttributionModelSettings.attribution_model:type_name -> google.ads.googleads.v21.enums.AttributionModelEnum.AttributionModel - 14, // 13: google.ads.googleads.v21.resources.ConversionAction.AttributionModelSettings.data_driven_model_status:type_name -> google.ads.googleads.v21.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus + return file_google_ads_googleads_v22_resources_conversion_action_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_resources_conversion_action_proto_goTypes = []any{ + (*ConversionAction)(nil), // 0: google.ads.googleads.v22.resources.ConversionAction + (*ConversionAction_AttributionModelSettings)(nil), // 1: google.ads.googleads.v22.resources.ConversionAction.AttributionModelSettings + (*ConversionAction_ValueSettings)(nil), // 2: google.ads.googleads.v22.resources.ConversionAction.ValueSettings + (*ConversionAction_ThirdPartyAppAnalyticsSettings)(nil), // 3: google.ads.googleads.v22.resources.ConversionAction.ThirdPartyAppAnalyticsSettings + (*ConversionAction_FirebaseSettings)(nil), // 4: google.ads.googleads.v22.resources.ConversionAction.FirebaseSettings + (*ConversionAction_GoogleAnalytics4Settings)(nil), // 5: google.ads.googleads.v22.resources.ConversionAction.GoogleAnalytics4Settings + (enums.ConversionActionStatusEnum_ConversionActionStatus)(0), // 6: google.ads.googleads.v22.enums.ConversionActionStatusEnum.ConversionActionStatus + (enums.ConversionActionTypeEnum_ConversionActionType)(0), // 7: google.ads.googleads.v22.enums.ConversionActionTypeEnum.ConversionActionType + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 8: google.ads.googleads.v22.enums.ConversionOriginEnum.ConversionOrigin + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 9: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionActionCountingTypeEnum_ConversionActionCountingType)(0), // 10: google.ads.googleads.v22.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType + (*common.TagSnippet)(nil), // 11: google.ads.googleads.v22.common.TagSnippet + (enums.MobileAppVendorEnum_MobileAppVendor)(0), // 12: google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor + (enums.AttributionModelEnum_AttributionModel)(0), // 13: google.ads.googleads.v22.enums.AttributionModelEnum.AttributionModel + (enums.DataDrivenModelStatusEnum_DataDrivenModelStatus)(0), // 14: google.ads.googleads.v22.enums.DataDrivenModelStatusEnum.DataDrivenModelStatus +} +var file_google_ads_googleads_v22_resources_conversion_action_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.resources.ConversionAction.status:type_name -> google.ads.googleads.v22.enums.ConversionActionStatusEnum.ConversionActionStatus + 7, // 1: google.ads.googleads.v22.resources.ConversionAction.type:type_name -> google.ads.googleads.v22.enums.ConversionActionTypeEnum.ConversionActionType + 8, // 2: google.ads.googleads.v22.resources.ConversionAction.origin:type_name -> google.ads.googleads.v22.enums.ConversionOriginEnum.ConversionOrigin + 9, // 3: google.ads.googleads.v22.resources.ConversionAction.category:type_name -> google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 4: google.ads.googleads.v22.resources.ConversionAction.value_settings:type_name -> google.ads.googleads.v22.resources.ConversionAction.ValueSettings + 10, // 5: google.ads.googleads.v22.resources.ConversionAction.counting_type:type_name -> google.ads.googleads.v22.enums.ConversionActionCountingTypeEnum.ConversionActionCountingType + 1, // 6: google.ads.googleads.v22.resources.ConversionAction.attribution_model_settings:type_name -> google.ads.googleads.v22.resources.ConversionAction.AttributionModelSettings + 11, // 7: google.ads.googleads.v22.resources.ConversionAction.tag_snippets:type_name -> google.ads.googleads.v22.common.TagSnippet + 12, // 8: google.ads.googleads.v22.resources.ConversionAction.mobile_app_vendor:type_name -> google.ads.googleads.v22.enums.MobileAppVendorEnum.MobileAppVendor + 4, // 9: google.ads.googleads.v22.resources.ConversionAction.firebase_settings:type_name -> google.ads.googleads.v22.resources.ConversionAction.FirebaseSettings + 3, // 10: google.ads.googleads.v22.resources.ConversionAction.third_party_app_analytics_settings:type_name -> google.ads.googleads.v22.resources.ConversionAction.ThirdPartyAppAnalyticsSettings + 5, // 11: google.ads.googleads.v22.resources.ConversionAction.google_analytics_4_settings:type_name -> google.ads.googleads.v22.resources.ConversionAction.GoogleAnalytics4Settings + 13, // 12: google.ads.googleads.v22.resources.ConversionAction.AttributionModelSettings.attribution_model:type_name -> google.ads.googleads.v22.enums.AttributionModelEnum.AttributionModel + 14, // 13: google.ads.googleads.v22.resources.ConversionAction.AttributionModelSettings.data_driven_model_status:type_name -> google.ads.googleads.v22.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 @@ -949,30 +949,30 @@ var file_google_ads_googleads_v21_resources_conversion_action_proto_depIdxs = [] 0, // [0:14] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_conversion_action_proto_init() } -func file_google_ads_googleads_v21_resources_conversion_action_proto_init() { - if File_google_ads_googleads_v21_resources_conversion_action_proto != nil { +func init() { file_google_ads_googleads_v22_resources_conversion_action_proto_init() } +func file_google_ads_googleads_v22_resources_conversion_action_proto_init() { + if File_google_ads_googleads_v22_resources_conversion_action_proto != nil { return } - file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes[4].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_action_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_action_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_action_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_conversion_action_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_conversion_action_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_conversion_action_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_conversion_action_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_conversion_action_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_conversion_action_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_conversion_action_proto = out.File - file_google_ads_googleads_v21_resources_conversion_action_proto_goTypes = nil - file_google_ads_googleads_v21_resources_conversion_action_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_conversion_action_proto = out.File + file_google_ads_googleads_v22_resources_conversion_action_proto_goTypes = nil + file_google_ads_googleads_v22_resources_conversion_action_proto_depIdxs = nil } diff --git a/resources/conversion_custom_variable.pb.go b/resources/conversion_custom_variable.pb.go index 81c6f7d0..623fdbf2 100644 --- a/resources/conversion_custom_variable.pb.go +++ b/resources/conversion_custom_variable.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/conversion_custom_variable.proto +// source: google/ads/googleads/v22/resources/conversion_custom_variable.proto package resources @@ -62,7 +62,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.v21.enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus" json:"status,omitempty"` + Status enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -72,7 +72,7 @@ type ConversionCustomVariable struct { func (x *ConversionCustomVariable) Reset() { *x = ConversionCustomVariable{} - mi := &file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *ConversionCustomVariable) String() string { func (*ConversionCustomVariable) ProtoMessage() {} func (x *ConversionCustomVariable) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *ConversionCustomVariable) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionCustomVariable.ProtoReflect.Descriptor instead. func (*ConversionCustomVariable) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescGZIP(), []int{0} } func (x *ConversionCustomVariable) GetResourceName() string { @@ -142,18 +142,18 @@ func (x *ConversionCustomVariable) GetOwnerCustomer() string { return "" } -var File_google_ads_googleads_v21_resources_conversion_custom_variable_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_conversion_custom_variable_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -195,44 +195,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDescData + return file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDescData } -var file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_goTypes = []any{ - (*ConversionCustomVariable)(nil), // 0: google.ads.googleads.v21.resources.ConversionCustomVariable - (enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 1: google.ads.googleads.v21.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus +var file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_goTypes = []any{ + (*ConversionCustomVariable)(nil), // 0: google.ads.googleads.v22.resources.ConversionCustomVariable + (enums.ConversionCustomVariableStatusEnum_ConversionCustomVariableStatus)(0), // 1: google.ads.googleads.v22.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus } -var file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ConversionCustomVariable.status:type_name -> google.ads.googleads.v21.enums.ConversionCustomVariableStatusEnum.ConversionCustomVariableStatus +var file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ConversionCustomVariable.status:type_name -> google.ads.googleads.v22.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 @@ -240,26 +240,26 @@ var file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_dep 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_init() } -func file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_init() { - if File_google_ads_googleads_v21_resources_conversion_custom_variable_proto != nil { +func init() { file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_init() } +func file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_init() { + if File_google_ads_googleads_v22_resources_conversion_custom_variable_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_conversion_custom_variable_proto = out.File - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_goTypes = nil - file_google_ads_googleads_v21_resources_conversion_custom_variable_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_conversion_custom_variable_proto = out.File + file_google_ads_googleads_v22_resources_conversion_custom_variable_proto_goTypes = nil + file_google_ads_googleads_v22_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 8236bb73..284c66e2 100644 --- a/resources/conversion_goal_campaign_config.pb.go +++ b/resources/conversion_goal_campaign_config.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/conversion_goal_campaign_config.proto +// source: google/ads/googleads/v22/resources/conversion_goal_campaign_config.proto package resources @@ -49,7 +49,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -58,7 +58,7 @@ type ConversionGoalCampaignConfig struct { func (x *ConversionGoalCampaignConfig) Reset() { *x = ConversionGoalCampaignConfig{} - mi := &file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *ConversionGoalCampaignConfig) String() string { func (*ConversionGoalCampaignConfig) ProtoMessage() {} func (x *ConversionGoalCampaignConfig) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *ConversionGoalCampaignConfig) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionGoalCampaignConfig.ProtoReflect.Descriptor instead. func (*ConversionGoalCampaignConfig) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescGZIP(), []int{0} } func (x *ConversionGoalCampaignConfig) GetResourceName() string { @@ -114,18 +114,18 @@ func (x *ConversionGoalCampaignConfig) GetCustomConversionGoal() string { return "" } -var File_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x36, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -147,7 +147,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -167,44 +167,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDescData + return file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDescData } -var file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_goTypes = []any{ - (*ConversionGoalCampaignConfig)(nil), // 0: google.ads.googleads.v21.resources.ConversionGoalCampaignConfig - (enums.GoalConfigLevelEnum_GoalConfigLevel)(0), // 1: google.ads.googleads.v21.enums.GoalConfigLevelEnum.GoalConfigLevel +var file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_goTypes = []any{ + (*ConversionGoalCampaignConfig)(nil), // 0: google.ads.googleads.v22.resources.ConversionGoalCampaignConfig + (enums.GoalConfigLevelEnum_GoalConfigLevel)(0), // 1: google.ads.googleads.v22.enums.GoalConfigLevelEnum.GoalConfigLevel } -var file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ConversionGoalCampaignConfig.goal_config_level:type_name -> google.ads.googleads.v21.enums.GoalConfigLevelEnum.GoalConfigLevel +var file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ConversionGoalCampaignConfig.goal_config_level:type_name -> google.ads.googleads.v22.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 @@ -212,26 +212,26 @@ var file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_prot 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_init() } -func file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_init() { - if File_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto != nil { +func init() { file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_init() } +func file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_init() { + if File_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto = out.File - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_goTypes = nil - file_google_ads_googleads_v21_resources_conversion_goal_campaign_config_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto = out.File + file_google_ads_googleads_v22_resources_conversion_goal_campaign_config_proto_goTypes = nil + file_google_ads_googleads_v22_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 93c97eef..1653b178 100644 --- a/resources/conversion_value_rule.pb.go +++ b/resources/conversion_value_rule.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/conversion_value_rule.proto +// source: google/ads/googleads/v22/resources/conversion_value_rule.proto package resources @@ -66,14 +66,14 @@ 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.v21.enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus" json:"status,omitempty"` + Status enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionValueRule) Reset() { *x = ConversionValueRule{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_conversion_value_rule_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[0] if 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_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0} } func (x *ConversionValueRule) GetResourceName() string { @@ -168,7 +168,7 @@ func (x *ConversionValueRule) GetStatus() enums.ConversionValueRuleStatusEnum_Co type ConversionValueRule_ValueRuleAction struct { state protoimpl.MessageState `protogen:"open.v1"` // Specifies applied operation. - Operation enums.ValueRuleOperationEnum_ValueRuleOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=google.ads.googleads.v21.enums.ValueRuleOperationEnum_ValueRuleOperation" json:"operation,omitempty"` + Operation enums.ValueRuleOperationEnum_ValueRuleOperation `protobuf:"varint,1,opt,name=operation,proto3,enum=google.ads.googleads.v22.enums.ValueRuleOperationEnum_ValueRuleOperation" json:"operation,omitempty"` // Specifies applied value. Value float64 `protobuf:"fixed64,2,opt,name=value,proto3" json:"value,omitempty"` unknownFields protoimpl.UnknownFields @@ -177,7 +177,7 @@ type ConversionValueRule_ValueRuleAction struct { func (x *ConversionValueRule_ValueRuleAction) Reset() { *x = ConversionValueRule_ValueRuleAction{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -189,7 +189,7 @@ func (x *ConversionValueRule_ValueRuleAction) String() string { func (*ConversionValueRule_ValueRuleAction) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -202,7 +202,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_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 0} } func (x *ConversionValueRule_ValueRuleAction) GetOperation() enums.ValueRuleOperationEnum_ValueRuleOperation { @@ -225,18 +225,18 @@ 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.v21.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.v22.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.v21.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.v22.enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType" json:"geo_match_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionValueRule_ValueRuleGeoLocationCondition) Reset() { *x = ConversionValueRule_ValueRuleGeoLocationCondition{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -248,7 +248,7 @@ func (x *ConversionValueRule_ValueRuleGeoLocationCondition) String() string { func (*ConversionValueRule_ValueRuleGeoLocationCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleGeoLocationCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -261,7 +261,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_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 1} } func (x *ConversionValueRule_ValueRuleGeoLocationCondition) GetExcludedGeoTargetConstants() []string { @@ -296,14 +296,14 @@ func (x *ConversionValueRule_ValueRuleGeoLocationCondition) GetGeoMatchType() en type ConversionValueRule_ValueRuleDeviceCondition struct { state protoimpl.MessageState `protogen:"open.v1"` // Value for device type condition. - DeviceTypes []enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType `protobuf:"varint,1,rep,packed,name=device_types,json=deviceTypes,proto3,enum=google.ads.googleads.v21.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.v22.enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType" json:"device_types,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionValueRule_ValueRuleDeviceCondition) Reset() { *x = ConversionValueRule_ValueRuleDeviceCondition{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -315,7 +315,7 @@ func (x *ConversionValueRule_ValueRuleDeviceCondition) String() string { func (*ConversionValueRule_ValueRuleDeviceCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleDeviceCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -328,7 +328,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_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 2} } func (x *ConversionValueRule_ValueRuleDeviceCondition) GetDeviceTypes() []enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType { @@ -351,7 +351,7 @@ type ConversionValueRule_ValueRuleAudienceCondition struct { func (x *ConversionValueRule_ValueRuleAudienceCondition) Reset() { *x = ConversionValueRule_ValueRuleAudienceCondition{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -363,7 +363,7 @@ func (x *ConversionValueRule_ValueRuleAudienceCondition) String() string { func (*ConversionValueRule_ValueRuleAudienceCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleAudienceCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -376,7 +376,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_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 3} } func (x *ConversionValueRule_ValueRuleAudienceCondition) GetUserLists() []string { @@ -409,7 +409,7 @@ type ConversionValueRule_ValueRuleItineraryCondition struct { func (x *ConversionValueRule_ValueRuleItineraryCondition) Reset() { *x = ConversionValueRule_ValueRuleItineraryCondition{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -421,7 +421,7 @@ func (x *ConversionValueRule_ValueRuleItineraryCondition) String() string { func (*ConversionValueRule_ValueRuleItineraryCondition) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleItineraryCondition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -434,7 +434,7 @@ func (x *ConversionValueRule_ValueRuleItineraryCondition) ProtoReflect() protore // Deprecated: Use ConversionValueRule_ValueRuleItineraryCondition.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleItineraryCondition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 4} } func (x *ConversionValueRule_ValueRuleItineraryCondition) GetAdvanceBookingWindow() *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow { @@ -472,7 +472,7 @@ type ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow struct { func (x *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) Reset() { *x = ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -484,7 +484,7 @@ func (x *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) String() st func (*ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -497,7 +497,7 @@ func (x *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) ProtoReflec // Deprecated: Use ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 5} } func (x *ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow) GetMinDays() int32 { @@ -527,7 +527,7 @@ type ConversionValueRule_ValueRuleItineraryTravelLength struct { func (x *ConversionValueRule_ValueRuleItineraryTravelLength) Reset() { *x = ConversionValueRule_ValueRuleItineraryTravelLength{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -539,7 +539,7 @@ func (x *ConversionValueRule_ValueRuleItineraryTravelLength) String() string { func (*ConversionValueRule_ValueRuleItineraryTravelLength) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleItineraryTravelLength) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -552,7 +552,7 @@ func (x *ConversionValueRule_ValueRuleItineraryTravelLength) ProtoReflect() prot // Deprecated: Use ConversionValueRule_ValueRuleItineraryTravelLength.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleItineraryTravelLength) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 6} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 6} } func (x *ConversionValueRule_ValueRuleItineraryTravelLength) GetMinNights() int32 { @@ -592,7 +592,7 @@ type ConversionValueRule_ValueRuleItineraryTravelStartDay struct { func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) Reset() { *x = ConversionValueRule_ValueRuleItineraryTravelStartDay{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -604,7 +604,7 @@ func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) String() string { func (*ConversionValueRule_ValueRuleItineraryTravelStartDay) ProtoMessage() {} func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -617,7 +617,7 @@ func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) ProtoReflect() pr // Deprecated: Use ConversionValueRule_ValueRuleItineraryTravelStartDay.ProtoReflect.Descriptor instead. func (*ConversionValueRule_ValueRuleItineraryTravelStartDay) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 7} + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP(), []int{0, 7} } func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) GetMonday() bool { @@ -669,30 +669,30 @@ func (x *ConversionValueRule_ValueRuleItineraryTravelStartDay) GetSunday() bool return false } -var File_google_ads_googleads_v21_resources_conversion_value_rule_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_conversion_value_rule_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x72, 0x75, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x76, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -709,14 +709,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -724,7 +724,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -732,7 +732,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -741,7 +741,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x13, 0x69, 0x74, 0x69, 0x6e, 0x65, 0x72, 0x61, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x09, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x49, 0x74, 0x69, 0x6e, 0x65, 0x72, 0x61, 0x72, 0x79, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x52, @@ -753,7 +753,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -762,7 +762,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x52, 0x75, 0x6c, 0x65, 0x41, 0x63, 0x74, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -780,7 +780,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x96, 0x01, 0x0a, 0x17, 0x65, 0x78, 0x63, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -795,7 +795,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x65, 0x74, 0x43, 0x6f, 0x6e, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -806,7 +806,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x52, 0x75, 0x6c, + 0x32, 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, 0x76, 0x69, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x73, @@ -827,7 +827,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x76, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x62, 0x6f, 0x6f, 0x6b, 0x69, 0x6e, 0x67, 0x5f, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x49, 0x74, 0x69, 0x6e, 0x65, 0x72, 0x61, 0x72, 0x79, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x42, 0x6f, 0x6f, @@ -836,7 +836,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x12, 0x7b, 0x0a, 0x0d, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x6c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x18, 0x02, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x32, 0x32, 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, 0x49, 0x74, 0x69, 0x6e, 0x65, 0x72, 0x61, 0x72, 0x79, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x4c, 0x65, 0x6e, 0x67, 0x74, 0x68, 0x52, @@ -844,7 +844,7 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 0x0a, 0x10, 0x74, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x64, 0x61, 0x79, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x76, 0x32, 0x32, 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, 0x49, 0x74, 0x69, 0x6e, 0x65, 0x72, 0x61, 0x72, 0x79, 0x54, 0x72, 0x61, 0x76, 0x65, 0x6c, 0x53, 0x74, 0x61, 0x72, 0x74, 0x44, @@ -887,66 +887,66 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x43, 0x6f, 0x6e, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_goTypes = []any{ - (*ConversionValueRule)(nil), // 0: google.ads.googleads.v21.resources.ConversionValueRule - (*ConversionValueRule_ValueRuleAction)(nil), // 1: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleAction - (*ConversionValueRule_ValueRuleGeoLocationCondition)(nil), // 2: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleGeoLocationCondition - (*ConversionValueRule_ValueRuleDeviceCondition)(nil), // 3: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleDeviceCondition - (*ConversionValueRule_ValueRuleAudienceCondition)(nil), // 4: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleAudienceCondition - (*ConversionValueRule_ValueRuleItineraryCondition)(nil), // 5: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryCondition - (*ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow)(nil), // 6: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryAdvanceBookingWindow - (*ConversionValueRule_ValueRuleItineraryTravelLength)(nil), // 7: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryTravelLength - (*ConversionValueRule_ValueRuleItineraryTravelStartDay)(nil), // 8: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryTravelStartDay - (enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 9: google.ads.googleads.v21.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus - (enums.ValueRuleOperationEnum_ValueRuleOperation)(0), // 10: google.ads.googleads.v21.enums.ValueRuleOperationEnum.ValueRuleOperation - (enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 11: google.ads.googleads.v21.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - (enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 12: google.ads.googleads.v21.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType -} -var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ConversionValueRule.action:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleAction - 2, // 1: google.ads.googleads.v21.resources.ConversionValueRule.geo_location_condition:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleGeoLocationCondition - 3, // 2: google.ads.googleads.v21.resources.ConversionValueRule.device_condition:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleDeviceCondition - 4, // 3: google.ads.googleads.v21.resources.ConversionValueRule.audience_condition:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleAudienceCondition - 5, // 4: google.ads.googleads.v21.resources.ConversionValueRule.itinerary_condition:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryCondition - 9, // 5: google.ads.googleads.v21.resources.ConversionValueRule.status:type_name -> google.ads.googleads.v21.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus - 10, // 6: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleAction.operation:type_name -> google.ads.googleads.v21.enums.ValueRuleOperationEnum.ValueRuleOperation - 11, // 7: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleGeoLocationCondition.excluded_geo_match_type:type_name -> google.ads.googleads.v21.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - 11, // 8: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleGeoLocationCondition.geo_match_type:type_name -> google.ads.googleads.v21.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType - 12, // 9: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleDeviceCondition.device_types:type_name -> google.ads.googleads.v21.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType - 6, // 10: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryCondition.advance_booking_window:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryAdvanceBookingWindow - 7, // 11: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryCondition.travel_length:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryTravelLength - 8, // 12: google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryCondition.travel_start_day:type_name -> google.ads.googleads.v21.resources.ConversionValueRule.ValueRuleItineraryTravelStartDay + return file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_resources_conversion_value_rule_proto_goTypes = []any{ + (*ConversionValueRule)(nil), // 0: google.ads.googleads.v22.resources.ConversionValueRule + (*ConversionValueRule_ValueRuleAction)(nil), // 1: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleAction + (*ConversionValueRule_ValueRuleGeoLocationCondition)(nil), // 2: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleGeoLocationCondition + (*ConversionValueRule_ValueRuleDeviceCondition)(nil), // 3: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleDeviceCondition + (*ConversionValueRule_ValueRuleAudienceCondition)(nil), // 4: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleAudienceCondition + (*ConversionValueRule_ValueRuleItineraryCondition)(nil), // 5: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryCondition + (*ConversionValueRule_ValueRuleItineraryAdvanceBookingWindow)(nil), // 6: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryAdvanceBookingWindow + (*ConversionValueRule_ValueRuleItineraryTravelLength)(nil), // 7: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryTravelLength + (*ConversionValueRule_ValueRuleItineraryTravelStartDay)(nil), // 8: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryTravelStartDay + (enums.ConversionValueRuleStatusEnum_ConversionValueRuleStatus)(0), // 9: google.ads.googleads.v22.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus + (enums.ValueRuleOperationEnum_ValueRuleOperation)(0), // 10: google.ads.googleads.v22.enums.ValueRuleOperationEnum.ValueRuleOperation + (enums.ValueRuleGeoLocationMatchTypeEnum_ValueRuleGeoLocationMatchType)(0), // 11: google.ads.googleads.v22.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + (enums.ValueRuleDeviceTypeEnum_ValueRuleDeviceType)(0), // 12: google.ads.googleads.v22.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType +} +var file_google_ads_googleads_v22_resources_conversion_value_rule_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ConversionValueRule.action:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleAction + 2, // 1: google.ads.googleads.v22.resources.ConversionValueRule.geo_location_condition:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleGeoLocationCondition + 3, // 2: google.ads.googleads.v22.resources.ConversionValueRule.device_condition:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleDeviceCondition + 4, // 3: google.ads.googleads.v22.resources.ConversionValueRule.audience_condition:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleAudienceCondition + 5, // 4: google.ads.googleads.v22.resources.ConversionValueRule.itinerary_condition:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryCondition + 9, // 5: google.ads.googleads.v22.resources.ConversionValueRule.status:type_name -> google.ads.googleads.v22.enums.ConversionValueRuleStatusEnum.ConversionValueRuleStatus + 10, // 6: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleAction.operation:type_name -> google.ads.googleads.v22.enums.ValueRuleOperationEnum.ValueRuleOperation + 11, // 7: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleGeoLocationCondition.excluded_geo_match_type:type_name -> google.ads.googleads.v22.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + 11, // 8: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleGeoLocationCondition.geo_match_type:type_name -> google.ads.googleads.v22.enums.ValueRuleGeoLocationMatchTypeEnum.ValueRuleGeoLocationMatchType + 12, // 9: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleDeviceCondition.device_types:type_name -> google.ads.googleads.v22.enums.ValueRuleDeviceTypeEnum.ValueRuleDeviceType + 6, // 10: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryCondition.advance_booking_window:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryAdvanceBookingWindow + 7, // 11: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryCondition.travel_length:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryTravelLength + 8, // 12: google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryCondition.travel_start_day:type_name -> google.ads.googleads.v22.resources.ConversionValueRule.ValueRuleItineraryTravelStartDay 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 @@ -954,27 +954,27 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_proto_depIdxs 0, // [0:13] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_conversion_value_rule_proto_init() } -func file_google_ads_googleads_v21_resources_conversion_value_rule_proto_init() { - if File_google_ads_googleads_v21_resources_conversion_value_rule_proto != nil { +func init() { file_google_ads_googleads_v22_resources_conversion_value_rule_proto_init() } +func file_google_ads_googleads_v22_resources_conversion_value_rule_proto_init() { + if File_google_ads_googleads_v22_resources_conversion_value_rule_proto != nil { return } - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes[6].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_value_rule_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_value_rule_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_conversion_value_rule_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_conversion_value_rule_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_conversion_value_rule_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_conversion_value_rule_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_conversion_value_rule_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_conversion_value_rule_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_conversion_value_rule_proto = out.File - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_goTypes = nil - file_google_ads_googleads_v21_resources_conversion_value_rule_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_conversion_value_rule_proto = out.File + file_google_ads_googleads_v22_resources_conversion_value_rule_proto_goTypes = nil + file_google_ads_googleads_v22_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 477bfd12..ba3985a2 100644 --- a/resources/conversion_value_rule_set.pb.go +++ b/resources/conversion_value_rule_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/conversion_value_rule_set.proto +// source: google/ads/googleads/v22/resources/conversion_value_rule_set.proto package resources @@ -55,7 +55,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.v21.enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension" json:"dimensions,omitempty"` + Dimensions []enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v22.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 @@ -64,23 +64,23 @@ 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.v21.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.v22.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.v21.enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus" json:"status,omitempty"` + Status enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus `protobuf:"varint,8,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"conversion_action_categories,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionValueRuleSet) Reset() { *x = ConversionValueRuleSet{} - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -92,7 +92,7 @@ func (x *ConversionValueRuleSet) String() string { func (*ConversionValueRuleSet) ProtoMessage() {} func (x *ConversionValueRuleSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -105,7 +105,7 @@ func (x *ConversionValueRuleSet) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSet.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescGZIP(), []int{0} } func (x *ConversionValueRuleSet) GetResourceName() string { @@ -171,30 +171,30 @@ func (x *ConversionValueRuleSet) GetConversionActionCategories() []enums.Convers return nil } -var File_google_ads_googleads_v21_resources_conversion_value_rule_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_conversion_value_rule_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -219,7 +219,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x56, 0x61, 0x6c, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -231,7 +231,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -244,7 +244,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, @@ -253,7 +253,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -269,50 +269,50 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_goTypes = []any{ - (*ConversionValueRuleSet)(nil), // 0: google.ads.googleads.v21.resources.ConversionValueRuleSet - (enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 1: google.ads.googleads.v21.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension - (enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 2: google.ads.googleads.v21.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType - (enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 3: google.ads.googleads.v21.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 4: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory +var file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_goTypes = []any{ + (*ConversionValueRuleSet)(nil), // 0: google.ads.googleads.v22.resources.ConversionValueRuleSet + (enums.ValueRuleSetDimensionEnum_ValueRuleSetDimension)(0), // 1: google.ads.googleads.v22.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension + (enums.ValueRuleSetAttachmentTypeEnum_ValueRuleSetAttachmentType)(0), // 2: google.ads.googleads.v22.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType + (enums.ConversionValueRuleSetStatusEnum_ConversionValueRuleSetStatus)(0), // 3: google.ads.googleads.v22.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 4: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory } -var file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.ConversionValueRuleSet.dimensions:type_name -> google.ads.googleads.v21.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension - 2, // 1: google.ads.googleads.v21.resources.ConversionValueRuleSet.attachment_type:type_name -> google.ads.googleads.v21.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType - 3, // 2: google.ads.googleads.v21.resources.ConversionValueRuleSet.status:type_name -> google.ads.googleads.v21.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus - 4, // 3: google.ads.googleads.v21.resources.ConversionValueRuleSet.conversion_action_categories:type_name -> google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory +var file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.ConversionValueRuleSet.dimensions:type_name -> google.ads.googleads.v22.enums.ValueRuleSetDimensionEnum.ValueRuleSetDimension + 2, // 1: google.ads.googleads.v22.resources.ConversionValueRuleSet.attachment_type:type_name -> google.ads.googleads.v22.enums.ValueRuleSetAttachmentTypeEnum.ValueRuleSetAttachmentType + 3, // 2: google.ads.googleads.v22.resources.ConversionValueRuleSet.status:type_name -> google.ads.googleads.v22.enums.ConversionValueRuleSetStatusEnum.ConversionValueRuleSetStatus + 4, // 3: google.ads.googleads.v22.resources.ConversionValueRuleSet.conversion_action_categories:type_name -> google.ads.googleads.v22.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 @@ -320,26 +320,26 @@ var file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_depI 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_init() } -func file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_init() { - if File_google_ads_googleads_v21_resources_conversion_value_rule_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_init() } +func file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_init() { + if File_google_ads_googleads_v22_resources_conversion_value_rule_set_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_conversion_value_rule_set_proto = out.File - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_conversion_value_rule_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_conversion_value_rule_set_proto = out.File + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_conversion_value_rule_set_proto_depIdxs = nil } diff --git a/resources/currency_constant.pb.go b/resources/currency_constant.pb.go index 1a72300e..7a05c297 100644 --- a/resources/currency_constant.pb.go +++ b/resources/currency_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/currency_constant.proto +// source: google/ads/googleads/v22/resources/currency_constant.proto package resources @@ -60,7 +60,7 @@ type CurrencyConstant struct { func (x *CurrencyConstant) Reset() { *x = CurrencyConstant{} - mi := &file_google_ads_googleads_v21_resources_currency_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_currency_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CurrencyConstant) String() string { func (*CurrencyConstant) ProtoMessage() {} func (x *CurrencyConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_currency_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_currency_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CurrencyConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use CurrencyConstant.ProtoReflect.Descriptor instead. func (*CurrencyConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescGZIP(), []int{0} } func (x *CurrencyConstant) GetResourceName() string { @@ -123,15 +123,15 @@ func (x *CurrencyConstant) GetBillableUnitMicros() int64 { return 0 } -var File_google_ads_googleads_v21_resources_currency_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_currency_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_currency_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_currency_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_resources_currency_constant_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_currency_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_currency_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_currency_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_currency_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_currency_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_currency_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_currency_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_currency_constant_proto_goTypes = []any{ - (*CurrencyConstant)(nil), // 0: google.ads.googleads.v21.resources.CurrencyConstant +var file_google_ads_googleads_v22_resources_currency_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_currency_constant_proto_goTypes = []any{ + (*CurrencyConstant)(nil), // 0: google.ads.googleads.v22.resources.CurrencyConstant } -var file_google_ads_googleads_v21_resources_currency_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -204,27 +204,27 @@ var file_google_ads_googleads_v21_resources_currency_constant_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_currency_constant_proto_init() } -func file_google_ads_googleads_v21_resources_currency_constant_proto_init() { - if File_google_ads_googleads_v21_resources_currency_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_currency_constant_proto_init() } +func file_google_ads_googleads_v22_resources_currency_constant_proto_init() { + if File_google_ads_googleads_v22_resources_currency_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_currency_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_currency_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_currency_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_currency_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_currency_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_currency_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_currency_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_currency_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_currency_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_currency_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_currency_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_currency_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_currency_constant_proto = out.File - file_google_ads_googleads_v21_resources_currency_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_currency_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_currency_constant_proto = out.File + file_google_ads_googleads_v22_resources_currency_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_currency_constant_proto_depIdxs = nil } diff --git a/resources/custom_audience.pb.go b/resources/custom_audience.pb.go index 5d508b36..702d91c6 100644 --- a/resources/custom_audience.pb.go +++ b/resources/custom_audience.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/custom_audience.proto +// source: google/ads/googleads/v22/resources/custom_audience.proto package resources @@ -52,7 +52,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.v21.enums.CustomAudienceStatusEnum_CustomAudienceStatus" json:"status,omitempty"` + Status enums.CustomAudienceStatusEnum_CustomAudienceStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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. @@ -60,7 +60,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.v21.enums.CustomAudienceTypeEnum_CustomAudienceType" json:"type,omitempty"` + Type enums.CustomAudienceTypeEnum_CustomAudienceType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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. @@ -73,7 +73,7 @@ type CustomAudience struct { func (x *CustomAudience) Reset() { *x = CustomAudience{} - mi := &file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *CustomAudience) String() string { func (*CustomAudience) ProtoMessage() {} func (x *CustomAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *CustomAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudience.ProtoReflect.Descriptor instead. func (*CustomAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescGZIP(), []int{0} } func (x *CustomAudience) GetResourceName() string { @@ -155,7 +155,7 @@ func (x *CustomAudience) GetMembers() []*CustomAudienceMember { type CustomAudienceMember struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType" json:"member_type,omitempty"` // The CustomAudienceMember value. One field is populated depending on the // member type. // @@ -172,7 +172,7 @@ type CustomAudienceMember struct { func (x *CustomAudienceMember) Reset() { *x = CustomAudienceMember{} - mi := &file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -184,7 +184,7 @@ func (x *CustomAudienceMember) String() string { func (*CustomAudienceMember) ProtoMessage() {} func (x *CustomAudienceMember) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -197,7 +197,7 @@ func (x *CustomAudienceMember) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceMember.ProtoReflect.Descriptor instead. func (*CustomAudienceMember) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescGZIP(), []int{1} } func (x *CustomAudienceMember) GetMemberType() enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType { @@ -287,25 +287,25 @@ func (*CustomAudienceMember_PlaceCategory) isCustomAudienceMember_Value() {} func (*CustomAudienceMember_App) isCustomAudienceMember_Value() {} -var File_google_ads_googleads_v21_resources_custom_audience_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_custom_audience_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_custom_audience_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x40, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -321,7 +321,7 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -329,7 +329,7 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -337,7 +337,7 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -351,7 +351,7 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -365,49 +365,49 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_audience_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_custom_audience_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_custom_audience_proto_goTypes = []any{ - (*CustomAudience)(nil), // 0: google.ads.googleads.v21.resources.CustomAudience - (*CustomAudienceMember)(nil), // 1: google.ads.googleads.v21.resources.CustomAudienceMember - (enums.CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 2: google.ads.googleads.v21.enums.CustomAudienceStatusEnum.CustomAudienceStatus - (enums.CustomAudienceTypeEnum_CustomAudienceType)(0), // 3: google.ads.googleads.v21.enums.CustomAudienceTypeEnum.CustomAudienceType - (enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 4: google.ads.googleads.v21.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType -} -var file_google_ads_googleads_v21_resources_custom_audience_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.CustomAudience.status:type_name -> google.ads.googleads.v21.enums.CustomAudienceStatusEnum.CustomAudienceStatus - 3, // 1: google.ads.googleads.v21.resources.CustomAudience.type:type_name -> google.ads.googleads.v21.enums.CustomAudienceTypeEnum.CustomAudienceType - 1, // 2: google.ads.googleads.v21.resources.CustomAudience.members:type_name -> google.ads.googleads.v21.resources.CustomAudienceMember - 4, // 3: google.ads.googleads.v21.resources.CustomAudienceMember.member_type:type_name -> google.ads.googleads.v21.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType + return file_google_ads_googleads_v22_resources_custom_audience_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_custom_audience_proto_goTypes = []any{ + (*CustomAudience)(nil), // 0: google.ads.googleads.v22.resources.CustomAudience + (*CustomAudienceMember)(nil), // 1: google.ads.googleads.v22.resources.CustomAudienceMember + (enums.CustomAudienceStatusEnum_CustomAudienceStatus)(0), // 2: google.ads.googleads.v22.enums.CustomAudienceStatusEnum.CustomAudienceStatus + (enums.CustomAudienceTypeEnum_CustomAudienceType)(0), // 3: google.ads.googleads.v22.enums.CustomAudienceTypeEnum.CustomAudienceType + (enums.CustomAudienceMemberTypeEnum_CustomAudienceMemberType)(0), // 4: google.ads.googleads.v22.enums.CustomAudienceMemberTypeEnum.CustomAudienceMemberType +} +var file_google_ads_googleads_v22_resources_custom_audience_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.CustomAudience.status:type_name -> google.ads.googleads.v22.enums.CustomAudienceStatusEnum.CustomAudienceStatus + 3, // 1: google.ads.googleads.v22.resources.CustomAudience.type:type_name -> google.ads.googleads.v22.enums.CustomAudienceTypeEnum.CustomAudienceType + 1, // 2: google.ads.googleads.v22.resources.CustomAudience.members:type_name -> google.ads.googleads.v22.resources.CustomAudienceMember + 4, // 3: google.ads.googleads.v22.resources.CustomAudienceMember.member_type:type_name -> google.ads.googleads.v22.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 @@ -415,12 +415,12 @@ var file_google_ads_googleads_v21_resources_custom_audience_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_custom_audience_proto_init() } -func file_google_ads_googleads_v21_resources_custom_audience_proto_init() { - if File_google_ads_googleads_v21_resources_custom_audience_proto != nil { +func init() { file_google_ads_googleads_v22_resources_custom_audience_proto_init() } +func file_google_ads_googleads_v22_resources_custom_audience_proto_init() { + if File_google_ads_googleads_v22_resources_custom_audience_proto != nil { return } - file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes[1].OneofWrappers = []any{ (*CustomAudienceMember_Keyword)(nil), (*CustomAudienceMember_Url)(nil), (*CustomAudienceMember_PlaceCategory)(nil), @@ -430,17 +430,17 @@ func file_google_ads_googleads_v21_resources_custom_audience_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_audience_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_audience_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_audience_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_custom_audience_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_custom_audience_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_custom_audience_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_custom_audience_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_custom_audience_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_custom_audience_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_custom_audience_proto = out.File - file_google_ads_googleads_v21_resources_custom_audience_proto_goTypes = nil - file_google_ads_googleads_v21_resources_custom_audience_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_custom_audience_proto = out.File + file_google_ads_googleads_v22_resources_custom_audience_proto_goTypes = nil + file_google_ads_googleads_v22_resources_custom_audience_proto_depIdxs = nil } diff --git a/resources/custom_conversion_goal.pb.go b/resources/custom_conversion_goal.pb.go index d4c9ddae..ad0c5087 100644 --- a/resources/custom_conversion_goal.pb.go +++ b/resources/custom_conversion_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/custom_conversion_goal.proto +// source: google/ads/googleads/v22/resources/custom_conversion_goal.proto package resources @@ -52,14 +52,14 @@ 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.v21.enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus" json:"status,omitempty"` + Status enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomConversionGoal) Reset() { *x = CustomConversionGoal{} - mi := &file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *CustomConversionGoal) String() string { func (*CustomConversionGoal) ProtoMessage() {} func (x *CustomConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *CustomConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoal.ProtoReflect.Descriptor instead. func (*CustomConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomConversionGoal) GetResourceName() string { @@ -122,17 +122,17 @@ func (x *CustomConversionGoal) GetStatus() enums.CustomConversionGoalStatusEnum_ return enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus(0) } -var File_google_ads_googleads_v21_resources_custom_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_custom_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -157,7 +157,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,43 +171,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_goTypes = []any{ - (*CustomConversionGoal)(nil), // 0: google.ads.googleads.v21.resources.CustomConversionGoal - (enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 1: google.ads.googleads.v21.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus +var file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_goTypes = []any{ + (*CustomConversionGoal)(nil), // 0: google.ads.googleads.v22.resources.CustomConversionGoal + (enums.CustomConversionGoalStatusEnum_CustomConversionGoalStatus)(0), // 1: google.ads.googleads.v22.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus } -var file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomConversionGoal.status:type_name -> google.ads.googleads.v21.enums.CustomConversionGoalStatusEnum.CustomConversionGoalStatus +var file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomConversionGoal.status:type_name -> google.ads.googleads.v22.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 @@ -215,26 +215,26 @@ var file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_init() } -func file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_init() { - if File_google_ads_googleads_v21_resources_custom_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_init() } +func file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_init() { + if File_google_ads_googleads_v22_resources_custom_conversion_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_custom_conversion_goal_proto = out.File - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_custom_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_custom_conversion_goal_proto = out.File + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_custom_conversion_goal_proto_depIdxs = nil } diff --git a/resources/custom_interest.pb.go b/resources/custom_interest.pb.go index 351dac4f..189361fd 100644 --- a/resources/custom_interest.pb.go +++ b/resources/custom_interest.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/custom_interest.proto +// source: google/ads/googleads/v22/resources/custom_interest.proto package resources @@ -49,14 +49,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.v21.enums.CustomInterestStatusEnum_CustomInterestStatus" json:"status,omitempty"` + Status enums.CustomInterestStatusEnum_CustomInterestStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.CustomInterestTypeEnum_CustomInterestType" json:"type,omitempty"` + Type enums.CustomInterestTypeEnum_CustomInterestType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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. @@ -69,7 +69,7 @@ type CustomInterest struct { func (x *CustomInterest) Reset() { *x = CustomInterest{} - mi := &file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -81,7 +81,7 @@ func (x *CustomInterest) String() string { func (*CustomInterest) ProtoMessage() {} func (x *CustomInterest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -94,7 +94,7 @@ func (x *CustomInterest) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterest.ProtoReflect.Descriptor instead. func (*CustomInterest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescGZIP(), []int{0} } func (x *CustomInterest) GetResourceName() string { @@ -151,7 +151,7 @@ func (x *CustomInterest) GetMembers() []*CustomInterestMember { type CustomInterestMember struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` @@ -161,7 +161,7 @@ type CustomInterestMember struct { func (x *CustomInterestMember) Reset() { *x = CustomInterestMember{} - mi := &file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -173,7 +173,7 @@ func (x *CustomInterestMember) String() string { func (*CustomInterestMember) ProtoMessage() {} func (x *CustomInterestMember) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -186,7 +186,7 @@ func (x *CustomInterestMember) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestMember.ProtoReflect.Descriptor instead. func (*CustomInterestMember) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescGZIP(), []int{1} } func (x *CustomInterestMember) GetMemberType() enums.CustomInterestMemberTypeEnum_CustomInterestMemberType { @@ -203,25 +203,25 @@ func (x *CustomInterestMember) GetParameter() string { return "" } -var File_google_ads_googleads_v21_resources_custom_interest_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_custom_interest_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_custom_interest_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x40, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -238,14 +238,14 @@ var file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc = stri 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x49, + 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -254,7 +254,7 @@ var file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -270,7 +270,7 @@ var file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -279,49 +279,49 @@ var file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc = stri 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_interest_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_interest_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_custom_interest_proto_rawDescData + return file_google_ads_googleads_v22_resources_custom_interest_proto_rawDescData } -var file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_custom_interest_proto_goTypes = []any{ - (*CustomInterest)(nil), // 0: google.ads.googleads.v21.resources.CustomInterest - (*CustomInterestMember)(nil), // 1: google.ads.googleads.v21.resources.CustomInterestMember - (enums.CustomInterestStatusEnum_CustomInterestStatus)(0), // 2: google.ads.googleads.v21.enums.CustomInterestStatusEnum.CustomInterestStatus - (enums.CustomInterestTypeEnum_CustomInterestType)(0), // 3: google.ads.googleads.v21.enums.CustomInterestTypeEnum.CustomInterestType - (enums.CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 4: google.ads.googleads.v21.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType +var file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_custom_interest_proto_goTypes = []any{ + (*CustomInterest)(nil), // 0: google.ads.googleads.v22.resources.CustomInterest + (*CustomInterestMember)(nil), // 1: google.ads.googleads.v22.resources.CustomInterestMember + (enums.CustomInterestStatusEnum_CustomInterestStatus)(0), // 2: google.ads.googleads.v22.enums.CustomInterestStatusEnum.CustomInterestStatus + (enums.CustomInterestTypeEnum_CustomInterestType)(0), // 3: google.ads.googleads.v22.enums.CustomInterestTypeEnum.CustomInterestType + (enums.CustomInterestMemberTypeEnum_CustomInterestMemberType)(0), // 4: google.ads.googleads.v22.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType } -var file_google_ads_googleads_v21_resources_custom_interest_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.CustomInterest.status:type_name -> google.ads.googleads.v21.enums.CustomInterestStatusEnum.CustomInterestStatus - 3, // 1: google.ads.googleads.v21.resources.CustomInterest.type:type_name -> google.ads.googleads.v21.enums.CustomInterestTypeEnum.CustomInterestType - 1, // 2: google.ads.googleads.v21.resources.CustomInterest.members:type_name -> google.ads.googleads.v21.resources.CustomInterestMember - 4, // 3: google.ads.googleads.v21.resources.CustomInterestMember.member_type:type_name -> google.ads.googleads.v21.enums.CustomInterestMemberTypeEnum.CustomInterestMemberType +var file_google_ads_googleads_v22_resources_custom_interest_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.CustomInterest.status:type_name -> google.ads.googleads.v22.enums.CustomInterestStatusEnum.CustomInterestStatus + 3, // 1: google.ads.googleads.v22.resources.CustomInterest.type:type_name -> google.ads.googleads.v22.enums.CustomInterestTypeEnum.CustomInterestType + 1, // 2: google.ads.googleads.v22.resources.CustomInterest.members:type_name -> google.ads.googleads.v22.resources.CustomInterestMember + 4, // 3: google.ads.googleads.v22.resources.CustomInterestMember.member_type:type_name -> google.ads.googleads.v22.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 @@ -329,28 +329,28 @@ var file_google_ads_googleads_v21_resources_custom_interest_proto_depIdxs = []in 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_custom_interest_proto_init() } -func file_google_ads_googleads_v21_resources_custom_interest_proto_init() { - if File_google_ads_googleads_v21_resources_custom_interest_proto != nil { +func init() { file_google_ads_googleads_v22_resources_custom_interest_proto_init() } +func file_google_ads_googleads_v22_resources_custom_interest_proto_init() { + if File_google_ads_googleads_v22_resources_custom_interest_proto != nil { return } - file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc), len(file_google_ads_googleads_v21_resources_custom_interest_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_custom_interest_proto_rawDesc), len(file_google_ads_googleads_v22_resources_custom_interest_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_custom_interest_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_custom_interest_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_custom_interest_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_custom_interest_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_custom_interest_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_custom_interest_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_custom_interest_proto = out.File - file_google_ads_googleads_v21_resources_custom_interest_proto_goTypes = nil - file_google_ads_googleads_v21_resources_custom_interest_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_custom_interest_proto = out.File + file_google_ads_googleads_v22_resources_custom_interest_proto_goTypes = nil + file_google_ads_googleads_v22_resources_custom_interest_proto_depIdxs = nil } diff --git a/resources/customer.pb.go b/resources/customer.pb.go index 87bb2ddd..5c01e75c 100644 --- a/resources/customer.pb.go +++ b/resources/customer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer.proto +// source: google/ads/googleads/v22/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.v21.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.v22.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.v21.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` + Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,36,opt,name=status,proto3,enum=google.ads.googleads.v22.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,7 +129,7 @@ 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.v21.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.v22.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"` // Video specific information about a Customer. VideoCustomer *VideoCustomer `protobuf:"bytes,54,opt,name=video_customer,json=videoCustomer,proto3" json:"video_customer,omitempty"` unknownFields protoimpl.UnknownFields @@ -138,7 +138,7 @@ type Customer struct { func (x *Customer) Reset() { *x = Customer{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *Customer) String() string { func (*Customer) ProtoMessage() {} func (x *Customer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *Customer) ProtoReflect() protoreflect.Message { // Deprecated: Use Customer.ProtoReflect.Descriptor instead. func (*Customer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{0} } func (x *Customer) GetResourceName() string { @@ -366,7 +366,7 @@ type CallReportingSetting struct { func (x *CallReportingSetting) Reset() { *x = CallReportingSetting{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -378,7 +378,7 @@ func (x *CallReportingSetting) String() string { func (*CallReportingSetting) ProtoMessage() {} func (x *CallReportingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -391,7 +391,7 @@ func (x *CallReportingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CallReportingSetting.ProtoReflect.Descriptor instead. func (*CallReportingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{1} } func (x *CallReportingSetting) GetCallReportingEnabled() bool { @@ -438,7 +438,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.v21.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.v22.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. @@ -452,7 +452,7 @@ type ConversionTrackingSetting struct { func (x *ConversionTrackingSetting) Reset() { *x = ConversionTrackingSetting{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -464,7 +464,7 @@ func (x *ConversionTrackingSetting) String() string { func (*ConversionTrackingSetting) ProtoMessage() {} func (x *ConversionTrackingSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -477,7 +477,7 @@ func (x *ConversionTrackingSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionTrackingSetting.ProtoReflect.Descriptor instead. func (*ConversionTrackingSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{2} } func (x *ConversionTrackingSetting) GetConversionTrackingId() int64 { @@ -533,7 +533,7 @@ type RemarketingSetting struct { func (x *RemarketingSetting) Reset() { *x = RemarketingSetting{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_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_v21_resources_customer_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[3] if 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_v21_resources_customer_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{3} } func (x *RemarketingSetting) GetGoogleGlobalSiteTag() string { @@ -579,7 +579,7 @@ type CustomerAgreementSetting struct { func (x *CustomerAgreementSetting) Reset() { *x = CustomerAgreementSetting{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -591,7 +591,7 @@ func (x *CustomerAgreementSetting) String() string { func (*CustomerAgreementSetting) ProtoMessage() {} func (x *CustomerAgreementSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -604,7 +604,7 @@ func (x *CustomerAgreementSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAgreementSetting.ProtoReflect.Descriptor instead. func (*CustomerAgreementSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{4} } func (x *CustomerAgreementSetting) GetAcceptedLeadFormTerms() bool { @@ -627,7 +627,7 @@ type LocalServicesSettings struct { func (x *LocalServicesSettings) Reset() { *x = LocalServicesSettings{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -639,7 +639,7 @@ func (x *LocalServicesSettings) String() string { func (*LocalServicesSettings) ProtoMessage() {} func (x *LocalServicesSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -652,7 +652,7 @@ func (x *LocalServicesSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesSettings.ProtoReflect.Descriptor instead. func (*LocalServicesSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{5} } func (x *LocalServicesSettings) GetGranularLicenseStatuses() []*GranularLicenseStatus { @@ -683,14 +683,14 @@ 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.v21.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.v22.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GranularLicenseStatus) Reset() { *x = GranularLicenseStatus{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -702,7 +702,7 @@ func (x *GranularLicenseStatus) String() string { func (*GranularLicenseStatus) ProtoMessage() {} func (x *GranularLicenseStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -715,7 +715,7 @@ func (x *GranularLicenseStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use GranularLicenseStatus.ProtoReflect.Descriptor instead. func (*GranularLicenseStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{6} } func (x *GranularLicenseStatus) GetGeoCriterionId() int64 { @@ -753,14 +753,14 @@ 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.v21.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.v22.enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus,oneof" json:"verification_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GranularInsuranceStatus) Reset() { *x = GranularInsuranceStatus{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -772,7 +772,7 @@ func (x *GranularInsuranceStatus) String() string { func (*GranularInsuranceStatus) ProtoMessage() {} func (x *GranularInsuranceStatus) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -785,7 +785,7 @@ func (x *GranularInsuranceStatus) ProtoReflect() protoreflect.Message { // Deprecated: Use GranularInsuranceStatus.ProtoReflect.Descriptor instead. func (*GranularInsuranceStatus) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{7} } func (x *GranularInsuranceStatus) GetGeoCriterionId() int64 { @@ -820,7 +820,7 @@ type VideoCustomer struct { func (x *VideoCustomer) Reset() { *x = VideoCustomer{} - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -832,7 +832,7 @@ func (x *VideoCustomer) String() string { func (*VideoCustomer) ProtoMessage() {} func (x *VideoCustomer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_customer_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -845,7 +845,7 @@ func (x *VideoCustomer) ProtoReflect() protoreflect.Message { // Deprecated: Use VideoCustomer.ProtoReflect.Descriptor instead. func (*VideoCustomer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP(), []int{8} } func (x *VideoCustomer) GetThirdPartyIntegrationPartners() *common.CustomerThirdPartyIntegrationPartners { @@ -855,39 +855,39 @@ func (x *VideoCustomer) GetThirdPartyIntegrationPartners() *common.CustomerThird return nil } -var File_google_ads_googleads_v21_resources_customer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, + 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x74, 0x68, 0x69, 0x72, 0x64, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, 0x65, + 0x32, 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, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, @@ -931,7 +931,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x01, 0x12, 0x6e, 0x0a, 0x16, 0x63, 0x61, 0x6c, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -939,14 +939,14 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, + 0x32, 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, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x54, 0x72, 0x61, 0x63, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x6c, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -955,7 +955,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x79, 0x5f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x76, 0x32, 0x32, 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, @@ -975,7 +975,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x6f, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -1005,7 +1005,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x74, 0x6f, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1013,7 +1013,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x63, 0x61, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1021,7 +1021,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x6e, 0x64, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1030,7 +1030,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x12, 0x58, 0x0a, 0x0e, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x36, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x56, 0x69, + 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x0d, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x3a, 0x3f, 0xea, 0x41, 0x3c, 0x0a, 0x21, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -1102,7 +1102,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x0a, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1140,7 +1140,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x0a, 0x19, 0x67, 0x72, 0x61, 0x6e, 0x75, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1148,7 +1148,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x72, 0x61, 0x6e, 0x75, 0x6c, 0x61, 0x72, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1163,7 +1163,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1185,7 +1185,7 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1201,76 +1201,76 @@ var file_google_ads_googleads_v21_resources_customer_proto_rawDesc = string([]by 0x69, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x73, 0x52, 0x1d, 0x74, 0x68, 0x69, 0x72, 0x64, 0x50, 0x61, 0x72, 0x74, 0x79, 0x49, 0x6e, 0x74, 0x65, 0x67, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x43, 0x75, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_customer_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_resources_customer_proto_goTypes = []any{ - (*Customer)(nil), // 0: google.ads.googleads.v21.resources.Customer - (*CallReportingSetting)(nil), // 1: google.ads.googleads.v21.resources.CallReportingSetting - (*ConversionTrackingSetting)(nil), // 2: google.ads.googleads.v21.resources.ConversionTrackingSetting - (*RemarketingSetting)(nil), // 3: google.ads.googleads.v21.resources.RemarketingSetting - (*CustomerAgreementSetting)(nil), // 4: google.ads.googleads.v21.resources.CustomerAgreementSetting - (*LocalServicesSettings)(nil), // 5: google.ads.googleads.v21.resources.LocalServicesSettings - (*GranularLicenseStatus)(nil), // 6: google.ads.googleads.v21.resources.GranularLicenseStatus - (*GranularInsuranceStatus)(nil), // 7: google.ads.googleads.v21.resources.GranularInsuranceStatus - (*VideoCustomer)(nil), // 8: google.ads.googleads.v21.resources.VideoCustomer - (enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 9: google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason - (enums.CustomerStatusEnum_CustomerStatus)(0), // 10: google.ads.googleads.v21.enums.CustomerStatusEnum.CustomerStatus - (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 11: google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 12: google.ads.googleads.v21.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - (enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 13: google.ads.googleads.v21.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus - (*common.CustomerThirdPartyIntegrationPartners)(nil), // 14: google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners -} -var file_google_ads_googleads_v21_resources_customer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.Customer.call_reporting_setting:type_name -> google.ads.googleads.v21.resources.CallReportingSetting - 2, // 1: google.ads.googleads.v21.resources.Customer.conversion_tracking_setting:type_name -> google.ads.googleads.v21.resources.ConversionTrackingSetting - 3, // 2: google.ads.googleads.v21.resources.Customer.remarketing_setting:type_name -> google.ads.googleads.v21.resources.RemarketingSetting - 9, // 3: google.ads.googleads.v21.resources.Customer.pay_per_conversion_eligibility_failure_reasons:type_name -> google.ads.googleads.v21.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason - 10, // 4: google.ads.googleads.v21.resources.Customer.status:type_name -> google.ads.googleads.v21.enums.CustomerStatusEnum.CustomerStatus - 4, // 5: google.ads.googleads.v21.resources.Customer.customer_agreement_setting:type_name -> google.ads.googleads.v21.resources.CustomerAgreementSetting - 5, // 6: google.ads.googleads.v21.resources.Customer.local_services_settings:type_name -> google.ads.googleads.v21.resources.LocalServicesSettings - 11, // 7: google.ads.googleads.v21.resources.Customer.video_brand_safety_suitability:type_name -> google.ads.googleads.v21.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability - 8, // 8: google.ads.googleads.v21.resources.Customer.video_customer:type_name -> google.ads.googleads.v21.resources.VideoCustomer - 12, // 9: google.ads.googleads.v21.resources.ConversionTrackingSetting.conversion_tracking_status:type_name -> google.ads.googleads.v21.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - 6, // 10: google.ads.googleads.v21.resources.LocalServicesSettings.granular_license_statuses:type_name -> google.ads.googleads.v21.resources.GranularLicenseStatus - 7, // 11: google.ads.googleads.v21.resources.LocalServicesSettings.granular_insurance_statuses:type_name -> google.ads.googleads.v21.resources.GranularInsuranceStatus - 13, // 12: google.ads.googleads.v21.resources.GranularLicenseStatus.verification_status:type_name -> google.ads.googleads.v21.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus - 13, // 13: google.ads.googleads.v21.resources.GranularInsuranceStatus.verification_status:type_name -> google.ads.googleads.v21.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus - 14, // 14: google.ads.googleads.v21.resources.VideoCustomer.third_party_integration_partners:type_name -> google.ads.googleads.v21.common.CustomerThirdPartyIntegrationPartners + return file_google_ads_googleads_v22_resources_customer_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_customer_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_resources_customer_proto_goTypes = []any{ + (*Customer)(nil), // 0: google.ads.googleads.v22.resources.Customer + (*CallReportingSetting)(nil), // 1: google.ads.googleads.v22.resources.CallReportingSetting + (*ConversionTrackingSetting)(nil), // 2: google.ads.googleads.v22.resources.ConversionTrackingSetting + (*RemarketingSetting)(nil), // 3: google.ads.googleads.v22.resources.RemarketingSetting + (*CustomerAgreementSetting)(nil), // 4: google.ads.googleads.v22.resources.CustomerAgreementSetting + (*LocalServicesSettings)(nil), // 5: google.ads.googleads.v22.resources.LocalServicesSettings + (*GranularLicenseStatus)(nil), // 6: google.ads.googleads.v22.resources.GranularLicenseStatus + (*GranularInsuranceStatus)(nil), // 7: google.ads.googleads.v22.resources.GranularInsuranceStatus + (*VideoCustomer)(nil), // 8: google.ads.googleads.v22.resources.VideoCustomer + (enums.CustomerPayPerConversionEligibilityFailureReasonEnum_CustomerPayPerConversionEligibilityFailureReason)(0), // 9: google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason + (enums.CustomerStatusEnum_CustomerStatus)(0), // 10: google.ads.googleads.v22.enums.CustomerStatusEnum.CustomerStatus + (enums.BrandSafetySuitabilityEnum_BrandSafetySuitability)(0), // 11: google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 12: google.ads.googleads.v22.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + (enums.LocalServicesVerificationStatusEnum_LocalServicesVerificationStatus)(0), // 13: google.ads.googleads.v22.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + (*common.CustomerThirdPartyIntegrationPartners)(nil), // 14: google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners +} +var file_google_ads_googleads_v22_resources_customer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Customer.call_reporting_setting:type_name -> google.ads.googleads.v22.resources.CallReportingSetting + 2, // 1: google.ads.googleads.v22.resources.Customer.conversion_tracking_setting:type_name -> google.ads.googleads.v22.resources.ConversionTrackingSetting + 3, // 2: google.ads.googleads.v22.resources.Customer.remarketing_setting:type_name -> google.ads.googleads.v22.resources.RemarketingSetting + 9, // 3: google.ads.googleads.v22.resources.Customer.pay_per_conversion_eligibility_failure_reasons:type_name -> google.ads.googleads.v22.enums.CustomerPayPerConversionEligibilityFailureReasonEnum.CustomerPayPerConversionEligibilityFailureReason + 10, // 4: google.ads.googleads.v22.resources.Customer.status:type_name -> google.ads.googleads.v22.enums.CustomerStatusEnum.CustomerStatus + 4, // 5: google.ads.googleads.v22.resources.Customer.customer_agreement_setting:type_name -> google.ads.googleads.v22.resources.CustomerAgreementSetting + 5, // 6: google.ads.googleads.v22.resources.Customer.local_services_settings:type_name -> google.ads.googleads.v22.resources.LocalServicesSettings + 11, // 7: google.ads.googleads.v22.resources.Customer.video_brand_safety_suitability:type_name -> google.ads.googleads.v22.enums.BrandSafetySuitabilityEnum.BrandSafetySuitability + 8, // 8: google.ads.googleads.v22.resources.Customer.video_customer:type_name -> google.ads.googleads.v22.resources.VideoCustomer + 12, // 9: google.ads.googleads.v22.resources.ConversionTrackingSetting.conversion_tracking_status:type_name -> google.ads.googleads.v22.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + 6, // 10: google.ads.googleads.v22.resources.LocalServicesSettings.granular_license_statuses:type_name -> google.ads.googleads.v22.resources.GranularLicenseStatus + 7, // 11: google.ads.googleads.v22.resources.LocalServicesSettings.granular_insurance_statuses:type_name -> google.ads.googleads.v22.resources.GranularInsuranceStatus + 13, // 12: google.ads.googleads.v22.resources.GranularLicenseStatus.verification_status:type_name -> google.ads.googleads.v22.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + 13, // 13: google.ads.googleads.v22.resources.GranularInsuranceStatus.verification_status:type_name -> google.ads.googleads.v22.enums.LocalServicesVerificationStatusEnum.LocalServicesVerificationStatus + 14, // 14: google.ads.googleads.v22.resources.VideoCustomer.third_party_integration_partners:type_name -> google.ads.googleads.v22.common.CustomerThirdPartyIntegrationPartners 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 @@ -1278,32 +1278,32 @@ var file_google_ads_googleads_v21_resources_customer_proto_depIdxs = []int32{ 0, // [0:15] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_proto_init() } -func file_google_ads_googleads_v21_resources_customer_proto_init() { - if File_google_ads_googleads_v21_resources_customer_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_proto_init() } +func file_google_ads_googleads_v22_resources_customer_proto_init() { + if File_google_ads_googleads_v22_resources_customer_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_customer_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_proto_msgTypes[7].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_proto = out.File - file_google_ads_googleads_v21_resources_customer_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_proto = out.File + file_google_ads_googleads_v22_resources_customer_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_proto_depIdxs = nil } diff --git a/resources/customer_asset.pb.go b/resources/customer_asset.pb.go index cdb8c5ff..ebb2486e 100644 --- a/resources/customer_asset.pb.go +++ b/resources/customer_asset.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_asset.proto +// source: google/ads/googleads/v22/resources/customer_asset.proto package resources @@ -49,31 +49,31 @@ 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.v21.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.v22.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.v21.enums.AssetSourceEnum_AssetSource" json:"source,omitempty"` + Source enums.AssetSourceEnum_AssetSource `protobuf:"varint,5,opt,name=source,proto3,enum=google.ads.googleads.v22.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.v21.enums.AssetLinkStatusEnum_AssetLinkStatus" json:"status,omitempty"` + Status enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason" json:"primary_status_reasons,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerAsset) Reset() { *x = CustomerAsset{} - mi := &file_google_ads_googleads_v21_resources_customer_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_asset_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -85,7 +85,7 @@ func (x *CustomerAsset) String() string { func (*CustomerAsset) ProtoMessage() {} func (x *CustomerAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_asset_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_asset_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -98,7 +98,7 @@ func (x *CustomerAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAsset.ProtoReflect.Descriptor instead. func (*CustomerAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescGZIP(), []int{0} } func (x *CustomerAsset) GetResourceName() string { @@ -157,36 +157,36 @@ func (x *CustomerAsset) GetPrimaryStatusReasons() []enums.AssetLinkPrimaryStatus return nil } -var File_google_ads_googleads_v21_resources_customer_asset_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_asset_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_asset_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x32, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x6f, + 0x32, 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, @@ -204,26 +204,26 @@ var file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x53, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4c, 0x69, + 0x32, 0x32, 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, @@ -231,7 +231,7 @@ var file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -239,7 +239,7 @@ var file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -254,52 +254,52 @@ var file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x12, 0x43, 0x75, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_asset_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_asset_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_asset_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_asset_proto_goTypes = []any{ - (*CustomerAsset)(nil), // 0: google.ads.googleads.v21.resources.CustomerAsset - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_customer_asset_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_asset_proto_goTypes = []any{ + (*CustomerAsset)(nil), // 0: google.ads.googleads.v22.resources.CustomerAsset + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetSourceEnum_AssetSource)(0), // 2: google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 3: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + (enums.AssetLinkPrimaryStatusEnum_AssetLinkPrimaryStatus)(0), // 4: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + (*common.AssetLinkPrimaryStatusDetails)(nil), // 5: google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + (enums.AssetLinkPrimaryStatusReasonEnum_AssetLinkPrimaryStatusReason)(0), // 6: google.ads.googleads.v22.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason } -var file_google_ads_googleads_v21_resources_customer_asset_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerAsset.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v21.resources.CustomerAsset.source:type_name -> google.ads.googleads.v21.enums.AssetSourceEnum.AssetSource - 3, // 2: google.ads.googleads.v21.resources.CustomerAsset.status:type_name -> google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus - 4, // 3: google.ads.googleads.v21.resources.CustomerAsset.primary_status:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus - 5, // 4: google.ads.googleads.v21.resources.CustomerAsset.primary_status_details:type_name -> google.ads.googleads.v21.common.AssetLinkPrimaryStatusDetails - 6, // 5: google.ads.googleads.v21.resources.CustomerAsset.primary_status_reasons:type_name -> google.ads.googleads.v21.enums.AssetLinkPrimaryStatusReasonEnum.AssetLinkPrimaryStatusReason +var file_google_ads_googleads_v22_resources_customer_asset_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerAsset.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v22.resources.CustomerAsset.source:type_name -> google.ads.googleads.v22.enums.AssetSourceEnum.AssetSource + 3, // 2: google.ads.googleads.v22.resources.CustomerAsset.status:type_name -> google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus + 4, // 3: google.ads.googleads.v22.resources.CustomerAsset.primary_status:type_name -> google.ads.googleads.v22.enums.AssetLinkPrimaryStatusEnum.AssetLinkPrimaryStatus + 5, // 4: google.ads.googleads.v22.resources.CustomerAsset.primary_status_details:type_name -> google.ads.googleads.v22.common.AssetLinkPrimaryStatusDetails + 6, // 5: google.ads.googleads.v22.resources.CustomerAsset.primary_status_reasons:type_name -> google.ads.googleads.v22.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 @@ -307,26 +307,26 @@ var file_google_ads_googleads_v21_resources_customer_asset_proto_depIdxs = []int 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_asset_proto_init() } -func file_google_ads_googleads_v21_resources_customer_asset_proto_init() { - if File_google_ads_googleads_v21_resources_customer_asset_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_asset_proto_init() } +func file_google_ads_googleads_v22_resources_customer_asset_proto_init() { + if File_google_ads_googleads_v22_resources_customer_asset_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_asset_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_asset_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_asset_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_asset_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_asset_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_asset_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_asset_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_asset_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_asset_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_asset_proto = out.File - file_google_ads_googleads_v21_resources_customer_asset_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_asset_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_asset_proto = out.File + file_google_ads_googleads_v22_resources_customer_asset_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_asset_proto_depIdxs = nil } diff --git a/resources/customer_asset_set.pb.go b/resources/customer_asset_set.pb.go index 9e95c3e5..2819b978 100644 --- a/resources/customer_asset_set.pb.go +++ b/resources/customer_asset_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_asset_set.proto +// source: google/ads/googleads/v22/resources/customer_asset_set.proto package resources @@ -51,14 +51,14 @@ 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.v21.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` + Status enums.AssetSetLinkStatusEnum_AssetSetLinkStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetSetLinkStatusEnum_AssetSetLinkStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerAssetSet) Reset() { *x = CustomerAssetSet{} - mi := &file_google_ads_googleads_v21_resources_customer_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_asset_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *CustomerAssetSet) String() string { func (*CustomerAssetSet) ProtoMessage() {} func (x *CustomerAssetSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_asset_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_asset_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *CustomerAssetSet) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetSet.ProtoReflect.Descriptor instead. func (*CustomerAssetSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescGZIP(), []int{0} } func (x *CustomerAssetSet) GetResourceName() string { @@ -114,17 +114,17 @@ func (x *CustomerAssetSet) GetStatus() enums.AssetSetLinkStatusEnum_AssetSetLink return enums.AssetSetLinkStatusEnum_AssetSetLinkStatus(0) } -var File_google_ads_googleads_v21_resources_customer_asset_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_asset_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -148,7 +148,7 @@ var file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc = s 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -161,43 +161,43 @@ var file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_asset_set_proto_goTypes = []any{ - (*CustomerAssetSet)(nil), // 0: google.ads.googleads.v21.resources.CustomerAssetSet - (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_customer_asset_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_asset_set_proto_goTypes = []any{ + (*CustomerAssetSet)(nil), // 0: google.ads.googleads.v22.resources.CustomerAssetSet + (enums.AssetSetLinkStatusEnum_AssetSetLinkStatus)(0), // 1: google.ads.googleads.v22.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus } -var file_google_ads_googleads_v21_resources_customer_asset_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerAssetSet.status:type_name -> google.ads.googleads.v21.enums.AssetSetLinkStatusEnum.AssetSetLinkStatus +var file_google_ads_googleads_v22_resources_customer_asset_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerAssetSet.status:type_name -> google.ads.googleads.v22.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 @@ -205,26 +205,26 @@ var file_google_ads_googleads_v21_resources_customer_asset_set_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_asset_set_proto_init() } -func file_google_ads_googleads_v21_resources_customer_asset_set_proto_init() { - if File_google_ads_googleads_v21_resources_customer_asset_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_asset_set_proto_init() } +func file_google_ads_googleads_v22_resources_customer_asset_set_proto_init() { + if File_google_ads_googleads_v22_resources_customer_asset_set_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_asset_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_asset_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_asset_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_asset_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_asset_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_asset_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_asset_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_asset_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_asset_set_proto = out.File - file_google_ads_googleads_v21_resources_customer_asset_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_asset_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_asset_set_proto = out.File + file_google_ads_googleads_v22_resources_customer_asset_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_asset_set_proto_depIdxs = nil } diff --git a/resources/customer_client.pb.go b/resources/customer_client.pb.go index e0c5457f..c5232cd9 100644 --- a/resources/customer_client.pb.go +++ b/resources/customer_client.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_client.proto +// source: google/ads/googleads/v22/resources/customer_client.proto package resources @@ -77,14 +77,14 @@ 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.v21.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` + Status enums.CustomerStatusEnum_CustomerStatus `protobuf:"varint,22,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CustomerStatusEnum_CustomerStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerClient) Reset() { *x = CustomerClient{} - mi := &file_google_ads_googleads_v21_resources_customer_client_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_client_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -96,7 +96,7 @@ func (x *CustomerClient) String() string { func (*CustomerClient) ProtoMessage() {} func (x *CustomerClient) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_client_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_client_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -109,7 +109,7 @@ func (x *CustomerClient) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClient.ProtoReflect.Descriptor instead. func (*CustomerClient) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_client_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_client_proto_rawDescGZIP(), []int{0} } func (x *CustomerClient) GetResourceName() string { @@ -196,17 +196,17 @@ func (x *CustomerClient) GetStatus() enums.CustomerStatusEnum_CustomerStatus { return enums.CustomerStatusEnum_CustomerStatus(0) } -var File_google_ads_googleads_v21_resources_customer_client_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_client_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_client_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x34, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -251,7 +251,7 @@ var file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -271,43 +271,43 @@ var file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_client_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_client_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_client_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_client_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_client_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_client_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_client_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_client_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_client_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_client_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_client_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_client_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_client_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_client_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_client_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_client_proto_goTypes = []any{ - (*CustomerClient)(nil), // 0: google.ads.googleads.v21.resources.CustomerClient - (enums.CustomerStatusEnum_CustomerStatus)(0), // 1: google.ads.googleads.v21.enums.CustomerStatusEnum.CustomerStatus +var file_google_ads_googleads_v22_resources_customer_client_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_client_proto_goTypes = []any{ + (*CustomerClient)(nil), // 0: google.ads.googleads.v22.resources.CustomerClient + (enums.CustomerStatusEnum_CustomerStatus)(0), // 1: google.ads.googleads.v22.enums.CustomerStatusEnum.CustomerStatus } -var file_google_ads_googleads_v21_resources_customer_client_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerClient.status:type_name -> google.ads.googleads.v21.enums.CustomerStatusEnum.CustomerStatus +var file_google_ads_googleads_v22_resources_customer_client_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerClient.status:type_name -> google.ads.googleads.v22.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 @@ -315,27 +315,27 @@ var file_google_ads_googleads_v21_resources_customer_client_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_client_proto_init() } -func file_google_ads_googleads_v21_resources_customer_client_proto_init() { - if File_google_ads_googleads_v21_resources_customer_client_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_client_proto_init() } +func file_google_ads_googleads_v22_resources_customer_client_proto_init() { + if File_google_ads_googleads_v22_resources_customer_client_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_client_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_client_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_client_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_client_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_client_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_client_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_client_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_client_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_client_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_client_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_client_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_client_proto = out.File - file_google_ads_googleads_v21_resources_customer_client_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_client_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_client_proto = out.File + file_google_ads_googleads_v22_resources_customer_client_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_client_proto_depIdxs = nil } diff --git a/resources/customer_client_link.pb.go b/resources/customer_client_link.pb.go index 3f38961f..d6fe7e15 100644 --- a/resources/customer_client_link.pb.go +++ b/resources/customer_client_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_client_link.proto +// source: google/ads/googleads/v22/resources/customer_client_link.proto package resources @@ -49,7 +49,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.v21.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` + Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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 @@ -60,7 +60,7 @@ type CustomerClientLink struct { func (x *CustomerClientLink) Reset() { *x = CustomerClientLink{} - mi := &file_google_ads_googleads_v21_resources_customer_client_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_client_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *CustomerClientLink) String() string { func (*CustomerClientLink) ProtoMessage() {} func (x *CustomerClientLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_client_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_client_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *CustomerClientLink) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClientLink.ProtoReflect.Descriptor instead. func (*CustomerClientLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescGZIP(), []int{0} } func (x *CustomerClientLink) GetResourceName() string { @@ -123,17 +123,17 @@ func (x *CustomerClientLink) GetHidden() bool { return false } -var File_google_ads_googleads_v21_resources_customer_client_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_client_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -157,7 +157,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -176,44 +176,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_client_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_client_link_proto_goTypes = []any{ - (*CustomerClientLink)(nil), // 0: google.ads.googleads.v21.resources.CustomerClientLink - (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v21.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v22_resources_customer_client_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_client_link_proto_goTypes = []any{ + (*CustomerClientLink)(nil), // 0: google.ads.googleads.v22.resources.CustomerClientLink + (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v22.enums.ManagerLinkStatusEnum.ManagerLinkStatus } -var file_google_ads_googleads_v21_resources_customer_client_link_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerClientLink.status:type_name -> google.ads.googleads.v21.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v22_resources_customer_client_link_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerClientLink.status:type_name -> google.ads.googleads.v22.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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_resources_customer_client_link_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_client_link_proto_init() } -func file_google_ads_googleads_v21_resources_customer_client_link_proto_init() { - if File_google_ads_googleads_v21_resources_customer_client_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_client_link_proto_init() } +func file_google_ads_googleads_v22_resources_customer_client_link_proto_init() { + if File_google_ads_googleads_v22_resources_customer_client_link_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_client_link_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_client_link_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_client_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_client_link_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_client_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_client_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_client_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_client_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_client_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_client_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_client_link_proto = out.File - file_google_ads_googleads_v21_resources_customer_client_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_client_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_client_link_proto = out.File + file_google_ads_googleads_v22_resources_customer_client_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_client_link_proto_depIdxs = nil } diff --git a/resources/customer_conversion_goal.pb.go b/resources/customer_conversion_goal.pb.go index 608ea650..6abcb8c5 100644 --- a/resources/customer_conversion_goal.pb.go +++ b/resources/customer_conversion_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_conversion_goal.proto +// source: google/ads/googleads/v22/resources/customer_conversion_goal.proto package resources @@ -48,11 +48,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.v21.enums.ConversionActionCategoryEnum_ConversionActionCategory" json:"category,omitempty"` + Category enums.ConversionActionCategoryEnum_ConversionActionCategory `protobuf:"varint,2,opt,name=category,proto3,enum=google.ads.googleads.v22.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.v21.enums.ConversionOriginEnum_ConversionOrigin" json:"origin,omitempty"` + Origin enums.ConversionOriginEnum_ConversionOrigin `protobuf:"varint,3,opt,name=origin,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -61,7 +61,7 @@ type CustomerConversionGoal struct { func (x *CustomerConversionGoal) Reset() { *x = CustomerConversionGoal{} - mi := &file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *CustomerConversionGoal) String() string { func (*CustomerConversionGoal) ProtoMessage() {} func (x *CustomerConversionGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *CustomerConversionGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerConversionGoal.ProtoReflect.Descriptor instead. func (*CustomerConversionGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomerConversionGoal) GetResourceName() string { @@ -117,22 +117,22 @@ func (x *CustomerConversionGoal) GetBiddable() bool { return false } -var File_google_ads_googleads_v21_resources_customer_conversion_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_conversion_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 0x32, 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, @@ -148,14 +148,14 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, @@ -169,46 +169,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_goTypes = []any{ - (*CustomerConversionGoal)(nil), // 0: google.ads.googleads.v21.resources.CustomerConversionGoal - (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_goTypes = []any{ + (*CustomerConversionGoal)(nil), // 0: google.ads.googleads.v22.resources.CustomerConversionGoal + (enums.ConversionActionCategoryEnum_ConversionActionCategory)(0), // 1: google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + (enums.ConversionOriginEnum_ConversionOrigin)(0), // 2: google.ads.googleads.v22.enums.ConversionOriginEnum.ConversionOrigin } -var file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerConversionGoal.category:type_name -> google.ads.googleads.v21.enums.ConversionActionCategoryEnum.ConversionActionCategory - 2, // 1: google.ads.googleads.v21.resources.CustomerConversionGoal.origin:type_name -> google.ads.googleads.v21.enums.ConversionOriginEnum.ConversionOrigin +var file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerConversionGoal.category:type_name -> google.ads.googleads.v22.enums.ConversionActionCategoryEnum.ConversionActionCategory + 2, // 1: google.ads.googleads.v22.resources.CustomerConversionGoal.origin:type_name -> google.ads.googleads.v22.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 @@ -216,26 +216,26 @@ var file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_depId 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_init() } -func file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_init() { - if File_google_ads_googleads_v21_resources_customer_conversion_goal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_init() } +func file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_init() { + if File_google_ads_googleads_v22_resources_customer_conversion_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_conversion_goal_proto = out.File - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_conversion_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_conversion_goal_proto = out.File + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_conversion_goal_proto_depIdxs = nil } diff --git a/resources/customer_customizer.pb.go b/resources/customer_customizer.pb.go index 2b03626b..919e2b02 100644 --- a/resources/customer_customizer.pb.go +++ b/resources/customer_customizer.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_customizer.proto +// source: google/ads/googleads/v22/resources/customer_customizer.proto package resources @@ -51,7 +51,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.v21.enums.CustomizerValueStatusEnum_CustomizerValueStatus" json:"status,omitempty"` + Status enums.CustomizerValueStatusEnum_CustomizerValueStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -61,7 +61,7 @@ type CustomerCustomizer struct { func (x *CustomerCustomizer) Reset() { *x = CustomerCustomizer{} - mi := &file_google_ads_googleads_v21_resources_customer_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_customizer_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *CustomerCustomizer) String() string { func (*CustomerCustomizer) ProtoMessage() {} func (x *CustomerCustomizer) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_customizer_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_customizer_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *CustomerCustomizer) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerCustomizer.ProtoReflect.Descriptor instead. func (*CustomerCustomizer) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescGZIP(), []int{0} } func (x *CustomerCustomizer) GetResourceName() string { @@ -117,21 +117,21 @@ func (x *CustomerCustomizer) GetValue() *common.CustomizerValue { return nil } -var File_google_ads_googleads_v21_resources_customer_customizer_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_customizer_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -153,14 +153,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -172,45 +172,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_customizer_proto_goTypes = []any{ - (*CustomerCustomizer)(nil), // 0: google.ads.googleads.v21.resources.CustomerCustomizer - (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_customer_customizer_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_customizer_proto_goTypes = []any{ + (*CustomerCustomizer)(nil), // 0: google.ads.googleads.v22.resources.CustomerCustomizer + (enums.CustomizerValueStatusEnum_CustomizerValueStatus)(0), // 1: google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + (*common.CustomizerValue)(nil), // 2: google.ads.googleads.v22.common.CustomizerValue } -var file_google_ads_googleads_v21_resources_customer_customizer_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerCustomizer.status:type_name -> google.ads.googleads.v21.enums.CustomizerValueStatusEnum.CustomizerValueStatus - 2, // 1: google.ads.googleads.v21.resources.CustomerCustomizer.value:type_name -> google.ads.googleads.v21.common.CustomizerValue +var file_google_ads_googleads_v22_resources_customer_customizer_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerCustomizer.status:type_name -> google.ads.googleads.v22.enums.CustomizerValueStatusEnum.CustomizerValueStatus + 2, // 1: google.ads.googleads.v22.resources.CustomerCustomizer.value:type_name -> google.ads.googleads.v22.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 @@ -218,26 +218,26 @@ var file_google_ads_googleads_v21_resources_customer_customizer_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_customizer_proto_init() } -func file_google_ads_googleads_v21_resources_customer_customizer_proto_init() { - if File_google_ads_googleads_v21_resources_customer_customizer_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_customizer_proto_init() } +func file_google_ads_googleads_v22_resources_customer_customizer_proto_init() { + if File_google_ads_googleads_v22_resources_customer_customizer_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_customizer_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_customizer_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_customizer_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_customizer_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_customizer_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_customizer_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_customizer_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_customizer_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_customizer_proto = out.File - file_google_ads_googleads_v21_resources_customer_customizer_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_customizer_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_customizer_proto = out.File + file_google_ads_googleads_v22_resources_customer_customizer_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_customizer_proto_depIdxs = nil } diff --git a/resources/customer_label.pb.go b/resources/customer_label.pb.go index 42260030..199ce9c0 100644 --- a/resources/customer_label.pb.go +++ b/resources/customer_label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_label.proto +// source: google/ads/googleads/v22/resources/customer_label.proto package resources @@ -59,7 +59,7 @@ type CustomerLabel struct { func (x *CustomerLabel) Reset() { *x = CustomerLabel{} - mi := &file_google_ads_googleads_v21_resources_customer_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *CustomerLabel) String() string { func (*CustomerLabel) ProtoMessage() {} func (x *CustomerLabel) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *CustomerLabel) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLabel.ProtoReflect.Descriptor instead. func (*CustomerLabel) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_label_proto_rawDescGZIP(), []int{0} } func (x *CustomerLabel) GetResourceName() string { @@ -108,15 +108,15 @@ func (x *CustomerLabel) GetLabel() string { return "" } -var File_google_ads_googleads_v21_resources_customer_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -145,41 +145,41 @@ var file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_label_proto_goTypes = []any{ - (*CustomerLabel)(nil), // 0: google.ads.googleads.v21.resources.CustomerLabel +var file_google_ads_googleads_v22_resources_customer_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_label_proto_goTypes = []any{ + (*CustomerLabel)(nil), // 0: google.ads.googleads.v22.resources.CustomerLabel } -var file_google_ads_googleads_v21_resources_customer_label_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -187,27 +187,27 @@ var file_google_ads_googleads_v21_resources_customer_label_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_label_proto_init() } -func file_google_ads_googleads_v21_resources_customer_label_proto_init() { - if File_google_ads_googleads_v21_resources_customer_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_label_proto_init() } +func file_google_ads_googleads_v22_resources_customer_label_proto_init() { + if File_google_ads_googleads_v22_resources_customer_label_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_label_proto = out.File - file_google_ads_googleads_v21_resources_customer_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_label_proto = out.File + file_google_ads_googleads_v22_resources_customer_label_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_label_proto_depIdxs = nil } diff --git a/resources/customer_lifecycle_goal.pb.go b/resources/customer_lifecycle_goal.pb.go index 645679b3..7fa55293 100644 --- a/resources/customer_lifecycle_goal.pb.go +++ b/resources/customer_lifecycle_goal.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_lifecycle_goal.proto +// source: google/ads/googleads/v22/resources/customer_lifecycle_goal.proto package resources @@ -56,7 +56,7 @@ type CustomerLifecycleGoal struct { func (x *CustomerLifecycleGoal) Reset() { *x = CustomerLifecycleGoal{} - mi := &file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *CustomerLifecycleGoal) String() string { func (*CustomerLifecycleGoal) ProtoMessage() {} func (x *CustomerLifecycleGoal) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *CustomerLifecycleGoal) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLifecycleGoal.ProtoReflect.Descriptor instead. func (*CustomerLifecycleGoal) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescGZIP(), []int{0} } func (x *CustomerLifecycleGoal) GetResourceName() string { @@ -105,17 +105,17 @@ func (x *CustomerLifecycleGoal) GetOwnerCustomer() string { return "" } -var File_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -133,7 +133,7 @@ var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDes 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,43 +152,43 @@ var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDes 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x43, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_goTypes = []any{ - (*CustomerLifecycleGoal)(nil), // 0: google.ads.googleads.v21.resources.CustomerLifecycleGoal - (*common.LifecycleGoalValueSettings)(nil), // 1: google.ads.googleads.v21.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_goTypes = []any{ + (*CustomerLifecycleGoal)(nil), // 0: google.ads.googleads.v22.resources.CustomerLifecycleGoal + (*common.LifecycleGoalValueSettings)(nil), // 1: google.ads.googleads.v22.common.LifecycleGoalValueSettings } -var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerLifecycleGoal.customer_acquisition_goal_value_settings:type_name -> google.ads.googleads.v21.common.LifecycleGoalValueSettings +var file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerLifecycleGoal.customer_acquisition_goal_value_settings:type_name -> google.ads.googleads.v22.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 @@ -196,26 +196,26 @@ var file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_init() } -func file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_init() { - if File_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_init() } +func file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_init() { + if File_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto = out.File - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_lifecycle_goal_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto = out.File + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_lifecycle_goal_proto_depIdxs = nil } diff --git a/resources/customer_manager_link.pb.go b/resources/customer_manager_link.pb.go index 7e3d838b..cbc3f611 100644 --- a/resources/customer_manager_link.pb.go +++ b/resources/customer_manager_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_manager_link.proto +// source: google/ads/googleads/v22/resources/customer_manager_link.proto package resources @@ -49,14 +49,14 @@ 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.v21.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` + Status enums.ManagerLinkStatusEnum_ManagerLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.ManagerLinkStatusEnum_ManagerLinkStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerManagerLink) Reset() { *x = CustomerManagerLink{} - mi := &file_google_ads_googleads_v21_resources_customer_manager_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_manager_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *CustomerManagerLink) String() string { func (*CustomerManagerLink) ProtoMessage() {} func (x *CustomerManagerLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_manager_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_manager_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *CustomerManagerLink) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerManagerLink.ProtoReflect.Descriptor instead. func (*CustomerManagerLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescGZIP(), []int{0} } func (x *CustomerManagerLink) GetResourceName() string { @@ -112,17 +112,17 @@ func (x *CustomerManagerLink) GetStatus() enums.ManagerLinkStatusEnum_ManagerLin return enums.ManagerLinkStatusEnum_ManagerLinkStatus(0) } -var File_google_ads_googleads_v21_resources_customer_manager_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_manager_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -147,7 +147,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x61, 0x6e, 0x61, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -163,44 +163,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_manager_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_manager_link_proto_goTypes = []any{ - (*CustomerManagerLink)(nil), // 0: google.ads.googleads.v21.resources.CustomerManagerLink - (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v21.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v22_resources_customer_manager_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_manager_link_proto_goTypes = []any{ + (*CustomerManagerLink)(nil), // 0: google.ads.googleads.v22.resources.CustomerManagerLink + (enums.ManagerLinkStatusEnum_ManagerLinkStatus)(0), // 1: google.ads.googleads.v22.enums.ManagerLinkStatusEnum.ManagerLinkStatus } -var file_google_ads_googleads_v21_resources_customer_manager_link_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerManagerLink.status:type_name -> google.ads.googleads.v21.enums.ManagerLinkStatusEnum.ManagerLinkStatus +var file_google_ads_googleads_v22_resources_customer_manager_link_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerManagerLink.status:type_name -> google.ads.googleads.v22.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 @@ -208,27 +208,27 @@ var file_google_ads_googleads_v21_resources_customer_manager_link_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_manager_link_proto_init() } -func file_google_ads_googleads_v21_resources_customer_manager_link_proto_init() { - if File_google_ads_googleads_v21_resources_customer_manager_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_manager_link_proto_init() } +func file_google_ads_googleads_v22_resources_customer_manager_link_proto_init() { + if File_google_ads_googleads_v22_resources_customer_manager_link_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_manager_link_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_manager_link_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_manager_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_manager_link_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_manager_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_manager_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_manager_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_manager_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_manager_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_manager_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_manager_link_proto = out.File - file_google_ads_googleads_v21_resources_customer_manager_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_manager_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_manager_link_proto = out.File + file_google_ads_googleads_v22_resources_customer_manager_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_manager_link_proto_depIdxs = nil } diff --git a/resources/customer_negative_criterion.pb.go b/resources/customer_negative_criterion.pb.go index e71af970..6014745e 100644 --- a/resources/customer_negative_criterion.pb.go +++ b/resources/customer_negative_criterion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_negative_criterion.proto +// source: google/ads/googleads/v22/resources/customer_negative_criterion.proto package resources @@ -49,7 +49,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.v21.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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{} - mi := &file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *CustomerNegativeCriterion) String() string { func (*CustomerNegativeCriterion) ProtoMessage() {} func (x *CustomerNegativeCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *CustomerNegativeCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerNegativeCriterion.ProtoReflect.Descriptor instead. func (*CustomerNegativeCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescGZIP(), []int{0} } func (x *CustomerNegativeCriterion) GetResourceName() string { @@ -276,21 +276,21 @@ func (*CustomerNegativeCriterion_IpBlock) isCustomerNegativeCriterion_Criterion( func (*CustomerNegativeCriterion_PlacementList) isCustomerNegativeCriterion_Criterion() {} -var File_google_ads_googleads_v21_resources_customer_negative_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_negative_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -307,63 +307,63 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, + 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x70, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x60, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0d, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0d, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x3a, 0x78, 0xea, 0x41, 0x75, 0x0a, @@ -377,62 +377,62 @@ var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_ra 0x5f, 0x69, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_goTypes = []any{ - (*CustomerNegativeCriterion)(nil), // 0: google.ads.googleads.v21.resources.CustomerNegativeCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - (*common.ContentLabelInfo)(nil), // 2: google.ads.googleads.v21.common.ContentLabelInfo - (*common.MobileApplicationInfo)(nil), // 3: google.ads.googleads.v21.common.MobileApplicationInfo - (*common.MobileAppCategoryInfo)(nil), // 4: google.ads.googleads.v21.common.MobileAppCategoryInfo - (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v21.common.PlacementInfo - (*common.YouTubeVideoInfo)(nil), // 6: google.ads.googleads.v21.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 7: google.ads.googleads.v21.common.YouTubeChannelInfo - (*common.NegativeKeywordListInfo)(nil), // 8: google.ads.googleads.v21.common.NegativeKeywordListInfo - (*common.IpBlockInfo)(nil), // 9: google.ads.googleads.v21.common.IpBlockInfo - (*common.PlacementListInfo)(nil), // 10: google.ads.googleads.v21.common.PlacementListInfo -} -var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerNegativeCriterion.type:type_name -> google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v21.resources.CustomerNegativeCriterion.content_label:type_name -> google.ads.googleads.v21.common.ContentLabelInfo - 3, // 2: google.ads.googleads.v21.resources.CustomerNegativeCriterion.mobile_application:type_name -> google.ads.googleads.v21.common.MobileApplicationInfo - 4, // 3: google.ads.googleads.v21.resources.CustomerNegativeCriterion.mobile_app_category:type_name -> google.ads.googleads.v21.common.MobileAppCategoryInfo - 5, // 4: google.ads.googleads.v21.resources.CustomerNegativeCriterion.placement:type_name -> google.ads.googleads.v21.common.PlacementInfo - 6, // 5: google.ads.googleads.v21.resources.CustomerNegativeCriterion.youtube_video:type_name -> google.ads.googleads.v21.common.YouTubeVideoInfo - 7, // 6: google.ads.googleads.v21.resources.CustomerNegativeCriterion.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 8, // 7: google.ads.googleads.v21.resources.CustomerNegativeCriterion.negative_keyword_list:type_name -> google.ads.googleads.v21.common.NegativeKeywordListInfo - 9, // 8: google.ads.googleads.v21.resources.CustomerNegativeCriterion.ip_block:type_name -> google.ads.googleads.v21.common.IpBlockInfo - 10, // 9: google.ads.googleads.v21.resources.CustomerNegativeCriterion.placement_list:type_name -> google.ads.googleads.v21.common.PlacementListInfo + return file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_goTypes = []any{ + (*CustomerNegativeCriterion)(nil), // 0: google.ads.googleads.v22.resources.CustomerNegativeCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + (*common.ContentLabelInfo)(nil), // 2: google.ads.googleads.v22.common.ContentLabelInfo + (*common.MobileApplicationInfo)(nil), // 3: google.ads.googleads.v22.common.MobileApplicationInfo + (*common.MobileAppCategoryInfo)(nil), // 4: google.ads.googleads.v22.common.MobileAppCategoryInfo + (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v22.common.PlacementInfo + (*common.YouTubeVideoInfo)(nil), // 6: google.ads.googleads.v22.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 7: google.ads.googleads.v22.common.YouTubeChannelInfo + (*common.NegativeKeywordListInfo)(nil), // 8: google.ads.googleads.v22.common.NegativeKeywordListInfo + (*common.IpBlockInfo)(nil), // 9: google.ads.googleads.v22.common.IpBlockInfo + (*common.PlacementListInfo)(nil), // 10: google.ads.googleads.v22.common.PlacementListInfo +} +var file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerNegativeCriterion.type:type_name -> google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v22.resources.CustomerNegativeCriterion.content_label:type_name -> google.ads.googleads.v22.common.ContentLabelInfo + 3, // 2: google.ads.googleads.v22.resources.CustomerNegativeCriterion.mobile_application:type_name -> google.ads.googleads.v22.common.MobileApplicationInfo + 4, // 3: google.ads.googleads.v22.resources.CustomerNegativeCriterion.mobile_app_category:type_name -> google.ads.googleads.v22.common.MobileAppCategoryInfo + 5, // 4: google.ads.googleads.v22.resources.CustomerNegativeCriterion.placement:type_name -> google.ads.googleads.v22.common.PlacementInfo + 6, // 5: google.ads.googleads.v22.resources.CustomerNegativeCriterion.youtube_video:type_name -> google.ads.googleads.v22.common.YouTubeVideoInfo + 7, // 6: google.ads.googleads.v22.resources.CustomerNegativeCriterion.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 8, // 7: google.ads.googleads.v22.resources.CustomerNegativeCriterion.negative_keyword_list:type_name -> google.ads.googleads.v22.common.NegativeKeywordListInfo + 9, // 8: google.ads.googleads.v22.resources.CustomerNegativeCriterion.ip_block:type_name -> google.ads.googleads.v22.common.IpBlockInfo + 10, // 9: google.ads.googleads.v22.resources.CustomerNegativeCriterion.placement_list:type_name -> google.ads.googleads.v22.common.PlacementListInfo 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 @@ -440,12 +440,12 @@ var file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_de 0, // [0:10] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_init() } -func file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_init() { - if File_google_ads_googleads_v21_resources_customer_negative_criterion_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_init() } +func file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_init() { + if File_google_ads_googleads_v22_resources_customer_negative_criterion_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_msgTypes[0].OneofWrappers = []any{ (*CustomerNegativeCriterion_ContentLabel)(nil), (*CustomerNegativeCriterion_MobileApplication)(nil), (*CustomerNegativeCriterion_MobileAppCategory)(nil), @@ -460,17 +460,17 @@ func file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_negative_criterion_proto = out.File - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_negative_criterion_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_negative_criterion_proto = out.File + file_google_ads_googleads_v22_resources_customer_negative_criterion_proto_goTypes = nil + file_google_ads_googleads_v22_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 f13fbab6..3ee6685f 100644 --- a/resources/customer_search_term_insight.pb.go +++ b/resources/customer_search_term_insight.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_search_term_insight.proto +// source: google/ads/googleads/v22/resources/customer_search_term_insight.proto package resources @@ -58,7 +58,7 @@ type CustomerSearchTermInsight struct { func (x *CustomerSearchTermInsight) Reset() { *x = CustomerSearchTermInsight{} - mi := &file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_customer_search_term_insight_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_msgTypes[0] if 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_v21_resources_customer_search_term_insight_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_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_v21_resources_customer_search_term_insight_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_search_term_insight_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_goTypes = []any{ - (*CustomerSearchTermInsight)(nil), // 0: google.ads.googleads.v21.resources.CustomerSearchTermInsight +var file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_goTypes = []any{ + (*CustomerSearchTermInsight)(nil), // 0: google.ads.googleads.v22.resources.CustomerSearchTermInsight } -var file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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,27 +186,27 @@ var file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_init() } -func file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_init() { - if File_google_ads_googleads_v21_resources_customer_search_term_insight_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_init() } +func file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_init() { + if File_google_ads_googleads_v22_resources_customer_search_term_insight_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_search_term_insight_proto = out.File - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_search_term_insight_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_search_term_insight_proto = out.File + file_google_ads_googleads_v22_resources_customer_search_term_insight_proto_goTypes = nil + file_google_ads_googleads_v22_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 3984e0d8..a80497fe 100644 --- a/resources/customer_sk_ad_network_conversion_value_schema.pb.go +++ b/resources/customer_sk_ad_network_conversion_value_schema.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_sk_ad_network_conversion_value_schema.proto +// source: google/ads/googleads/v22/resources/customer_sk_ad_network_conversion_value_schema.proto package resources @@ -52,7 +52,7 @@ type CustomerSkAdNetworkConversionValueSchema struct { func (x *CustomerSkAdNetworkConversionValueSchema) Reset() { *x = CustomerSkAdNetworkConversionValueSchema{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema) String() string { func (*CustomerSkAdNetworkConversionValueSchema) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.M // Deprecated: Use CustomerSkAdNetworkConversionValueSchema.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0} } func (x *CustomerSkAdNetworkConversionValueSchema) GetResourceName() string { @@ -119,7 +119,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema s func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,7 +144,7 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche // Deprecated: Use CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema) GetAppId() string { @@ -190,7 +190,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_F func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -203,7 +203,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -216,7 +216,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 0} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings) GetFineGrainedConversionValue() int32 { @@ -256,7 +256,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_P func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -269,7 +269,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -282,7 +282,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 1} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 1} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping) GetPostbackSequenceIndex() int32 { @@ -340,7 +340,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.v21.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.v22.enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue,oneof"` } type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowFineConversionValue struct { @@ -378,7 +378,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_C func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -391,7 +391,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -404,7 +404,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 2} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 2} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings) GetLowConversionValueMapping() *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping { @@ -447,7 +447,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_C func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -460,7 +460,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -473,7 +473,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 3} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 3} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping) GetMinTimePostInstallHours() int64 { @@ -525,7 +525,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -538,7 +538,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -551,7 +551,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event) GetMappedEventName() string { @@ -675,7 +675,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -688,7 +688,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -701,7 +701,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 0} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 0} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange) GetMinEventRevenue() float64 { @@ -733,7 +733,7 @@ type CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_E func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) Reset() { *x = CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange{} - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -746,7 +746,7 @@ func (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -759,7 +759,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_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 1} + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP(), []int{0, 0, 4, 1} } func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange) GetMinEventCount() int64 { @@ -776,19 +776,19 @@ func (x *CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSche return 0 } -var File_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x4a, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6b, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -807,7 +807,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -826,7 +826,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -840,7 +840,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -858,7 +858,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -877,7 +877,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -892,7 +892,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6b, 0x41, 0x64, 0x4e, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -915,7 +915,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -928,7 +928,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -942,7 +942,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -964,7 +964,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -980,7 +980,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -996,7 +996,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x76, 0x32, 0x32, 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, @@ -1035,7 +1035,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1043,56 +1043,56 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = []any{ - (*CustomerSkAdNetworkConversionValueSchema)(nil), // 0: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema)(nil), // 1: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings)(nil), // 2: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping)(nil), // 3: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings)(nil), // 4: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping)(nil), // 5: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event)(nil), // 6: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange)(nil), // 7: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange - (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange)(nil), // 8: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange - (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 9: google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue -} -var file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.schema:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema - 2, // 1: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.fine_grained_conversion_value_mappings:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings - 3, // 2: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.postback_mappings:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping - 5, // 3: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings.conversion_value_mapping:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 4, // 4: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.coarse_grained_conversion_value_mappings:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings - 9, // 5: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.lock_window_coarse_conversion_value:type_name -> google.ads.googleads.v21.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue - 5, // 6: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.low_conversion_value_mapping:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 5, // 7: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.medium_conversion_value_mapping:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 5, // 8: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.high_conversion_value_mapping:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping - 6, // 9: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping.mapped_events:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event - 7, // 10: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_revenue_range:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange - 8, // 11: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_occurrence_range:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange + return file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = []any{ + (*CustomerSkAdNetworkConversionValueSchema)(nil), // 0: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema)(nil), // 1: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_FineGrainedConversionValueMappings)(nil), // 2: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping)(nil), // 3: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_CoarseGrainedConversionValueMappings)(nil), // 4: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_ConversionValueMapping)(nil), // 5: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event)(nil), // 6: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_RevenueRange)(nil), // 7: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange + (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange)(nil), // 8: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.EventOccurrenceRange + (enums.SkAdNetworkCoarseConversionValueEnum_SkAdNetworkCoarseConversionValue)(0), // 9: google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue +} +var file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.schema:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema + 2, // 1: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.fine_grained_conversion_value_mappings:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings + 3, // 2: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.postback_mappings:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping + 5, // 3: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.FineGrainedConversionValueMappings.conversion_value_mapping:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 4, // 4: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.coarse_grained_conversion_value_mappings:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings + 9, // 5: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.PostbackMapping.lock_window_coarse_conversion_value:type_name -> google.ads.googleads.v22.enums.SkAdNetworkCoarseConversionValueEnum.SkAdNetworkCoarseConversionValue + 5, // 6: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.low_conversion_value_mapping:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 5, // 7: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.medium_conversion_value_mapping:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 5, // 8: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.CoarseGrainedConversionValueMappings.high_conversion_value_mapping:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping + 6, // 9: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.ConversionValueMapping.mapped_events:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event + 7, // 10: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_revenue_range:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.RevenueRange + 8, // 11: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema.SkAdNetworkConversionValueSchema.Event.event_occurrence_range:type_name -> google.ads.googleads.v22.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 @@ -1101,18 +1101,18 @@ var file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_va } func init() { - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_init() + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_init() } -func file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_init() { - if File_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto != nil { +func file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_init() { + if File_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[3].OneofWrappers = []any{ (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowCoarseConversionValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowFineConversionValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_PostbackMapping_LockWindowEvent)(nil), } - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes[6].OneofWrappers = []any{ (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventRevenueRange)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventRevenueValue)(nil), (*CustomerSkAdNetworkConversionValueSchema_SkAdNetworkConversionValueSchema_Event_EventOccurrenceRange_)(nil), @@ -1122,17 +1122,17 @@ func file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_v out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto = out.File - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_sk_ad_network_conversion_value_schema_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto = out.File + file_google_ads_googleads_v22_resources_customer_sk_ad_network_conversion_value_schema_proto_goTypes = nil + file_google_ads_googleads_v22_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 e0824360..16d4882b 100644 --- a/resources/customer_user_access.pb.go +++ b/resources/customer_user_access.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_user_access.proto +// source: google/ads/googleads/v22/resources/customer_user_access.proto package resources @@ -51,7 +51,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.v21.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.v22.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". @@ -66,7 +66,7 @@ type CustomerUserAccess struct { func (x *CustomerUserAccess) Reset() { *x = CustomerUserAccess{} - mi := &file_google_ads_googleads_v21_resources_customer_user_access_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_user_access_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *CustomerUserAccess) String() string { func (*CustomerUserAccess) ProtoMessage() {} func (x *CustomerUserAccess) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_user_access_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_user_access_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *CustomerUserAccess) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccess.ProtoReflect.Descriptor instead. func (*CustomerUserAccess) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescGZIP(), []int{0} } func (x *CustomerUserAccess) GetResourceName() string { @@ -136,17 +136,17 @@ func (x *CustomerUserAccess) GetInviterUserEmailAddress() string { return "" } -var File_google_ads_googleads_v21_resources_customer_user_access_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_user_access_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -166,7 +166,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -192,43 +192,43 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x43, 0x75, 0x73, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_user_access_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_user_access_proto_goTypes = []any{ - (*CustomerUserAccess)(nil), // 0: google.ads.googleads.v21.resources.CustomerUserAccess - (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole +var file_google_ads_googleads_v22_resources_customer_user_access_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_user_access_proto_goTypes = []any{ + (*CustomerUserAccess)(nil), // 0: google.ads.googleads.v22.resources.CustomerUserAccess + (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole } -var file_google_ads_googleads_v21_resources_customer_user_access_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerUserAccess.access_role:type_name -> google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole +var file_google_ads_googleads_v22_resources_customer_user_access_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerUserAccess.access_role:type_name -> google.ads.googleads.v22.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 @@ -236,27 +236,27 @@ var file_google_ads_googleads_v21_resources_customer_user_access_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_user_access_proto_init() } -func file_google_ads_googleads_v21_resources_customer_user_access_proto_init() { - if File_google_ads_googleads_v21_resources_customer_user_access_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_user_access_proto_init() } +func file_google_ads_googleads_v22_resources_customer_user_access_proto_init() { + if File_google_ads_googleads_v22_resources_customer_user_access_proto != nil { return } - file_google_ads_googleads_v21_resources_customer_user_access_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_customer_user_access_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_user_access_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_user_access_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_user_access_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_user_access_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_user_access_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_user_access_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_user_access_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_user_access_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_user_access_proto = out.File - file_google_ads_googleads_v21_resources_customer_user_access_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_user_access_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_user_access_proto = out.File + file_google_ads_googleads_v22_resources_customer_user_access_proto_goTypes = nil + file_google_ads_googleads_v22_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 6d05b870..703fa08f 100644 --- a/resources/customer_user_access_invitation.pb.go +++ b/resources/customer_user_access_invitation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customer_user_access_invitation.proto +// source: google/ads/googleads/v22/resources/customer_user_access_invitation.proto package resources @@ -48,7 +48,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.v21.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.v22.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. @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.AccessInvitationStatusEnum_AccessInvitationStatus" json:"invitation_status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomerUserAccessInvitation) Reset() { *x = CustomerUserAccessInvitation{} - mi := &file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *CustomerUserAccessInvitation) String() string { func (*CustomerUserAccessInvitation) ProtoMessage() {} func (x *CustomerUserAccessInvitation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *CustomerUserAccessInvitation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccessInvitation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessInvitation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescGZIP(), []int{0} } func (x *CustomerUserAccessInvitation) GetResourceName() string { @@ -136,22 +136,22 @@ func (x *CustomerUserAccessInvitation) GetInvitationStatus() enums.AccessInvitat return enums.AccessInvitationStatusEnum_AccessInvitationStatus(0) } -var File_google_ads_googleads_v21_resources_customer_user_access_invitation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customer_user_access_invitation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x3d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -170,7 +170,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -182,7 +182,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -198,45 +198,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x21, 0x43, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDescData + return file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_goTypes = []any{ - (*CustomerUserAccessInvitation)(nil), // 0: google.ads.googleads.v21.resources.CustomerUserAccessInvitation - (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole - (enums.AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 2: google.ads.googleads.v21.enums.AccessInvitationStatusEnum.AccessInvitationStatus +var file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_goTypes = []any{ + (*CustomerUserAccessInvitation)(nil), // 0: google.ads.googleads.v22.resources.CustomerUserAccessInvitation + (enums.AccessRoleEnum_AccessRole)(0), // 1: google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole + (enums.AccessInvitationStatusEnum_AccessInvitationStatus)(0), // 2: google.ads.googleads.v22.enums.AccessInvitationStatusEnum.AccessInvitationStatus } -var file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomerUserAccessInvitation.access_role:type_name -> google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole - 2, // 1: google.ads.googleads.v21.resources.CustomerUserAccessInvitation.invitation_status:type_name -> google.ads.googleads.v21.enums.AccessInvitationStatusEnum.AccessInvitationStatus +var file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomerUserAccessInvitation.access_role:type_name -> google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole + 2, // 1: google.ads.googleads.v22.resources.CustomerUserAccessInvitation.invitation_status:type_name -> google.ads.googleads.v22.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 @@ -244,26 +244,26 @@ var file_google_ads_googleads_v21_resources_customer_user_access_invitation_prot 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_init() } -func file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_init() { - if File_google_ads_googleads_v21_resources_customer_user_access_invitation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_init() } +func file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_init() { + if File_google_ads_googleads_v22_resources_customer_user_access_invitation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customer_user_access_invitation_proto = out.File - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customer_user_access_invitation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customer_user_access_invitation_proto = out.File + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customer_user_access_invitation_proto_depIdxs = nil } diff --git a/resources/customizer_attribute.pb.go b/resources/customizer_attribute.pb.go index 0a448d8f..15f57ac2 100644 --- a/resources/customizer_attribute.pb.go +++ b/resources/customizer_attribute.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/customizer_attribute.proto +// source: google/ads/googleads/v22/resources/customizer_attribute.proto package resources @@ -56,16 +56,16 @@ 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.v21.enums.CustomizerAttributeTypeEnum_CustomizerAttributeType" json:"type,omitempty"` + Type enums.CustomizerAttributeTypeEnum_CustomizerAttributeType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus" json:"status,omitempty"` + Status enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *CustomizerAttribute) Reset() { *x = CustomizerAttribute{} - mi := &file_google_ads_googleads_v21_resources_customizer_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customizer_attribute_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *CustomizerAttribute) String() string { func (*CustomizerAttribute) ProtoMessage() {} func (x *CustomizerAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_customizer_attribute_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_customizer_attribute_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *CustomizerAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttribute.ProtoReflect.Descriptor instead. func (*CustomizerAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescGZIP(), []int{0} } func (x *CustomizerAttribute) GetResourceName() string { @@ -128,21 +128,21 @@ func (x *CustomizerAttribute) GetStatus() enums.CustomizerAttributeStatusEnum_Cu return enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus(0) } -var File_google_ads_googleads_v21_resources_customizer_attribute_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_customizer_attribute_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -161,14 +161,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,45 +183,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDescData + return file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDescData } -var file_google_ads_googleads_v21_resources_customizer_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_customizer_attribute_proto_goTypes = []any{ - (*CustomizerAttribute)(nil), // 0: google.ads.googleads.v21.resources.CustomizerAttribute - (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType - (enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 2: google.ads.googleads.v21.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus +var file_google_ads_googleads_v22_resources_customizer_attribute_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_customizer_attribute_proto_goTypes = []any{ + (*CustomizerAttribute)(nil), // 0: google.ads.googleads.v22.resources.CustomizerAttribute + (enums.CustomizerAttributeTypeEnum_CustomizerAttributeType)(0), // 1: google.ads.googleads.v22.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType + (enums.CustomizerAttributeStatusEnum_CustomizerAttributeStatus)(0), // 2: google.ads.googleads.v22.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus } -var file_google_ads_googleads_v21_resources_customizer_attribute_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.CustomizerAttribute.type:type_name -> google.ads.googleads.v21.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType - 2, // 1: google.ads.googleads.v21.resources.CustomizerAttribute.status:type_name -> google.ads.googleads.v21.enums.CustomizerAttributeStatusEnum.CustomizerAttributeStatus +var file_google_ads_googleads_v22_resources_customizer_attribute_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.CustomizerAttribute.type:type_name -> google.ads.googleads.v22.enums.CustomizerAttributeTypeEnum.CustomizerAttributeType + 2, // 1: google.ads.googleads.v22.resources.CustomizerAttribute.status:type_name -> google.ads.googleads.v22.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 @@ -229,26 +229,26 @@ var file_google_ads_googleads_v21_resources_customizer_attribute_proto_depIdxs = 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_customizer_attribute_proto_init() } -func file_google_ads_googleads_v21_resources_customizer_attribute_proto_init() { - if File_google_ads_googleads_v21_resources_customizer_attribute_proto != nil { +func init() { file_google_ads_googleads_v22_resources_customizer_attribute_proto_init() } +func file_google_ads_googleads_v22_resources_customizer_attribute_proto_init() { + if File_google_ads_googleads_v22_resources_customizer_attribute_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDesc), len(file_google_ads_googleads_v21_resources_customizer_attribute_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDesc), len(file_google_ads_googleads_v22_resources_customizer_attribute_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_customizer_attribute_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_customizer_attribute_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_customizer_attribute_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_customizer_attribute_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_customizer_attribute_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_customizer_attribute_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_customizer_attribute_proto = out.File - file_google_ads_googleads_v21_resources_customizer_attribute_proto_goTypes = nil - file_google_ads_googleads_v21_resources_customizer_attribute_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_customizer_attribute_proto = out.File + file_google_ads_googleads_v22_resources_customizer_attribute_proto_goTypes = nil + file_google_ads_googleads_v22_resources_customizer_attribute_proto_depIdxs = nil } diff --git a/resources/data_link.pb.go b/resources/data_link.pb.go index e6fa64e0..eeac0f55 100644 --- a/resources/data_link.pb.go +++ b/resources/data_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/data_link.proto +// source: google/ads/googleads/v22/resources/data_link.proto package resources @@ -53,9 +53,9 @@ type DataLink struct { // This field is read only. DataLinkId *int64 `protobuf:"varint,3,opt,name=data_link_id,json=dataLinkId,proto3,oneof" json:"data_link_id,omitempty"` // Output only. The type of the data. - Type enums.DataLinkTypeEnum_DataLinkType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v21.enums.DataLinkTypeEnum_DataLinkType" json:"type,omitempty"` + Type enums.DataLinkTypeEnum_DataLinkType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.DataLinkTypeEnum_DataLinkType" json:"type,omitempty"` // Output only. The status of the data link. - Status enums.DataLinkStatusEnum_DataLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v21.enums.DataLinkStatusEnum_DataLinkStatus" json:"status,omitempty"` + Status enums.DataLinkStatusEnum_DataLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.DataLinkStatusEnum_DataLinkStatus" json:"status,omitempty"` // Data linked to this account. // // Types that are valid to be assigned to DataLinkEntity: @@ -68,7 +68,7 @@ type DataLink struct { func (x *DataLink) Reset() { *x = DataLink{} - mi := &file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *DataLink) String() string { func (*DataLink) ProtoMessage() {} func (x *DataLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *DataLink) ProtoReflect() protoreflect.Message { // Deprecated: Use DataLink.ProtoReflect.Descriptor instead. func (*DataLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_data_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_data_link_proto_rawDescGZIP(), []int{0} } func (x *DataLink) GetResourceName() string { @@ -175,7 +175,7 @@ type YoutubeVideoIdentifier struct { func (x *YoutubeVideoIdentifier) Reset() { *x = YoutubeVideoIdentifier{} - mi := &file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -187,7 +187,7 @@ func (x *YoutubeVideoIdentifier) String() string { func (*YoutubeVideoIdentifier) ProtoMessage() {} func (x *YoutubeVideoIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -200,7 +200,7 @@ func (x *YoutubeVideoIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use YoutubeVideoIdentifier.ProtoReflect.Descriptor instead. func (*YoutubeVideoIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_data_link_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_data_link_proto_rawDescGZIP(), []int{1} } func (x *YoutubeVideoIdentifier) GetChannelId() string { @@ -217,20 +217,20 @@ func (x *YoutubeVideoIdentifier) GetVideoId() string { return "" } -var File_google_ads_googleads_v21_resources_data_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_data_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_data_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_data_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 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, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, 0x65, 0x68, 0x61, 0x76, 0x69, 0x6f, 0x72, 0x2e, @@ -250,19 +250,19 @@ var file_google_ads_googleads_v21_resources_data_link_proto_rawDesc = string([]b 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x56, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x66, 0x0a, 0x0d, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x05, 0x48, 0x00, 0x52, 0x0c, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x3a, 0x6a, 0xea, 0x41, 0x67, @@ -286,46 +286,46 @@ var file_google_ads_googleads_v21_resources_data_link_proto_rawDesc = string([]b 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x0b, 0x0a, 0x09, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x5f, 0x69, 0x64, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, 0x44, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_data_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_data_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_data_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_data_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_data_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_data_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_data_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_data_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_data_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_data_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_data_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_data_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_data_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_data_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_data_link_proto_rawDescData + return file_google_ads_googleads_v22_resources_data_link_proto_rawDescData } -var file_google_ads_googleads_v21_resources_data_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_data_link_proto_goTypes = []any{ - (*DataLink)(nil), // 0: google.ads.googleads.v21.resources.DataLink - (*YoutubeVideoIdentifier)(nil), // 1: google.ads.googleads.v21.resources.YoutubeVideoIdentifier - (enums.DataLinkTypeEnum_DataLinkType)(0), // 2: google.ads.googleads.v21.enums.DataLinkTypeEnum.DataLinkType - (enums.DataLinkStatusEnum_DataLinkStatus)(0), // 3: google.ads.googleads.v21.enums.DataLinkStatusEnum.DataLinkStatus +var file_google_ads_googleads_v22_resources_data_link_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_data_link_proto_goTypes = []any{ + (*DataLink)(nil), // 0: google.ads.googleads.v22.resources.DataLink + (*YoutubeVideoIdentifier)(nil), // 1: google.ads.googleads.v22.resources.YoutubeVideoIdentifier + (enums.DataLinkTypeEnum_DataLinkType)(0), // 2: google.ads.googleads.v22.enums.DataLinkTypeEnum.DataLinkType + (enums.DataLinkStatusEnum_DataLinkStatus)(0), // 3: google.ads.googleads.v22.enums.DataLinkStatusEnum.DataLinkStatus } -var file_google_ads_googleads_v21_resources_data_link_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.DataLink.type:type_name -> google.ads.googleads.v21.enums.DataLinkTypeEnum.DataLinkType - 3, // 1: google.ads.googleads.v21.resources.DataLink.status:type_name -> google.ads.googleads.v21.enums.DataLinkStatusEnum.DataLinkStatus - 1, // 2: google.ads.googleads.v21.resources.DataLink.youtube_video:type_name -> google.ads.googleads.v21.resources.YoutubeVideoIdentifier +var file_google_ads_googleads_v22_resources_data_link_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.DataLink.type:type_name -> google.ads.googleads.v22.enums.DataLinkTypeEnum.DataLinkType + 3, // 1: google.ads.googleads.v22.resources.DataLink.status:type_name -> google.ads.googleads.v22.enums.DataLinkStatusEnum.DataLinkStatus + 1, // 2: google.ads.googleads.v22.resources.DataLink.youtube_video:type_name -> google.ads.googleads.v22.resources.YoutubeVideoIdentifier 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 @@ -333,30 +333,30 @@ var file_google_ads_googleads_v21_resources_data_link_proto_depIdxs = []int32{ 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_data_link_proto_init() } -func file_google_ads_googleads_v21_resources_data_link_proto_init() { - if File_google_ads_googleads_v21_resources_data_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_data_link_proto_init() } +func file_google_ads_googleads_v22_resources_data_link_proto_init() { + if File_google_ads_googleads_v22_resources_data_link_proto != nil { return } - file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[0].OneofWrappers = []any{ (*DataLink_YoutubeVideo)(nil), } - file_google_ads_googleads_v21_resources_data_link_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_data_link_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_data_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_data_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_data_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_data_link_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_data_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_data_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_data_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_data_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_data_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_data_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_data_link_proto = out.File - file_google_ads_googleads_v21_resources_data_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_data_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_data_link_proto = out.File + file_google_ads_googleads_v22_resources_data_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_data_link_proto_depIdxs = nil } diff --git a/resources/detail_content_suitability_placement_view.pb.go b/resources/detail_content_suitability_placement_view.pb.go index 578a7c3f..c8150106 100644 --- a/resources/detail_content_suitability_placement_view.pb.go +++ b/resources/detail_content_suitability_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/detail_content_suitability_placement_view.proto +// source: google/ads/googleads/v22/resources/detail_content_suitability_placement_view.proto package resources @@ -38,7 +38,6 @@ const ( ) // A detail content suitability placement view. -// {-- next tag to use: 6 --} type DetailContentSuitabilityPlacementView struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. The resource name of the detail content suitability placement @@ -55,7 +54,7 @@ type DetailContentSuitabilityPlacementView struct { Placement string `protobuf:"bytes,3,opt,name=placement,proto3" json:"placement,omitempty"` // Output only. Represents the type of the placement, for example, Website, // YouTubeVideo and MobileApplication. - PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,4,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v21.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` + PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,4,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v22.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` // Output only. URL of the placement, for example, website, link to the mobile // application in app store, or a YouTube video URL. TargetUrl string `protobuf:"bytes,5,opt,name=target_url,json=targetUrl,proto3" json:"target_url,omitempty"` @@ -65,7 +64,7 @@ type DetailContentSuitabilityPlacementView struct { func (x *DetailContentSuitabilityPlacementView) Reset() { *x = DetailContentSuitabilityPlacementView{} - mi := &file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +76,7 @@ func (x *DetailContentSuitabilityPlacementView) String() string { func (*DetailContentSuitabilityPlacementView) ProtoMessage() {} func (x *DetailContentSuitabilityPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +89,7 @@ func (x *DetailContentSuitabilityPlacementView) ProtoReflect() protoreflect.Mess // Deprecated: Use DetailContentSuitabilityPlacementView.ProtoReflect.Descriptor instead. func (*DetailContentSuitabilityPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescGZIP(), []int{0} } func (x *DetailContentSuitabilityPlacementView) GetResourceName() string { @@ -128,19 +127,19 @@ func (x *DetailContentSuitabilityPlacementView) GetTargetUrl() string { return "" } -var File_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDesc = string([]byte{ 0x0a, 0x52, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, + 0x32, 0x32, 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, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, @@ -162,7 +161,7 @@ var file_google_ads_googleads_v21_resources_detail_content_suitability_placement 0x52, 0x09, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x6b, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -185,45 +184,45 @@ var file_google_ads_googleads_v21_resources_detail_content_suitability_placement 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x2a, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_goTypes = []any{ - (*DetailContentSuitabilityPlacementView)(nil), // 0: google.ads.googleads.v21.resources.DetailContentSuitabilityPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_goTypes = []any{ + (*DetailContentSuitabilityPlacementView)(nil), // 0: google.ads.googleads.v22.resources.DetailContentSuitabilityPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.DetailContentSuitabilityPlacementView.placement_type:type_name -> google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.DetailContentSuitabilityPlacementView.placement_type:type_name -> google.ads.googleads.v22.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 @@ -232,27 +231,27 @@ var file_google_ads_googleads_v21_resources_detail_content_suitability_placement } func init() { - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_init() + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto != nil { +func file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_detail_content_suitability_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_detail_content_suitability_placement_view_proto_depIdxs = nil } diff --git a/resources/detail_placement_view.pb.go b/resources/detail_placement_view.pb.go index a81fc02d..bd79e779 100644 --- a/resources/detail_placement_view.pb.go +++ b/resources/detail_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/detail_placement_view.proto +// source: google/ads/googleads/v22/resources/detail_placement_view.proto package resources @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *DetailPlacementView) Reset() { *x = DetailPlacementView{} - mi := &file_google_ads_googleads_v21_resources_detail_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detail_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *DetailPlacementView) String() string { func (*DetailPlacementView) ProtoMessage() {} func (x *DetailPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_detail_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detail_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *DetailPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use DetailPlacementView.ProtoReflect.Descriptor instead. func (*DetailPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescGZIP(), []int{0} } func (x *DetailPlacementView) GetResourceName() string { @@ -136,17 +136,17 @@ func (x *DetailPlacementView) GetPlacementType() enums.PlacementTypeEnum_Placeme return enums.PlacementTypeEnum_PlacementType(0) } -var File_google_ads_googleads_v21_resources_detail_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_detail_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -193,43 +193,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_detail_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_detail_placement_view_proto_goTypes = []any{ - (*DetailPlacementView)(nil), // 0: google.ads.googleads.v21.resources.DetailPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_detail_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_detail_placement_view_proto_goTypes = []any{ + (*DetailPlacementView)(nil), // 0: google.ads.googleads.v22.resources.DetailPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v21_resources_detail_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.DetailPlacementView.placement_type:type_name -> google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_detail_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.DetailPlacementView.placement_type:type_name -> google.ads.googleads.v22.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 @@ -237,27 +237,27 @@ var file_google_ads_googleads_v21_resources_detail_placement_view_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_detail_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_detail_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_detail_placement_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_detail_placement_view_proto_init() } +func file_google_ads_googleads_v22_resources_detail_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_detail_placement_view_proto != nil { return } - file_google_ads_googleads_v21_resources_detail_placement_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_detail_placement_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detail_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detail_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_detail_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_detail_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_detail_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_detail_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_detail_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_detail_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_detail_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_detail_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_detail_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_detail_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_detail_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_detail_placement_view_proto_depIdxs = nil } diff --git a/resources/detailed_demographic.pb.go b/resources/detailed_demographic.pb.go index 90a7bf6d..ac318c5b 100644 --- a/resources/detailed_demographic.pb.go +++ b/resources/detailed_demographic.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/detailed_demographic.proto +// source: google/ads/googleads/v22/resources/detailed_demographic.proto package resources @@ -64,7 +64,7 @@ type DetailedDemographic struct { func (x *DetailedDemographic) Reset() { *x = DetailedDemographic{} - mi := &file_google_ads_googleads_v21_resources_detailed_demographic_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detailed_demographic_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *DetailedDemographic) String() string { func (*DetailedDemographic) ProtoMessage() {} func (x *DetailedDemographic) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_detailed_demographic_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_detailed_demographic_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *DetailedDemographic) ProtoReflect() protoreflect.Message { // Deprecated: Use DetailedDemographic.ProtoReflect.Descriptor instead. func (*DetailedDemographic) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescGZIP(), []int{0} } func (x *DetailedDemographic) GetResourceName() string { @@ -134,17 +134,17 @@ func (x *DetailedDemographic) GetAvailabilities() []*common.CriterionCategoryAva return nil } -var File_google_ads_googleads_v21_resources_detailed_demographic_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_detailed_demographic_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x69, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -185,43 +185,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDescData + return file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDescData } -var file_google_ads_googleads_v21_resources_detailed_demographic_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_detailed_demographic_proto_goTypes = []any{ - (*DetailedDemographic)(nil), // 0: google.ads.googleads.v21.resources.DetailedDemographic - (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_detailed_demographic_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_detailed_demographic_proto_goTypes = []any{ + (*DetailedDemographic)(nil), // 0: google.ads.googleads.v22.resources.DetailedDemographic + (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v22.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v21_resources_detailed_demographic_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.DetailedDemographic.availabilities:type_name -> google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_detailed_demographic_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.DetailedDemographic.availabilities:type_name -> google.ads.googleads.v22.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 @@ -229,26 +229,26 @@ var file_google_ads_googleads_v21_resources_detailed_demographic_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_detailed_demographic_proto_init() } -func file_google_ads_googleads_v21_resources_detailed_demographic_proto_init() { - if File_google_ads_googleads_v21_resources_detailed_demographic_proto != nil { +func init() { file_google_ads_googleads_v22_resources_detailed_demographic_proto_init() } +func file_google_ads_googleads_v22_resources_detailed_demographic_proto_init() { + if File_google_ads_googleads_v22_resources_detailed_demographic_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDesc), len(file_google_ads_googleads_v21_resources_detailed_demographic_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDesc), len(file_google_ads_googleads_v22_resources_detailed_demographic_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_detailed_demographic_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_detailed_demographic_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_detailed_demographic_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_detailed_demographic_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_detailed_demographic_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_detailed_demographic_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_detailed_demographic_proto = out.File - file_google_ads_googleads_v21_resources_detailed_demographic_proto_goTypes = nil - file_google_ads_googleads_v21_resources_detailed_demographic_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_detailed_demographic_proto = out.File + file_google_ads_googleads_v22_resources_detailed_demographic_proto_goTypes = nil + file_google_ads_googleads_v22_resources_detailed_demographic_proto_depIdxs = nil } diff --git a/resources/display_keyword_view.pb.go b/resources/display_keyword_view.pb.go index d555fdd0..abc70ff2 100644 --- a/resources/display_keyword_view.pb.go +++ b/resources/display_keyword_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/display_keyword_view.proto +// source: google/ads/googleads/v22/resources/display_keyword_view.proto package resources @@ -50,7 +50,7 @@ type DisplayKeywordView struct { func (x *DisplayKeywordView) Reset() { *x = DisplayKeywordView{} - mi := &file_google_ads_googleads_v21_resources_display_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_display_keyword_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *DisplayKeywordView) String() string { func (*DisplayKeywordView) ProtoMessage() {} func (x *DisplayKeywordView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_display_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_display_keyword_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *DisplayKeywordView) ProtoReflect() protoreflect.Message { // Deprecated: Use DisplayKeywordView.ProtoReflect.Descriptor instead. func (*DisplayKeywordView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescGZIP(), []int{0} } func (x *DisplayKeywordView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *DisplayKeywordView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_display_keyword_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_display_keyword_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_display_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_display_keyword_view_proto_goTypes = []any{ - (*DisplayKeywordView)(nil), // 0: google.ads.googleads.v21.resources.DisplayKeywordView +var file_google_ads_googleads_v22_resources_display_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_display_keyword_view_proto_goTypes = []any{ + (*DisplayKeywordView)(nil), // 0: google.ads.googleads.v22.resources.DisplayKeywordView } -var file_google_ads_googleads_v21_resources_display_keyword_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -156,26 +156,26 @@ var file_google_ads_googleads_v21_resources_display_keyword_view_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_display_keyword_view_proto_init() } -func file_google_ads_googleads_v21_resources_display_keyword_view_proto_init() { - if File_google_ads_googleads_v21_resources_display_keyword_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_display_keyword_view_proto_init() } +func file_google_ads_googleads_v22_resources_display_keyword_view_proto_init() { + if File_google_ads_googleads_v22_resources_display_keyword_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_display_keyword_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_display_keyword_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_display_keyword_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_display_keyword_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_display_keyword_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_display_keyword_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_display_keyword_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_display_keyword_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_display_keyword_view_proto = out.File - file_google_ads_googleads_v21_resources_display_keyword_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_display_keyword_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_display_keyword_view_proto = out.File + file_google_ads_googleads_v22_resources_display_keyword_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_display_keyword_view_proto_depIdxs = nil } diff --git a/resources/distance_view.pb.go b/resources/distance_view.pb.go index 9b951c40..9c823d0b 100644 --- a/resources/distance_view.pb.go +++ b/resources/distance_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/distance_view.proto +// source: google/ads/googleads/v22/resources/distance_view.proto package resources @@ -50,7 +50,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.v21.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.v22.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"` @@ -60,7 +60,7 @@ type DistanceView struct { func (x *DistanceView) Reset() { *x = DistanceView{} - mi := &file_google_ads_googleads_v21_resources_distance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_distance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *DistanceView) String() string { func (*DistanceView) ProtoMessage() {} func (x *DistanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_distance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_distance_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *DistanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use DistanceView.ProtoReflect.Descriptor instead. func (*DistanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_distance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_distance_view_proto_rawDescGZIP(), []int{0} } func (x *DistanceView) GetResourceName() string { @@ -109,17 +109,17 @@ func (x *DistanceView) GetMetricSystem() bool { return false } -var File_google_ads_googleads_v21_resources_distance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_distance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_distance_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x34, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x69, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -134,7 +134,7 @@ var file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x69, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,42 +152,42 @@ var file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc = string 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x11, 0x44, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_distance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_distance_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_distance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_distance_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_distance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_distance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_distance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_distance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_distance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_distance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_distance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_distance_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_distance_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_distance_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_distance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_distance_view_proto_goTypes = []any{ - (*DistanceView)(nil), // 0: google.ads.googleads.v21.resources.DistanceView - (enums.DistanceBucketEnum_DistanceBucket)(0), // 1: google.ads.googleads.v21.enums.DistanceBucketEnum.DistanceBucket +var file_google_ads_googleads_v22_resources_distance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_distance_view_proto_goTypes = []any{ + (*DistanceView)(nil), // 0: google.ads.googleads.v22.resources.DistanceView + (enums.DistanceBucketEnum_DistanceBucket)(0), // 1: google.ads.googleads.v22.enums.DistanceBucketEnum.DistanceBucket } -var file_google_ads_googleads_v21_resources_distance_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.DistanceView.distance_bucket:type_name -> google.ads.googleads.v21.enums.DistanceBucketEnum.DistanceBucket +var file_google_ads_googleads_v22_resources_distance_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.DistanceView.distance_bucket:type_name -> google.ads.googleads.v22.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 @@ -195,27 +195,27 @@ var file_google_ads_googleads_v21_resources_distance_view_proto_depIdxs = []int3 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_distance_view_proto_init() } -func file_google_ads_googleads_v21_resources_distance_view_proto_init() { - if File_google_ads_googleads_v21_resources_distance_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_distance_view_proto_init() } +func file_google_ads_googleads_v22_resources_distance_view_proto_init() { + if File_google_ads_googleads_v22_resources_distance_view_proto != nil { return } - file_google_ads_googleads_v21_resources_distance_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_distance_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_distance_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_distance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_distance_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_distance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_distance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_distance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_distance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_distance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_distance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_distance_view_proto = out.File - file_google_ads_googleads_v21_resources_distance_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_distance_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_distance_view_proto = out.File + file_google_ads_googleads_v22_resources_distance_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_distance_view_proto_depIdxs = nil } diff --git a/resources/domain_category.pb.go b/resources/domain_category.pb.go index 07354d6a..1628334c 100644 --- a/resources/domain_category.pb.go +++ b/resources/domain_category.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/domain_category.proto +// source: google/ads/googleads/v22/resources/domain_category.proto package resources @@ -78,7 +78,7 @@ type DomainCategory struct { func (x *DomainCategory) Reset() { *x = DomainCategory{} - mi := &file_google_ads_googleads_v21_resources_domain_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_domain_category_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *DomainCategory) String() string { func (*DomainCategory) ProtoMessage() {} func (x *DomainCategory) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_domain_category_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_domain_category_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *DomainCategory) ProtoReflect() protoreflect.Message { // Deprecated: Use DomainCategory.ProtoReflect.Descriptor instead. func (*DomainCategory) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_domain_category_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_domain_category_proto_rawDescGZIP(), []int{0} } func (x *DomainCategory) GetResourceName() string { @@ -169,15 +169,15 @@ func (x *DomainCategory) GetRecommendedCpcBidMicros() int64 { return 0 } -var File_google_ads_googleads_v21_resources_domain_category_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_domain_category_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_domain_category_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -233,41 +233,41 @@ var file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_domain_category_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_domain_category_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_domain_category_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_domain_category_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_domain_category_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_domain_category_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_domain_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc), len(file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_domain_category_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_domain_category_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_domain_category_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_domain_category_proto_rawDesc), len(file_google_ads_googleads_v22_resources_domain_category_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_domain_category_proto_rawDescData + return file_google_ads_googleads_v22_resources_domain_category_proto_rawDescData } -var file_google_ads_googleads_v21_resources_domain_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_domain_category_proto_goTypes = []any{ - (*DomainCategory)(nil), // 0: google.ads.googleads.v21.resources.DomainCategory +var file_google_ads_googleads_v22_resources_domain_category_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_domain_category_proto_goTypes = []any{ + (*DomainCategory)(nil), // 0: google.ads.googleads.v22.resources.DomainCategory } -var file_google_ads_googleads_v21_resources_domain_category_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -275,27 +275,27 @@ var file_google_ads_googleads_v21_resources_domain_category_proto_depIdxs = []in 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_domain_category_proto_init() } -func file_google_ads_googleads_v21_resources_domain_category_proto_init() { - if File_google_ads_googleads_v21_resources_domain_category_proto != nil { +func init() { file_google_ads_googleads_v22_resources_domain_category_proto_init() } +func file_google_ads_googleads_v22_resources_domain_category_proto_init() { + if File_google_ads_googleads_v22_resources_domain_category_proto != nil { return } - file_google_ads_googleads_v21_resources_domain_category_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_domain_category_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc), len(file_google_ads_googleads_v21_resources_domain_category_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_domain_category_proto_rawDesc), len(file_google_ads_googleads_v22_resources_domain_category_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_domain_category_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_domain_category_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_domain_category_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_domain_category_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_domain_category_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_domain_category_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_domain_category_proto = out.File - file_google_ads_googleads_v21_resources_domain_category_proto_goTypes = nil - file_google_ads_googleads_v21_resources_domain_category_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_domain_category_proto = out.File + file_google_ads_googleads_v22_resources_domain_category_proto_goTypes = nil + file_google_ads_googleads_v22_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 175df793..de7cb39a 100644 --- a/resources/dynamic_search_ads_search_term_view.pb.go +++ b/resources/dynamic_search_ads_search_term_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/dynamic_search_ads_search_term_view.proto +// source: google/ads/googleads/v22/resources/dynamic_search_ads_search_term_view.proto package resources @@ -78,7 +78,7 @@ type DynamicSearchAdsSearchTermView struct { func (x *DynamicSearchAdsSearchTermView) Reset() { *x = DynamicSearchAdsSearchTermView{} - mi := &file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *DynamicSearchAdsSearchTermView) String() string { func (*DynamicSearchAdsSearchTermView) ProtoMessage() {} func (x *DynamicSearchAdsSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *DynamicSearchAdsSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use DynamicSearchAdsSearchTermView.ProtoReflect.Descriptor instead. func (*DynamicSearchAdsSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *DynamicSearchAdsSearchTermView) GetResourceName() string { @@ -162,16 +162,16 @@ func (x *DynamicSearchAdsSearchTermView) GetHasNegativeUrl() bool { return false } -var File_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -230,42 +230,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x23, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_goTypes = []any{ - (*DynamicSearchAdsSearchTermView)(nil), // 0: google.ads.googleads.v21.resources.DynamicSearchAdsSearchTermView +var file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_goTypes = []any{ + (*DynamicSearchAdsSearchTermView)(nil), // 0: google.ads.googleads.v22.resources.DynamicSearchAdsSearchTermView } -var file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -273,27 +273,27 @@ var file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_init() } -func file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_init() { - if File_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_init() } +func file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_init() { + if File_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto != nil { return } - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto = out.File - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_dynamic_search_ads_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto = out.File + file_google_ads_googleads_v22_resources_dynamic_search_ads_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 9b2b001b..8cebe349 100644 --- a/resources/expanded_landing_page_view.pb.go +++ b/resources/expanded_landing_page_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/expanded_landing_page_view.proto +// source: google/ads/googleads/v22/resources/expanded_landing_page_view.proto package resources @@ -53,7 +53,7 @@ type ExpandedLandingPageView struct { func (x *ExpandedLandingPageView) Reset() { *x = ExpandedLandingPageView{} - mi := &file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *ExpandedLandingPageView) String() string { func (*ExpandedLandingPageView) ProtoMessage() {} func (x *ExpandedLandingPageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *ExpandedLandingPageView) ProtoReflect() protoreflect.Message { // Deprecated: Use ExpandedLandingPageView.ProtoReflect.Descriptor instead. func (*ExpandedLandingPageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescGZIP(), []int{0} } func (x *ExpandedLandingPageView) GetResourceName() string { @@ -95,15 +95,15 @@ func (x *ExpandedLandingPageView) GetExpandedFinalUrl() string { return "" } -var File_google_ads_googleads_v21_resources_expanded_landing_page_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_expanded_landing_page_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -131,42 +131,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_goTypes = []any{ - (*ExpandedLandingPageView)(nil), // 0: google.ads.googleads.v21.resources.ExpandedLandingPageView +var file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_goTypes = []any{ + (*ExpandedLandingPageView)(nil), // 0: google.ads.googleads.v22.resources.ExpandedLandingPageView } -var file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -174,27 +174,27 @@ var file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_init() } -func file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_init() { - if File_google_ads_googleads_v21_resources_expanded_landing_page_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_init() } +func file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_init() { + if File_google_ads_googleads_v22_resources_expanded_landing_page_view_proto != nil { return } - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_expanded_landing_page_view_proto = out.File - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_expanded_landing_page_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_expanded_landing_page_view_proto = out.File + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_expanded_landing_page_view_proto_depIdxs = nil } diff --git a/resources/experiment.pb.go b/resources/experiment.pb.go index 1bc2ccbb..10f28c99 100644 --- a/resources/experiment.pb.go +++ b/resources/experiment.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/experiment.proto +// source: google/ads/googleads/v22/resources/experiment.proto package resources @@ -61,9 +61,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.v21.enums.ExperimentTypeEnum_ExperimentType" json:"type,omitempty"` + Type enums.ExperimentTypeEnum_ExperimentType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.ExperimentStatusEnum_ExperimentStatus" json:"status,omitempty"` + Status enums.ExperimentStatusEnum_ExperimentStatus `protobuf:"varint,14,opt,name=status,proto3,enum=google.ads.googleads.v22.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 @@ -86,7 +86,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.v21.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.v22.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. @@ -97,7 +97,7 @@ type Experiment struct { func (x *Experiment) Reset() { *x = Experiment{} - mi := &file_google_ads_googleads_v21_resources_experiment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_experiment_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -109,7 +109,7 @@ func (x *Experiment) String() string { func (*Experiment) ProtoMessage() {} func (x *Experiment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_experiment_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_experiment_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -122,7 +122,7 @@ func (x *Experiment) ProtoReflect() protoreflect.Message { // Deprecated: Use Experiment.ProtoReflect.Descriptor instead. func (*Experiment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_experiment_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_experiment_proto_rawDescGZIP(), []int{0} } func (x *Experiment) GetResourceName() string { @@ -216,27 +216,27 @@ func (x *Experiment) GetSyncEnabled() bool { return false } -var File_google_ads_googleads_v21_resources_experiment_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_experiment_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_experiment_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_experiment_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6d, 0x65, 0x74, 0x72, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x79, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -258,13 +258,13 @@ var file_google_ads_googleads_v21_resources_experiment_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -274,7 +274,7 @@ var file_google_ads_googleads_v21_resources_experiment_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -283,7 +283,7 @@ var file_google_ads_googleads_v21_resources_experiment_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -303,49 +303,49 @@ var file_google_ads_googleads_v21_resources_experiment_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_experiment_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_experiment_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_experiment_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_experiment_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_experiment_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_experiment_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_experiment_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_experiment_proto_rawDesc), len(file_google_ads_googleads_v21_resources_experiment_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_experiment_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_experiment_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_experiment_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_experiment_proto_rawDesc), len(file_google_ads_googleads_v22_resources_experiment_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_experiment_proto_rawDescData + return file_google_ads_googleads_v22_resources_experiment_proto_rawDescData } -var file_google_ads_googleads_v21_resources_experiment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_experiment_proto_goTypes = []any{ - (*Experiment)(nil), // 0: google.ads.googleads.v21.resources.Experiment - (enums.ExperimentTypeEnum_ExperimentType)(0), // 1: google.ads.googleads.v21.enums.ExperimentTypeEnum.ExperimentType - (enums.ExperimentStatusEnum_ExperimentStatus)(0), // 2: google.ads.googleads.v21.enums.ExperimentStatusEnum.ExperimentStatus - (*common.MetricGoal)(nil), // 3: google.ads.googleads.v21.common.MetricGoal - (enums.AsyncActionStatusEnum_AsyncActionStatus)(0), // 4: google.ads.googleads.v21.enums.AsyncActionStatusEnum.AsyncActionStatus +var file_google_ads_googleads_v22_resources_experiment_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_experiment_proto_goTypes = []any{ + (*Experiment)(nil), // 0: google.ads.googleads.v22.resources.Experiment + (enums.ExperimentTypeEnum_ExperimentType)(0), // 1: google.ads.googleads.v22.enums.ExperimentTypeEnum.ExperimentType + (enums.ExperimentStatusEnum_ExperimentStatus)(0), // 2: google.ads.googleads.v22.enums.ExperimentStatusEnum.ExperimentStatus + (*common.MetricGoal)(nil), // 3: google.ads.googleads.v22.common.MetricGoal + (enums.AsyncActionStatusEnum_AsyncActionStatus)(0), // 4: google.ads.googleads.v22.enums.AsyncActionStatusEnum.AsyncActionStatus } -var file_google_ads_googleads_v21_resources_experiment_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.Experiment.type:type_name -> google.ads.googleads.v21.enums.ExperimentTypeEnum.ExperimentType - 2, // 1: google.ads.googleads.v21.resources.Experiment.status:type_name -> google.ads.googleads.v21.enums.ExperimentStatusEnum.ExperimentStatus - 3, // 2: google.ads.googleads.v21.resources.Experiment.goals:type_name -> google.ads.googleads.v21.common.MetricGoal - 4, // 3: google.ads.googleads.v21.resources.Experiment.promote_status:type_name -> google.ads.googleads.v21.enums.AsyncActionStatusEnum.AsyncActionStatus +var file_google_ads_googleads_v22_resources_experiment_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Experiment.type:type_name -> google.ads.googleads.v22.enums.ExperimentTypeEnum.ExperimentType + 2, // 1: google.ads.googleads.v22.resources.Experiment.status:type_name -> google.ads.googleads.v22.enums.ExperimentStatusEnum.ExperimentStatus + 3, // 2: google.ads.googleads.v22.resources.Experiment.goals:type_name -> google.ads.googleads.v22.common.MetricGoal + 4, // 3: google.ads.googleads.v22.resources.Experiment.promote_status:type_name -> google.ads.googleads.v22.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 @@ -353,27 +353,27 @@ var file_google_ads_googleads_v21_resources_experiment_proto_depIdxs = []int32{ 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_experiment_proto_init() } -func file_google_ads_googleads_v21_resources_experiment_proto_init() { - if File_google_ads_googleads_v21_resources_experiment_proto != nil { +func init() { file_google_ads_googleads_v22_resources_experiment_proto_init() } +func file_google_ads_googleads_v22_resources_experiment_proto_init() { + if File_google_ads_googleads_v22_resources_experiment_proto != nil { return } - file_google_ads_googleads_v21_resources_experiment_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_experiment_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_experiment_proto_rawDesc), len(file_google_ads_googleads_v21_resources_experiment_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_experiment_proto_rawDesc), len(file_google_ads_googleads_v22_resources_experiment_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_experiment_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_experiment_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_experiment_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_experiment_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_experiment_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_experiment_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_experiment_proto = out.File - file_google_ads_googleads_v21_resources_experiment_proto_goTypes = nil - file_google_ads_googleads_v21_resources_experiment_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_experiment_proto = out.File + file_google_ads_googleads_v22_resources_experiment_proto_goTypes = nil + file_google_ads_googleads_v22_resources_experiment_proto_depIdxs = nil } diff --git a/resources/experimentarm.pb.go b/resources/experimentarm.pb.go index 4c647be9..03e3517a 100644 --- a/resources/experimentarm.pb.go +++ b/resources/experimentarm.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/experiment_arm.proto +// source: google/ads/googleads/v22/resources/experiment_arm.proto package resources @@ -66,7 +66,7 @@ type ExperimentArm struct { func (x *ExperimentArm) Reset() { *x = ExperimentArm{} - mi := &file_google_ads_googleads_v21_resources_experiment_arm_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_experiment_arm_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *ExperimentArm) String() string { func (*ExperimentArm) ProtoMessage() {} func (x *ExperimentArm) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_experiment_arm_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_experiment_arm_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *ExperimentArm) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentArm.ProtoReflect.Descriptor instead. func (*ExperimentArm) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescGZIP(), []int{0} } func (x *ExperimentArm) GetResourceName() string { @@ -143,15 +143,15 @@ func (x *ExperimentArm) GetInDesignCampaigns() []string { return nil } -var File_google_ads_googleads_v21_resources_experiment_arm_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_experiment_arm_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -191,41 +191,41 @@ var file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc), len(file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDesc), len(file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDescData + return file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDescData } -var file_google_ads_googleads_v21_resources_experiment_arm_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_experiment_arm_proto_goTypes = []any{ - (*ExperimentArm)(nil), // 0: google.ads.googleads.v21.resources.ExperimentArm +var file_google_ads_googleads_v22_resources_experiment_arm_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_experiment_arm_proto_goTypes = []any{ + (*ExperimentArm)(nil), // 0: google.ads.googleads.v22.resources.ExperimentArm } -var file_google_ads_googleads_v21_resources_experiment_arm_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -233,26 +233,26 @@ var file_google_ads_googleads_v21_resources_experiment_arm_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_experiment_arm_proto_init() } -func file_google_ads_googleads_v21_resources_experiment_arm_proto_init() { - if File_google_ads_googleads_v21_resources_experiment_arm_proto != nil { +func init() { file_google_ads_googleads_v22_resources_experiment_arm_proto_init() } +func file_google_ads_googleads_v22_resources_experiment_arm_proto_init() { + if File_google_ads_googleads_v22_resources_experiment_arm_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc), len(file_google_ads_googleads_v21_resources_experiment_arm_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDesc), len(file_google_ads_googleads_v22_resources_experiment_arm_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_experiment_arm_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_experiment_arm_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_experiment_arm_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_experiment_arm_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_experiment_arm_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_experiment_arm_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_experiment_arm_proto = out.File - file_google_ads_googleads_v21_resources_experiment_arm_proto_goTypes = nil - file_google_ads_googleads_v21_resources_experiment_arm_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_experiment_arm_proto = out.File + file_google_ads_googleads_v22_resources_experiment_arm_proto_goTypes = nil + file_google_ads_googleads_v22_resources_experiment_arm_proto_depIdxs = nil } diff --git a/resources/final_url_expansion_asset_view.pb.go b/resources/final_url_expansion_asset_view.pb.go index 95de2fc9..4b7d2005 100644 --- a/resources/final_url_expansion_asset_view.pb.go +++ b/resources/final_url_expansion_asset_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/final_url_expansion_asset_view.proto +// source: google/ads/googleads/v22/resources/final_url_expansion_asset_view.proto package resources @@ -47,9 +47,9 @@ type FinalUrlExpansionAssetView struct { // Output only. The ID of the asset. Asset *string `protobuf:"bytes,3,opt,name=asset,proto3,oneof" json:"asset,omitempty"` // Output only. The field type of the asset. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,4,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` // Output only. Status of the FinalUrlExpansionAsset. - Status *enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v21.enums.AssetLinkStatusEnum_AssetLinkStatus,oneof" json:"status,omitempty"` + Status *enums.AssetLinkStatusEnum_AssetLinkStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.AssetLinkStatusEnum_AssetLinkStatus,oneof" json:"status,omitempty"` // Output only. Final URL of the FinalUrlExpansionAsset. FinalUrl string `protobuf:"bytes,6,opt,name=final_url,json=finalUrl,proto3" json:"final_url,omitempty"` // Serving level of FinalUrlExpansionAsset. @@ -65,7 +65,7 @@ type FinalUrlExpansionAssetView struct { func (x *FinalUrlExpansionAssetView) Reset() { *x = FinalUrlExpansionAssetView{} - mi := &file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *FinalUrlExpansionAssetView) String() string { func (*FinalUrlExpansionAssetView) ProtoMessage() {} func (x *FinalUrlExpansionAssetView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *FinalUrlExpansionAssetView) ProtoReflect() protoreflect.Message { // Deprecated: Use FinalUrlExpansionAssetView.ProtoReflect.Descriptor instead. func (*FinalUrlExpansionAssetView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescGZIP(), []int{0} } func (x *FinalUrlExpansionAssetView) GetResourceName() string { @@ -178,21 +178,21 @@ func (*FinalUrlExpansionAssetView_AdGroup) isFinalUrlExpansionAssetView_Level() func (*FinalUrlExpansionAssetView_AssetGroup) isFinalUrlExpansionAssetView_Level() {} -var File_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x35, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x36, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, - 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x1f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x62, @@ -218,13 +218,13 @@ var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, @@ -258,45 +258,45 @@ var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto 0x0a, 0x06, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_goTypes = []any{ - (*FinalUrlExpansionAssetView)(nil), // 0: google.ads.googleads.v21.resources.FinalUrlExpansionAssetView - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus +var file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_goTypes = []any{ + (*FinalUrlExpansionAssetView)(nil), // 0: google.ads.googleads.v22.resources.FinalUrlExpansionAssetView + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 1: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetLinkStatusEnum_AssetLinkStatus)(0), // 2: google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus } -var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.FinalUrlExpansionAssetView.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 2, // 1: google.ads.googleads.v21.resources.FinalUrlExpansionAssetView.status:type_name -> google.ads.googleads.v21.enums.AssetLinkStatusEnum.AssetLinkStatus +var file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.FinalUrlExpansionAssetView.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 2, // 1: google.ads.googleads.v22.resources.FinalUrlExpansionAssetView.status:type_name -> google.ads.googleads.v22.enums.AssetLinkStatusEnum.AssetLinkStatus 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 @@ -304,12 +304,12 @@ var file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_init() } -func file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_init() { - if File_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_init() } +func file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_init() { + if File_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto != nil { return } - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_msgTypes[0].OneofWrappers = []any{ (*FinalUrlExpansionAssetView_AdGroup)(nil), (*FinalUrlExpansionAssetView_AssetGroup)(nil), } @@ -317,17 +317,17 @@ func file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto = out.File - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_final_url_expansion_asset_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto = out.File + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_final_url_expansion_asset_view_proto_depIdxs = nil } diff --git a/resources/gender_view.pb.go b/resources/gender_view.pb.go index 6c36a928..90501cd4 100644 --- a/resources/gender_view.pb.go +++ b/resources/gender_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/gender_view.proto +// source: google/ads/googleads/v22/resources/gender_view.proto package resources @@ -53,7 +53,7 @@ type GenderView struct { func (x *GenderView) Reset() { *x = GenderView{} - mi := &file_google_ads_googleads_v21_resources_gender_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_gender_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *GenderView) String() string { func (*GenderView) ProtoMessage() {} func (x *GenderView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_gender_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_gender_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *GenderView) ProtoReflect() protoreflect.Message { // Deprecated: Use GenderView.ProtoReflect.Descriptor instead. func (*GenderView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_gender_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_gender_view_proto_rawDescGZIP(), []int{0} } func (x *GenderView) GetResourceName() string { @@ -88,14 +88,14 @@ func (x *GenderView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_gender_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_gender_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_gender_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -115,40 +115,40 @@ var file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc = string([ 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0f, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_gender_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_gender_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_gender_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_gender_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_gender_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_gender_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_gender_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_gender_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_gender_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_gender_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_gender_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_gender_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_gender_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_gender_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_gender_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_gender_view_proto_goTypes = []any{ - (*GenderView)(nil), // 0: google.ads.googleads.v21.resources.GenderView +var file_google_ads_googleads_v22_resources_gender_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_gender_view_proto_goTypes = []any{ + (*GenderView)(nil), // 0: google.ads.googleads.v22.resources.GenderView } -var file_google_ads_googleads_v21_resources_gender_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -156,26 +156,26 @@ var file_google_ads_googleads_v21_resources_gender_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_gender_view_proto_init() } -func file_google_ads_googleads_v21_resources_gender_view_proto_init() { - if File_google_ads_googleads_v21_resources_gender_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_gender_view_proto_init() } +func file_google_ads_googleads_v22_resources_gender_view_proto_init() { + if File_google_ads_googleads_v22_resources_gender_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_gender_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_gender_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_gender_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_gender_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_gender_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_gender_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_gender_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_gender_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_gender_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_gender_view_proto = out.File - file_google_ads_googleads_v21_resources_gender_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_gender_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_gender_view_proto = out.File + file_google_ads_googleads_v22_resources_gender_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_gender_view_proto_depIdxs = nil } diff --git a/resources/geo_target_constant.pb.go b/resources/geo_target_constant.pb.go index e98cf3fb..4ba93656 100644 --- a/resources/geo_target_constant.pb.go +++ b/resources/geo_target_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/geo_target_constant.proto +// source: google/ads/googleads/v22/resources/geo_target_constant.proto package resources @@ -55,7 +55,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.v21.enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus" json:"status,omitempty"` + Status enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -70,7 +70,7 @@ type GeoTargetConstant struct { func (x *GeoTargetConstant) Reset() { *x = GeoTargetConstant{} - mi := &file_google_ads_googleads_v21_resources_geo_target_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_geo_target_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82,7 +82,7 @@ func (x *GeoTargetConstant) String() string { func (*GeoTargetConstant) ProtoMessage() {} func (x *GeoTargetConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_geo_target_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_geo_target_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95,7 +95,7 @@ func (x *GeoTargetConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetConstant.ProtoReflect.Descriptor instead. func (*GeoTargetConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescGZIP(), []int{0} } func (x *GeoTargetConstant) GetResourceName() string { @@ -154,17 +154,17 @@ func (x *GeoTargetConstant) GetParentGeoTarget() string { return "" } -var File_google_ads_googleads_v21_resources_geo_target_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_geo_target_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -189,7 +189,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -216,43 +216,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_geo_target_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_geo_target_constant_proto_goTypes = []any{ - (*GeoTargetConstant)(nil), // 0: google.ads.googleads.v21.resources.GeoTargetConstant - (enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 1: google.ads.googleads.v21.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus +var file_google_ads_googleads_v22_resources_geo_target_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_geo_target_constant_proto_goTypes = []any{ + (*GeoTargetConstant)(nil), // 0: google.ads.googleads.v22.resources.GeoTargetConstant + (enums.GeoTargetConstantStatusEnum_GeoTargetConstantStatus)(0), // 1: google.ads.googleads.v22.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus } -var file_google_ads_googleads_v21_resources_geo_target_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.GeoTargetConstant.status:type_name -> google.ads.googleads.v21.enums.GeoTargetConstantStatusEnum.GeoTargetConstantStatus +var file_google_ads_googleads_v22_resources_geo_target_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.GeoTargetConstant.status:type_name -> google.ads.googleads.v22.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 @@ -260,27 +260,27 @@ var file_google_ads_googleads_v21_resources_geo_target_constant_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_geo_target_constant_proto_init() } -func file_google_ads_googleads_v21_resources_geo_target_constant_proto_init() { - if File_google_ads_googleads_v21_resources_geo_target_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_geo_target_constant_proto_init() } +func file_google_ads_googleads_v22_resources_geo_target_constant_proto_init() { + if File_google_ads_googleads_v22_resources_geo_target_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_geo_target_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_geo_target_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_geo_target_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_geo_target_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_geo_target_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_geo_target_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_geo_target_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_geo_target_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_geo_target_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_geo_target_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_geo_target_constant_proto = out.File - file_google_ads_googleads_v21_resources_geo_target_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_geo_target_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_geo_target_constant_proto = out.File + file_google_ads_googleads_v22_resources_geo_target_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_geo_target_constant_proto_depIdxs = nil } diff --git a/resources/geographic_view.pb.go b/resources/geographic_view.pb.go index d4754a60..93813f50 100644 --- a/resources/geographic_view.pb.go +++ b/resources/geographic_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/geographic_view.proto +// source: google/ads/googleads/v22/resources/geographic_view.proto package resources @@ -51,7 +51,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -60,7 +60,7 @@ type GeographicView struct { func (x *GeographicView) Reset() { *x = GeographicView{} - mi := &file_google_ads_googleads_v21_resources_geographic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_geographic_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *GeographicView) String() string { func (*GeographicView) ProtoMessage() {} func (x *GeographicView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_geographic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_geographic_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *GeographicView) ProtoReflect() protoreflect.Message { // Deprecated: Use GeographicView.ProtoReflect.Descriptor instead. func (*GeographicView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescGZIP(), []int{0} } func (x *GeographicView) GetResourceName() string { @@ -109,17 +109,17 @@ func (x *GeographicView) GetCountryCriterionId() int64 { return 0 } -var File_google_ads_googleads_v21_resources_geographic_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_geographic_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_geographic_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x37, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -134,7 +134,7 @@ var file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -154,42 +154,42 @@ var file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, 0x47, 0x65, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_geographic_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_geographic_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_geographic_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_geographic_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_geographic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_geographic_view_proto_goTypes = []any{ - (*GeographicView)(nil), // 0: google.ads.googleads.v21.resources.GeographicView - (enums.GeoTargetingTypeEnum_GeoTargetingType)(0), // 1: google.ads.googleads.v21.enums.GeoTargetingTypeEnum.GeoTargetingType +var file_google_ads_googleads_v22_resources_geographic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_geographic_view_proto_goTypes = []any{ + (*GeographicView)(nil), // 0: google.ads.googleads.v22.resources.GeographicView + (enums.GeoTargetingTypeEnum_GeoTargetingType)(0), // 1: google.ads.googleads.v22.enums.GeoTargetingTypeEnum.GeoTargetingType } -var file_google_ads_googleads_v21_resources_geographic_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.GeographicView.location_type:type_name -> google.ads.googleads.v21.enums.GeoTargetingTypeEnum.GeoTargetingType +var file_google_ads_googleads_v22_resources_geographic_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.GeographicView.location_type:type_name -> google.ads.googleads.v22.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 @@ -197,27 +197,27 @@ var file_google_ads_googleads_v21_resources_geographic_view_proto_depIdxs = []in 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_geographic_view_proto_init() } -func file_google_ads_googleads_v21_resources_geographic_view_proto_init() { - if File_google_ads_googleads_v21_resources_geographic_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_geographic_view_proto_init() } +func file_google_ads_googleads_v22_resources_geographic_view_proto_init() { + if File_google_ads_googleads_v22_resources_geographic_view_proto != nil { return } - file_google_ads_googleads_v21_resources_geographic_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_geographic_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_geographic_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_geographic_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_geographic_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_geographic_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_geographic_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_geographic_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_geographic_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_geographic_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_geographic_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_geographic_view_proto = out.File - file_google_ads_googleads_v21_resources_geographic_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_geographic_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_geographic_view_proto = out.File + file_google_ads_googleads_v22_resources_geographic_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_geographic_view_proto_depIdxs = nil } diff --git a/resources/goal.pb.go b/resources/goal.pb.go new file mode 100644 index 00000000..918699d6 --- /dev/null +++ b/resources/goal.pb.go @@ -0,0 +1,298 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/resources/goal.proto + +package resources + +import ( + common "github.com/shenzhencenter/google-ads-pb/common" + 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" + unsafe "unsafe" +) + +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) +) + +// Representation of goals. +type Goal struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Immutable. The resource name of the goal. + // Goal resource names have the form: + // `customers/{customer_id}/goals/{goal_id}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + // Output only. The ID of this goal. + GoalId *int64 `protobuf:"varint,2,opt,name=goal_id,json=goalId,proto3,oneof" json:"goal_id,omitempty"` + // Output only. The type of this goal. + GoalType enums.GoalTypeEnum_GoalType `protobuf:"varint,3,opt,name=goal_type,json=goalType,proto3,enum=google.ads.googleads.v22.enums.GoalTypeEnum_GoalType" json:"goal_type,omitempty"` + // Output only. The resource name of the goal owner customer. + OwnerCustomer *string `protobuf:"bytes,4,opt,name=owner_customer,json=ownerCustomer,proto3,oneof" json:"owner_customer,omitempty"` + // Output only. Indicates if this goal is eligible for campaign optimization. + OptimizationEligibility enums.GoalOptimizationEligibilityEnum_GoalOptimizationEligibility `protobuf:"varint,6,opt,name=optimization_eligibility,json=optimizationEligibility,proto3,enum=google.ads.googleads.v22.enums.GoalOptimizationEligibilityEnum_GoalOptimizationEligibility" json:"optimization_eligibility,omitempty"` + // The settings specific to this goal. + // + // Types that are valid to be assigned to GoalSettings: + // + // *Goal_RetentionGoalSettings + GoalSettings isGoal_GoalSettings `protobuf_oneof:"goal_settings"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *Goal) Reset() { + *x = Goal{} + mi := &file_google_ads_googleads_v22_resources_goal_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *Goal) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*Goal) ProtoMessage() {} + +func (x *Goal) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_resources_goal_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use Goal.ProtoReflect.Descriptor instead. +func (*Goal) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_resources_goal_proto_rawDescGZIP(), []int{0} +} + +func (x *Goal) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +func (x *Goal) GetGoalId() int64 { + if x != nil && x.GoalId != nil { + return *x.GoalId + } + return 0 +} + +func (x *Goal) GetGoalType() enums.GoalTypeEnum_GoalType { + if x != nil { + return x.GoalType + } + return enums.GoalTypeEnum_GoalType(0) +} + +func (x *Goal) GetOwnerCustomer() string { + if x != nil && x.OwnerCustomer != nil { + return *x.OwnerCustomer + } + return "" +} + +func (x *Goal) GetOptimizationEligibility() enums.GoalOptimizationEligibilityEnum_GoalOptimizationEligibility { + if x != nil { + return x.OptimizationEligibility + } + return enums.GoalOptimizationEligibilityEnum_GoalOptimizationEligibility(0) +} + +func (x *Goal) GetGoalSettings() isGoal_GoalSettings { + if x != nil { + return x.GoalSettings + } + return nil +} + +func (x *Goal) GetRetentionGoalSettings() *common.GoalSetting_RetentionGoal { + if x != nil { + if x, ok := x.GoalSettings.(*Goal_RetentionGoalSettings); ok { + return x.RetentionGoalSettings + } + } + return nil +} + +type isGoal_GoalSettings interface { + isGoal_GoalSettings() +} + +type Goal_RetentionGoalSettings struct { + // Retention goal settings. + RetentionGoalSettings *common.GoalSetting_RetentionGoal `protobuf:"bytes,7,opt,name=retention_goal_settings,json=retentionGoalSettings,proto3,oneof"` +} + +func (*Goal_RetentionGoalSettings) isGoal_GoalSettings() {} + +var File_google_ads_googleads_v22_resources_goal_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_resources_goal_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x2f, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, + 0x67, 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, 0x32, + 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x6f, 0x70, 0x74, + 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x67, 0x6f, 0x61, 0x6c, + 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, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0xbe, 0x05, 0x0a, 0x04, 0x47, 0x6f, 0x61, 0x6c, + 0x12, 0x4a, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x25, 0xe0, 0x41, 0x05, 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, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x0c, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x21, 0x0a, 0x07, + 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, + 0x41, 0x03, 0x48, 0x01, 0x52, 0x06, 0x67, 0x6f, 0x61, 0x6c, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, + 0x57, 0x0a, 0x09, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, + 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x52, 0x08, + 0x67, 0x6f, 0x61, 0x6c, 0x54, 0x79, 0x70, 0x65, 0x12, 0x55, 0x0a, 0x0e, 0x6f, 0x77, 0x6e, 0x65, + 0x72, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x18, 0x04, 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, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x48, 0x02, 0x52, 0x0d, 0x6f, + 0x77, 0x6e, 0x65, 0x72, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x88, 0x01, 0x01, 0x12, + 0x9b, 0x01, 0x0a, 0x18, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x65, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x18, 0x06, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, + 0x75, 0x6d, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x45, + 0x6e, 0x75, 0x6d, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x4f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x42, + 0x03, 0xe0, 0x41, 0x03, 0x52, 0x17, 0x6f, 0x70, 0x74, 0x69, 0x6d, 0x69, 0x7a, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x45, 0x6c, 0x69, 0x67, 0x69, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x12, 0x74, 0x0a, + 0x17, 0x72, 0x65, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, + 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x2e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x2e, 0x52, 0x65, 0x74, + 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x48, 0x00, 0x52, 0x15, 0x72, 0x65, + 0x74, 0x65, 0x6e, 0x74, 0x69, 0x6f, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x74, 0x74, 0x69, + 0x6e, 0x67, 0x73, 0x3a, 0x53, 0xea, 0x41, 0x50, 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, 0x47, 0x6f, 0x61, 0x6c, 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, 0x67, 0x6f, 0x61, 0x6c, 0x73, 0x2f, 0x7b, 0x75, 0x6e, 0x69, 0x66, 0x69, 0x65, 0x64, 0x5f, + 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x7d, 0x42, 0x0f, 0x0a, 0x0d, 0x67, 0x6f, 0x61, 0x6c, + 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x5f, 0x67, 0x6f, + 0x61, 0x6c, 0x5f, 0x69, 0x64, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x6f, 0x77, 0x6e, 0x65, 0x72, 0x5f, + 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x63, 0x65, 0x73, 0x42, 0x09, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_resources_goal_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_goal_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_resources_goal_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_goal_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_goal_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_goal_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_resources_goal_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_goal_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_goal_proto_goTypes = []any{ + (*Goal)(nil), // 0: google.ads.googleads.v22.resources.Goal + (enums.GoalTypeEnum_GoalType)(0), // 1: google.ads.googleads.v22.enums.GoalTypeEnum.GoalType + (enums.GoalOptimizationEligibilityEnum_GoalOptimizationEligibility)(0), // 2: google.ads.googleads.v22.enums.GoalOptimizationEligibilityEnum.GoalOptimizationEligibility + (*common.GoalSetting_RetentionGoal)(nil), // 3: google.ads.googleads.v22.common.GoalSetting.RetentionGoal +} +var file_google_ads_googleads_v22_resources_goal_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Goal.goal_type:type_name -> google.ads.googleads.v22.enums.GoalTypeEnum.GoalType + 2, // 1: google.ads.googleads.v22.resources.Goal.optimization_eligibility:type_name -> google.ads.googleads.v22.enums.GoalOptimizationEligibilityEnum.GoalOptimizationEligibility + 3, // 2: google.ads.googleads.v22.resources.Goal.retention_goal_settings:type_name -> google.ads.googleads.v22.common.GoalSetting.RetentionGoal + 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_v22_resources_goal_proto_init() } +func file_google_ads_googleads_v22_resources_goal_proto_init() { + if File_google_ads_googleads_v22_resources_goal_proto != nil { + return + } + file_google_ads_googleads_v22_resources_goal_proto_msgTypes[0].OneofWrappers = []any{ + (*Goal_RetentionGoalSettings)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_goal_proto_rawDesc), len(file_google_ads_googleads_v22_resources_goal_proto_rawDesc)), + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_resources_goal_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_goal_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_goal_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_resources_goal_proto = out.File + file_google_ads_googleads_v22_resources_goal_proto_goTypes = nil + file_google_ads_googleads_v22_resources_goal_proto_depIdxs = nil +} diff --git a/resources/google_ads_field.pb.go b/resources/google_ads_field.pb.go index 5198fe3d..0d24baa2 100644 --- a/resources/google_ads_field.pb.go +++ b/resources/google_ads_field.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/google_ads_field.proto +// source: google/ads/googleads/v22/resources/google_ads_field.proto package resources @@ -48,7 +48,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.v21.enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory" json:"category,omitempty"` + Category enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v22.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"` @@ -82,7 +82,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.v21.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.v22.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. @@ -93,7 +93,7 @@ type GoogleAdsField struct { func (x *GoogleAdsField) Reset() { *x = GoogleAdsField{} - mi := &file_google_ads_googleads_v21_resources_google_ads_field_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_google_ads_field_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *GoogleAdsField) String() string { func (*GoogleAdsField) ProtoMessage() {} func (x *GoogleAdsField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_google_ads_field_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_google_ads_field_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,7 +118,7 @@ func (x *GoogleAdsField) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsField.ProtoReflect.Descriptor instead. func (*GoogleAdsField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescGZIP(), []int{0} } func (x *GoogleAdsField) GetResourceName() string { @@ -219,21 +219,21 @@ func (x *GoogleAdsField) GetIsRepeated() bool { return false } -var File_google_ads_googleads_v21_resources_google_ads_field_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_google_ads_field_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -250,7 +250,7 @@ var file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -278,7 +278,7 @@ var file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -300,45 +300,45 @@ var file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x13, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc), len(file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDesc), len(file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDescData + return file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDescData } -var file_google_ads_googleads_v21_resources_google_ads_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_google_ads_field_proto_goTypes = []any{ - (*GoogleAdsField)(nil), // 0: google.ads.googleads.v21.resources.GoogleAdsField - (enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 1: google.ads.googleads.v21.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory - (enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 2: google.ads.googleads.v21.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType +var file_google_ads_googleads_v22_resources_google_ads_field_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_google_ads_field_proto_goTypes = []any{ + (*GoogleAdsField)(nil), // 0: google.ads.googleads.v22.resources.GoogleAdsField + (enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory)(0), // 1: google.ads.googleads.v22.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory + (enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType)(0), // 2: google.ads.googleads.v22.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType } -var file_google_ads_googleads_v21_resources_google_ads_field_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.GoogleAdsField.category:type_name -> google.ads.googleads.v21.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory - 2, // 1: google.ads.googleads.v21.resources.GoogleAdsField.data_type:type_name -> google.ads.googleads.v21.enums.GoogleAdsFieldDataTypeEnum.GoogleAdsFieldDataType +var file_google_ads_googleads_v22_resources_google_ads_field_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.GoogleAdsField.category:type_name -> google.ads.googleads.v22.enums.GoogleAdsFieldCategoryEnum.GoogleAdsFieldCategory + 2, // 1: google.ads.googleads.v22.resources.GoogleAdsField.data_type:type_name -> google.ads.googleads.v22.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 @@ -346,27 +346,27 @@ var file_google_ads_googleads_v21_resources_google_ads_field_proto_depIdxs = []i 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_google_ads_field_proto_init() } -func file_google_ads_googleads_v21_resources_google_ads_field_proto_init() { - if File_google_ads_googleads_v21_resources_google_ads_field_proto != nil { +func init() { file_google_ads_googleads_v22_resources_google_ads_field_proto_init() } +func file_google_ads_googleads_v22_resources_google_ads_field_proto_init() { + if File_google_ads_googleads_v22_resources_google_ads_field_proto != nil { return } - file_google_ads_googleads_v21_resources_google_ads_field_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_google_ads_field_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc), len(file_google_ads_googleads_v21_resources_google_ads_field_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDesc), len(file_google_ads_googleads_v22_resources_google_ads_field_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_google_ads_field_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_google_ads_field_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_google_ads_field_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_google_ads_field_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_google_ads_field_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_google_ads_field_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_google_ads_field_proto = out.File - file_google_ads_googleads_v21_resources_google_ads_field_proto_goTypes = nil - file_google_ads_googleads_v21_resources_google_ads_field_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_google_ads_field_proto = out.File + file_google_ads_googleads_v22_resources_google_ads_field_proto_goTypes = nil + file_google_ads_googleads_v22_resources_google_ads_field_proto_depIdxs = nil } diff --git a/resources/group_content_suitability_placement_view.pb.go b/resources/group_content_suitability_placement_view.pb.go index 8434ce16..1901e37e 100644 --- a/resources/group_content_suitability_placement_view.pb.go +++ b/resources/group_content_suitability_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/group_content_suitability_placement_view.proto +// source: google/ads/googleads/v22/resources/group_content_suitability_placement_view.proto package resources @@ -38,7 +38,6 @@ const ( ) // A group content suitability placement view. -// {-- next tag to use: 6 --} type GroupContentSuitabilityPlacementView struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. The resource name of the group content suitability placement @@ -55,7 +54,7 @@ type GroupContentSuitabilityPlacementView struct { Placement string `protobuf:"bytes,3,opt,name=placement,proto3" json:"placement,omitempty"` // Output only. Represents the type of the placement, for example, Website, // YouTubeVideo and MobileApplication. - PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,4,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v21.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` + PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,4,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v22.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` // Output only. URL of the placement, for example, website, link to the mobile // application in app store, or a YouTube video URL. TargetUrl string `protobuf:"bytes,5,opt,name=target_url,json=targetUrl,proto3" json:"target_url,omitempty"` @@ -65,7 +64,7 @@ type GroupContentSuitabilityPlacementView struct { func (x *GroupContentSuitabilityPlacementView) Reset() { *x = GroupContentSuitabilityPlacementView{} - mi := &file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +76,7 @@ func (x *GroupContentSuitabilityPlacementView) String() string { func (*GroupContentSuitabilityPlacementView) ProtoMessage() {} func (x *GroupContentSuitabilityPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +89,7 @@ func (x *GroupContentSuitabilityPlacementView) ProtoReflect() protoreflect.Messa // Deprecated: Use GroupContentSuitabilityPlacementView.ProtoReflect.Descriptor instead. func (*GroupContentSuitabilityPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescGZIP(), []int{0} } func (x *GroupContentSuitabilityPlacementView) GetResourceName() string { @@ -128,19 +127,19 @@ func (x *GroupContentSuitabilityPlacementView) GetTargetUrl() string { return "" } -var File_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, + 0x32, 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, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x19, 0x67, @@ -162,7 +161,7 @@ var file_google_ads_googleads_v21_resources_group_content_suitability_placement_ 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x6b, 0x0a, 0x0e, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -185,44 +184,44 @@ var file_google_ads_googleads_v21_resources_group_content_suitability_placement_ 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x29, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x29, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_goTypes = []any{ - (*GroupContentSuitabilityPlacementView)(nil), // 0: google.ads.googleads.v21.resources.GroupContentSuitabilityPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_goTypes = []any{ + (*GroupContentSuitabilityPlacementView)(nil), // 0: google.ads.googleads.v22.resources.GroupContentSuitabilityPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.GroupContentSuitabilityPlacementView.placement_type:type_name -> google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.GroupContentSuitabilityPlacementView.placement_type:type_name -> google.ads.googleads.v22.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 @@ -231,27 +230,27 @@ var file_google_ads_googleads_v21_resources_group_content_suitability_placement_ } func init() { - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_init() + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto != nil { +func file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_group_content_suitability_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_group_content_suitability_placement_view_proto_depIdxs = nil } diff --git a/resources/group_placement_view.pb.go b/resources/group_placement_view.pb.go index 4393ca6c..26a9db8c 100644 --- a/resources/group_placement_view.pb.go +++ b/resources/group_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/group_placement_view.proto +// source: google/ads/googleads/v22/resources/group_placement_view.proto package resources @@ -56,14 +56,14 @@ 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.v21.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.v22.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *GroupPlacementView) Reset() { *x = GroupPlacementView{} - mi := &file_google_ads_googleads_v21_resources_group_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_group_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *GroupPlacementView) String() string { func (*GroupPlacementView) ProtoMessage() {} func (x *GroupPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_group_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_group_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *GroupPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use GroupPlacementView.ProtoReflect.Descriptor instead. func (*GroupPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescGZIP(), []int{0} } func (x *GroupPlacementView) GetResourceName() string { @@ -126,17 +126,17 @@ func (x *GroupPlacementView) GetPlacementType() enums.PlacementTypeEnum_Placemen return enums.PlacementTypeEnum_PlacementType(0) } -var File_google_ads_googleads_v21_resources_group_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_group_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -160,7 +160,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6c, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -176,44 +176,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_group_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_group_placement_view_proto_goTypes = []any{ - (*GroupPlacementView)(nil), // 0: google.ads.googleads.v21.resources.GroupPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_group_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_group_placement_view_proto_goTypes = []any{ + (*GroupPlacementView)(nil), // 0: google.ads.googleads.v22.resources.GroupPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v21_resources_group_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.GroupPlacementView.placement_type:type_name -> google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_group_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.GroupPlacementView.placement_type:type_name -> google.ads.googleads.v22.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 @@ -221,27 +221,27 @@ var file_google_ads_googleads_v21_resources_group_placement_view_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_group_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_group_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_group_placement_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_group_placement_view_proto_init() } +func file_google_ads_googleads_v22_resources_group_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_group_placement_view_proto != nil { return } - file_google_ads_googleads_v21_resources_group_placement_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_group_placement_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_group_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_group_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_group_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_group_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_group_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_group_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_group_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_group_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_group_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_group_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_group_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_group_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_group_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_group_placement_view_proto_depIdxs = nil } diff --git a/resources/hotel_group_view.pb.go b/resources/hotel_group_view.pb.go index 16d8b6e0..46cdfde0 100644 --- a/resources/hotel_group_view.pb.go +++ b/resources/hotel_group_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/hotel_group_view.proto +// source: google/ads/googleads/v22/resources/hotel_group_view.proto package resources @@ -50,7 +50,7 @@ type HotelGroupView struct { func (x *HotelGroupView) Reset() { *x = HotelGroupView{} - mi := &file_google_ads_googleads_v21_resources_hotel_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *HotelGroupView) String() string { func (*HotelGroupView) ProtoMessage() {} func (x *HotelGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_hotel_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_group_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *HotelGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelGroupView.ProtoReflect.Descriptor instead. func (*HotelGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescGZIP(), []int{0} } func (x *HotelGroupView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *HotelGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_hotel_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_hotel_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -113,41 +113,41 @@ var file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_hotel_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_hotel_group_view_proto_goTypes = []any{ - (*HotelGroupView)(nil), // 0: google.ads.googleads.v21.resources.HotelGroupView +var file_google_ads_googleads_v22_resources_hotel_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_hotel_group_view_proto_goTypes = []any{ + (*HotelGroupView)(nil), // 0: google.ads.googleads.v22.resources.HotelGroupView } -var file_google_ads_googleads_v21_resources_hotel_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -155,26 +155,26 @@ var file_google_ads_googleads_v21_resources_hotel_group_view_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_hotel_group_view_proto_init() } -func file_google_ads_googleads_v21_resources_hotel_group_view_proto_init() { - if File_google_ads_googleads_v21_resources_hotel_group_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_hotel_group_view_proto_init() } +func file_google_ads_googleads_v22_resources_hotel_group_view_proto_init() { + if File_google_ads_googleads_v22_resources_hotel_group_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_group_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_group_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_hotel_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_hotel_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_hotel_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_hotel_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_hotel_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_hotel_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_hotel_group_view_proto = out.File - file_google_ads_googleads_v21_resources_hotel_group_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_hotel_group_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_hotel_group_view_proto = out.File + file_google_ads_googleads_v22_resources_hotel_group_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_hotel_group_view_proto_depIdxs = nil } diff --git a/resources/hotel_performance_view.pb.go b/resources/hotel_performance_view.pb.go index eb20dcef..5a685310 100644 --- a/resources/hotel_performance_view.pb.go +++ b/resources/hotel_performance_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/hotel_performance_view.proto +// source: google/ads/googleads/v22/resources/hotel_performance_view.proto package resources @@ -50,7 +50,7 @@ type HotelPerformanceView struct { func (x *HotelPerformanceView) Reset() { *x = HotelPerformanceView{} - mi := &file_google_ads_googleads_v21_resources_hotel_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *HotelPerformanceView) String() string { func (*HotelPerformanceView) ProtoMessage() {} func (x *HotelPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_hotel_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_performance_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *HotelPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelPerformanceView.ProtoReflect.Descriptor instead. func (*HotelPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescGZIP(), []int{0} } func (x *HotelPerformanceView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *HotelPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_hotel_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_hotel_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -113,41 +113,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_hotel_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_hotel_performance_view_proto_goTypes = []any{ - (*HotelPerformanceView)(nil), // 0: google.ads.googleads.v21.resources.HotelPerformanceView +var file_google_ads_googleads_v22_resources_hotel_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_hotel_performance_view_proto_goTypes = []any{ + (*HotelPerformanceView)(nil), // 0: google.ads.googleads.v22.resources.HotelPerformanceView } -var file_google_ads_googleads_v21_resources_hotel_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -155,26 +155,26 @@ var file_google_ads_googleads_v21_resources_hotel_performance_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_hotel_performance_view_proto_init() } -func file_google_ads_googleads_v21_resources_hotel_performance_view_proto_init() { - if File_google_ads_googleads_v21_resources_hotel_performance_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_hotel_performance_view_proto_init() } +func file_google_ads_googleads_v22_resources_hotel_performance_view_proto_init() { + if File_google_ads_googleads_v22_resources_hotel_performance_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_performance_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_performance_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_hotel_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_hotel_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_hotel_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_hotel_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_hotel_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_hotel_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_hotel_performance_view_proto = out.File - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_hotel_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_hotel_performance_view_proto = out.File + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_hotel_performance_view_proto_depIdxs = nil } diff --git a/resources/hotel_reconciliation.pb.go b/resources/hotel_reconciliation.pb.go index 36bcbc8a..0347c8e5 100644 --- a/resources/hotel_reconciliation.pb.go +++ b/resources/hotel_reconciliation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/hotel_reconciliation.proto +// source: google/ads/googleads/v22/resources/hotel_reconciliation.proto package resources @@ -88,14 +88,14 @@ 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.v21.enums.HotelReconciliationStatusEnum_HotelReconciliationStatus" json:"status,omitempty"` + Status enums.HotelReconciliationStatusEnum_HotelReconciliationStatus `protobuf:"varint,10,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.HotelReconciliationStatusEnum_HotelReconciliationStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelReconciliation) Reset() { *x = HotelReconciliation{} - mi := &file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -107,7 +107,7 @@ func (x *HotelReconciliation) String() string { func (*HotelReconciliation) ProtoMessage() {} func (x *HotelReconciliation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -120,7 +120,7 @@ func (x *HotelReconciliation) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelReconciliation.ProtoReflect.Descriptor instead. func (*HotelReconciliation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescGZIP(), []int{0} } func (x *HotelReconciliation) GetResourceName() string { @@ -200,17 +200,17 @@ func (x *HotelReconciliation) GetStatus() enums.HotelReconciliationStatusEnum_Ho return enums.HotelReconciliationStatusEnum_HotelReconciliationStatus(0) } -var File_google_ads_googleads_v21_resources_hotel_reconciliation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_hotel_reconciliation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -252,7 +252,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x48, 0x6f, 0x74, 0x65, 0x6c, 0x52, 0x65, 0x63, + 0x32, 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, @@ -266,43 +266,43 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x18, 0x48, 0x6f, 0x74, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDescData + return file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_goTypes = []any{ - (*HotelReconciliation)(nil), // 0: google.ads.googleads.v21.resources.HotelReconciliation - (enums.HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 1: google.ads.googleads.v21.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus +var file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_goTypes = []any{ + (*HotelReconciliation)(nil), // 0: google.ads.googleads.v22.resources.HotelReconciliation + (enums.HotelReconciliationStatusEnum_HotelReconciliationStatus)(0), // 1: google.ads.googleads.v22.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus } -var file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.HotelReconciliation.status:type_name -> google.ads.googleads.v21.enums.HotelReconciliationStatusEnum.HotelReconciliationStatus +var file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.HotelReconciliation.status:type_name -> google.ads.googleads.v22.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 @@ -310,26 +310,26 @@ var file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_init() } -func file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_init() { - if File_google_ads_googleads_v21_resources_hotel_reconciliation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_init() } +func file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_init() { + if File_google_ads_googleads_v22_resources_hotel_reconciliation_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_hotel_reconciliation_proto = out.File - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_hotel_reconciliation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_hotel_reconciliation_proto = out.File + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_hotel_reconciliation_proto_depIdxs = nil } diff --git a/resources/income_range_view.pb.go b/resources/income_range_view.pb.go index c1e4fbfe..4f0042bd 100644 --- a/resources/income_range_view.pb.go +++ b/resources/income_range_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/income_range_view.proto +// source: google/ads/googleads/v22/resources/income_range_view.proto package resources @@ -50,7 +50,7 @@ type IncomeRangeView struct { func (x *IncomeRangeView) Reset() { *x = IncomeRangeView{} - mi := &file_google_ads_googleads_v21_resources_income_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_income_range_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *IncomeRangeView) String() string { func (*IncomeRangeView) ProtoMessage() {} func (x *IncomeRangeView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_income_range_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_income_range_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *IncomeRangeView) ProtoReflect() protoreflect.Message { // Deprecated: Use IncomeRangeView.ProtoReflect.Descriptor instead. func (*IncomeRangeView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescGZIP(), []int{0} } func (x *IncomeRangeView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *IncomeRangeView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_income_range_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_income_range_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_income_range_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -113,41 +113,41 @@ var file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_income_range_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_income_range_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_income_range_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_income_range_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_income_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_income_range_view_proto_goTypes = []any{ - (*IncomeRangeView)(nil), // 0: google.ads.googleads.v21.resources.IncomeRangeView +var file_google_ads_googleads_v22_resources_income_range_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_income_range_view_proto_goTypes = []any{ + (*IncomeRangeView)(nil), // 0: google.ads.googleads.v22.resources.IncomeRangeView } -var file_google_ads_googleads_v21_resources_income_range_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -155,26 +155,26 @@ var file_google_ads_googleads_v21_resources_income_range_view_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_income_range_view_proto_init() } -func file_google_ads_googleads_v21_resources_income_range_view_proto_init() { - if File_google_ads_googleads_v21_resources_income_range_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_income_range_view_proto_init() } +func file_google_ads_googleads_v22_resources_income_range_view_proto_init() { + if File_google_ads_googleads_v22_resources_income_range_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_income_range_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_income_range_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_income_range_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_income_range_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_income_range_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_income_range_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_income_range_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_income_range_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_income_range_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_income_range_view_proto = out.File - file_google_ads_googleads_v21_resources_income_range_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_income_range_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_income_range_view_proto = out.File + file_google_ads_googleads_v22_resources_income_range_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_income_range_view_proto_depIdxs = nil } diff --git a/resources/invoice.pb.go b/resources/invoice.pb.go index 818e438c..2f2a5e2b 100644 --- a/resources/invoice.pb.go +++ b/resources/invoice.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/invoice.proto +// source: google/ads/googleads/v22/resources/invoice.proto package resources @@ -53,7 +53,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.v21.enums.InvoiceTypeEnum_InvoiceType" json:"type,omitempty"` + Type enums.InvoiceTypeEnum_InvoiceType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.InvoiceTypeEnum_InvoiceType" json:"type,omitempty"` // Output only. The resource name of this invoice's billing setup. // // `customers/{customer_id}/billingSetups/{billing_setup_id}` @@ -145,7 +145,7 @@ type Invoice struct { func (x *Invoice) Reset() { *x = Invoice{} - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *Invoice) String() string { func (*Invoice) ProtoMessage() {} func (x *Invoice) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *Invoice) ProtoReflect() protoreflect.Message { // Deprecated: Use Invoice.ProtoReflect.Descriptor instead. func (*Invoice) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_invoice_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_invoice_proto_rawDescGZIP(), []int{0} } func (x *Invoice) GetResourceName() string { @@ -413,7 +413,7 @@ type Invoice_AccountSummary struct { func (x *Invoice_AccountSummary) Reset() { *x = Invoice_AccountSummary{} - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -425,7 +425,7 @@ func (x *Invoice_AccountSummary) String() string { func (*Invoice_AccountSummary) ProtoMessage() {} func (x *Invoice_AccountSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -438,7 +438,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_v21_resources_invoice_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_invoice_proto_rawDescGZIP(), []int{0, 0} } func (x *Invoice_AccountSummary) GetCustomer() string { @@ -633,7 +633,7 @@ type Invoice_AccountBudgetSummary struct { func (x *Invoice_AccountBudgetSummary) Reset() { *x = Invoice_AccountBudgetSummary{} - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -645,7 +645,7 @@ func (x *Invoice_AccountBudgetSummary) String() string { func (*Invoice_AccountBudgetSummary) ProtoMessage() {} func (x *Invoice_AccountBudgetSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -658,7 +658,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_v21_resources_invoice_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_invoice_proto_rawDescGZIP(), []int{0, 1} } func (x *Invoice_AccountBudgetSummary) GetCustomer() string { @@ -765,7 +765,7 @@ type Invoice_InvalidActivitySummary struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` @@ -786,7 +786,7 @@ type Invoice_InvalidActivitySummary struct { func (x *Invoice_InvalidActivitySummary) Reset() { *x = Invoice_InvalidActivitySummary{} - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -798,7 +798,7 @@ func (x *Invoice_InvalidActivitySummary) String() string { func (*Invoice_InvalidActivitySummary) ProtoMessage() {} func (x *Invoice_InvalidActivitySummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -811,7 +811,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_v21_resources_invoice_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_invoice_proto_rawDescGZIP(), []int{0, 2} } func (x *Invoice_InvalidActivitySummary) GetOriginalMonthOfService() enums.MonthOfYearEnum_MonthOfYear { @@ -856,22 +856,22 @@ func (x *Invoice_InvalidActivitySummary) GetAmountMicros() int64 { return 0 } -var File_google_ads_googleads_v21_resources_invoice_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_invoice_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_invoice_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -887,7 +887,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x76, 0x6f, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -908,7 +908,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -983,7 +983,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -991,7 +991,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1176,7 +1176,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1200,7 +1200,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1229,7 +1229,7 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1293,54 +1293,54 @@ var file_google_ads_googleads_v21_resources_invoice_proto_rawDesc = string([]byt 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_invoice_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_invoice_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_invoice_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_invoice_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_invoice_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_invoice_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_invoice_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_invoice_proto_rawDesc), len(file_google_ads_googleads_v21_resources_invoice_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_invoice_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_invoice_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_invoice_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_invoice_proto_rawDesc), len(file_google_ads_googleads_v22_resources_invoice_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_invoice_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_invoice_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_invoice_proto_goTypes = []any{ - (*Invoice)(nil), // 0: google.ads.googleads.v21.resources.Invoice - (*Invoice_AccountSummary)(nil), // 1: google.ads.googleads.v21.resources.Invoice.AccountSummary - (*Invoice_AccountBudgetSummary)(nil), // 2: google.ads.googleads.v21.resources.Invoice.AccountBudgetSummary - (*Invoice_InvalidActivitySummary)(nil), // 3: google.ads.googleads.v21.resources.Invoice.InvalidActivitySummary - (enums.InvoiceTypeEnum_InvoiceType)(0), // 4: google.ads.googleads.v21.enums.InvoiceTypeEnum.InvoiceType - (*common.DateRange)(nil), // 5: google.ads.googleads.v21.common.DateRange - (enums.MonthOfYearEnum_MonthOfYear)(0), // 6: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear -} -var file_google_ads_googleads_v21_resources_invoice_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.resources.Invoice.type:type_name -> google.ads.googleads.v21.enums.InvoiceTypeEnum.InvoiceType - 5, // 1: google.ads.googleads.v21.resources.Invoice.service_date_range:type_name -> google.ads.googleads.v21.common.DateRange - 2, // 2: google.ads.googleads.v21.resources.Invoice.account_budget_summaries:type_name -> google.ads.googleads.v21.resources.Invoice.AccountBudgetSummary - 1, // 3: google.ads.googleads.v21.resources.Invoice.account_summaries:type_name -> google.ads.googleads.v21.resources.Invoice.AccountSummary - 5, // 4: google.ads.googleads.v21.resources.Invoice.AccountBudgetSummary.billable_activity_date_range:type_name -> google.ads.googleads.v21.common.DateRange - 3, // 5: google.ads.googleads.v21.resources.Invoice.AccountBudgetSummary.invalid_activity_summaries:type_name -> google.ads.googleads.v21.resources.Invoice.InvalidActivitySummary - 6, // 6: google.ads.googleads.v21.resources.Invoice.InvalidActivitySummary.original_month_of_service:type_name -> google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear + return file_google_ads_googleads_v22_resources_invoice_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_invoice_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_invoice_proto_goTypes = []any{ + (*Invoice)(nil), // 0: google.ads.googleads.v22.resources.Invoice + (*Invoice_AccountSummary)(nil), // 1: google.ads.googleads.v22.resources.Invoice.AccountSummary + (*Invoice_AccountBudgetSummary)(nil), // 2: google.ads.googleads.v22.resources.Invoice.AccountBudgetSummary + (*Invoice_InvalidActivitySummary)(nil), // 3: google.ads.googleads.v22.resources.Invoice.InvalidActivitySummary + (enums.InvoiceTypeEnum_InvoiceType)(0), // 4: google.ads.googleads.v22.enums.InvoiceTypeEnum.InvoiceType + (*common.DateRange)(nil), // 5: google.ads.googleads.v22.common.DateRange + (enums.MonthOfYearEnum_MonthOfYear)(0), // 6: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear +} +var file_google_ads_googleads_v22_resources_invoice_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.resources.Invoice.type:type_name -> google.ads.googleads.v22.enums.InvoiceTypeEnum.InvoiceType + 5, // 1: google.ads.googleads.v22.resources.Invoice.service_date_range:type_name -> google.ads.googleads.v22.common.DateRange + 2, // 2: google.ads.googleads.v22.resources.Invoice.account_budget_summaries:type_name -> google.ads.googleads.v22.resources.Invoice.AccountBudgetSummary + 1, // 3: google.ads.googleads.v22.resources.Invoice.account_summaries:type_name -> google.ads.googleads.v22.resources.Invoice.AccountSummary + 5, // 4: google.ads.googleads.v22.resources.Invoice.AccountBudgetSummary.billable_activity_date_range:type_name -> google.ads.googleads.v22.common.DateRange + 3, // 5: google.ads.googleads.v22.resources.Invoice.AccountBudgetSummary.invalid_activity_summaries:type_name -> google.ads.googleads.v22.resources.Invoice.InvalidActivitySummary + 6, // 6: google.ads.googleads.v22.resources.Invoice.InvalidActivitySummary.original_month_of_service:type_name -> google.ads.googleads.v22.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 @@ -1348,30 +1348,30 @@ var file_google_ads_googleads_v21_resources_invoice_proto_depIdxs = []int32{ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_invoice_proto_init() } -func file_google_ads_googleads_v21_resources_invoice_proto_init() { - if File_google_ads_googleads_v21_resources_invoice_proto != nil { +func init() { file_google_ads_googleads_v22_resources_invoice_proto_init() } +func file_google_ads_googleads_v22_resources_invoice_proto_init() { + if File_google_ads_googleads_v22_resources_invoice_proto != nil { return } - file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_invoice_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_invoice_proto_msgTypes[3].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_invoice_proto_rawDesc), len(file_google_ads_googleads_v21_resources_invoice_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_invoice_proto_rawDesc), len(file_google_ads_googleads_v22_resources_invoice_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_invoice_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_invoice_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_invoice_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_invoice_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_invoice_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_invoice_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_invoice_proto = out.File - file_google_ads_googleads_v21_resources_invoice_proto_goTypes = nil - file_google_ads_googleads_v21_resources_invoice_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_invoice_proto = out.File + file_google_ads_googleads_v22_resources_invoice_proto_goTypes = nil + file_google_ads_googleads_v22_resources_invoice_proto_depIdxs = nil } diff --git a/resources/keyword_plan.pb.go b/resources/keyword_plan.pb.go index 0d8ff300..24b13641 100644 --- a/resources/keyword_plan.pb.go +++ b/resources/keyword_plan.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_plan.proto +// source: google/ads/googleads/v22/resources/keyword_plan.proto package resources @@ -63,7 +63,7 @@ type KeywordPlan struct { func (x *KeywordPlan) Reset() { *x = KeywordPlan{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *KeywordPlan) String() string { func (*KeywordPlan) ProtoMessage() {} func (x *KeywordPlan) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *KeywordPlan) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlan.ProtoReflect.Descriptor instead. func (*KeywordPlan) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlan) GetResourceName() string { @@ -135,7 +135,7 @@ type KeywordPlanForecastPeriod struct { func (x *KeywordPlanForecastPeriod) Reset() { *x = KeywordPlanForecastPeriod{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -147,7 +147,7 @@ func (x *KeywordPlanForecastPeriod) String() string { func (*KeywordPlanForecastPeriod) ProtoMessage() {} func (x *KeywordPlanForecastPeriod) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -160,7 +160,7 @@ func (x *KeywordPlanForecastPeriod) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanForecastPeriod.ProtoReflect.Descriptor instead. func (*KeywordPlanForecastPeriod) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanForecastPeriod) GetInterval() isKeywordPlanForecastPeriod_Interval { @@ -194,7 +194,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.v21.enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval,oneof"` + DateInterval enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval `protobuf:"varint,1,opt,name=date_interval,json=dateInterval,proto3,enum=google.ads.googleads.v22.enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval,oneof"` } type KeywordPlanForecastPeriod_DateRange struct { @@ -210,20 +210,20 @@ func (*KeywordPlanForecastPeriod_DateInterval) isKeywordPlanForecastPeriod_Inter func (*KeywordPlanForecastPeriod_DateRange) isKeywordPlanForecastPeriod_Interval() {} -var File_google_ads_googleads_v21_resources_keyword_plan_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_plan_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x2b, 0x67, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x61, 0x74, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x32, 0x32, 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, @@ -242,7 +242,7 @@ var file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, + 0x76, 0x32, 0x32, 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, @@ -257,7 +257,7 @@ var file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -265,52 +265,52 @@ var file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_keyword_plan_proto_goTypes = []any{ - (*KeywordPlan)(nil), // 0: google.ads.googleads.v21.resources.KeywordPlan - (*KeywordPlanForecastPeriod)(nil), // 1: google.ads.googleads.v21.resources.KeywordPlanForecastPeriod - (enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 2: google.ads.googleads.v21.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval - (*common.DateRange)(nil), // 3: google.ads.googleads.v21.common.DateRange +var file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_keyword_plan_proto_goTypes = []any{ + (*KeywordPlan)(nil), // 0: google.ads.googleads.v22.resources.KeywordPlan + (*KeywordPlanForecastPeriod)(nil), // 1: google.ads.googleads.v22.resources.KeywordPlanForecastPeriod + (enums.KeywordPlanForecastIntervalEnum_KeywordPlanForecastInterval)(0), // 2: google.ads.googleads.v22.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval + (*common.DateRange)(nil), // 3: google.ads.googleads.v22.common.DateRange } -var file_google_ads_googleads_v21_resources_keyword_plan_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.KeywordPlan.forecast_period:type_name -> google.ads.googleads.v21.resources.KeywordPlanForecastPeriod - 2, // 1: google.ads.googleads.v21.resources.KeywordPlanForecastPeriod.date_interval:type_name -> google.ads.googleads.v21.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval - 3, // 2: google.ads.googleads.v21.resources.KeywordPlanForecastPeriod.date_range:type_name -> google.ads.googleads.v21.common.DateRange +var file_google_ads_googleads_v22_resources_keyword_plan_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.KeywordPlan.forecast_period:type_name -> google.ads.googleads.v22.resources.KeywordPlanForecastPeriod + 2, // 1: google.ads.googleads.v22.resources.KeywordPlanForecastPeriod.date_interval:type_name -> google.ads.googleads.v22.enums.KeywordPlanForecastIntervalEnum.KeywordPlanForecastInterval + 3, // 2: google.ads.googleads.v22.resources.KeywordPlanForecastPeriod.date_range:type_name -> google.ads.googleads.v22.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 @@ -318,13 +318,13 @@ var file_google_ads_googleads_v21_resources_keyword_plan_proto_depIdxs = []int32 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_plan_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_plan_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_plan_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_plan_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_plan_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_plan_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanForecastPeriod_DateInterval)(nil), (*KeywordPlanForecastPeriod_DateRange)(nil), } @@ -332,17 +332,17 @@ func file_google_ads_googleads_v21_resources_keyword_plan_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_plan_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_plan_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_plan_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_plan_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_plan_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_plan_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_plan_proto = out.File - file_google_ads_googleads_v21_resources_keyword_plan_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_plan_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_plan_proto = out.File + file_google_ads_googleads_v22_resources_keyword_plan_proto_goTypes = nil + file_google_ads_googleads_v22_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 27fe61fc..b68c8c4e 100644 --- a/resources/keyword_plan_ad_group.pb.go +++ b/resources/keyword_plan_ad_group.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_plan_ad_group.proto +// source: google/ads/googleads/v22/resources/keyword_plan_ad_group.proto package resources @@ -64,7 +64,7 @@ type KeywordPlanAdGroup struct { func (x *KeywordPlanAdGroup) Reset() { *x = KeywordPlanAdGroup{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *KeywordPlanAdGroup) String() string { func (*KeywordPlanAdGroup) ProtoMessage() {} func (x *KeywordPlanAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *KeywordPlanAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroup.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanAdGroup) GetResourceName() string { @@ -127,15 +127,15 @@ func (x *KeywordPlanAdGroup) GetCpcBidMicros() int64 { return 0 } -var File_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -173,41 +173,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x4b, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_goTypes = []any{ - (*KeywordPlanAdGroup)(nil), // 0: google.ads.googleads.v21.resources.KeywordPlanAdGroup +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_goTypes = []any{ + (*KeywordPlanAdGroup)(nil), // 0: google.ads.googleads.v22.resources.KeywordPlanAdGroup } -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -215,27 +215,27 @@ var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto = out.File - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto = out.File + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_proto_goTypes = nil + file_google_ads_googleads_v22_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 a0930f0a..a4e70ea8 100644 --- a/resources/keyword_plan_ad_group_keyword.pb.go +++ b/resources/keyword_plan_ad_group_keyword.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_plan_ad_group_keyword.proto +// source: google/ads/googleads/v22/resources/keyword_plan_ad_group_keyword.proto package resources @@ -53,7 +53,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.v21.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.v22.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 @@ -67,7 +67,7 @@ type KeywordPlanAdGroupKeyword struct { func (x *KeywordPlanAdGroupKeyword) Reset() { *x = KeywordPlanAdGroupKeyword{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *KeywordPlanAdGroupKeyword) String() string { func (*KeywordPlanAdGroupKeyword) ProtoMessage() {} func (x *KeywordPlanAdGroupKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *KeywordPlanAdGroupKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroupKeyword.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanAdGroupKeyword) GetResourceName() string { @@ -144,18 +144,18 @@ func (x *KeywordPlanAdGroupKeyword) GetNegative() bool { return false } -var File_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x37, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -181,7 +181,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -206,43 +206,43 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4b, 0x65, 0x79, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_goTypes = []any{ - (*KeywordPlanAdGroupKeyword)(nil), // 0: google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_goTypes = []any{ + (*KeywordPlanAdGroupKeyword)(nil), // 0: google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType } -var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword.match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword.match_type:type_name -> google.ads.googleads.v22.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 @@ -250,27 +250,27 @@ var file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto = out.File - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_plan_ad_group_keyword_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto = out.File + file_google_ads_googleads_v22_resources_keyword_plan_ad_group_keyword_proto_goTypes = nil + file_google_ads_googleads_v22_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 02c2ba60..107b2ab8 100644 --- a/resources/keyword_plan_campaign.pb.go +++ b/resources/keyword_plan_campaign.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_plan_campaign.proto +// source: google/ads/googleads/v22/resources/keyword_plan_campaign.proto package resources @@ -62,7 +62,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.v21.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.v22.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. // @@ -78,7 +78,7 @@ type KeywordPlanCampaign struct { func (x *KeywordPlanCampaign) Reset() { *x = KeywordPlanCampaign{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *KeywordPlanCampaign) String() string { func (*KeywordPlanCampaign) ProtoMessage() {} func (x *KeywordPlanCampaign) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *KeywordPlanCampaign) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaign.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaign) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanCampaign) GetResourceName() string { @@ -173,7 +173,7 @@ type KeywordPlanGeoTarget struct { func (x *KeywordPlanGeoTarget) Reset() { *x = KeywordPlanGeoTarget{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -185,7 +185,7 @@ func (x *KeywordPlanGeoTarget) String() string { func (*KeywordPlanGeoTarget) ProtoMessage() {} func (x *KeywordPlanGeoTarget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -198,7 +198,7 @@ func (x *KeywordPlanGeoTarget) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanGeoTarget.ProtoReflect.Descriptor instead. func (*KeywordPlanGeoTarget) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanGeoTarget) GetGeoTargetConstant() string { @@ -208,17 +208,17 @@ func (x *KeywordPlanGeoTarget) GetGeoTargetConstant() string { return "" } -var File_google_ads_googleads_v21_resources_keyword_plan_campaign_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_plan_campaign_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -249,7 +249,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -259,7 +259,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -284,46 +284,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_goTypes = []any{ - (*KeywordPlanCampaign)(nil), // 0: google.ads.googleads.v21.resources.KeywordPlanCampaign - (*KeywordPlanGeoTarget)(nil), // 1: google.ads.googleads.v21.resources.KeywordPlanGeoTarget - (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 2: google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_goTypes = []any{ + (*KeywordPlanCampaign)(nil), // 0: google.ads.googleads.v22.resources.KeywordPlanCampaign + (*KeywordPlanGeoTarget)(nil), // 1: google.ads.googleads.v22.resources.KeywordPlanGeoTarget + (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 2: google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork } -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.KeywordPlanCampaign.keyword_plan_network:type_name -> google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 1, // 1: google.ads.googleads.v21.resources.KeywordPlanCampaign.geo_targets:type_name -> google.ads.googleads.v21.resources.KeywordPlanGeoTarget +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.KeywordPlanCampaign.keyword_plan_network:type_name -> google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 1, // 1: google.ads.googleads.v22.resources.KeywordPlanCampaign.geo_targets:type_name -> google.ads.googleads.v22.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 @@ -331,28 +331,28 @@ var file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_depIdxs 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_plan_campaign_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_plan_campaign_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_plan_campaign_proto = out.File - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_plan_campaign_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_plan_campaign_proto = out.File + file_google_ads_googleads_v22_resources_keyword_plan_campaign_proto_goTypes = nil + file_google_ads_googleads_v22_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 636bf522..0ffd1c5c 100644 --- a/resources/keyword_plan_campaign_keyword.pb.go +++ b/resources/keyword_plan_campaign_keyword.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_plan_campaign_keyword.proto +// source: google/ads/googleads/v22/resources/keyword_plan_campaign_keyword.proto package resources @@ -53,7 +53,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.v21.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.v22.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"` @@ -63,7 +63,7 @@ type KeywordPlanCampaignKeyword struct { func (x *KeywordPlanCampaignKeyword) Reset() { *x = KeywordPlanCampaignKeyword{} - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *KeywordPlanCampaignKeyword) String() string { func (*KeywordPlanCampaignKeyword) ProtoMessage() {} func (x *KeywordPlanCampaignKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *KeywordPlanCampaignKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaignKeyword.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP(), []int{0} } func (x *KeywordPlanCampaignKeyword) GetResourceName() string { @@ -133,18 +133,18 @@ func (x *KeywordPlanCampaignKeyword) GetNegative() bool { return false } -var File_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x37, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -170,7 +170,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -191,44 +191,44 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_goTypes = []any{ - (*KeywordPlanCampaignKeyword)(nil), // 0: google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_goTypes = []any{ + (*KeywordPlanCampaignKeyword)(nil), // 0: google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 1: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType } -var file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword.match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType +var file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword.match_type:type_name -> google.ads.googleads.v22.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 @@ -236,27 +236,27 @@ var file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto = out.File - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_plan_campaign_keyword_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto = out.File + file_google_ads_googleads_v22_resources_keyword_plan_campaign_keyword_proto_goTypes = nil + file_google_ads_googleads_v22_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 685686d7..9713d58c 100644 --- a/resources/keyword_theme_constant.pb.go +++ b/resources/keyword_theme_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_theme_constant.proto +// source: google/ads/googleads/v22/resources/keyword_theme_constant.proto package resources @@ -60,7 +60,7 @@ type KeywordThemeConstant struct { func (x *KeywordThemeConstant) Reset() { *x = KeywordThemeConstant{} - mi := &file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *KeywordThemeConstant) String() string { func (*KeywordThemeConstant) ProtoMessage() {} func (x *KeywordThemeConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *KeywordThemeConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordThemeConstant.ProtoReflect.Descriptor instead. func (*KeywordThemeConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescGZIP(), []int{0} } func (x *KeywordThemeConstant) GetResourceName() string { @@ -116,15 +116,15 @@ func (x *KeywordThemeConstant) GetDisplayName() string { return "" } -var File_google_ads_googleads_v21_resources_keyword_theme_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_theme_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -157,42 +157,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_goTypes = []any{ - (*KeywordThemeConstant)(nil), // 0: google.ads.googleads.v21.resources.KeywordThemeConstant +var file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_goTypes = []any{ + (*KeywordThemeConstant)(nil), // 0: google.ads.googleads.v22.resources.KeywordThemeConstant } -var file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -200,27 +200,27 @@ var file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_theme_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_theme_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_theme_constant_proto = out.File - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_theme_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_theme_constant_proto = out.File + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_keyword_theme_constant_proto_depIdxs = nil } diff --git a/resources/keyword_view.pb.go b/resources/keyword_view.pb.go index 20f03a5c..14f6b0f7 100644 --- a/resources/keyword_view.pb.go +++ b/resources/keyword_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/keyword_view.proto +// source: google/ads/googleads/v22/resources/keyword_view.proto package resources @@ -50,7 +50,7 @@ type KeywordView struct { func (x *KeywordView) Reset() { *x = KeywordView{} - mi := &file_google_ads_googleads_v21_resources_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *KeywordView) String() string { func (*KeywordView) ProtoMessage() {} func (x *KeywordView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_keyword_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_keyword_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *KeywordView) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordView.ProtoReflect.Descriptor instead. func (*KeywordView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescGZIP(), []int{0} } func (x *KeywordView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *KeywordView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_keyword_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_keyword_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_keyword_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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, @@ -112,41 +112,41 @@ var file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_keyword_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_keyword_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_keyword_view_proto_goTypes = []any{ - (*KeywordView)(nil), // 0: google.ads.googleads.v21.resources.KeywordView +var file_google_ads_googleads_v22_resources_keyword_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_keyword_view_proto_goTypes = []any{ + (*KeywordView)(nil), // 0: google.ads.googleads.v22.resources.KeywordView } -var file_google_ads_googleads_v21_resources_keyword_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -154,26 +154,26 @@ var file_google_ads_googleads_v21_resources_keyword_view_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_keyword_view_proto_init() } -func file_google_ads_googleads_v21_resources_keyword_view_proto_init() { - if File_google_ads_googleads_v21_resources_keyword_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_keyword_view_proto_init() } +func file_google_ads_googleads_v22_resources_keyword_view_proto_init() { + if File_google_ads_googleads_v22_resources_keyword_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_keyword_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_keyword_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_keyword_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_keyword_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_keyword_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_keyword_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_keyword_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_keyword_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_keyword_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_keyword_view_proto = out.File - file_google_ads_googleads_v21_resources_keyword_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_keyword_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_keyword_view_proto = out.File + file_google_ads_googleads_v22_resources_keyword_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_keyword_view_proto_depIdxs = nil } diff --git a/resources/label.pb.go b/resources/label.pb.go index 36ecb778..536fc7c3 100644 --- a/resources/label.pb.go +++ b/resources/label.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/label.proto +// source: google/ads/googleads/v22/resources/label.proto package resources @@ -54,7 +54,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.v21.enums.LabelStatusEnum_LabelStatus" json:"status,omitempty"` + Status enums.LabelStatusEnum_LabelStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -63,7 +63,7 @@ type Label struct { func (x *Label) Reset() { *x = Label{} - mi := &file_google_ads_googleads_v21_resources_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_label_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *Label) String() string { func (*Label) ProtoMessage() {} func (x *Label) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_label_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_label_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *Label) ProtoReflect() protoreflect.Message { // Deprecated: Use Label.ProtoReflect.Descriptor instead. func (*Label) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_label_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_label_proto_rawDescGZIP(), []int{0} } func (x *Label) GetResourceName() string { @@ -126,19 +126,19 @@ func (x *Label) GetTextLabel() *common.TextLabel { return nil } -var File_google_ads_googleads_v21_resources_label_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_label_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_label_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -155,13 +155,13 @@ var file_google_ads_googleads_v21_resources_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -171,44 +171,44 @@ var file_google_ads_googleads_v21_resources_label_proto_rawDesc = string([]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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_label_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_label_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_label_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_label_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_label_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_label_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_label_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_label_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_label_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_label_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_label_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_label_proto_rawDescData + return file_google_ads_googleads_v22_resources_label_proto_rawDescData } -var file_google_ads_googleads_v21_resources_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_label_proto_goTypes = []any{ - (*Label)(nil), // 0: google.ads.googleads.v21.resources.Label - (enums.LabelStatusEnum_LabelStatus)(0), // 1: google.ads.googleads.v21.enums.LabelStatusEnum.LabelStatus - (*common.TextLabel)(nil), // 2: google.ads.googleads.v21.common.TextLabel +var file_google_ads_googleads_v22_resources_label_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_label_proto_goTypes = []any{ + (*Label)(nil), // 0: google.ads.googleads.v22.resources.Label + (enums.LabelStatusEnum_LabelStatus)(0), // 1: google.ads.googleads.v22.enums.LabelStatusEnum.LabelStatus + (*common.TextLabel)(nil), // 2: google.ads.googleads.v22.common.TextLabel } -var file_google_ads_googleads_v21_resources_label_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.Label.status:type_name -> google.ads.googleads.v21.enums.LabelStatusEnum.LabelStatus - 2, // 1: google.ads.googleads.v21.resources.Label.text_label:type_name -> google.ads.googleads.v21.common.TextLabel +var file_google_ads_googleads_v22_resources_label_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.Label.status:type_name -> google.ads.googleads.v22.enums.LabelStatusEnum.LabelStatus + 2, // 1: google.ads.googleads.v22.resources.Label.text_label:type_name -> google.ads.googleads.v22.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 @@ -216,27 +216,27 @@ var file_google_ads_googleads_v21_resources_label_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_label_proto_init() } -func file_google_ads_googleads_v21_resources_label_proto_init() { - if File_google_ads_googleads_v21_resources_label_proto != nil { +func init() { file_google_ads_googleads_v22_resources_label_proto_init() } +func file_google_ads_googleads_v22_resources_label_proto_init() { + if File_google_ads_googleads_v22_resources_label_proto != nil { return } - file_google_ads_googleads_v21_resources_label_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_label_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_label_proto_rawDesc), len(file_google_ads_googleads_v21_resources_label_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_label_proto_rawDesc), len(file_google_ads_googleads_v22_resources_label_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_label_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_label_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_label_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_label_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_label_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_label_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_label_proto = out.File - file_google_ads_googleads_v21_resources_label_proto_goTypes = nil - file_google_ads_googleads_v21_resources_label_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_label_proto = out.File + file_google_ads_googleads_v22_resources_label_proto_goTypes = nil + file_google_ads_googleads_v22_resources_label_proto_depIdxs = nil } diff --git a/resources/landing_page_view.pb.go b/resources/landing_page_view.pb.go index 915c0f19..f7d46a57 100644 --- a/resources/landing_page_view.pb.go +++ b/resources/landing_page_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/landing_page_view.proto +// source: google/ads/googleads/v22/resources/landing_page_view.proto package resources @@ -53,7 +53,7 @@ type LandingPageView struct { func (x *LandingPageView) Reset() { *x = LandingPageView{} - mi := &file_google_ads_googleads_v21_resources_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_landing_page_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *LandingPageView) String() string { func (*LandingPageView) ProtoMessage() {} func (x *LandingPageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_landing_page_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_landing_page_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *LandingPageView) ProtoReflect() protoreflect.Message { // Deprecated: Use LandingPageView.ProtoReflect.Descriptor instead. func (*LandingPageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescGZIP(), []int{0} } func (x *LandingPageView) GetResourceName() string { @@ -95,15 +95,15 @@ func (x *LandingPageView) GetUnexpandedFinalUrl() string { return "" } -var File_google_ads_googleads_v21_resources_landing_page_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_landing_page_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -129,41 +129,41 @@ var file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_landing_page_view_proto_goTypes = []any{ - (*LandingPageView)(nil), // 0: google.ads.googleads.v21.resources.LandingPageView +var file_google_ads_googleads_v22_resources_landing_page_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_landing_page_view_proto_goTypes = []any{ + (*LandingPageView)(nil), // 0: google.ads.googleads.v22.resources.LandingPageView } -var file_google_ads_googleads_v21_resources_landing_page_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -171,27 +171,27 @@ var file_google_ads_googleads_v21_resources_landing_page_view_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_landing_page_view_proto_init() } -func file_google_ads_googleads_v21_resources_landing_page_view_proto_init() { - if File_google_ads_googleads_v21_resources_landing_page_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_landing_page_view_proto_init() } +func file_google_ads_googleads_v22_resources_landing_page_view_proto_init() { + if File_google_ads_googleads_v22_resources_landing_page_view_proto != nil { return } - file_google_ads_googleads_v21_resources_landing_page_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_landing_page_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_landing_page_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_landing_page_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_landing_page_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_landing_page_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_landing_page_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_landing_page_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_landing_page_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_landing_page_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_landing_page_view_proto = out.File - file_google_ads_googleads_v21_resources_landing_page_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_landing_page_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_landing_page_view_proto = out.File + file_google_ads_googleads_v22_resources_landing_page_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_landing_page_view_proto_depIdxs = nil } diff --git a/resources/language_constant.pb.go b/resources/language_constant.pb.go index 9cae54b7..43c34d76 100644 --- a/resources/language_constant.pb.go +++ b/resources/language_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/language_constant.proto +// source: google/ads/googleads/v22/resources/language_constant.proto package resources @@ -60,7 +60,7 @@ type LanguageConstant struct { func (x *LanguageConstant) Reset() { *x = LanguageConstant{} - mi := &file_google_ads_googleads_v21_resources_language_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_language_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *LanguageConstant) String() string { func (*LanguageConstant) ProtoMessage() {} func (x *LanguageConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_language_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_language_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *LanguageConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use LanguageConstant.ProtoReflect.Descriptor instead. func (*LanguageConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_language_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_language_constant_proto_rawDescGZIP(), []int{0} } func (x *LanguageConstant) GetResourceName() string { @@ -123,15 +123,15 @@ func (x *LanguageConstant) GetTargetable() bool { return false } -var File_google_ads_googleads_v21_resources_language_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_language_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_language_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -160,41 +160,41 @@ var file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_language_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_language_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_language_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_language_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_language_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_language_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_language_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_language_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_language_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_language_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_language_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_language_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_language_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_language_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_language_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_language_constant_proto_goTypes = []any{ - (*LanguageConstant)(nil), // 0: google.ads.googleads.v21.resources.LanguageConstant +var file_google_ads_googleads_v22_resources_language_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_language_constant_proto_goTypes = []any{ + (*LanguageConstant)(nil), // 0: google.ads.googleads.v22.resources.LanguageConstant } -var file_google_ads_googleads_v21_resources_language_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -202,27 +202,27 @@ var file_google_ads_googleads_v21_resources_language_constant_proto_depIdxs = [] 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_language_constant_proto_init() } -func file_google_ads_googleads_v21_resources_language_constant_proto_init() { - if File_google_ads_googleads_v21_resources_language_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_language_constant_proto_init() } +func file_google_ads_googleads_v22_resources_language_constant_proto_init() { + if File_google_ads_googleads_v22_resources_language_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_language_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_language_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_language_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_language_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_language_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_language_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_language_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_language_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_language_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_language_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_language_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_language_constant_proto = out.File - file_google_ads_googleads_v21_resources_language_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_language_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_language_constant_proto = out.File + file_google_ads_googleads_v22_resources_language_constant_proto_goTypes = nil + file_google_ads_googleads_v22_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 cdc3d6bc..ae12aedc 100644 --- a/resources/lead_form_submission_data.pb.go +++ b/resources/lead_form_submission_data.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/lead_form_submission_data.proto +// source: google/ads/googleads/v22/resources/lead_form_submission_data.proto package resources @@ -71,7 +71,7 @@ type LeadFormSubmissionData struct { func (x *LeadFormSubmissionData) Reset() { *x = LeadFormSubmissionData{} - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *LeadFormSubmissionData) String() string { func (*LeadFormSubmissionData) ProtoMessage() {} func (x *LeadFormSubmissionData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96,7 +96,7 @@ func (x *LeadFormSubmissionData) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormSubmissionData.ProtoReflect.Descriptor instead. func (*LeadFormSubmissionData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{0} } func (x *LeadFormSubmissionData) GetResourceName() string { @@ -173,7 +173,7 @@ func (x *LeadFormSubmissionData) GetSubmissionDateTime() string { type LeadFormSubmissionField struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -182,7 +182,7 @@ type LeadFormSubmissionField struct { func (x *LeadFormSubmissionField) Reset() { *x = LeadFormSubmissionField{} - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -194,7 +194,7 @@ func (x *LeadFormSubmissionField) String() string { func (*LeadFormSubmissionField) ProtoMessage() {} func (x *LeadFormSubmissionField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -207,7 +207,7 @@ func (x *LeadFormSubmissionField) ProtoReflect() protoreflect.Message { // Deprecated: Use LeadFormSubmissionField.ProtoReflect.Descriptor instead. func (*LeadFormSubmissionField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{1} } func (x *LeadFormSubmissionField) GetFieldType() enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType { @@ -239,7 +239,7 @@ type CustomLeadFormSubmissionField struct { func (x *CustomLeadFormSubmissionField) Reset() { *x = CustomLeadFormSubmissionField{} - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -251,7 +251,7 @@ func (x *CustomLeadFormSubmissionField) String() string { func (*CustomLeadFormSubmissionField) ProtoMessage() {} func (x *CustomLeadFormSubmissionField) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -264,7 +264,7 @@ func (x *CustomLeadFormSubmissionField) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomLeadFormSubmissionField.ProtoReflect.Descriptor instead. func (*CustomLeadFormSubmissionField) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescGZIP(), []int{2} } func (x *CustomLeadFormSubmissionField) GetQuestionText() string { @@ -281,18 +281,18 @@ func (x *CustomLeadFormSubmissionField) GetFieldValue() string { return "" } -var File_google_ads_googleads_v21_resources_lead_form_submission_data_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_lead_form_submission_data_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x65, 0x61, 0x64, 0x5f, 0x66, 0x6f, + 0x32, 0x32, 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, @@ -319,7 +319,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -328,7 +328,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -360,7 +360,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -376,48 +376,48 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDesc), len(file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDesc), len(file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDescData + return file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDescData } -var file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_goTypes = []any{ - (*LeadFormSubmissionData)(nil), // 0: google.ads.googleads.v21.resources.LeadFormSubmissionData - (*LeadFormSubmissionField)(nil), // 1: google.ads.googleads.v21.resources.LeadFormSubmissionField - (*CustomLeadFormSubmissionField)(nil), // 2: google.ads.googleads.v21.resources.CustomLeadFormSubmissionField - (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 3: google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType +var file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_goTypes = []any{ + (*LeadFormSubmissionData)(nil), // 0: google.ads.googleads.v22.resources.LeadFormSubmissionData + (*LeadFormSubmissionField)(nil), // 1: google.ads.googleads.v22.resources.LeadFormSubmissionField + (*CustomLeadFormSubmissionField)(nil), // 2: google.ads.googleads.v22.resources.CustomLeadFormSubmissionField + (enums.LeadFormFieldUserInputTypeEnum_LeadFormFieldUserInputType)(0), // 3: google.ads.googleads.v22.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType } -var file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.LeadFormSubmissionData.lead_form_submission_fields:type_name -> google.ads.googleads.v21.resources.LeadFormSubmissionField - 2, // 1: google.ads.googleads.v21.resources.LeadFormSubmissionData.custom_lead_form_submission_fields:type_name -> google.ads.googleads.v21.resources.CustomLeadFormSubmissionField - 3, // 2: google.ads.googleads.v21.resources.LeadFormSubmissionField.field_type:type_name -> google.ads.googleads.v21.enums.LeadFormFieldUserInputTypeEnum.LeadFormFieldUserInputType +var file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.LeadFormSubmissionData.lead_form_submission_fields:type_name -> google.ads.googleads.v22.resources.LeadFormSubmissionField + 2, // 1: google.ads.googleads.v22.resources.LeadFormSubmissionData.custom_lead_form_submission_fields:type_name -> google.ads.googleads.v22.resources.CustomLeadFormSubmissionField + 3, // 2: google.ads.googleads.v22.resources.LeadFormSubmissionField.field_type:type_name -> google.ads.googleads.v22.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 @@ -425,26 +425,26 @@ var file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_depI 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_init() } -func file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_init() { - if File_google_ads_googleads_v21_resources_lead_form_submission_data_proto != nil { +func init() { file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_init() } +func file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_init() { + if File_google_ads_googleads_v22_resources_lead_form_submission_data_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDesc), len(file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDesc), len(file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_lead_form_submission_data_proto = out.File - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_goTypes = nil - file_google_ads_googleads_v21_resources_lead_form_submission_data_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_lead_form_submission_data_proto = out.File + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_goTypes = nil + file_google_ads_googleads_v22_resources_lead_form_submission_data_proto_depIdxs = nil } diff --git a/resources/life_event.pb.go b/resources/life_event.pb.go index f1a714ea..d4a369c7 100644 --- a/resources/life_event.pb.go +++ b/resources/life_event.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/life_event.proto +// source: google/ads/googleads/v22/resources/life_event.proto package resources @@ -63,7 +63,7 @@ type LifeEvent struct { func (x *LifeEvent) Reset() { *x = LifeEvent{} - mi := &file_google_ads_googleads_v21_resources_life_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_life_event_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *LifeEvent) String() string { func (*LifeEvent) ProtoMessage() {} func (x *LifeEvent) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_life_event_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_life_event_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *LifeEvent) ProtoReflect() protoreflect.Message { // Deprecated: Use LifeEvent.ProtoReflect.Descriptor instead. func (*LifeEvent) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_life_event_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_life_event_proto_rawDescGZIP(), []int{0} } func (x *LifeEvent) GetResourceName() string { @@ -133,17 +133,17 @@ func (x *LifeEvent) GetAvailabilities() []*common.CriterionCategoryAvailability return nil } -var File_google_ads_googleads_v21_resources_life_event_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_life_event_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_life_event_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_life_event_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x76, 0x32, 0x32, 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, @@ -168,7 +168,7 @@ var file_google_ads_googleads_v21_resources_life_event_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -180,42 +180,42 @@ var file_google_ads_googleads_v21_resources_life_event_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_life_event_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_life_event_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_life_event_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_life_event_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_life_event_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_life_event_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_life_event_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_life_event_proto_rawDesc), len(file_google_ads_googleads_v21_resources_life_event_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_life_event_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_life_event_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_life_event_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_life_event_proto_rawDesc), len(file_google_ads_googleads_v22_resources_life_event_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_life_event_proto_rawDescData + return file_google_ads_googleads_v22_resources_life_event_proto_rawDescData } -var file_google_ads_googleads_v21_resources_life_event_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_life_event_proto_goTypes = []any{ - (*LifeEvent)(nil), // 0: google.ads.googleads.v21.resources.LifeEvent - (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_life_event_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_life_event_proto_goTypes = []any{ + (*LifeEvent)(nil), // 0: google.ads.googleads.v22.resources.LifeEvent + (*common.CriterionCategoryAvailability)(nil), // 1: google.ads.googleads.v22.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v21_resources_life_event_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.LifeEvent.availabilities:type_name -> google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_life_event_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.LifeEvent.availabilities:type_name -> google.ads.googleads.v22.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 @@ -223,26 +223,26 @@ var file_google_ads_googleads_v21_resources_life_event_proto_depIdxs = []int32{ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_life_event_proto_init() } -func file_google_ads_googleads_v21_resources_life_event_proto_init() { - if File_google_ads_googleads_v21_resources_life_event_proto != nil { +func init() { file_google_ads_googleads_v22_resources_life_event_proto_init() } +func file_google_ads_googleads_v22_resources_life_event_proto_init() { + if File_google_ads_googleads_v22_resources_life_event_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_life_event_proto_rawDesc), len(file_google_ads_googleads_v21_resources_life_event_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_life_event_proto_rawDesc), len(file_google_ads_googleads_v22_resources_life_event_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_life_event_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_life_event_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_life_event_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_life_event_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_life_event_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_life_event_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_life_event_proto = out.File - file_google_ads_googleads_v21_resources_life_event_proto_goTypes = nil - file_google_ads_googleads_v21_resources_life_event_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_life_event_proto = out.File + file_google_ads_googleads_v22_resources_life_event_proto_goTypes = nil + file_google_ads_googleads_v22_resources_life_event_proto_depIdxs = nil } diff --git a/resources/local_services_employee.pb.go b/resources/local_services_employee.pb.go index a03912b5..a43f1da8 100644 --- a/resources/local_services_employee.pb.go +++ b/resources/local_services_employee.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/local_services_employee.proto +// source: google/ads/googleads/v22/resources/local_services_employee.proto package resources @@ -52,9 +52,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.v21.enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus" json:"status,omitempty"` + Status enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType" json:"type,omitempty"` + Type enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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"` @@ -92,7 +92,7 @@ type LocalServicesEmployee struct { func (x *LocalServicesEmployee) Reset() { *x = LocalServicesEmployee{} - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104,7 +104,7 @@ func (x *LocalServicesEmployee) String() string { func (*LocalServicesEmployee) ProtoMessage() {} func (x *LocalServicesEmployee) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117,7 +117,7 @@ func (x *LocalServicesEmployee) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesEmployee.ProtoReflect.Descriptor instead. func (*LocalServicesEmployee) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesEmployee) GetResourceName() string { @@ -254,7 +254,7 @@ type UniversityDegree struct { func (x *UniversityDegree) Reset() { *x = UniversityDegree{} - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -266,7 +266,7 @@ func (x *UniversityDegree) String() string { func (*UniversityDegree) ProtoMessage() {} func (x *UniversityDegree) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -279,7 +279,7 @@ func (x *UniversityDegree) ProtoReflect() protoreflect.Message { // Deprecated: Use UniversityDegree.ProtoReflect.Descriptor instead. func (*UniversityDegree) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescGZIP(), []int{1} } func (x *UniversityDegree) GetInstitutionName() string { @@ -318,7 +318,7 @@ type Residency struct { func (x *Residency) Reset() { *x = Residency{} - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *Residency) String() string { func (*Residency) ProtoMessage() {} func (x *Residency) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *Residency) ProtoReflect() protoreflect.Message { // Deprecated: Use Residency.ProtoReflect.Descriptor instead. func (*Residency) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescGZIP(), []int{2} } func (x *Residency) GetInstitutionName() string { @@ -375,7 +375,7 @@ type Fellowship struct { func (x *Fellowship) Reset() { *x = Fellowship{} - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -387,7 +387,7 @@ func (x *Fellowship) String() string { func (*Fellowship) ProtoMessage() {} func (x *Fellowship) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -400,7 +400,7 @@ func (x *Fellowship) ProtoReflect() protoreflect.Message { // Deprecated: Use Fellowship.ProtoReflect.Descriptor instead. func (*Fellowship) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescGZIP(), []int{3} } func (x *Fellowship) GetInstitutionName() string { @@ -417,22 +417,22 @@ func (x *Fellowship) GetCompletionYear() int32 { return 0 } -var File_google_ads_googleads_v21_resources_local_services_employee_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_local_services_employee_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -453,7 +453,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -461,7 +461,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, + 0x32, 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, @@ -469,18 +469,18 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x6e, 0x69, 0x76, + 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -561,52 +561,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_local_services_employee_proto_goTypes = []any{ - (*LocalServicesEmployee)(nil), // 0: google.ads.googleads.v21.resources.LocalServicesEmployee - (*UniversityDegree)(nil), // 1: google.ads.googleads.v21.resources.UniversityDegree - (*Residency)(nil), // 2: google.ads.googleads.v21.resources.Residency - (*Fellowship)(nil), // 3: google.ads.googleads.v21.resources.Fellowship - (enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 4: google.ads.googleads.v21.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus - (enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 5: google.ads.googleads.v21.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType -} -var file_google_ads_googleads_v21_resources_local_services_employee_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.resources.LocalServicesEmployee.status:type_name -> google.ads.googleads.v21.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus - 5, // 1: google.ads.googleads.v21.resources.LocalServicesEmployee.type:type_name -> google.ads.googleads.v21.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType - 1, // 2: google.ads.googleads.v21.resources.LocalServicesEmployee.university_degrees:type_name -> google.ads.googleads.v21.resources.UniversityDegree - 2, // 3: google.ads.googleads.v21.resources.LocalServicesEmployee.residencies:type_name -> google.ads.googleads.v21.resources.Residency - 3, // 4: google.ads.googleads.v21.resources.LocalServicesEmployee.fellowships:type_name -> google.ads.googleads.v21.resources.Fellowship + return file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_local_services_employee_proto_goTypes = []any{ + (*LocalServicesEmployee)(nil), // 0: google.ads.googleads.v22.resources.LocalServicesEmployee + (*UniversityDegree)(nil), // 1: google.ads.googleads.v22.resources.UniversityDegree + (*Residency)(nil), // 2: google.ads.googleads.v22.resources.Residency + (*Fellowship)(nil), // 3: google.ads.googleads.v22.resources.Fellowship + (enums.LocalServicesEmployeeStatusEnum_LocalServicesEmployeeStatus)(0), // 4: google.ads.googleads.v22.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus + (enums.LocalServicesEmployeeTypeEnum_LocalServicesEmployeeType)(0), // 5: google.ads.googleads.v22.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType +} +var file_google_ads_googleads_v22_resources_local_services_employee_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.resources.LocalServicesEmployee.status:type_name -> google.ads.googleads.v22.enums.LocalServicesEmployeeStatusEnum.LocalServicesEmployeeStatus + 5, // 1: google.ads.googleads.v22.resources.LocalServicesEmployee.type:type_name -> google.ads.googleads.v22.enums.LocalServicesEmployeeTypeEnum.LocalServicesEmployeeType + 1, // 2: google.ads.googleads.v22.resources.LocalServicesEmployee.university_degrees:type_name -> google.ads.googleads.v22.resources.UniversityDegree + 2, // 3: google.ads.googleads.v22.resources.LocalServicesEmployee.residencies:type_name -> google.ads.googleads.v22.resources.Residency + 3, // 4: google.ads.googleads.v22.resources.LocalServicesEmployee.fellowships:type_name -> google.ads.googleads.v22.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 @@ -614,30 +614,30 @@ var file_google_ads_googleads_v21_resources_local_services_employee_proto_depIdx 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_local_services_employee_proto_init() } -func file_google_ads_googleads_v21_resources_local_services_employee_proto_init() { - if File_google_ads_googleads_v21_resources_local_services_employee_proto != nil { +func init() { file_google_ads_googleads_v22_resources_local_services_employee_proto_init() } +func file_google_ads_googleads_v22_resources_local_services_employee_proto_init() { + if File_google_ads_googleads_v22_resources_local_services_employee_proto != nil { return } - file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes[3].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_employee_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_employee_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_local_services_employee_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_local_services_employee_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_local_services_employee_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_local_services_employee_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_local_services_employee_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_local_services_employee_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_local_services_employee_proto = out.File - file_google_ads_googleads_v21_resources_local_services_employee_proto_goTypes = nil - file_google_ads_googleads_v21_resources_local_services_employee_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_local_services_employee_proto = out.File + file_google_ads_googleads_v22_resources_local_services_employee_proto_goTypes = nil + file_google_ads_googleads_v22_resources_local_services_employee_proto_depIdxs = nil } diff --git a/resources/local_services_lead.pb.go b/resources/local_services_lead.pb.go index ad911f5c..60badbff 100644 --- a/resources/local_services_lead.pb.go +++ b/resources/local_services_lead.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/local_services_lead.proto +// source: google/ads/googleads/v22/resources/local_services_lead.proto package resources @@ -63,9 +63,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.v21.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.v22.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.v21.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.v22.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" @@ -87,7 +87,7 @@ type LocalServicesLead struct { func (x *LocalServicesLead) Reset() { *x = LocalServicesLead{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_local_services_lead_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[0] if 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_v21_resources_local_services_lead_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesLead) GetResourceName() string { @@ -222,7 +222,7 @@ type ContactDetails struct { func (x *ContactDetails) Reset() { *x = ContactDetails{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -234,7 +234,7 @@ func (x *ContactDetails) String() string { func (*ContactDetails) ProtoMessage() {} func (x *ContactDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -247,7 +247,7 @@ func (x *ContactDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use ContactDetails.ProtoReflect.Descriptor instead. func (*ContactDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescGZIP(), []int{1} } func (x *ContactDetails) GetPhoneNumber() string { @@ -287,7 +287,7 @@ type Note struct { func (x *Note) Reset() { *x = Note{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -299,7 +299,7 @@ func (x *Note) String() string { func (*Note) ProtoMessage() {} func (x *Note) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -312,7 +312,7 @@ func (x *Note) ProtoReflect() protoreflect.Message { // Deprecated: Use Note.ProtoReflect.Descriptor instead. func (*Note) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescGZIP(), []int{2} } func (x *Note) GetEditDateTime() string { @@ -333,7 +333,7 @@ func (x *Note) GetDescription() string { type CreditDetails struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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" @@ -344,7 +344,7 @@ type CreditDetails struct { func (x *CreditDetails) Reset() { *x = CreditDetails{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -356,7 +356,7 @@ func (x *CreditDetails) String() string { func (*CreditDetails) ProtoMessage() {} func (x *CreditDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -369,7 +369,7 @@ func (x *CreditDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use CreditDetails.ProtoReflect.Descriptor instead. func (*CreditDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescGZIP(), []int{3} } func (x *CreditDetails) GetCreditState() enums.LocalServicesCreditStateEnum_CreditState { @@ -386,26 +386,26 @@ func (x *CreditDetails) GetCreditStateLastUpdateDateTime() string { return "" } -var File_google_ads_googleads_v21_resources_local_services_lead_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_local_services_lead_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -427,19 +427,19 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -451,14 +451,14 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4e, 0x6f, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x3b, 0x0a, @@ -492,7 +492,7 @@ var file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc = 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0b, 0x63, 0x72, @@ -503,53 +503,53 @@ var file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc = 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_local_services_lead_proto_goTypes = []any{ - (*LocalServicesLead)(nil), // 0: google.ads.googleads.v21.resources.LocalServicesLead - (*ContactDetails)(nil), // 1: google.ads.googleads.v21.resources.ContactDetails - (*Note)(nil), // 2: google.ads.googleads.v21.resources.Note - (*CreditDetails)(nil), // 3: google.ads.googleads.v21.resources.CreditDetails - (enums.LocalServicesLeadTypeEnum_LeadType)(0), // 4: google.ads.googleads.v21.enums.LocalServicesLeadTypeEnum.LeadType - (enums.LocalServicesLeadStatusEnum_LeadStatus)(0), // 5: google.ads.googleads.v21.enums.LocalServicesLeadStatusEnum.LeadStatus - (enums.LocalServicesCreditStateEnum_CreditState)(0), // 6: google.ads.googleads.v21.enums.LocalServicesCreditStateEnum.CreditState -} -var file_google_ads_googleads_v21_resources_local_services_lead_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.LocalServicesLead.contact_details:type_name -> google.ads.googleads.v21.resources.ContactDetails - 4, // 1: google.ads.googleads.v21.resources.LocalServicesLead.lead_type:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadTypeEnum.LeadType - 5, // 2: google.ads.googleads.v21.resources.LocalServicesLead.lead_status:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadStatusEnum.LeadStatus - 2, // 3: google.ads.googleads.v21.resources.LocalServicesLead.note:type_name -> google.ads.googleads.v21.resources.Note - 3, // 4: google.ads.googleads.v21.resources.LocalServicesLead.credit_details:type_name -> google.ads.googleads.v21.resources.CreditDetails - 6, // 5: google.ads.googleads.v21.resources.CreditDetails.credit_state:type_name -> google.ads.googleads.v21.enums.LocalServicesCreditStateEnum.CreditState + return file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_local_services_lead_proto_goTypes = []any{ + (*LocalServicesLead)(nil), // 0: google.ads.googleads.v22.resources.LocalServicesLead + (*ContactDetails)(nil), // 1: google.ads.googleads.v22.resources.ContactDetails + (*Note)(nil), // 2: google.ads.googleads.v22.resources.Note + (*CreditDetails)(nil), // 3: google.ads.googleads.v22.resources.CreditDetails + (enums.LocalServicesLeadTypeEnum_LeadType)(0), // 4: google.ads.googleads.v22.enums.LocalServicesLeadTypeEnum.LeadType + (enums.LocalServicesLeadStatusEnum_LeadStatus)(0), // 5: google.ads.googleads.v22.enums.LocalServicesLeadStatusEnum.LeadStatus + (enums.LocalServicesCreditStateEnum_CreditState)(0), // 6: google.ads.googleads.v22.enums.LocalServicesCreditStateEnum.CreditState +} +var file_google_ads_googleads_v22_resources_local_services_lead_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.LocalServicesLead.contact_details:type_name -> google.ads.googleads.v22.resources.ContactDetails + 4, // 1: google.ads.googleads.v22.resources.LocalServicesLead.lead_type:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadTypeEnum.LeadType + 5, // 2: google.ads.googleads.v22.resources.LocalServicesLead.lead_status:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadStatusEnum.LeadStatus + 2, // 3: google.ads.googleads.v22.resources.LocalServicesLead.note:type_name -> google.ads.googleads.v22.resources.Note + 3, // 4: google.ads.googleads.v22.resources.LocalServicesLead.credit_details:type_name -> google.ads.googleads.v22.resources.CreditDetails + 6, // 5: google.ads.googleads.v22.resources.CreditDetails.credit_state:type_name -> google.ads.googleads.v22.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 @@ -557,27 +557,27 @@ var file_google_ads_googleads_v21_resources_local_services_lead_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_local_services_lead_proto_init() } -func file_google_ads_googleads_v21_resources_local_services_lead_proto_init() { - if File_google_ads_googleads_v21_resources_local_services_lead_proto != nil { +func init() { file_google_ads_googleads_v22_resources_local_services_lead_proto_init() } +func file_google_ads_googleads_v22_resources_local_services_lead_proto_init() { + if File_google_ads_googleads_v22_resources_local_services_lead_proto != nil { return } - file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_lead_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_lead_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_local_services_lead_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_local_services_lead_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_local_services_lead_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_local_services_lead_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_local_services_lead_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_local_services_lead_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_local_services_lead_proto = out.File - file_google_ads_googleads_v21_resources_local_services_lead_proto_goTypes = nil - file_google_ads_googleads_v21_resources_local_services_lead_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_local_services_lead_proto = out.File + file_google_ads_googleads_v22_resources_local_services_lead_proto_goTypes = nil + file_google_ads_googleads_v22_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 69f430b3..cf893124 100644 --- a/resources/local_services_lead_conversation.pb.go +++ b/resources/local_services_lead_conversation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/local_services_lead_conversation.proto +// source: google/ads/googleads/v22/resources/local_services_lead_conversation.proto package resources @@ -52,10 +52,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.v21.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.v22.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.v21.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.v22.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 @@ -74,7 +74,7 @@ type LocalServicesLeadConversation struct { func (x *LocalServicesLeadConversation) Reset() { *x = LocalServicesLeadConversation{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *LocalServicesLeadConversation) String() string { func (*LocalServicesLeadConversation) ProtoMessage() {} func (x *LocalServicesLeadConversation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99,7 +99,7 @@ func (x *LocalServicesLeadConversation) ProtoReflect() protoreflect.Message { // Deprecated: Use LocalServicesLeadConversation.ProtoReflect.Descriptor instead. func (*LocalServicesLeadConversation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesLeadConversation) GetResourceName() string { @@ -171,7 +171,7 @@ type PhoneCallDetails struct { func (x *PhoneCallDetails) Reset() { *x = PhoneCallDetails{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *PhoneCallDetails) String() string { func (*PhoneCallDetails) ProtoMessage() {} func (x *PhoneCallDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,7 +196,7 @@ func (x *PhoneCallDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use PhoneCallDetails.ProtoReflect.Descriptor instead. func (*PhoneCallDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{1} } func (x *PhoneCallDetails) GetCallDurationMillis() int64 { @@ -227,7 +227,7 @@ type MessageDetails struct { func (x *MessageDetails) Reset() { *x = MessageDetails{} - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -239,7 +239,7 @@ func (x *MessageDetails) String() string { func (*MessageDetails) ProtoMessage() {} func (x *MessageDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -252,7 +252,7 @@ func (x *MessageDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use MessageDetails.ProtoReflect.Descriptor instead. func (*MessageDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescGZIP(), []int{2} } func (x *MessageDetails) GetText() string { @@ -269,22 +269,22 @@ func (x *MessageDetails) GetAttachmentUrls() []string { return nil } -var File_google_ads_googleads_v21_resources_local_services_lead_conversation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_local_services_lead_conversation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -304,7 +304,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -313,7 +313,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -329,13 +329,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -367,49 +367,49 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x22, 0x4c, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDescData + return file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDescData } -var file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_goTypes = []any{ - (*LocalServicesLeadConversation)(nil), // 0: google.ads.googleads.v21.resources.LocalServicesLeadConversation - (*PhoneCallDetails)(nil), // 1: google.ads.googleads.v21.resources.PhoneCallDetails - (*MessageDetails)(nil), // 2: google.ads.googleads.v21.resources.MessageDetails - (enums.LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 3: google.ads.googleads.v21.enums.LocalServicesLeadConversationTypeEnum.ConversationType - (enums.LocalServicesParticipantTypeEnum_ParticipantType)(0), // 4: google.ads.googleads.v21.enums.LocalServicesParticipantTypeEnum.ParticipantType +var file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_goTypes = []any{ + (*LocalServicesLeadConversation)(nil), // 0: google.ads.googleads.v22.resources.LocalServicesLeadConversation + (*PhoneCallDetails)(nil), // 1: google.ads.googleads.v22.resources.PhoneCallDetails + (*MessageDetails)(nil), // 2: google.ads.googleads.v22.resources.MessageDetails + (enums.LocalServicesLeadConversationTypeEnum_ConversationType)(0), // 3: google.ads.googleads.v22.enums.LocalServicesLeadConversationTypeEnum.ConversationType + (enums.LocalServicesParticipantTypeEnum_ParticipantType)(0), // 4: google.ads.googleads.v22.enums.LocalServicesParticipantTypeEnum.ParticipantType } -var file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.resources.LocalServicesLeadConversation.conversation_channel:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadConversationTypeEnum.ConversationType - 4, // 1: google.ads.googleads.v21.resources.LocalServicesLeadConversation.participant_type:type_name -> google.ads.googleads.v21.enums.LocalServicesParticipantTypeEnum.ParticipantType - 1, // 2: google.ads.googleads.v21.resources.LocalServicesLeadConversation.phone_call_details:type_name -> google.ads.googleads.v21.resources.PhoneCallDetails - 2, // 3: google.ads.googleads.v21.resources.LocalServicesLeadConversation.message_details:type_name -> google.ads.googleads.v21.resources.MessageDetails +var file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.resources.LocalServicesLeadConversation.conversation_channel:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadConversationTypeEnum.ConversationType + 4, // 1: google.ads.googleads.v22.resources.LocalServicesLeadConversation.participant_type:type_name -> google.ads.googleads.v22.enums.LocalServicesParticipantTypeEnum.ParticipantType + 1, // 2: google.ads.googleads.v22.resources.LocalServicesLeadConversation.phone_call_details:type_name -> google.ads.googleads.v22.resources.PhoneCallDetails + 2, // 3: google.ads.googleads.v22.resources.LocalServicesLeadConversation.message_details:type_name -> google.ads.googleads.v22.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 @@ -417,27 +417,27 @@ var file_google_ads_googleads_v21_resources_local_services_lead_conversation_pro 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_init() } -func file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_init() { - if File_google_ads_googleads_v21_resources_local_services_lead_conversation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_init() } +func file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_init() { + if File_google_ads_googleads_v22_resources_local_services_lead_conversation_proto != nil { return } - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_local_services_lead_conversation_proto = out.File - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_local_services_lead_conversation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_local_services_lead_conversation_proto = out.File + file_google_ads_googleads_v22_resources_local_services_lead_conversation_proto_goTypes = nil + file_google_ads_googleads_v22_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 97ce27c6..06c48d01 100644 --- a/resources/local_services_verification_artifact.pb.go +++ b/resources/local_services_verification_artifact.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/local_services_verification_artifact.proto +// source: google/ads/googleads/v22/resources/local_services_verification_artifact.proto package resources @@ -53,9 +53,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.v21.enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus" json:"status,omitempty"` + Status enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType" json:"artifact_type,omitempty"` // The types of verification info. // // Types that are valid to be assigned to ArtifactData: @@ -71,7 +71,7 @@ type LocalServicesVerificationArtifact struct { func (x *LocalServicesVerificationArtifact) Reset() { *x = LocalServicesVerificationArtifact{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *LocalServicesVerificationArtifact) String() string { func (*LocalServicesVerificationArtifact) ProtoMessage() {} func (x *LocalServicesVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96,7 +96,7 @@ func (x *LocalServicesVerificationArtifact) ProtoReflect() protoreflect.Message // Deprecated: Use LocalServicesVerificationArtifact.ProtoReflect.Descriptor instead. func (*LocalServicesVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{0} } func (x *LocalServicesVerificationArtifact) GetResourceName() string { @@ -229,7 +229,7 @@ type BackgroundCheckVerificationArtifact struct { func (x *BackgroundCheckVerificationArtifact) Reset() { *x = BackgroundCheckVerificationArtifact{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -241,7 +241,7 @@ func (x *BackgroundCheckVerificationArtifact) String() string { func (*BackgroundCheckVerificationArtifact) ProtoMessage() {} func (x *BackgroundCheckVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -254,7 +254,7 @@ func (x *BackgroundCheckVerificationArtifact) ProtoReflect() protoreflect.Messag // Deprecated: Use BackgroundCheckVerificationArtifact.ProtoReflect.Descriptor instead. func (*BackgroundCheckVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{1} } func (x *BackgroundCheckVerificationArtifact) GetCaseUrl() string { @@ -278,7 +278,7 @@ 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.v21.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.v22.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"` @@ -292,7 +292,7 @@ type InsuranceVerificationArtifact struct { func (x *InsuranceVerificationArtifact) Reset() { *x = InsuranceVerificationArtifact{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *InsuranceVerificationArtifact) String() string { func (*InsuranceVerificationArtifact) ProtoMessage() {} func (x *InsuranceVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,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_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{2} } func (x *InsuranceVerificationArtifact) GetAmountMicros() int64 { @@ -360,7 +360,7 @@ 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.v21.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.v22.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"` @@ -374,7 +374,7 @@ type LicenseVerificationArtifact struct { func (x *LicenseVerificationArtifact) Reset() { *x = LicenseVerificationArtifact{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -386,7 +386,7 @@ func (x *LicenseVerificationArtifact) String() string { func (*LicenseVerificationArtifact) ProtoMessage() {} func (x *LicenseVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -399,7 +399,7 @@ func (x *LicenseVerificationArtifact) ProtoReflect() protoreflect.Message { // Deprecated: Use LicenseVerificationArtifact.ProtoReflect.Descriptor instead. func (*LicenseVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{3} } func (x *LicenseVerificationArtifact) GetLicenseType() string { @@ -456,12 +456,12 @@ func (x *LicenseVerificationArtifact) GetExpirationDateTime() string { type BusinessRegistrationCheckVerificationArtifact struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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.v21.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.v22.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. // @@ -476,7 +476,7 @@ type BusinessRegistrationCheckVerificationArtifact struct { func (x *BusinessRegistrationCheckVerificationArtifact) Reset() { *x = BusinessRegistrationCheckVerificationArtifact{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -488,7 +488,7 @@ func (x *BusinessRegistrationCheckVerificationArtifact) String() string { func (*BusinessRegistrationCheckVerificationArtifact) ProtoMessage() {} func (x *BusinessRegistrationCheckVerificationArtifact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -501,7 +501,7 @@ func (x *BusinessRegistrationCheckVerificationArtifact) ProtoReflect() protorefl // Deprecated: Use BusinessRegistrationCheckVerificationArtifact.ProtoReflect.Descriptor instead. func (*BusinessRegistrationCheckVerificationArtifact) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{4} } func (x *BusinessRegistrationCheckVerificationArtifact) GetRegistrationType() enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType { @@ -582,7 +582,7 @@ type BusinessRegistrationNumber struct { func (x *BusinessRegistrationNumber) Reset() { *x = BusinessRegistrationNumber{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -594,7 +594,7 @@ func (x *BusinessRegistrationNumber) String() string { func (*BusinessRegistrationNumber) ProtoMessage() {} func (x *BusinessRegistrationNumber) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -607,7 +607,7 @@ func (x *BusinessRegistrationNumber) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessRegistrationNumber.ProtoReflect.Descriptor instead. func (*BusinessRegistrationNumber) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{5} } func (x *BusinessRegistrationNumber) GetNumber() string { @@ -630,7 +630,7 @@ type BusinessRegistrationDocument struct { func (x *BusinessRegistrationDocument) Reset() { *x = BusinessRegistrationDocument{} - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -642,7 +642,7 @@ func (x *BusinessRegistrationDocument) String() string { func (*BusinessRegistrationDocument) ProtoMessage() {} func (x *BusinessRegistrationDocument) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -655,7 +655,7 @@ func (x *BusinessRegistrationDocument) ProtoReflect() protoreflect.Message { // Deprecated: Use BusinessRegistrationDocument.ProtoReflect.Descriptor instead. func (*BusinessRegistrationDocument) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP(), []int{6} } func (x *BusinessRegistrationDocument) GetDocumentReadonly() *common.LocalServicesDocumentReadOnly { @@ -665,48 +665,48 @@ func (x *BusinessRegistrationDocument) GetDocumentReadonly() *common.LocalServic return nil } -var File_google_ads_googleads_v21_resources_local_services_verification_artifact_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_local_services_verification_artifact_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -729,7 +729,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -739,7 +739,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -750,7 +750,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -760,7 +760,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -769,7 +769,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -779,7 +779,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -818,7 +818,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -830,7 +830,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, 0x53, + 0x32, 0x32, 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, @@ -862,7 +862,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -873,7 +873,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -898,7 +898,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, @@ -911,7 +911,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x6c, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -923,7 +923,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -931,7 +931,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -950,7 +950,7 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -958,70 +958,70 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_goTypes = []any{ - (*LocalServicesVerificationArtifact)(nil), // 0: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact - (*BackgroundCheckVerificationArtifact)(nil), // 1: google.ads.googleads.v21.resources.BackgroundCheckVerificationArtifact - (*InsuranceVerificationArtifact)(nil), // 2: google.ads.googleads.v21.resources.InsuranceVerificationArtifact - (*LicenseVerificationArtifact)(nil), // 3: google.ads.googleads.v21.resources.LicenseVerificationArtifact - (*BusinessRegistrationCheckVerificationArtifact)(nil), // 4: google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact - (*BusinessRegistrationNumber)(nil), // 5: google.ads.googleads.v21.resources.BusinessRegistrationNumber - (*BusinessRegistrationDocument)(nil), // 6: google.ads.googleads.v21.resources.BusinessRegistrationDocument - (enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 7: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus - (enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 8: google.ads.googleads.v21.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType - (enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 9: google.ads.googleads.v21.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason - (*common.LocalServicesDocumentReadOnly)(nil), // 10: google.ads.googleads.v21.common.LocalServicesDocumentReadOnly - (enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 11: google.ads.googleads.v21.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason - (enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 12: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType - (enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 13: google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason -} -var file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_depIdxs = []int32{ - 7, // 0: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.status:type_name -> google.ads.googleads.v21.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus - 8, // 1: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.artifact_type:type_name -> google.ads.googleads.v21.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType - 1, // 2: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.background_check_verification_artifact:type_name -> google.ads.googleads.v21.resources.BackgroundCheckVerificationArtifact - 2, // 3: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.insurance_verification_artifact:type_name -> google.ads.googleads.v21.resources.InsuranceVerificationArtifact - 3, // 4: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.license_verification_artifact:type_name -> google.ads.googleads.v21.resources.LicenseVerificationArtifact - 4, // 5: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact.business_registration_check_verification_artifact:type_name -> google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact - 9, // 6: google.ads.googleads.v21.resources.InsuranceVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v21.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason - 10, // 7: google.ads.googleads.v21.resources.InsuranceVerificationArtifact.insurance_document_readonly:type_name -> google.ads.googleads.v21.common.LocalServicesDocumentReadOnly - 11, // 8: google.ads.googleads.v21.resources.LicenseVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v21.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason - 10, // 9: google.ads.googleads.v21.resources.LicenseVerificationArtifact.license_document_readonly:type_name -> google.ads.googleads.v21.common.LocalServicesDocumentReadOnly - 12, // 10: google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact.registration_type:type_name -> google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType - 13, // 11: google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v21.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason - 5, // 12: google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact.registration_number:type_name -> google.ads.googleads.v21.resources.BusinessRegistrationNumber - 6, // 13: google.ads.googleads.v21.resources.BusinessRegistrationCheckVerificationArtifact.registration_document:type_name -> google.ads.googleads.v21.resources.BusinessRegistrationDocument - 10, // 14: google.ads.googleads.v21.resources.BusinessRegistrationDocument.document_readonly:type_name -> google.ads.googleads.v21.common.LocalServicesDocumentReadOnly + return file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes = make([]protoimpl.MessageInfo, 7) +var file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_goTypes = []any{ + (*LocalServicesVerificationArtifact)(nil), // 0: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact + (*BackgroundCheckVerificationArtifact)(nil), // 1: google.ads.googleads.v22.resources.BackgroundCheckVerificationArtifact + (*InsuranceVerificationArtifact)(nil), // 2: google.ads.googleads.v22.resources.InsuranceVerificationArtifact + (*LicenseVerificationArtifact)(nil), // 3: google.ads.googleads.v22.resources.LicenseVerificationArtifact + (*BusinessRegistrationCheckVerificationArtifact)(nil), // 4: google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact + (*BusinessRegistrationNumber)(nil), // 5: google.ads.googleads.v22.resources.BusinessRegistrationNumber + (*BusinessRegistrationDocument)(nil), // 6: google.ads.googleads.v22.resources.BusinessRegistrationDocument + (enums.LocalServicesVerificationArtifactStatusEnum_LocalServicesVerificationArtifactStatus)(0), // 7: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus + (enums.LocalServicesVerificationArtifactTypeEnum_LocalServicesVerificationArtifactType)(0), // 8: google.ads.googleads.v22.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType + (enums.LocalServicesInsuranceRejectionReasonEnum_LocalServicesInsuranceRejectionReason)(0), // 9: google.ads.googleads.v22.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason + (*common.LocalServicesDocumentReadOnly)(nil), // 10: google.ads.googleads.v22.common.LocalServicesDocumentReadOnly + (enums.LocalServicesLicenseRejectionReasonEnum_LocalServicesLicenseRejectionReason)(0), // 11: google.ads.googleads.v22.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason + (enums.LocalServicesBusinessRegistrationTypeEnum_LocalServicesBusinessRegistrationType)(0), // 12: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType + (enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum_LocalServicesBusinessRegistrationCheckRejectionReason)(0), // 13: google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason +} +var file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_depIdxs = []int32{ + 7, // 0: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.status:type_name -> google.ads.googleads.v22.enums.LocalServicesVerificationArtifactStatusEnum.LocalServicesVerificationArtifactStatus + 8, // 1: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.artifact_type:type_name -> google.ads.googleads.v22.enums.LocalServicesVerificationArtifactTypeEnum.LocalServicesVerificationArtifactType + 1, // 2: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.background_check_verification_artifact:type_name -> google.ads.googleads.v22.resources.BackgroundCheckVerificationArtifact + 2, // 3: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.insurance_verification_artifact:type_name -> google.ads.googleads.v22.resources.InsuranceVerificationArtifact + 3, // 4: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.license_verification_artifact:type_name -> google.ads.googleads.v22.resources.LicenseVerificationArtifact + 4, // 5: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact.business_registration_check_verification_artifact:type_name -> google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact + 9, // 6: google.ads.googleads.v22.resources.InsuranceVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v22.enums.LocalServicesInsuranceRejectionReasonEnum.LocalServicesInsuranceRejectionReason + 10, // 7: google.ads.googleads.v22.resources.InsuranceVerificationArtifact.insurance_document_readonly:type_name -> google.ads.googleads.v22.common.LocalServicesDocumentReadOnly + 11, // 8: google.ads.googleads.v22.resources.LicenseVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v22.enums.LocalServicesLicenseRejectionReasonEnum.LocalServicesLicenseRejectionReason + 10, // 9: google.ads.googleads.v22.resources.LicenseVerificationArtifact.license_document_readonly:type_name -> google.ads.googleads.v22.common.LocalServicesDocumentReadOnly + 12, // 10: google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact.registration_type:type_name -> google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationTypeEnum.LocalServicesBusinessRegistrationType + 13, // 11: google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact.rejection_reason:type_name -> google.ads.googleads.v22.enums.LocalServicesBusinessRegistrationCheckRejectionReasonEnum.LocalServicesBusinessRegistrationCheckRejectionReason + 5, // 12: google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact.registration_number:type_name -> google.ads.googleads.v22.resources.BusinessRegistrationNumber + 6, // 13: google.ads.googleads.v22.resources.BusinessRegistrationCheckVerificationArtifact.registration_document:type_name -> google.ads.googleads.v22.resources.BusinessRegistrationDocument + 10, // 14: google.ads.googleads.v22.resources.BusinessRegistrationDocument.document_readonly:type_name -> google.ads.googleads.v22.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 @@ -1030,42 +1030,42 @@ var file_google_ads_googleads_v21_resources_local_services_verification_artifact } func init() { - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_init() + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_init() } -func file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_init() { - if File_google_ads_googleads_v21_resources_local_services_verification_artifact_proto != nil { +func file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_init() { + if File_google_ads_googleads_v22_resources_local_services_verification_artifact_proto != nil { return } - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[0].OneofWrappers = []any{ (*LocalServicesVerificationArtifact_BackgroundCheckVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_InsuranceVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_LicenseVerificationArtifact)(nil), (*LocalServicesVerificationArtifact_BusinessRegistrationCheckVerificationArtifact)(nil), } - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[4].OneofWrappers = []any{ (*BusinessRegistrationCheckVerificationArtifact_RegistrationNumber)(nil), (*BusinessRegistrationCheckVerificationArtifact_RegistrationDocument)(nil), } - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes[6].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDesc), len(file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDesc), len(file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_rawDesc)), NumEnums: 0, NumMessages: 7, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_local_services_verification_artifact_proto = out.File - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_goTypes = nil - file_google_ads_googleads_v21_resources_local_services_verification_artifact_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_local_services_verification_artifact_proto = out.File + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_goTypes = nil + file_google_ads_googleads_v22_resources_local_services_verification_artifact_proto_depIdxs = nil } diff --git a/resources/location_interest_view.pb.go b/resources/location_interest_view.pb.go index 4b78531d..d4fe7c74 100644 --- a/resources/location_interest_view.pb.go +++ b/resources/location_interest_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/location_interest_view.proto +// source: google/ads/googleads/v22/resources/location_interest_view.proto package resources @@ -51,7 +51,7 @@ type LocationInterestView struct { func (x *LocationInterestView) Reset() { *x = LocationInterestView{} - mi := &file_google_ads_googleads_v21_resources_location_interest_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_location_interest_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *LocationInterestView) String() string { func (*LocationInterestView) ProtoMessage() {} func (x *LocationInterestView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_location_interest_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_location_interest_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *LocationInterestView) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationInterestView.ProtoReflect.Descriptor instead. func (*LocationInterestView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescGZIP(), []int{0} } func (x *LocationInterestView) GetResourceName() string { @@ -86,15 +86,15 @@ func (x *LocationInterestView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_location_interest_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_location_interest_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_resources_location_interest_view_proto_rawDesc 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x19, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_location_interest_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_location_interest_view_proto_goTypes = []any{ - (*LocationInterestView)(nil), // 0: google.ads.googleads.v21.resources.LocationInterestView +var file_google_ads_googleads_v22_resources_location_interest_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_location_interest_view_proto_goTypes = []any{ + (*LocationInterestView)(nil), // 0: google.ads.googleads.v22.resources.LocationInterestView } -var file_google_ads_googleads_v21_resources_location_interest_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_resources_location_interest_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,26 +162,26 @@ var file_google_ads_googleads_v21_resources_location_interest_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_location_interest_view_proto_init() } -func file_google_ads_googleads_v21_resources_location_interest_view_proto_init() { - if File_google_ads_googleads_v21_resources_location_interest_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_location_interest_view_proto_init() } +func file_google_ads_googleads_v22_resources_location_interest_view_proto_init() { + if File_google_ads_googleads_v22_resources_location_interest_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_location_interest_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_location_interest_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_location_interest_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_location_interest_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_location_interest_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_location_interest_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_location_interest_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_location_interest_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_location_interest_view_proto = out.File - file_google_ads_googleads_v21_resources_location_interest_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_location_interest_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_location_interest_view_proto = out.File + file_google_ads_googleads_v22_resources_location_interest_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_location_interest_view_proto_depIdxs = nil } diff --git a/resources/location_view.pb.go b/resources/location_view.pb.go index 12c33cdd..596f3f5c 100644 --- a/resources/location_view.pb.go +++ b/resources/location_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/location_view.proto +// source: google/ads/googleads/v22/resources/location_view.proto package resources @@ -53,7 +53,7 @@ type LocationView struct { func (x *LocationView) Reset() { *x = LocationView{} - mi := &file_google_ads_googleads_v21_resources_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_location_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *LocationView) String() string { func (*LocationView) ProtoMessage() {} func (x *LocationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_location_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *LocationView) ProtoReflect() protoreflect.Message { // Deprecated: Use LocationView.ProtoReflect.Descriptor instead. func (*LocationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_location_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_location_view_proto_rawDescGZIP(), []int{0} } func (x *LocationView) GetResourceName() string { @@ -88,15 +88,15 @@ func (x *LocationView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_location_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_location_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_location_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_location_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, + 0x32, 0x32, 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, @@ -115,41 +115,41 @@ var file_google_ads_googleads_v21_resources_location_view_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_location_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_location_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_location_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_location_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_location_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_location_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_location_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_location_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_location_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_location_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_location_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_location_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_location_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_location_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_location_view_proto_goTypes = []any{ - (*LocationView)(nil), // 0: google.ads.googleads.v21.resources.LocationView +var file_google_ads_googleads_v22_resources_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_location_view_proto_goTypes = []any{ + (*LocationView)(nil), // 0: google.ads.googleads.v22.resources.LocationView } -var file_google_ads_googleads_v21_resources_location_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -157,26 +157,26 @@ var file_google_ads_googleads_v21_resources_location_view_proto_depIdxs = []int3 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_location_view_proto_init() } -func file_google_ads_googleads_v21_resources_location_view_proto_init() { - if File_google_ads_googleads_v21_resources_location_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_location_view_proto_init() } +func file_google_ads_googleads_v22_resources_location_view_proto_init() { + if File_google_ads_googleads_v22_resources_location_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_location_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_location_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_location_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_location_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_location_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_location_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_location_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_location_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_location_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_location_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_location_view_proto = out.File - file_google_ads_googleads_v21_resources_location_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_location_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_location_view_proto = out.File + file_google_ads_googleads_v22_resources_location_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_location_view_proto_depIdxs = nil } diff --git a/resources/managed_placement_view.pb.go b/resources/managed_placement_view.pb.go index 62788aba..047f5d69 100644 --- a/resources/managed_placement_view.pb.go +++ b/resources/managed_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/managed_placement_view.proto +// source: google/ads/googleads/v22/resources/managed_placement_view.proto package resources @@ -50,7 +50,7 @@ type ManagedPlacementView struct { func (x *ManagedPlacementView) Reset() { *x = ManagedPlacementView{} - mi := &file_google_ads_googleads_v21_resources_managed_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_managed_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *ManagedPlacementView) String() string { func (*ManagedPlacementView) ProtoMessage() {} func (x *ManagedPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_managed_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_managed_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *ManagedPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use ManagedPlacementView.ProtoReflect.Descriptor instead. func (*ManagedPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescGZIP(), []int{0} } func (x *ManagedPlacementView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *ManagedPlacementView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_managed_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_managed_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_managed_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_managed_placement_view_proto_goTypes = []any{ - (*ManagedPlacementView)(nil), // 0: google.ads.googleads.v21.resources.ManagedPlacementView +var file_google_ads_googleads_v22_resources_managed_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_managed_placement_view_proto_goTypes = []any{ + (*ManagedPlacementView)(nil), // 0: google.ads.googleads.v22.resources.ManagedPlacementView } -var file_google_ads_googleads_v21_resources_managed_placement_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -157,26 +157,26 @@ var file_google_ads_googleads_v21_resources_managed_placement_view_proto_depIdxs 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_managed_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_managed_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_managed_placement_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_managed_placement_view_proto_init() } +func file_google_ads_googleads_v22_resources_managed_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_managed_placement_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_managed_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_managed_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_managed_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_managed_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_managed_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_managed_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_managed_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_managed_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_managed_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_managed_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_managed_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_managed_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_managed_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_managed_placement_view_proto_depIdxs = nil } diff --git a/resources/media_file.pb.go b/resources/media_file.pb.go index 35a99e3a..7d3edeb8 100644 --- a/resources/media_file.pb.go +++ b/resources/media_file.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/media_file.proto +// source: google/ads/googleads/v22/resources/media_file.proto package resources @@ -48,9 +48,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.v21.enums.MediaTypeEnum_MediaType" json:"type,omitempty"` + Type enums.MediaTypeEnum_MediaType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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"` @@ -74,7 +74,7 @@ type MediaFile struct { func (x *MediaFile) Reset() { *x = MediaFile{} - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *MediaFile) String() string { func (*MediaFile) ProtoMessage() {} func (x *MediaFile) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99,7 +99,7 @@ func (x *MediaFile) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaFile.ProtoReflect.Descriptor instead. func (*MediaFile) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_media_file_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP(), []int{0} } func (x *MediaFile) GetResourceName() string { @@ -242,7 +242,7 @@ type MediaImage struct { func (x *MediaImage) Reset() { *x = MediaImage{} - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -254,7 +254,7 @@ func (x *MediaImage) String() string { func (*MediaImage) ProtoMessage() {} func (x *MediaImage) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -267,7 +267,7 @@ func (x *MediaImage) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaImage.ProtoReflect.Descriptor instead. func (*MediaImage) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_media_file_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP(), []int{1} } func (x *MediaImage) GetData() []byte { @@ -306,7 +306,7 @@ type MediaBundle struct { func (x *MediaBundle) Reset() { *x = MediaBundle{} - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_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_v21_resources_media_file_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[2] if 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_v21_resources_media_file_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP(), []int{2} } func (x *MediaBundle) GetData() []byte { @@ -359,7 +359,7 @@ type MediaAudio struct { func (x *MediaAudio) Reset() { *x = MediaAudio{} - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -371,7 +371,7 @@ func (x *MediaAudio) String() string { func (*MediaAudio) ProtoMessage() {} func (x *MediaAudio) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -384,7 +384,7 @@ func (x *MediaAudio) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaAudio.ProtoReflect.Descriptor instead. func (*MediaAudio) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_media_file_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP(), []int{3} } func (x *MediaAudio) GetAdDurationMillis() int64 { @@ -416,7 +416,7 @@ type MediaVideo struct { func (x *MediaVideo) Reset() { *x = MediaVideo{} - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -428,7 +428,7 @@ func (x *MediaVideo) String() string { func (*MediaVideo) ProtoMessage() {} func (x *MediaVideo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -441,7 +441,7 @@ func (x *MediaVideo) ProtoReflect() protoreflect.Message { // Deprecated: Use MediaVideo.ProtoReflect.Descriptor instead. func (*MediaVideo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_media_file_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP(), []int{4} } func (x *MediaVideo) GetAdDurationMillis() int64 { @@ -472,20 +472,20 @@ func (x *MediaVideo) GetIsciCode() string { return "" } -var File_google_ads_googleads_v21_resources_media_file_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_media_file_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_media_file_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_media_file_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x65, 0x64, 0x69, 0x61, 0x5f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x69, 0x6d, 0x65, 0x5f, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -500,12 +500,12 @@ var file_google_ads_googleads_v21_resources_media_file_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -518,22 +518,22 @@ var file_google_ads_googleads_v21_resources_media_file_proto_rawDesc = string([] 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x65, 0x64, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -591,53 +591,53 @@ var file_google_ads_googleads_v21_resources_media_file_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_media_file_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_media_file_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_media_file_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_media_file_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_media_file_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_media_file_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_media_file_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_media_file_proto_rawDesc), len(file_google_ads_googleads_v21_resources_media_file_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_media_file_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_media_file_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_media_file_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_media_file_proto_rawDesc), len(file_google_ads_googleads_v22_resources_media_file_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_media_file_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_media_file_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v21_resources_media_file_proto_goTypes = []any{ - (*MediaFile)(nil), // 0: google.ads.googleads.v21.resources.MediaFile - (*MediaImage)(nil), // 1: google.ads.googleads.v21.resources.MediaImage - (*MediaBundle)(nil), // 2: google.ads.googleads.v21.resources.MediaBundle - (*MediaAudio)(nil), // 3: google.ads.googleads.v21.resources.MediaAudio - (*MediaVideo)(nil), // 4: google.ads.googleads.v21.resources.MediaVideo - (enums.MediaTypeEnum_MediaType)(0), // 5: google.ads.googleads.v21.enums.MediaTypeEnum.MediaType - (enums.MimeTypeEnum_MimeType)(0), // 6: google.ads.googleads.v21.enums.MimeTypeEnum.MimeType -} -var file_google_ads_googleads_v21_resources_media_file_proto_depIdxs = []int32{ - 5, // 0: google.ads.googleads.v21.resources.MediaFile.type:type_name -> google.ads.googleads.v21.enums.MediaTypeEnum.MediaType - 6, // 1: google.ads.googleads.v21.resources.MediaFile.mime_type:type_name -> google.ads.googleads.v21.enums.MimeTypeEnum.MimeType - 1, // 2: google.ads.googleads.v21.resources.MediaFile.image:type_name -> google.ads.googleads.v21.resources.MediaImage - 2, // 3: google.ads.googleads.v21.resources.MediaFile.media_bundle:type_name -> google.ads.googleads.v21.resources.MediaBundle - 3, // 4: google.ads.googleads.v21.resources.MediaFile.audio:type_name -> google.ads.googleads.v21.resources.MediaAudio - 4, // 5: google.ads.googleads.v21.resources.MediaFile.video:type_name -> google.ads.googleads.v21.resources.MediaVideo + return file_google_ads_googleads_v22_resources_media_file_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_media_file_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v22_resources_media_file_proto_goTypes = []any{ + (*MediaFile)(nil), // 0: google.ads.googleads.v22.resources.MediaFile + (*MediaImage)(nil), // 1: google.ads.googleads.v22.resources.MediaImage + (*MediaBundle)(nil), // 2: google.ads.googleads.v22.resources.MediaBundle + (*MediaAudio)(nil), // 3: google.ads.googleads.v22.resources.MediaAudio + (*MediaVideo)(nil), // 4: google.ads.googleads.v22.resources.MediaVideo + (enums.MediaTypeEnum_MediaType)(0), // 5: google.ads.googleads.v22.enums.MediaTypeEnum.MediaType + (enums.MimeTypeEnum_MimeType)(0), // 6: google.ads.googleads.v22.enums.MimeTypeEnum.MimeType +} +var file_google_ads_googleads_v22_resources_media_file_proto_depIdxs = []int32{ + 5, // 0: google.ads.googleads.v22.resources.MediaFile.type:type_name -> google.ads.googleads.v22.enums.MediaTypeEnum.MediaType + 6, // 1: google.ads.googleads.v22.resources.MediaFile.mime_type:type_name -> google.ads.googleads.v22.enums.MimeTypeEnum.MimeType + 1, // 2: google.ads.googleads.v22.resources.MediaFile.image:type_name -> google.ads.googleads.v22.resources.MediaImage + 2, // 3: google.ads.googleads.v22.resources.MediaFile.media_bundle:type_name -> google.ads.googleads.v22.resources.MediaBundle + 3, // 4: google.ads.googleads.v22.resources.MediaFile.audio:type_name -> google.ads.googleads.v22.resources.MediaAudio + 4, // 5: google.ads.googleads.v22.resources.MediaFile.video:type_name -> google.ads.googleads.v22.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 @@ -645,36 +645,36 @@ var file_google_ads_googleads_v21_resources_media_file_proto_depIdxs = []int32{ 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_media_file_proto_init() } -func file_google_ads_googleads_v21_resources_media_file_proto_init() { - if File_google_ads_googleads_v21_resources_media_file_proto != nil { +func init() { file_google_ads_googleads_v22_resources_media_file_proto_init() } +func file_google_ads_googleads_v22_resources_media_file_proto_init() { + if File_google_ads_googleads_v22_resources_media_file_proto != nil { return } - file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[0].OneofWrappers = []any{ (*MediaFile_Image)(nil), (*MediaFile_MediaBundle)(nil), (*MediaFile_Audio)(nil), (*MediaFile_Video)(nil), } - file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_media_file_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_media_file_proto_msgTypes[4].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_media_file_proto_rawDesc), len(file_google_ads_googleads_v21_resources_media_file_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_media_file_proto_rawDesc), len(file_google_ads_googleads_v22_resources_media_file_proto_rawDesc)), NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_media_file_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_media_file_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_media_file_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_media_file_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_media_file_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_media_file_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_media_file_proto = out.File - file_google_ads_googleads_v21_resources_media_file_proto_goTypes = nil - file_google_ads_googleads_v21_resources_media_file_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_media_file_proto = out.File + file_google_ads_googleads_v22_resources_media_file_proto_goTypes = nil + file_google_ads_googleads_v22_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 9c5a068f..79c56ca8 100644 --- a/resources/mobile_app_category_constant.pb.go +++ b/resources/mobile_app_category_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/mobile_app_category_constant.proto +// source: google/ads/googleads/v22/resources/mobile_app_category_constant.proto package resources @@ -54,7 +54,7 @@ type MobileAppCategoryConstant struct { func (x *MobileAppCategoryConstant) Reset() { *x = MobileAppCategoryConstant{} - mi := &file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *MobileAppCategoryConstant) String() string { func (*MobileAppCategoryConstant) ProtoMessage() {} func (x *MobileAppCategoryConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *MobileAppCategoryConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileAppCategoryConstant.ProtoReflect.Descriptor instead. func (*MobileAppCategoryConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescGZIP(), []int{0} } func (x *MobileAppCategoryConstant) GetResourceName() string { @@ -103,16 +103,16 @@ func (x *MobileAppCategoryConstant) GetName() string { return "" } -var File_google_ads_googleads_v21_resources_mobile_app_category_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_mobile_app_category_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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, @@ -137,42 +137,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_goTypes = []any{ - (*MobileAppCategoryConstant)(nil), // 0: google.ads.googleads.v21.resources.MobileAppCategoryConstant +var file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_goTypes = []any{ + (*MobileAppCategoryConstant)(nil), // 0: google.ads.googleads.v22.resources.MobileAppCategoryConstant } -var file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -180,27 +180,27 @@ var file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_d 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_init() } -func file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_init() { - if File_google_ads_googleads_v21_resources_mobile_app_category_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_init() } +func file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_init() { + if File_google_ads_googleads_v22_resources_mobile_app_category_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_mobile_app_category_constant_proto = out.File - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_mobile_app_category_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_mobile_app_category_constant_proto = out.File + file_google_ads_googleads_v22_resources_mobile_app_category_constant_proto_goTypes = nil + file_google_ads_googleads_v22_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 1b5093e5..5d0c11c7 100644 --- a/resources/mobile_device_constant.pb.go +++ b/resources/mobile_device_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/mobile_device_constant.proto +// source: google/ads/googleads/v22/resources/mobile_device_constant.proto package resources @@ -54,14 +54,14 @@ 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.v21.enums.MobileDeviceTypeEnum_MobileDeviceType" json:"type,omitempty"` + Type enums.MobileDeviceTypeEnum_MobileDeviceType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.MobileDeviceTypeEnum_MobileDeviceType" json:"type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MobileDeviceConstant) Reset() { *x = MobileDeviceConstant{} - mi := &file_google_ads_googleads_v21_resources_mobile_device_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_mobile_device_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MobileDeviceConstant) String() string { func (*MobileDeviceConstant) ProtoMessage() {} func (x *MobileDeviceConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_mobile_device_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_mobile_device_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MobileDeviceConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use MobileDeviceConstant.ProtoReflect.Descriptor instead. func (*MobileDeviceConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescGZIP(), []int{0} } func (x *MobileDeviceConstant) GetResourceName() string { @@ -131,17 +131,17 @@ func (x *MobileDeviceConstant) GetType() enums.MobileDeviceTypeEnum_MobileDevice return enums.MobileDeviceTypeEnum_MobileDeviceType(0) } -var File_google_ads_googleads_v21_resources_mobile_device_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_mobile_device_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -168,7 +168,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x62, 0x69, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -183,43 +183,43 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_mobile_device_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_mobile_device_constant_proto_goTypes = []any{ - (*MobileDeviceConstant)(nil), // 0: google.ads.googleads.v21.resources.MobileDeviceConstant - (enums.MobileDeviceTypeEnum_MobileDeviceType)(0), // 1: google.ads.googleads.v21.enums.MobileDeviceTypeEnum.MobileDeviceType +var file_google_ads_googleads_v22_resources_mobile_device_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_mobile_device_constant_proto_goTypes = []any{ + (*MobileDeviceConstant)(nil), // 0: google.ads.googleads.v22.resources.MobileDeviceConstant + (enums.MobileDeviceTypeEnum_MobileDeviceType)(0), // 1: google.ads.googleads.v22.enums.MobileDeviceTypeEnum.MobileDeviceType } -var file_google_ads_googleads_v21_resources_mobile_device_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.MobileDeviceConstant.type:type_name -> google.ads.googleads.v21.enums.MobileDeviceTypeEnum.MobileDeviceType +var file_google_ads_googleads_v22_resources_mobile_device_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.MobileDeviceConstant.type:type_name -> google.ads.googleads.v22.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 @@ -227,27 +227,27 @@ var file_google_ads_googleads_v21_resources_mobile_device_constant_proto_depIdxs 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_mobile_device_constant_proto_init() } -func file_google_ads_googleads_v21_resources_mobile_device_constant_proto_init() { - if File_google_ads_googleads_v21_resources_mobile_device_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_mobile_device_constant_proto_init() } +func file_google_ads_googleads_v22_resources_mobile_device_constant_proto_init() { + if File_google_ads_googleads_v22_resources_mobile_device_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_mobile_device_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_mobile_device_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_mobile_device_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_mobile_device_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_mobile_device_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_mobile_device_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_mobile_device_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_mobile_device_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_mobile_device_constant_proto = out.File - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_mobile_device_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_mobile_device_constant_proto = out.File + file_google_ads_googleads_v22_resources_mobile_device_constant_proto_goTypes = nil + file_google_ads_googleads_v22_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 b047a108..056c93d1 100644 --- a/resources/offline_conversion_upload_client_summary.pb.go +++ b/resources/offline_conversion_upload_client_summary.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/offline_conversion_upload_client_summary.proto +// source: google/ads/googleads/v22/resources/offline_conversion_upload_client_summary.proto package resources @@ -48,10 +48,10 @@ 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.v21.enums.OfflineEventUploadClientEnum_OfflineEventUploadClient" json:"client,omitempty"` + Client enums.OfflineEventUploadClientEnum_OfflineEventUploadClient `protobuf:"varint,2,opt,name=client,proto3,enum=google.ads.googleads.v22.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.v21.enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus" json:"status,omitempty"` + Status enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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. @@ -78,7 +78,7 @@ type OfflineConversionUploadClientSummary struct { func (x *OfflineConversionUploadClientSummary) Reset() { *x = OfflineConversionUploadClientSummary{} - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[0] if 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_v21_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{0} } func (x *OfflineConversionUploadClientSummary) GetResourceName() string { @@ -212,7 +212,7 @@ type OfflineConversionSummary struct { func (x *OfflineConversionSummary) Reset() { *x = OfflineConversionSummary{} - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -224,7 +224,7 @@ func (x *OfflineConversionSummary) String() string { func (*OfflineConversionSummary) ProtoMessage() {} func (x *OfflineConversionSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -237,7 +237,7 @@ func (x *OfflineConversionSummary) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionSummary.ProtoReflect.Descriptor instead. func (*OfflineConversionSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{1} } func (x *OfflineConversionSummary) GetSuccessfulCount() int64 { @@ -318,7 +318,7 @@ type OfflineConversionAlert struct { func (x *OfflineConversionAlert) Reset() { *x = OfflineConversionAlert{} - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *OfflineConversionAlert) String() string { func (*OfflineConversionAlert) ProtoMessage() {} func (x *OfflineConversionAlert) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *OfflineConversionAlert) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionAlert.ProtoReflect.Descriptor instead. func (*OfflineConversionAlert) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{2} } func (x *OfflineConversionAlert) GetError() *OfflineConversionError { @@ -384,7 +384,7 @@ type OfflineConversionError struct { func (x *OfflineConversionError) Reset() { *x = OfflineConversionError{} - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -396,7 +396,7 @@ func (x *OfflineConversionError) String() string { func (*OfflineConversionError) ProtoMessage() {} func (x *OfflineConversionError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -409,7 +409,7 @@ func (x *OfflineConversionError) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineConversionError.ProtoReflect.Descriptor instead. func (*OfflineConversionError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP(), []int{3} } func (x *OfflineConversionError) GetErrorCode() isOfflineConversionError_ErrorCode { @@ -515,52 +515,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.v21.errors.CollectionSizeErrorEnum_CollectionSizeError,oneof"` + CollectionSizeError errors.CollectionSizeErrorEnum_CollectionSizeError `protobuf:"varint,1,opt,name=collection_size_error,json=collectionSizeError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError,oneof"` + ConversionAdjustmentUploadError errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError `protobuf:"varint,2,opt,name=conversion_adjustment_upload_error,json=conversionAdjustmentUploadError,proto3,enum=google.ads.googleads.v22.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.v21.errors.ConversionUploadErrorEnum_ConversionUploadError,oneof"` + ConversionUploadError errors.ConversionUploadErrorEnum_ConversionUploadError `protobuf:"varint,3,opt,name=conversion_upload_error,json=conversionUploadError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DateErrorEnum_DateError,oneof"` + DateError errors.DateErrorEnum_DateError `protobuf:"varint,4,opt,name=date_error,json=dateError,proto3,enum=google.ads.googleads.v22.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.v21.errors.DistinctErrorEnum_DistinctError,oneof"` + DistinctError errors.DistinctErrorEnum_DistinctError `protobuf:"varint,5,opt,name=distinct_error,json=distinctError,proto3,enum=google.ads.googleads.v22.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.v21.errors.FieldErrorEnum_FieldError,oneof"` + FieldError errors.FieldErrorEnum_FieldError `protobuf:"varint,6,opt,name=field_error,json=fieldError,proto3,enum=google.ads.googleads.v22.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.v21.errors.MutateErrorEnum_MutateError,oneof"` + MutateError errors.MutateErrorEnum_MutateError `protobuf:"varint,7,opt,name=mutate_error,json=mutateError,proto3,enum=google.ads.googleads.v22.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.v21.errors.NotAllowlistedErrorEnum_NotAllowlistedError,oneof"` + NotAllowlistedError errors.NotAllowlistedErrorEnum_NotAllowlistedError `protobuf:"varint,8,opt,name=not_allowlisted_error,json=notAllowlistedError,proto3,enum=google.ads.googleads.v22.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.v21.errors.StringFormatErrorEnum_StringFormatError,oneof"` + StringFormatError errors.StringFormatErrorEnum_StringFormatError `protobuf:"varint,9,opt,name=string_format_error,json=stringFormatError,proto3,enum=google.ads.googleads.v22.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.v21.errors.StringLengthErrorEnum_StringLengthError,oneof"` + StringLengthError errors.StringLengthErrorEnum_StringLengthError `protobuf:"varint,10,opt,name=string_length_error,json=stringLengthError,proto3,enum=google.ads.googleads.v22.errors.StringLengthErrorEnum_StringLengthError,oneof"` } func (*OfflineConversionError_CollectionSizeError) isOfflineConversionError_ErrorCode() {} @@ -583,61 +583,61 @@ func (*OfflineConversionError_StringFormatError) isOfflineConversionError_ErrorC func (*OfflineConversionError_StringLengthError) isOfflineConversionError_ErrorCode() {} -var File_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x5f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x63, 0x6f, 0x6e, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x66, 0x69, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2f, 0x73, 0x74, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -655,14 +655,14 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -689,20 +689,20 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x6f, 0x61, 0x64, 0x44, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x6a, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x88, 0x01, 0x0a, @@ -734,7 +734,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, 0x66, + 0x32, 0x32, 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, 0x72, 0x5f, 0x70, 0x65, 0x72, 0x63, 0x65, 0x6e, 0x74, @@ -745,7 +745,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x43, 0x6f, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x42, 0x03, 0xe0, 0x41, 0x03, 0x48, 0x00, 0x52, @@ -754,7 +754,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -765,7 +765,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x8f, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -773,34 +773,34 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x44, 0x69, 0x73, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x45, 0x72, + 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, 0x4d, 0x75, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x65, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x12, 0x87, 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x73, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -808,7 +808,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x65, 0x64, 0x45, 0x72, 0x72, 0x6f, 0x72, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -816,7 +816,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x6d, 0x61, 0x74, 0x45, 0x72, 0x72, 0x6f, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -824,73 +824,73 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum 0x6e, 0x67, 0x74, 0x68, 0x45, 0x72, 0x72, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_goTypes = []any{ - (*OfflineConversionUploadClientSummary)(nil), // 0: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary - (*OfflineConversionSummary)(nil), // 1: google.ads.googleads.v21.resources.OfflineConversionSummary - (*OfflineConversionAlert)(nil), // 2: google.ads.googleads.v21.resources.OfflineConversionAlert - (*OfflineConversionError)(nil), // 3: google.ads.googleads.v21.resources.OfflineConversionError - (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 4: google.ads.googleads.v21.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 5: google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - (errors.CollectionSizeErrorEnum_CollectionSizeError)(0), // 6: google.ads.googleads.v21.errors.CollectionSizeErrorEnum.CollectionSizeError - (errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 7: google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - (errors.ConversionUploadErrorEnum_ConversionUploadError)(0), // 8: google.ads.googleads.v21.errors.ConversionUploadErrorEnum.ConversionUploadError - (errors.DateErrorEnum_DateError)(0), // 9: google.ads.googleads.v21.errors.DateErrorEnum.DateError - (errors.DistinctErrorEnum_DistinctError)(0), // 10: google.ads.googleads.v21.errors.DistinctErrorEnum.DistinctError - (errors.FieldErrorEnum_FieldError)(0), // 11: google.ads.googleads.v21.errors.FieldErrorEnum.FieldError - (errors.MutateErrorEnum_MutateError)(0), // 12: google.ads.googleads.v21.errors.MutateErrorEnum.MutateError - (errors.NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 13: google.ads.googleads.v21.errors.NotAllowlistedErrorEnum.NotAllowlistedError - (errors.StringFormatErrorEnum_StringFormatError)(0), // 14: google.ads.googleads.v21.errors.StringFormatErrorEnum.StringFormatError - (errors.StringLengthErrorEnum_StringLengthError)(0), // 15: google.ads.googleads.v21.errors.StringLengthErrorEnum.StringLengthError -} -var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary.client:type_name -> google.ads.googleads.v21.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - 5, // 1: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary.status:type_name -> google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - 1, // 2: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary.daily_summaries:type_name -> google.ads.googleads.v21.resources.OfflineConversionSummary - 1, // 3: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary.job_summaries:type_name -> google.ads.googleads.v21.resources.OfflineConversionSummary - 2, // 4: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary.alerts:type_name -> google.ads.googleads.v21.resources.OfflineConversionAlert - 3, // 5: google.ads.googleads.v21.resources.OfflineConversionAlert.error:type_name -> google.ads.googleads.v21.resources.OfflineConversionError - 6, // 6: google.ads.googleads.v21.resources.OfflineConversionError.collection_size_error:type_name -> google.ads.googleads.v21.errors.CollectionSizeErrorEnum.CollectionSizeError - 7, // 7: google.ads.googleads.v21.resources.OfflineConversionError.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v21.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError - 8, // 8: google.ads.googleads.v21.resources.OfflineConversionError.conversion_upload_error:type_name -> google.ads.googleads.v21.errors.ConversionUploadErrorEnum.ConversionUploadError - 9, // 9: google.ads.googleads.v21.resources.OfflineConversionError.date_error:type_name -> google.ads.googleads.v21.errors.DateErrorEnum.DateError - 10, // 10: google.ads.googleads.v21.resources.OfflineConversionError.distinct_error:type_name -> google.ads.googleads.v21.errors.DistinctErrorEnum.DistinctError - 11, // 11: google.ads.googleads.v21.resources.OfflineConversionError.field_error:type_name -> google.ads.googleads.v21.errors.FieldErrorEnum.FieldError - 12, // 12: google.ads.googleads.v21.resources.OfflineConversionError.mutate_error:type_name -> google.ads.googleads.v21.errors.MutateErrorEnum.MutateError - 13, // 13: google.ads.googleads.v21.resources.OfflineConversionError.not_allowlisted_error:type_name -> google.ads.googleads.v21.errors.NotAllowlistedErrorEnum.NotAllowlistedError - 14, // 14: google.ads.googleads.v21.resources.OfflineConversionError.string_format_error:type_name -> google.ads.googleads.v21.errors.StringFormatErrorEnum.StringFormatError - 15, // 15: google.ads.googleads.v21.resources.OfflineConversionError.string_length_error:type_name -> google.ads.googleads.v21.errors.StringLengthErrorEnum.StringLengthError + return file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_goTypes = []any{ + (*OfflineConversionUploadClientSummary)(nil), // 0: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary + (*OfflineConversionSummary)(nil), // 1: google.ads.googleads.v22.resources.OfflineConversionSummary + (*OfflineConversionAlert)(nil), // 2: google.ads.googleads.v22.resources.OfflineConversionAlert + (*OfflineConversionError)(nil), // 3: google.ads.googleads.v22.resources.OfflineConversionError + (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 4: google.ads.googleads.v22.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 5: google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + (errors.CollectionSizeErrorEnum_CollectionSizeError)(0), // 6: google.ads.googleads.v22.errors.CollectionSizeErrorEnum.CollectionSizeError + (errors.ConversionAdjustmentUploadErrorEnum_ConversionAdjustmentUploadError)(0), // 7: google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + (errors.ConversionUploadErrorEnum_ConversionUploadError)(0), // 8: google.ads.googleads.v22.errors.ConversionUploadErrorEnum.ConversionUploadError + (errors.DateErrorEnum_DateError)(0), // 9: google.ads.googleads.v22.errors.DateErrorEnum.DateError + (errors.DistinctErrorEnum_DistinctError)(0), // 10: google.ads.googleads.v22.errors.DistinctErrorEnum.DistinctError + (errors.FieldErrorEnum_FieldError)(0), // 11: google.ads.googleads.v22.errors.FieldErrorEnum.FieldError + (errors.MutateErrorEnum_MutateError)(0), // 12: google.ads.googleads.v22.errors.MutateErrorEnum.MutateError + (errors.NotAllowlistedErrorEnum_NotAllowlistedError)(0), // 13: google.ads.googleads.v22.errors.NotAllowlistedErrorEnum.NotAllowlistedError + (errors.StringFormatErrorEnum_StringFormatError)(0), // 14: google.ads.googleads.v22.errors.StringFormatErrorEnum.StringFormatError + (errors.StringLengthErrorEnum_StringLengthError)(0), // 15: google.ads.googleads.v22.errors.StringLengthErrorEnum.StringLengthError +} +var file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary.client:type_name -> google.ads.googleads.v22.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + 5, // 1: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary.status:type_name -> google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + 1, // 2: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary.daily_summaries:type_name -> google.ads.googleads.v22.resources.OfflineConversionSummary + 1, // 3: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary.job_summaries:type_name -> google.ads.googleads.v22.resources.OfflineConversionSummary + 2, // 4: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary.alerts:type_name -> google.ads.googleads.v22.resources.OfflineConversionAlert + 3, // 5: google.ads.googleads.v22.resources.OfflineConversionAlert.error:type_name -> google.ads.googleads.v22.resources.OfflineConversionError + 6, // 6: google.ads.googleads.v22.resources.OfflineConversionError.collection_size_error:type_name -> google.ads.googleads.v22.errors.CollectionSizeErrorEnum.CollectionSizeError + 7, // 7: google.ads.googleads.v22.resources.OfflineConversionError.conversion_adjustment_upload_error:type_name -> google.ads.googleads.v22.errors.ConversionAdjustmentUploadErrorEnum.ConversionAdjustmentUploadError + 8, // 8: google.ads.googleads.v22.resources.OfflineConversionError.conversion_upload_error:type_name -> google.ads.googleads.v22.errors.ConversionUploadErrorEnum.ConversionUploadError + 9, // 9: google.ads.googleads.v22.resources.OfflineConversionError.date_error:type_name -> google.ads.googleads.v22.errors.DateErrorEnum.DateError + 10, // 10: google.ads.googleads.v22.resources.OfflineConversionError.distinct_error:type_name -> google.ads.googleads.v22.errors.DistinctErrorEnum.DistinctError + 11, // 11: google.ads.googleads.v22.resources.OfflineConversionError.field_error:type_name -> google.ads.googleads.v22.errors.FieldErrorEnum.FieldError + 12, // 12: google.ads.googleads.v22.resources.OfflineConversionError.mutate_error:type_name -> google.ads.googleads.v22.errors.MutateErrorEnum.MutateError + 13, // 13: google.ads.googleads.v22.resources.OfflineConversionError.not_allowlisted_error:type_name -> google.ads.googleads.v22.errors.NotAllowlistedErrorEnum.NotAllowlistedError + 14, // 14: google.ads.googleads.v22.resources.OfflineConversionError.string_format_error:type_name -> google.ads.googleads.v22.errors.StringFormatErrorEnum.StringFormatError + 15, // 15: google.ads.googleads.v22.resources.OfflineConversionError.string_length_error:type_name -> google.ads.googleads.v22.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 @@ -899,17 +899,17 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_client_sum } func init() { - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_init() + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_init() } -func file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_init() { - if File_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto != nil { +func file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_init() { + if File_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto != nil { return } - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[1].OneofWrappers = []any{ (*OfflineConversionSummary_JobId)(nil), (*OfflineConversionSummary_UploadDate)(nil), } - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes[3].OneofWrappers = []any{ (*OfflineConversionError_CollectionSizeError)(nil), (*OfflineConversionError_ConversionAdjustmentUploadError)(nil), (*OfflineConversionError_ConversionUploadError)(nil), @@ -925,17 +925,17 @@ func file_google_ads_googleads_v21_resources_offline_conversion_upload_client_su out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto = out.File - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_goTypes = nil - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto = out.File + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_goTypes = nil + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_depIdxs = nil } diff --git a/resources/offline_conversion_upload_conversion_action_summary.pb.go b/resources/offline_conversion_upload_conversion_action_summary.pb.go index 7149a3c7..c97a761a 100644 --- a/resources/offline_conversion_upload_conversion_action_summary.pb.go +++ b/resources/offline_conversion_upload_conversion_action_summary.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/offline_conversion_upload_conversion_action_summary.proto +// source: google/ads/googleads/v22/resources/offline_conversion_upload_conversion_action_summary.proto package resources @@ -47,7 +47,7 @@ type OfflineConversionUploadConversionActionSummary struct { // `customers/{customer_id}/offlineConversionUploadConversionActionSummaries/{conversion_action_id}~{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.v21.enums.OfflineEventUploadClientEnum_OfflineEventUploadClient" json:"client,omitempty"` + Client enums.OfflineEventUploadClientEnum_OfflineEventUploadClient `protobuf:"varint,2,opt,name=client,proto3,enum=google.ads.googleads.v22.enums.OfflineEventUploadClientEnum_OfflineEventUploadClient" json:"client,omitempty"` // Output only. Conversion action id. ConversionActionId int64 `protobuf:"varint,3,opt,name=conversion_action_id,json=conversionActionId,proto3" json:"conversion_action_id,omitempty"` // Output only. The name of the conversion action. @@ -55,7 +55,7 @@ type OfflineConversionUploadConversionActionSummary struct { // Output only. Overall status for offline conversion upload conversion action // summary. Status is generated from most recent calendar day with upload // stats. - Status enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus" json:"status,omitempty"` + Status enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus" json:"status,omitempty"` // Output only. Total count of uploaded events. TotalEventCount int64 `protobuf:"varint,6,opt,name=total_event_count,json=totalEventCount,proto3" json:"total_event_count,omitempty"` // Output only. Total count of successful uploaded events. @@ -78,7 +78,7 @@ type OfflineConversionUploadConversionActionSummary struct { func (x *OfflineConversionUploadConversionActionSummary) Reset() { *x = OfflineConversionUploadConversionActionSummary{} - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -90,7 +90,7 @@ func (x *OfflineConversionUploadConversionActionSummary) String() string { func (*OfflineConversionUploadConversionActionSummary) ProtoMessage() {} func (x *OfflineConversionUploadConversionActionSummary) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -103,7 +103,7 @@ func (x *OfflineConversionUploadConversionActionSummary) ProtoReflect() protoref // Deprecated: Use OfflineConversionUploadConversionActionSummary.ProtoReflect.Descriptor instead. func (*OfflineConversionUploadConversionActionSummary) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescGZIP(), []int{0} } func (x *OfflineConversionUploadConversionActionSummary) GetResourceName() string { @@ -190,29 +190,29 @@ func (x *OfflineConversionUploadConversionActionSummary) GetAlerts() []*OfflineC return nil } -var File_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc = string([]byte{ 0x0a, 0x5c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6f, 0x66, + 0x76, 0x32, 0x32, 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, 0x1f, 0x67, 0x6f, @@ -232,7 +232,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion 0x61, 0x72, 0x79, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -247,7 +247,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion 0x69, 0x6f, 0x6e, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x84, 0x01, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x05, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, + 0x76, 0x32, 0x32, 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, 0x72, 0x73, 0x69, 0x6f, @@ -269,20 +269,20 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x6a, 0x0a, 0x0f, 0x64, 0x61, 0x69, 0x6c, 0x79, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x69, 0x65, 0x73, 0x18, 0x0a, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0b, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x0c, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0xb5, 0x01, 0xea, 0x41, 0xb1, 0x01, 0x0a, 0x47, 0x67, 0x6f, 0x6f, @@ -298,7 +298,7 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x7d, 0x42, 0xa5, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x33, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, @@ -306,44 +306,44 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x67, 0x6f, 0x6c, 0x61, 0x6e, 0x67, 0x2e, 0x6f, 0x72, 0x67, 0x2f, 0x67, 0x65, 0x6e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x70, 0x69, 0x73, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData + return file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDescData } -var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes = []any{ - (*OfflineConversionUploadConversionActionSummary)(nil), // 0: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary - (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 1: google.ads.googleads.v21.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 2: google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - (*OfflineConversionSummary)(nil), // 3: google.ads.googleads.v21.resources.OfflineConversionSummary - (*OfflineConversionAlert)(nil), // 4: google.ads.googleads.v21.resources.OfflineConversionAlert +var file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes = []any{ + (*OfflineConversionUploadConversionActionSummary)(nil), // 0: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary + (enums.OfflineEventUploadClientEnum_OfflineEventUploadClient)(0), // 1: google.ads.googleads.v22.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + (enums.OfflineConversionDiagnosticStatusEnum_OfflineConversionDiagnosticStatus)(0), // 2: google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + (*OfflineConversionSummary)(nil), // 3: google.ads.googleads.v22.resources.OfflineConversionSummary + (*OfflineConversionAlert)(nil), // 4: google.ads.googleads.v22.resources.OfflineConversionAlert } -var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary.client:type_name -> google.ads.googleads.v21.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient - 2, // 1: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary.status:type_name -> google.ads.googleads.v21.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus - 3, // 2: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary.daily_summaries:type_name -> google.ads.googleads.v21.resources.OfflineConversionSummary - 3, // 3: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary.job_summaries:type_name -> google.ads.googleads.v21.resources.OfflineConversionSummary - 4, // 4: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary.alerts:type_name -> google.ads.googleads.v21.resources.OfflineConversionAlert +var file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary.client:type_name -> google.ads.googleads.v22.enums.OfflineEventUploadClientEnum.OfflineEventUploadClient + 2, // 1: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary.status:type_name -> google.ads.googleads.v22.enums.OfflineConversionDiagnosticStatusEnum.OfflineConversionDiagnosticStatus + 3, // 2: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary.daily_summaries:type_name -> google.ads.googleads.v22.resources.OfflineConversionSummary + 3, // 3: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary.job_summaries:type_name -> google.ads.googleads.v22.resources.OfflineConversionSummary + 4, // 4: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary.alerts:type_name -> google.ads.googleads.v22.resources.OfflineConversionAlert 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 @@ -352,28 +352,28 @@ var file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion } func init() { - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_init() + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_init() } -func file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_init() { - if File_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto != nil { +func file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_init() { + if File_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto != nil { return } - file_google_ads_googleads_v21_resources_offline_conversion_upload_client_summary_proto_init() + file_google_ads_googleads_v22_resources_offline_conversion_upload_client_summary_proto_init() type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto = out.File - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes = nil - file_google_ads_googleads_v21_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto = out.File + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_goTypes = nil + file_google_ads_googleads_v22_resources_offline_conversion_upload_conversion_action_summary_proto_depIdxs = nil } diff --git a/resources/offline_user_data_job.pb.go b/resources/offline_user_data_job.pb.go index 6f3d9a7a..e6be1eb6 100644 --- a/resources/offline_user_data_job.pb.go +++ b/resources/offline_user_data_job.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/offline_user_data_job.proto +// source: google/ads/googleads/v22/resources/offline_user_data_job.proto package resources @@ -54,11 +54,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.v21.enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType" json:"type,omitempty"` + Type enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus" json:"status,omitempty"` + Status enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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. @@ -74,7 +74,7 @@ type OfflineUserDataJob struct { func (x *OfflineUserDataJob) Reset() { *x = OfflineUserDataJob{} - mi := &file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -86,7 +86,7 @@ func (x *OfflineUserDataJob) String() string { func (*OfflineUserDataJob) ProtoMessage() {} func (x *OfflineUserDataJob) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -99,7 +99,7 @@ func (x *OfflineUserDataJob) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJob.ProtoReflect.Descriptor instead. func (*OfflineUserDataJob) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescGZIP(), []int{0} } func (x *OfflineUserDataJob) GetResourceName() string { @@ -201,14 +201,14 @@ 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.v21.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.v22.enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange" json:"match_rate_range,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *OfflineUserDataJobMetadata) Reset() { *x = OfflineUserDataJobMetadata{} - mi := &file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -220,7 +220,7 @@ func (x *OfflineUserDataJobMetadata) String() string { func (*OfflineUserDataJobMetadata) ProtoMessage() {} func (x *OfflineUserDataJobMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -233,7 +233,7 @@ func (x *OfflineUserDataJobMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobMetadata.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescGZIP(), []int{1} } func (x *OfflineUserDataJobMetadata) GetMatchRateRange() enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange { @@ -243,35 +243,35 @@ func (x *OfflineUserDataJobMetadata) GetMatchRateRange() enums.OfflineUserDataJo return enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange(0) } -var File_google_ads_googleads_v21_resources_offline_user_data_job_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_offline_user_data_job_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x32, 0x32, 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, @@ -291,21 +291,21 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -331,7 +331,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -350,7 +350,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x66, 0x66, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -358,55 +358,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDescData + return file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDescData } -var file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_offline_user_data_job_proto_goTypes = []any{ - (*OfflineUserDataJob)(nil), // 0: google.ads.googleads.v21.resources.OfflineUserDataJob - (*OfflineUserDataJobMetadata)(nil), // 1: google.ads.googleads.v21.resources.OfflineUserDataJobMetadata - (enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 2: google.ads.googleads.v21.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType - (enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 3: google.ads.googleads.v21.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus - (enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 4: google.ads.googleads.v21.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason - (*common.CustomerMatchUserListMetadata)(nil), // 5: google.ads.googleads.v21.common.CustomerMatchUserListMetadata - (*common.StoreSalesMetadata)(nil), // 6: google.ads.googleads.v21.common.StoreSalesMetadata - (enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 7: google.ads.googleads.v21.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange +var file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_offline_user_data_job_proto_goTypes = []any{ + (*OfflineUserDataJob)(nil), // 0: google.ads.googleads.v22.resources.OfflineUserDataJob + (*OfflineUserDataJobMetadata)(nil), // 1: google.ads.googleads.v22.resources.OfflineUserDataJobMetadata + (enums.OfflineUserDataJobTypeEnum_OfflineUserDataJobType)(0), // 2: google.ads.googleads.v22.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType + (enums.OfflineUserDataJobStatusEnum_OfflineUserDataJobStatus)(0), // 3: google.ads.googleads.v22.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus + (enums.OfflineUserDataJobFailureReasonEnum_OfflineUserDataJobFailureReason)(0), // 4: google.ads.googleads.v22.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason + (*common.CustomerMatchUserListMetadata)(nil), // 5: google.ads.googleads.v22.common.CustomerMatchUserListMetadata + (*common.StoreSalesMetadata)(nil), // 6: google.ads.googleads.v22.common.StoreSalesMetadata + (enums.OfflineUserDataJobMatchRateRangeEnum_OfflineUserDataJobMatchRateRange)(0), // 7: google.ads.googleads.v22.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange } -var file_google_ads_googleads_v21_resources_offline_user_data_job_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.OfflineUserDataJob.type:type_name -> google.ads.googleads.v21.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType - 3, // 1: google.ads.googleads.v21.resources.OfflineUserDataJob.status:type_name -> google.ads.googleads.v21.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus - 4, // 2: google.ads.googleads.v21.resources.OfflineUserDataJob.failure_reason:type_name -> google.ads.googleads.v21.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason - 1, // 3: google.ads.googleads.v21.resources.OfflineUserDataJob.operation_metadata:type_name -> google.ads.googleads.v21.resources.OfflineUserDataJobMetadata - 5, // 4: google.ads.googleads.v21.resources.OfflineUserDataJob.customer_match_user_list_metadata:type_name -> google.ads.googleads.v21.common.CustomerMatchUserListMetadata - 6, // 5: google.ads.googleads.v21.resources.OfflineUserDataJob.store_sales_metadata:type_name -> google.ads.googleads.v21.common.StoreSalesMetadata - 7, // 6: google.ads.googleads.v21.resources.OfflineUserDataJobMetadata.match_rate_range:type_name -> google.ads.googleads.v21.enums.OfflineUserDataJobMatchRateRangeEnum.OfflineUserDataJobMatchRateRange +var file_google_ads_googleads_v22_resources_offline_user_data_job_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.OfflineUserDataJob.type:type_name -> google.ads.googleads.v22.enums.OfflineUserDataJobTypeEnum.OfflineUserDataJobType + 3, // 1: google.ads.googleads.v22.resources.OfflineUserDataJob.status:type_name -> google.ads.googleads.v22.enums.OfflineUserDataJobStatusEnum.OfflineUserDataJobStatus + 4, // 2: google.ads.googleads.v22.resources.OfflineUserDataJob.failure_reason:type_name -> google.ads.googleads.v22.enums.OfflineUserDataJobFailureReasonEnum.OfflineUserDataJobFailureReason + 1, // 3: google.ads.googleads.v22.resources.OfflineUserDataJob.operation_metadata:type_name -> google.ads.googleads.v22.resources.OfflineUserDataJobMetadata + 5, // 4: google.ads.googleads.v22.resources.OfflineUserDataJob.customer_match_user_list_metadata:type_name -> google.ads.googleads.v22.common.CustomerMatchUserListMetadata + 6, // 5: google.ads.googleads.v22.resources.OfflineUserDataJob.store_sales_metadata:type_name -> google.ads.googleads.v22.common.StoreSalesMetadata + 7, // 6: google.ads.googleads.v22.resources.OfflineUserDataJobMetadata.match_rate_range:type_name -> google.ads.googleads.v22.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 @@ -414,12 +414,12 @@ var file_google_ads_googleads_v21_resources_offline_user_data_job_proto_depIdxs 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_offline_user_data_job_proto_init() } -func file_google_ads_googleads_v21_resources_offline_user_data_job_proto_init() { - if File_google_ads_googleads_v21_resources_offline_user_data_job_proto != nil { +func init() { file_google_ads_googleads_v22_resources_offline_user_data_job_proto_init() } +func file_google_ads_googleads_v22_resources_offline_user_data_job_proto_init() { + if File_google_ads_googleads_v22_resources_offline_user_data_job_proto != nil { return } - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes[0].OneofWrappers = []any{ (*OfflineUserDataJob_CustomerMatchUserListMetadata)(nil), (*OfflineUserDataJob_StoreSalesMetadata)(nil), } @@ -427,17 +427,17 @@ func file_google_ads_googleads_v21_resources_offline_user_data_job_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDesc), len(file_google_ads_googleads_v21_resources_offline_user_data_job_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDesc), len(file_google_ads_googleads_v22_resources_offline_user_data_job_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_offline_user_data_job_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_offline_user_data_job_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_offline_user_data_job_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_offline_user_data_job_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_offline_user_data_job_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_offline_user_data_job_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_offline_user_data_job_proto = out.File - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_goTypes = nil - file_google_ads_googleads_v21_resources_offline_user_data_job_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_offline_user_data_job_proto = out.File + file_google_ads_googleads_v22_resources_offline_user_data_job_proto_goTypes = nil + file_google_ads_googleads_v22_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 971329a2..897277c2 100644 --- a/resources/operating_system_version_constant.pb.go +++ b/resources/operating_system_version_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/operating_system_version_constant.proto +// source: google/ads/googleads/v22/resources/operating_system_version_constant.proto package resources @@ -57,14 +57,14 @@ 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.v21.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.v22.enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType" json:"operator_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *OperatingSystemVersionConstant) Reset() { *x = OperatingSystemVersionConstant{} - mi := &file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *OperatingSystemVersionConstant) String() string { func (*OperatingSystemVersionConstant) ProtoMessage() {} func (x *OperatingSystemVersionConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *OperatingSystemVersionConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use OperatingSystemVersionConstant.ProtoReflect.Descriptor instead. func (*OperatingSystemVersionConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescGZIP(), []int{0} } func (x *OperatingSystemVersionConstant) GetResourceName() string { @@ -134,18 +134,18 @@ func (x *OperatingSystemVersionConstant) GetOperatorType() enums.OperatingSystem return enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType(0) } -var File_google_ads_googleads_v21_resources_operating_system_version_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_operating_system_version_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -174,7 +174,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4f, 0x70, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -193,43 +193,43 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x23, 0x4f, 0x70, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_goTypes = []any{ - (*OperatingSystemVersionConstant)(nil), // 0: google.ads.googleads.v21.resources.OperatingSystemVersionConstant - (enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 1: google.ads.googleads.v21.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType +var file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_goTypes = []any{ + (*OperatingSystemVersionConstant)(nil), // 0: google.ads.googleads.v22.resources.OperatingSystemVersionConstant + (enums.OperatingSystemVersionOperatorTypeEnum_OperatingSystemVersionOperatorType)(0), // 1: google.ads.googleads.v22.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType } -var file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.OperatingSystemVersionConstant.operator_type:type_name -> google.ads.googleads.v21.enums.OperatingSystemVersionOperatorTypeEnum.OperatingSystemVersionOperatorType +var file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.OperatingSystemVersionConstant.operator_type:type_name -> google.ads.googleads.v22.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 @@ -237,27 +237,27 @@ var file_google_ads_googleads_v21_resources_operating_system_version_constant_pr 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_init() } -func file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_init() { - if File_google_ads_googleads_v21_resources_operating_system_version_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_init() } +func file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_init() { + if File_google_ads_googleads_v22_resources_operating_system_version_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_operating_system_version_constant_proto = out.File - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_operating_system_version_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_operating_system_version_constant_proto = out.File + file_google_ads_googleads_v22_resources_operating_system_version_constant_proto_goTypes = nil + file_google_ads_googleads_v22_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 2b8f2c9c..b664e2b9 100644 --- a/resources/paid_organic_search_term_view.pb.go +++ b/resources/paid_organic_search_term_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/paid_organic_search_term_view.proto +// source: google/ads/googleads/v22/resources/paid_organic_search_term_view.proto package resources @@ -54,7 +54,7 @@ type PaidOrganicSearchTermView struct { func (x *PaidOrganicSearchTermView) Reset() { *x = PaidOrganicSearchTermView{} - mi := &file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *PaidOrganicSearchTermView) String() string { func (*PaidOrganicSearchTermView) ProtoMessage() {} func (x *PaidOrganicSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *PaidOrganicSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use PaidOrganicSearchTermView.ProtoReflect.Descriptor instead. func (*PaidOrganicSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *PaidOrganicSearchTermView) GetResourceName() string { @@ -96,16 +96,16 @@ func (x *PaidOrganicSearchTermView) GetSearchTerm() string { return "" } -var File_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, + 0x32, 0x32, 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, @@ -133,41 +133,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x50, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_goTypes = []any{ - (*PaidOrganicSearchTermView)(nil), // 0: google.ads.googleads.v21.resources.PaidOrganicSearchTermView +var file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_goTypes = []any{ + (*PaidOrganicSearchTermView)(nil), // 0: google.ads.googleads.v22.resources.PaidOrganicSearchTermView } -var file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -175,27 +175,27 @@ var file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_init() } -func file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_init() { - if File_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_init() } +func file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_init() { + if File_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto != nil { return } - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto = out.File - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_paid_organic_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto = out.File + file_google_ads_googleads_v22_resources_paid_organic_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 4ff5a5b6..0c21f7b0 100644 --- a/resources/parental_status_view.pb.go +++ b/resources/parental_status_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/parental_status_view.proto +// source: google/ads/googleads/v22/resources/parental_status_view.proto package resources @@ -50,7 +50,7 @@ type ParentalStatusView struct { func (x *ParentalStatusView) Reset() { *x = ParentalStatusView{} - mi := &file_google_ads_googleads_v21_resources_parental_status_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_parental_status_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *ParentalStatusView) String() string { func (*ParentalStatusView) ProtoMessage() {} func (x *ParentalStatusView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_parental_status_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_parental_status_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *ParentalStatusView) ProtoReflect() protoreflect.Message { // Deprecated: Use ParentalStatusView.ProtoReflect.Descriptor instead. func (*ParentalStatusView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescGZIP(), []int{0} } func (x *ParentalStatusView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *ParentalStatusView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_parental_status_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_parental_status_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_parental_status_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_parental_status_view_proto_goTypes = []any{ - (*ParentalStatusView)(nil), // 0: google.ads.googleads.v21.resources.ParentalStatusView +var file_google_ads_googleads_v22_resources_parental_status_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_parental_status_view_proto_goTypes = []any{ + (*ParentalStatusView)(nil), // 0: google.ads.googleads.v22.resources.ParentalStatusView } -var file_google_ads_googleads_v21_resources_parental_status_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -156,26 +156,26 @@ var file_google_ads_googleads_v21_resources_parental_status_view_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_parental_status_view_proto_init() } -func file_google_ads_googleads_v21_resources_parental_status_view_proto_init() { - if File_google_ads_googleads_v21_resources_parental_status_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_parental_status_view_proto_init() } +func file_google_ads_googleads_v22_resources_parental_status_view_proto_init() { + if File_google_ads_googleads_v22_resources_parental_status_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_parental_status_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_parental_status_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_parental_status_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_parental_status_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_parental_status_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_parental_status_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_parental_status_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_parental_status_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_parental_status_view_proto = out.File - file_google_ads_googleads_v21_resources_parental_status_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_parental_status_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_parental_status_view_proto = out.File + file_google_ads_googleads_v22_resources_parental_status_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_parental_status_view_proto_depIdxs = nil } diff --git a/resources/payments_account.pb.go b/resources/payments_account.pb.go index 4d89fe4b..6ba50e81 100644 --- a/resources/payments_account.pb.go +++ b/resources/payments_account.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/payments_account.proto +// source: google/ads/googleads/v22/resources/payments_account.proto package resources @@ -67,7 +67,7 @@ type PaymentsAccount struct { func (x *PaymentsAccount) Reset() { *x = PaymentsAccount{} - mi := &file_google_ads_googleads_v21_resources_payments_account_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_payments_account_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *PaymentsAccount) String() string { func (*PaymentsAccount) ProtoMessage() {} func (x *PaymentsAccount) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_payments_account_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_payments_account_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *PaymentsAccount) ProtoReflect() protoreflect.Message { // Deprecated: Use PaymentsAccount.ProtoReflect.Descriptor instead. func (*PaymentsAccount) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_payments_account_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_payments_account_proto_rawDescGZIP(), []int{0} } func (x *PaymentsAccount) GetResourceName() string { @@ -144,15 +144,15 @@ func (x *PaymentsAccount) GetPayingManagerCustomer() string { return "" } -var File_google_ads_googleads_v21_resources_payments_account_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_payments_account_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_payments_account_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -204,41 +204,41 @@ var file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_payments_account_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_payments_account_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_payments_account_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_payments_account_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_payments_account_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_payments_account_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_payments_account_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc), len(file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_payments_account_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_payments_account_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_payments_account_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_payments_account_proto_rawDesc), len(file_google_ads_googleads_v22_resources_payments_account_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_payments_account_proto_rawDescData + return file_google_ads_googleads_v22_resources_payments_account_proto_rawDescData } -var file_google_ads_googleads_v21_resources_payments_account_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_payments_account_proto_goTypes = []any{ - (*PaymentsAccount)(nil), // 0: google.ads.googleads.v21.resources.PaymentsAccount +var file_google_ads_googleads_v22_resources_payments_account_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_payments_account_proto_goTypes = []any{ + (*PaymentsAccount)(nil), // 0: google.ads.googleads.v22.resources.PaymentsAccount } -var file_google_ads_googleads_v21_resources_payments_account_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -246,27 +246,27 @@ var file_google_ads_googleads_v21_resources_payments_account_proto_depIdxs = []i 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_payments_account_proto_init() } -func file_google_ads_googleads_v21_resources_payments_account_proto_init() { - if File_google_ads_googleads_v21_resources_payments_account_proto != nil { +func init() { file_google_ads_googleads_v22_resources_payments_account_proto_init() } +func file_google_ads_googleads_v22_resources_payments_account_proto_init() { + if File_google_ads_googleads_v22_resources_payments_account_proto != nil { return } - file_google_ads_googleads_v21_resources_payments_account_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_payments_account_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc), len(file_google_ads_googleads_v21_resources_payments_account_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_payments_account_proto_rawDesc), len(file_google_ads_googleads_v22_resources_payments_account_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_payments_account_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_payments_account_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_payments_account_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_payments_account_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_payments_account_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_payments_account_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_payments_account_proto = out.File - file_google_ads_googleads_v21_resources_payments_account_proto_goTypes = nil - file_google_ads_googleads_v21_resources_payments_account_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_payments_account_proto = out.File + file_google_ads_googleads_v22_resources_payments_account_proto_goTypes = nil + file_google_ads_googleads_v22_resources_payments_account_proto_depIdxs = nil } diff --git a/resources/per_store_view.pb.go b/resources/per_store_view.pb.go index 418d4597..c8c5f8ac 100644 --- a/resources/per_store_view.pb.go +++ b/resources/per_store_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/per_store_view.proto +// source: google/ads/googleads/v22/resources/per_store_view.proto package resources @@ -54,7 +54,7 @@ type PerStoreView struct { func (x *PerStoreView) Reset() { *x = PerStoreView{} - mi := &file_google_ads_googleads_v21_resources_per_store_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_per_store_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *PerStoreView) String() string { func (*PerStoreView) ProtoMessage() {} func (x *PerStoreView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_per_store_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_per_store_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *PerStoreView) ProtoReflect() protoreflect.Message { // Deprecated: Use PerStoreView.ProtoReflect.Descriptor instead. func (*PerStoreView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescGZIP(), []int{0} } func (x *PerStoreView) GetResourceName() string { @@ -96,15 +96,15 @@ func (x *PerStoreView) GetPlaceId() string { return "" } -var File_google_ads_googleads_v21_resources_per_store_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_per_store_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_per_store_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -124,41 +124,41 @@ var file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_per_store_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_per_store_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_per_store_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_per_store_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_per_store_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_per_store_view_proto_goTypes = []any{ - (*PerStoreView)(nil), // 0: google.ads.googleads.v21.resources.PerStoreView +var file_google_ads_googleads_v22_resources_per_store_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_per_store_view_proto_goTypes = []any{ + (*PerStoreView)(nil), // 0: google.ads.googleads.v22.resources.PerStoreView } -var file_google_ads_googleads_v21_resources_per_store_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -166,26 +166,26 @@ var file_google_ads_googleads_v21_resources_per_store_view_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_per_store_view_proto_init() } -func file_google_ads_googleads_v21_resources_per_store_view_proto_init() { - if File_google_ads_googleads_v21_resources_per_store_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_per_store_view_proto_init() } +func file_google_ads_googleads_v22_resources_per_store_view_proto_init() { + if File_google_ads_googleads_v22_resources_per_store_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_per_store_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_per_store_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_per_store_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_per_store_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_per_store_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_per_store_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_per_store_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_per_store_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_per_store_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_per_store_view_proto = out.File - file_google_ads_googleads_v21_resources_per_store_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_per_store_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_per_store_view_proto = out.File + file_google_ads_googleads_v22_resources_per_store_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_per_store_view_proto_depIdxs = nil } diff --git a/resources/performance_max_placement_view.pb.go b/resources/performance_max_placement_view.pb.go index fb2b9d99..735164f8 100644 --- a/resources/performance_max_placement_view.pb.go +++ b/resources/performance_max_placement_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/performance_max_placement_view.proto +// source: google/ads/googleads/v22/resources/performance_max_placement_view.proto package resources @@ -57,14 +57,14 @@ type PerformanceMaxPlacementView struct { TargetUrl *string `protobuf:"bytes,4,opt,name=target_url,json=targetUrl,proto3,oneof" json:"target_url,omitempty"` // Output only. Type of the placement. Possible values for Performance Max // placements are WEBSITE, MOBILE_APPLICATION, or YOUTUBE_VIDEO. - PlacementType enums.PlacementTypeEnum_PlacementType `protobuf:"varint,5,opt,name=placement_type,json=placementType,proto3,enum=google.ads.googleads.v21.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.v22.enums.PlacementTypeEnum_PlacementType" json:"placement_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *PerformanceMaxPlacementView) Reset() { *x = PerformanceMaxPlacementView{} - mi := &file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *PerformanceMaxPlacementView) String() string { func (*PerformanceMaxPlacementView) ProtoMessage() {} func (x *PerformanceMaxPlacementView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *PerformanceMaxPlacementView) ProtoReflect() protoreflect.Message { // Deprecated: Use PerformanceMaxPlacementView.ProtoReflect.Descriptor instead. func (*PerformanceMaxPlacementView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescGZIP(), []int{0} } func (x *PerformanceMaxPlacementView) GetResourceName() string { @@ -127,18 +127,18 @@ func (x *PerformanceMaxPlacementView) GetPlacementType() enums.PlacementTypeEnum return enums.PlacementTypeEnum_PlacementType(0) } -var File_google_ads_googleads_v21_resources_performance_max_placement_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_performance_max_placement_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x33, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x6c, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x69, 0x6f, 0x72, 0x2e, 0x70, 0x72, @@ -163,7 +163,7 @@ var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, + 0x32, 0x32, 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, 0x3a, 0xbf, 0x01, 0xea, @@ -183,44 +183,44 @@ var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto 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, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x20, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_goTypes = []any{ - (*PerformanceMaxPlacementView)(nil), // 0: google.ads.googleads.v21.resources.PerformanceMaxPlacementView - (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_goTypes = []any{ + (*PerformanceMaxPlacementView)(nil), // 0: google.ads.googleads.v22.resources.PerformanceMaxPlacementView + (enums.PlacementTypeEnum_PlacementType)(0), // 1: google.ads.googleads.v22.enums.PlacementTypeEnum.PlacementType } -var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.PerformanceMaxPlacementView.placement_type:type_name -> google.ads.googleads.v21.enums.PlacementTypeEnum.PlacementType +var file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.PerformanceMaxPlacementView.placement_type:type_name -> google.ads.googleads.v22.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 @@ -228,27 +228,27 @@ var file_google_ads_googleads_v21_resources_performance_max_placement_view_proto 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_init() } -func file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_init() { - if File_google_ads_googleads_v21_resources_performance_max_placement_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_init() } +func file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_init() { + if File_google_ads_googleads_v22_resources_performance_max_placement_view_proto != nil { return } - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_performance_max_placement_view_proto = out.File - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_performance_max_placement_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_performance_max_placement_view_proto = out.File + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_performance_max_placement_view_proto_depIdxs = nil } diff --git a/resources/product_category_constant.pb.go b/resources/product_category_constant.pb.go index 212e84ee..9af7e965 100644 --- a/resources/product_category_constant.pb.go +++ b/resources/product_category_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/product_category_constant.proto +// source: google/ads/googleads/v22/resources/product_category_constant.proto package resources @@ -53,9 +53,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.v21.enums.ProductCategoryLevelEnum_ProductCategoryLevel" json:"level,omitempty"` + Level enums.ProductCategoryLevelEnum_ProductCategoryLevel `protobuf:"varint,4,opt,name=level,proto3,enum=google.ads.googleads.v22.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.v21.enums.ProductCategoryStateEnum_ProductCategoryState" json:"state,omitempty"` + State enums.ProductCategoryStateEnum_ProductCategoryState `protobuf:"varint,5,opt,name=state,proto3,enum=google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -64,7 +64,7 @@ type ProductCategoryConstant struct { func (x *ProductCategoryConstant) Reset() { *x = ProductCategoryConstant{} - mi := &file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *ProductCategoryConstant) String() string { func (*ProductCategoryConstant) ProtoMessage() {} func (x *ProductCategoryConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *ProductCategoryConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductCategoryConstant.ProtoReflect.Descriptor instead. func (*ProductCategoryConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescGZIP(), []int{0} } func (x *ProductCategoryConstant) GetResourceName() string { @@ -151,7 +151,7 @@ type ProductCategoryConstant_ProductCategoryLocalization struct { func (x *ProductCategoryConstant_ProductCategoryLocalization) Reset() { *x = ProductCategoryConstant_ProductCategoryLocalization{} - mi := &file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163,7 +163,7 @@ func (x *ProductCategoryConstant_ProductCategoryLocalization) String() string { func (*ProductCategoryConstant_ProductCategoryLocalization) ProtoMessage() {} func (x *ProductCategoryConstant_ProductCategoryLocalization) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176,7 +176,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_v21_resources_product_category_constant_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescGZIP(), []int{0, 0} } func (x *ProductCategoryConstant_ProductCategoryLocalization) GetRegionCode() string { @@ -200,21 +200,21 @@ func (x *ProductCategoryConstant_ProductCategoryLocalization) GetValue() string return "" } -var File_google_ads_googleads_v21_resources_product_category_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_product_category_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -242,20 +242,20 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -283,48 +283,48 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_product_category_constant_proto_goTypes = []any{ - (*ProductCategoryConstant)(nil), // 0: google.ads.googleads.v21.resources.ProductCategoryConstant - (*ProductCategoryConstant_ProductCategoryLocalization)(nil), // 1: google.ads.googleads.v21.resources.ProductCategoryConstant.ProductCategoryLocalization - (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 2: google.ads.googleads.v21.enums.ProductCategoryLevelEnum.ProductCategoryLevel - (enums.ProductCategoryStateEnum_ProductCategoryState)(0), // 3: google.ads.googleads.v21.enums.ProductCategoryStateEnum.ProductCategoryState +var file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_product_category_constant_proto_goTypes = []any{ + (*ProductCategoryConstant)(nil), // 0: google.ads.googleads.v22.resources.ProductCategoryConstant + (*ProductCategoryConstant_ProductCategoryLocalization)(nil), // 1: google.ads.googleads.v22.resources.ProductCategoryConstant.ProductCategoryLocalization + (enums.ProductCategoryLevelEnum_ProductCategoryLevel)(0), // 2: google.ads.googleads.v22.enums.ProductCategoryLevelEnum.ProductCategoryLevel + (enums.ProductCategoryStateEnum_ProductCategoryState)(0), // 3: google.ads.googleads.v22.enums.ProductCategoryStateEnum.ProductCategoryState } -var file_google_ads_googleads_v21_resources_product_category_constant_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.ProductCategoryConstant.level:type_name -> google.ads.googleads.v21.enums.ProductCategoryLevelEnum.ProductCategoryLevel - 3, // 1: google.ads.googleads.v21.resources.ProductCategoryConstant.state:type_name -> google.ads.googleads.v21.enums.ProductCategoryStateEnum.ProductCategoryState - 1, // 2: google.ads.googleads.v21.resources.ProductCategoryConstant.localizations:type_name -> google.ads.googleads.v21.resources.ProductCategoryConstant.ProductCategoryLocalization +var file_google_ads_googleads_v22_resources_product_category_constant_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.ProductCategoryConstant.level:type_name -> google.ads.googleads.v22.enums.ProductCategoryLevelEnum.ProductCategoryLevel + 3, // 1: google.ads.googleads.v22.resources.ProductCategoryConstant.state:type_name -> google.ads.googleads.v22.enums.ProductCategoryStateEnum.ProductCategoryState + 1, // 2: google.ads.googleads.v22.resources.ProductCategoryConstant.localizations:type_name -> google.ads.googleads.v22.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 @@ -332,27 +332,27 @@ var file_google_ads_googleads_v21_resources_product_category_constant_proto_depI 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_product_category_constant_proto_init() } -func file_google_ads_googleads_v21_resources_product_category_constant_proto_init() { - if File_google_ads_googleads_v21_resources_product_category_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_product_category_constant_proto_init() } +func file_google_ads_googleads_v22_resources_product_category_constant_proto_init() { + if File_google_ads_googleads_v22_resources_product_category_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_category_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_category_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_product_category_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_product_category_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_product_category_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_product_category_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_product_category_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_product_category_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_product_category_constant_proto = out.File - file_google_ads_googleads_v21_resources_product_category_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_product_category_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_product_category_constant_proto = out.File + file_google_ads_googleads_v22_resources_product_category_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_product_category_constant_proto_depIdxs = nil } diff --git a/resources/product_group_view.pb.go b/resources/product_group_view.pb.go index 3d960473..a74eadb2 100644 --- a/resources/product_group_view.pb.go +++ b/resources/product_group_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/product_group_view.proto +// source: google/ads/googleads/v22/resources/product_group_view.proto package resources @@ -50,7 +50,7 @@ type ProductGroupView struct { func (x *ProductGroupView) Reset() { *x = ProductGroupView{} - mi := &file_google_ads_googleads_v21_resources_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *ProductGroupView) String() string { func (*ProductGroupView) ProtoMessage() {} func (x *ProductGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_group_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *ProductGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductGroupView.ProtoReflect.Descriptor instead. func (*ProductGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescGZIP(), []int{0} } func (x *ProductGroupView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *ProductGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_product_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_product_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_product_group_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -114,41 +114,41 @@ var file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x15, 0x50, 0x72, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_group_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_product_group_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_product_group_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_product_group_view_proto_goTypes = []any{ - (*ProductGroupView)(nil), // 0: google.ads.googleads.v21.resources.ProductGroupView +var file_google_ads_googleads_v22_resources_product_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_product_group_view_proto_goTypes = []any{ + (*ProductGroupView)(nil), // 0: google.ads.googleads.v22.resources.ProductGroupView } -var file_google_ads_googleads_v21_resources_product_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -156,26 +156,26 @@ var file_google_ads_googleads_v21_resources_product_group_view_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_product_group_view_proto_init() } -func file_google_ads_googleads_v21_resources_product_group_view_proto_init() { - if File_google_ads_googleads_v21_resources_product_group_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_product_group_view_proto_init() } +func file_google_ads_googleads_v22_resources_product_group_view_proto_init() { + if File_google_ads_googleads_v22_resources_product_group_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_group_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_group_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_product_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_product_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_product_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_product_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_product_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_product_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_product_group_view_proto = out.File - file_google_ads_googleads_v21_resources_product_group_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_product_group_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_product_group_view_proto = out.File + file_google_ads_googleads_v22_resources_product_group_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_product_group_view_proto_depIdxs = nil } diff --git a/resources/product_link.pb.go b/resources/product_link.pb.go index ceaa85ff..207d432b 100644 --- a/resources/product_link.pb.go +++ b/resources/product_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/product_link.proto +// source: google/ads/googleads/v22/resources/product_link.proto package resources @@ -50,7 +50,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.v21.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` + Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` // A product linked to this account. // // Types that are valid to be assigned to LinkedProduct: @@ -66,7 +66,7 @@ type ProductLink struct { func (x *ProductLink) Reset() { *x = ProductLink{} - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *ProductLink) String() string { func (*ProductLink) ProtoMessage() {} func (x *ProductLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *ProductLink) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLink.ProtoReflect.Descriptor instead. func (*ProductLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP(), []int{0} } func (x *ProductLink) GetResourceName() string { @@ -204,7 +204,7 @@ type DataPartnerIdentifier struct { func (x *DataPartnerIdentifier) Reset() { *x = DataPartnerIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -216,7 +216,7 @@ func (x *DataPartnerIdentifier) String() string { func (*DataPartnerIdentifier) ProtoMessage() {} func (x *DataPartnerIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -229,7 +229,7 @@ func (x *DataPartnerIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use DataPartnerIdentifier.ProtoReflect.Descriptor instead. func (*DataPartnerIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP(), []int{1} } func (x *DataPartnerIdentifier) GetDataPartnerId() int64 { @@ -253,7 +253,7 @@ type GoogleAdsIdentifier struct { func (x *GoogleAdsIdentifier) Reset() { *x = GoogleAdsIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_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_v21_resources_product_link_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[2] if 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_v21_resources_product_link_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP(), []int{2} } func (x *GoogleAdsIdentifier) GetCustomer() string { @@ -302,7 +302,7 @@ type MerchantCenterIdentifier struct { func (x *MerchantCenterIdentifier) Reset() { *x = MerchantCenterIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *MerchantCenterIdentifier) String() string { func (*MerchantCenterIdentifier) ProtoMessage() {} func (x *MerchantCenterIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *MerchantCenterIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use MerchantCenterIdentifier.ProtoReflect.Descriptor instead. func (*MerchantCenterIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP(), []int{3} } func (x *MerchantCenterIdentifier) GetMerchantCenterId() int64 { @@ -351,7 +351,7 @@ type AdvertisingPartnerIdentifier struct { func (x *AdvertisingPartnerIdentifier) Reset() { *x = AdvertisingPartnerIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -363,7 +363,7 @@ func (x *AdvertisingPartnerIdentifier) String() string { func (*AdvertisingPartnerIdentifier) ProtoMessage() {} func (x *AdvertisingPartnerIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -376,7 +376,7 @@ func (x *AdvertisingPartnerIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvertisingPartnerIdentifier.ProtoReflect.Descriptor instead. func (*AdvertisingPartnerIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP(), []int{4} } func (x *AdvertisingPartnerIdentifier) GetCustomer() string { @@ -386,17 +386,17 @@ func (x *AdvertisingPartnerIdentifier) GetCustomer() string { return "" } -var File_google_ads_googleads_v21_resources_product_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_product_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_product_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_product_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x38, 0x67, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x69, 0x6e, 0x6b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -413,26 +413,26 @@ var file_google_ads_googleads_v21_resources_product_link_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -440,7 +440,7 @@ var file_google_ads_googleads_v21_resources_product_link_proto_rawDesc = string( 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x76, + 0x32, 0x32, 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, @@ -482,50 +482,50 @@ var file_google_ads_googleads_v21_resources_product_link_proto_rawDesc = string( 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x10, 0x50, 0x72, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_product_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_product_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_product_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_product_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_product_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_product_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_product_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_product_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_product_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_product_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_product_link_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_product_link_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v21_resources_product_link_proto_goTypes = []any{ - (*ProductLink)(nil), // 0: google.ads.googleads.v21.resources.ProductLink - (*DataPartnerIdentifier)(nil), // 1: google.ads.googleads.v21.resources.DataPartnerIdentifier - (*GoogleAdsIdentifier)(nil), // 2: google.ads.googleads.v21.resources.GoogleAdsIdentifier - (*MerchantCenterIdentifier)(nil), // 3: google.ads.googleads.v21.resources.MerchantCenterIdentifier - (*AdvertisingPartnerIdentifier)(nil), // 4: google.ads.googleads.v21.resources.AdvertisingPartnerIdentifier - (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v21.enums.LinkedProductTypeEnum.LinkedProductType -} -var file_google_ads_googleads_v21_resources_product_link_proto_depIdxs = []int32{ - 5, // 0: google.ads.googleads.v21.resources.ProductLink.type:type_name -> google.ads.googleads.v21.enums.LinkedProductTypeEnum.LinkedProductType - 1, // 1: google.ads.googleads.v21.resources.ProductLink.data_partner:type_name -> google.ads.googleads.v21.resources.DataPartnerIdentifier - 2, // 2: google.ads.googleads.v21.resources.ProductLink.google_ads:type_name -> google.ads.googleads.v21.resources.GoogleAdsIdentifier - 3, // 3: google.ads.googleads.v21.resources.ProductLink.merchant_center:type_name -> google.ads.googleads.v21.resources.MerchantCenterIdentifier - 4, // 4: google.ads.googleads.v21.resources.ProductLink.advertising_partner:type_name -> google.ads.googleads.v21.resources.AdvertisingPartnerIdentifier + return file_google_ads_googleads_v22_resources_product_link_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_product_link_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v22_resources_product_link_proto_goTypes = []any{ + (*ProductLink)(nil), // 0: google.ads.googleads.v22.resources.ProductLink + (*DataPartnerIdentifier)(nil), // 1: google.ads.googleads.v22.resources.DataPartnerIdentifier + (*GoogleAdsIdentifier)(nil), // 2: google.ads.googleads.v22.resources.GoogleAdsIdentifier + (*MerchantCenterIdentifier)(nil), // 3: google.ads.googleads.v22.resources.MerchantCenterIdentifier + (*AdvertisingPartnerIdentifier)(nil), // 4: google.ads.googleads.v22.resources.AdvertisingPartnerIdentifier + (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v22.enums.LinkedProductTypeEnum.LinkedProductType +} +var file_google_ads_googleads_v22_resources_product_link_proto_depIdxs = []int32{ + 5, // 0: google.ads.googleads.v22.resources.ProductLink.type:type_name -> google.ads.googleads.v22.enums.LinkedProductTypeEnum.LinkedProductType + 1, // 1: google.ads.googleads.v22.resources.ProductLink.data_partner:type_name -> google.ads.googleads.v22.resources.DataPartnerIdentifier + 2, // 2: google.ads.googleads.v22.resources.ProductLink.google_ads:type_name -> google.ads.googleads.v22.resources.GoogleAdsIdentifier + 3, // 3: google.ads.googleads.v22.resources.ProductLink.merchant_center:type_name -> google.ads.googleads.v22.resources.MerchantCenterIdentifier + 4, // 4: google.ads.googleads.v22.resources.ProductLink.advertising_partner:type_name -> google.ads.googleads.v22.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 @@ -533,36 +533,36 @@ var file_google_ads_googleads_v21_resources_product_link_proto_depIdxs = []int32 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_product_link_proto_init() } -func file_google_ads_googleads_v21_resources_product_link_proto_init() { - if File_google_ads_googleads_v21_resources_product_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_product_link_proto_init() } +func file_google_ads_googleads_v22_resources_product_link_proto_init() { + if File_google_ads_googleads_v22_resources_product_link_proto != nil { return } - file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[0].OneofWrappers = []any{ (*ProductLink_DataPartner)(nil), (*ProductLink_GoogleAds)(nil), (*ProductLink_MerchantCenter)(nil), (*ProductLink_AdvertisingPartner)(nil), } - file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_product_link_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_link_proto_msgTypes[4].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_link_proto_rawDesc)), NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_product_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_product_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_product_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_product_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_product_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_product_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_product_link_proto = out.File - file_google_ads_googleads_v21_resources_product_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_product_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_product_link_proto = out.File + file_google_ads_googleads_v22_resources_product_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_product_link_proto_depIdxs = nil } diff --git a/resources/product_link_invitation.pb.go b/resources/product_link_invitation.pb.go index d76abc45..90949618 100644 --- a/resources/product_link_invitation.pb.go +++ b/resources/product_link_invitation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/product_link_invitation.proto +// source: google/ads/googleads/v22/resources/product_link_invitation.proto package resources @@ -51,11 +51,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.v21.enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus" json:"status,omitempty"` + Status enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v22.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.v21.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` + Type enums.LinkedProductTypeEnum_LinkedProductType `protobuf:"varint,6,opt,name=type,proto3,enum=google.ads.googleads.v22.enums.LinkedProductTypeEnum_LinkedProductType" json:"type,omitempty"` // An account invited to link to this Google Ads account. // // Types that are valid to be assigned to InvitedAccount: @@ -70,7 +70,7 @@ type ProductLinkInvitation struct { func (x *ProductLinkInvitation) Reset() { *x = ProductLinkInvitation{} - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82,7 +82,7 @@ func (x *ProductLinkInvitation) String() string { func (*ProductLinkInvitation) ProtoMessage() {} func (x *ProductLinkInvitation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95,7 +95,7 @@ func (x *ProductLinkInvitation) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductLinkInvitation.ProtoReflect.Descriptor instead. func (*ProductLinkInvitation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescGZIP(), []int{0} } func (x *ProductLinkInvitation) GetResourceName() string { @@ -197,7 +197,7 @@ type HotelCenterLinkInvitationIdentifier struct { func (x *HotelCenterLinkInvitationIdentifier) Reset() { *x = HotelCenterLinkInvitationIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *HotelCenterLinkInvitationIdentifier) String() string { func (*HotelCenterLinkInvitationIdentifier) ProtoMessage() {} func (x *HotelCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *HotelCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Messag // Deprecated: Use HotelCenterLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*HotelCenterLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescGZIP(), []int{1} } func (x *HotelCenterLinkInvitationIdentifier) GetHotelCenterId() int64 { @@ -244,7 +244,7 @@ type MerchantCenterLinkInvitationIdentifier struct { func (x *MerchantCenterLinkInvitationIdentifier) Reset() { *x = MerchantCenterLinkInvitationIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -256,7 +256,7 @@ func (x *MerchantCenterLinkInvitationIdentifier) String() string { func (*MerchantCenterLinkInvitationIdentifier) ProtoMessage() {} func (x *MerchantCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -269,7 +269,7 @@ func (x *MerchantCenterLinkInvitationIdentifier) ProtoReflect() protoreflect.Mes // Deprecated: Use MerchantCenterLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*MerchantCenterLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescGZIP(), []int{2} } func (x *MerchantCenterLinkInvitationIdentifier) GetMerchantCenterId() int64 { @@ -291,7 +291,7 @@ type AdvertisingPartnerLinkInvitationIdentifier struct { func (x *AdvertisingPartnerLinkInvitationIdentifier) Reset() { *x = AdvertisingPartnerLinkInvitationIdentifier{} - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -303,7 +303,7 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) String() string { func (*AdvertisingPartnerLinkInvitationIdentifier) ProtoMessage() {} func (x *AdvertisingPartnerLinkInvitationIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -316,7 +316,7 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) ProtoReflect() protoreflect // Deprecated: Use AdvertisingPartnerLinkInvitationIdentifier.ProtoReflect.Descriptor instead. func (*AdvertisingPartnerLinkInvitationIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescGZIP(), []int{3} } func (x *AdvertisingPartnerLinkInvitationIdentifier) GetCustomer() string { @@ -326,21 +326,21 @@ func (x *AdvertisingPartnerLinkInvitationIdentifier) GetCustomer() string { return "" } -var File_google_ads_googleads_v21_resources_product_link_invitation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_product_link_invitation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -361,28 +361,28 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -390,7 +390,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,51 +426,51 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_resources_product_link_invitation_proto_goTypes = []any{ - (*ProductLinkInvitation)(nil), // 0: google.ads.googleads.v21.resources.ProductLinkInvitation - (*HotelCenterLinkInvitationIdentifier)(nil), // 1: google.ads.googleads.v21.resources.HotelCenterLinkInvitationIdentifier - (*MerchantCenterLinkInvitationIdentifier)(nil), // 2: google.ads.googleads.v21.resources.MerchantCenterLinkInvitationIdentifier - (*AdvertisingPartnerLinkInvitationIdentifier)(nil), // 3: google.ads.googleads.v21.resources.AdvertisingPartnerLinkInvitationIdentifier - (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 4: google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v21.enums.LinkedProductTypeEnum.LinkedProductType -} -var file_google_ads_googleads_v21_resources_product_link_invitation_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.resources.ProductLinkInvitation.status:type_name -> google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - 5, // 1: google.ads.googleads.v21.resources.ProductLinkInvitation.type:type_name -> google.ads.googleads.v21.enums.LinkedProductTypeEnum.LinkedProductType - 1, // 2: google.ads.googleads.v21.resources.ProductLinkInvitation.hotel_center:type_name -> google.ads.googleads.v21.resources.HotelCenterLinkInvitationIdentifier - 2, // 3: google.ads.googleads.v21.resources.ProductLinkInvitation.merchant_center:type_name -> google.ads.googleads.v21.resources.MerchantCenterLinkInvitationIdentifier - 3, // 4: google.ads.googleads.v21.resources.ProductLinkInvitation.advertising_partner:type_name -> google.ads.googleads.v21.resources.AdvertisingPartnerLinkInvitationIdentifier + return file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_resources_product_link_invitation_proto_goTypes = []any{ + (*ProductLinkInvitation)(nil), // 0: google.ads.googleads.v22.resources.ProductLinkInvitation + (*HotelCenterLinkInvitationIdentifier)(nil), // 1: google.ads.googleads.v22.resources.HotelCenterLinkInvitationIdentifier + (*MerchantCenterLinkInvitationIdentifier)(nil), // 2: google.ads.googleads.v22.resources.MerchantCenterLinkInvitationIdentifier + (*AdvertisingPartnerLinkInvitationIdentifier)(nil), // 3: google.ads.googleads.v22.resources.AdvertisingPartnerLinkInvitationIdentifier + (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 4: google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + (enums.LinkedProductTypeEnum_LinkedProductType)(0), // 5: google.ads.googleads.v22.enums.LinkedProductTypeEnum.LinkedProductType +} +var file_google_ads_googleads_v22_resources_product_link_invitation_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.resources.ProductLinkInvitation.status:type_name -> google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + 5, // 1: google.ads.googleads.v22.resources.ProductLinkInvitation.type:type_name -> google.ads.googleads.v22.enums.LinkedProductTypeEnum.LinkedProductType + 1, // 2: google.ads.googleads.v22.resources.ProductLinkInvitation.hotel_center:type_name -> google.ads.googleads.v22.resources.HotelCenterLinkInvitationIdentifier + 2, // 3: google.ads.googleads.v22.resources.ProductLinkInvitation.merchant_center:type_name -> google.ads.googleads.v22.resources.MerchantCenterLinkInvitationIdentifier + 3, // 4: google.ads.googleads.v22.resources.ProductLinkInvitation.advertising_partner:type_name -> google.ads.googleads.v22.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 @@ -478,32 +478,32 @@ var file_google_ads_googleads_v21_resources_product_link_invitation_proto_depIdx 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_product_link_invitation_proto_init() } -func file_google_ads_googleads_v21_resources_product_link_invitation_proto_init() { - if File_google_ads_googleads_v21_resources_product_link_invitation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_product_link_invitation_proto_init() } +func file_google_ads_googleads_v22_resources_product_link_invitation_proto_init() { + if File_google_ads_googleads_v22_resources_product_link_invitation_proto != nil { return } - file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[0].OneofWrappers = []any{ (*ProductLinkInvitation_HotelCenter)(nil), (*ProductLinkInvitation_MerchantCenter)(nil), (*ProductLinkInvitation_AdvertisingPartner)(nil), } - file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes[3].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_product_link_invitation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_product_link_invitation_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_product_link_invitation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_product_link_invitation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_product_link_invitation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_product_link_invitation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_product_link_invitation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_product_link_invitation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_product_link_invitation_proto = out.File - file_google_ads_googleads_v21_resources_product_link_invitation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_product_link_invitation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_product_link_invitation_proto = out.File + file_google_ads_googleads_v22_resources_product_link_invitation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_product_link_invitation_proto_depIdxs = nil } diff --git a/resources/qualifying_question.pb.go b/resources/qualifying_question.pb.go index ade68535..b44d8729 100644 --- a/resources/qualifying_question.pb.go +++ b/resources/qualifying_question.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/qualifying_question.proto +// source: google/ads/googleads/v22/resources/qualifying_question.proto package resources @@ -55,7 +55,7 @@ type QualifyingQuestion struct { func (x *QualifyingQuestion) Reset() { *x = QualifyingQuestion{} - mi := &file_google_ads_googleads_v21_resources_qualifying_question_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_qualifying_question_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *QualifyingQuestion) String() string { func (*QualifyingQuestion) ProtoMessage() {} func (x *QualifyingQuestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_qualifying_question_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_qualifying_question_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *QualifyingQuestion) ProtoReflect() protoreflect.Message { // Deprecated: Use QualifyingQuestion.ProtoReflect.Descriptor instead. func (*QualifyingQuestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescGZIP(), []int{0} } func (x *QualifyingQuestion) GetResourceName() string { @@ -111,15 +111,15 @@ func (x *QualifyingQuestion) GetText() string { return "" } -var File_google_ads_googleads_v21_resources_qualifying_question_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_qualifying_question_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -146,41 +146,41 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x17, 0x51, 0x75, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDesc), len(file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDesc), len(file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDescData + return file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDescData } -var file_google_ads_googleads_v21_resources_qualifying_question_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_qualifying_question_proto_goTypes = []any{ - (*QualifyingQuestion)(nil), // 0: google.ads.googleads.v21.resources.QualifyingQuestion +var file_google_ads_googleads_v22_resources_qualifying_question_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_qualifying_question_proto_goTypes = []any{ + (*QualifyingQuestion)(nil), // 0: google.ads.googleads.v22.resources.QualifyingQuestion } -var file_google_ads_googleads_v21_resources_qualifying_question_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -188,26 +188,26 @@ var file_google_ads_googleads_v21_resources_qualifying_question_proto_depIdxs = 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_qualifying_question_proto_init() } -func file_google_ads_googleads_v21_resources_qualifying_question_proto_init() { - if File_google_ads_googleads_v21_resources_qualifying_question_proto != nil { +func init() { file_google_ads_googleads_v22_resources_qualifying_question_proto_init() } +func file_google_ads_googleads_v22_resources_qualifying_question_proto_init() { + if File_google_ads_googleads_v22_resources_qualifying_question_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDesc), len(file_google_ads_googleads_v21_resources_qualifying_question_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDesc), len(file_google_ads_googleads_v22_resources_qualifying_question_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_qualifying_question_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_qualifying_question_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_qualifying_question_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_qualifying_question_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_qualifying_question_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_qualifying_question_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_qualifying_question_proto = out.File - file_google_ads_googleads_v21_resources_qualifying_question_proto_goTypes = nil - file_google_ads_googleads_v21_resources_qualifying_question_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_qualifying_question_proto = out.File + file_google_ads_googleads_v22_resources_qualifying_question_proto_goTypes = nil + file_google_ads_googleads_v22_resources_qualifying_question_proto_depIdxs = nil } diff --git a/resources/recommendation.pb.go b/resources/recommendation.pb.go index f3bab0cf..30eed702 100644 --- a/resources/recommendation.pb.go +++ b/resources/recommendation.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/recommendation.proto +// source: google/ads/googleads/v22/resources/recommendation.proto package resources @@ -46,7 +46,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.v21.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` + Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v22.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"` @@ -159,7 +159,7 @@ type Recommendation struct { func (x *Recommendation) Reset() { *x = Recommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -171,7 +171,7 @@ func (x *Recommendation) String() string { func (*Recommendation) ProtoMessage() {} func (x *Recommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -184,7 +184,7 @@ func (x *Recommendation) ProtoReflect() protoreflect.Message { // Deprecated: Use Recommendation.ProtoReflect.Descriptor instead. func (*Recommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0} } func (x *Recommendation) GetResourceName() string { @@ -1154,7 +1154,7 @@ type Recommendation_MerchantInfo struct { func (x *Recommendation_MerchantInfo) Reset() { *x = Recommendation_MerchantInfo{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1166,7 +1166,7 @@ func (x *Recommendation_MerchantInfo) String() string { func (*Recommendation_MerchantInfo) ProtoMessage() {} func (x *Recommendation_MerchantInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1179,7 +1179,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 0} } func (x *Recommendation_MerchantInfo) GetId() int64 { @@ -1217,7 +1217,7 @@ type Recommendation_RecommendationImpact struct { func (x *Recommendation_RecommendationImpact) Reset() { *x = Recommendation_RecommendationImpact{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1229,7 +1229,7 @@ func (x *Recommendation_RecommendationImpact) String() string { func (*Recommendation_RecommendationImpact) ProtoMessage() {} func (x *Recommendation_RecommendationImpact) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1242,7 +1242,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 1} } func (x *Recommendation_RecommendationImpact) GetBaseMetrics() *Recommendation_RecommendationMetrics { @@ -1282,7 +1282,7 @@ type Recommendation_RecommendationMetrics struct { func (x *Recommendation_RecommendationMetrics) Reset() { *x = Recommendation_RecommendationMetrics{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1294,7 +1294,7 @@ func (x *Recommendation_RecommendationMetrics) String() string { func (*Recommendation_RecommendationMetrics) ProtoMessage() {} func (x *Recommendation_RecommendationMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1307,7 +1307,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 2} } func (x *Recommendation_RecommendationMetrics) GetImpressions() float64 { @@ -1368,7 +1368,7 @@ type Recommendation_CampaignBudgetRecommendation struct { func (x *Recommendation_CampaignBudgetRecommendation) Reset() { *x = Recommendation_CampaignBudgetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1380,7 +1380,7 @@ func (x *Recommendation_CampaignBudgetRecommendation) String() string { func (*Recommendation_CampaignBudgetRecommendation) ProtoMessage() {} func (x *Recommendation_CampaignBudgetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1393,7 +1393,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 3} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 3} } func (x *Recommendation_CampaignBudgetRecommendation) GetCurrentBudgetAmountMicros() int64 { @@ -1433,7 +1433,7 @@ type Recommendation_KeywordRecommendation struct { func (x *Recommendation_KeywordRecommendation) Reset() { *x = Recommendation_KeywordRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1445,7 +1445,7 @@ func (x *Recommendation_KeywordRecommendation) String() string { func (*Recommendation_KeywordRecommendation) ProtoMessage() {} func (x *Recommendation_KeywordRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1458,7 +1458,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 4} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 4} } func (x *Recommendation_KeywordRecommendation) GetKeyword() *common.KeywordInfo { @@ -1499,7 +1499,7 @@ type Recommendation_TextAdRecommendation struct { func (x *Recommendation_TextAdRecommendation) Reset() { *x = Recommendation_TextAdRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1511,7 +1511,7 @@ func (x *Recommendation_TextAdRecommendation) String() string { func (*Recommendation_TextAdRecommendation) ProtoMessage() {} func (x *Recommendation_TextAdRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1524,7 +1524,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 5} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 5} } func (x *Recommendation_TextAdRecommendation) GetAd() *Ad { @@ -1563,7 +1563,7 @@ type Recommendation_TargetCpaOptInRecommendation struct { func (x *Recommendation_TargetCpaOptInRecommendation) Reset() { *x = Recommendation_TargetCpaOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1575,7 +1575,7 @@ func (x *Recommendation_TargetCpaOptInRecommendation) String() string { func (*Recommendation_TargetCpaOptInRecommendation) ProtoMessage() {} func (x *Recommendation_TargetCpaOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1588,7 +1588,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 6} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 6} } func (x *Recommendation_TargetCpaOptInRecommendation) GetOptions() []*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption { @@ -1616,7 +1616,7 @@ type Recommendation_MaximizeConversionsOptInRecommendation struct { func (x *Recommendation_MaximizeConversionsOptInRecommendation) Reset() { *x = Recommendation_MaximizeConversionsOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1628,7 +1628,7 @@ func (x *Recommendation_MaximizeConversionsOptInRecommendation) String() string func (*Recommendation_MaximizeConversionsOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeConversionsOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1641,7 +1641,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 7} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 7} } func (x *Recommendation_MaximizeConversionsOptInRecommendation) GetRecommendedBudgetAmountMicros() int64 { @@ -1660,7 +1660,7 @@ type Recommendation_EnhancedCpcOptInRecommendation struct { func (x *Recommendation_EnhancedCpcOptInRecommendation) Reset() { *x = Recommendation_EnhancedCpcOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1672,7 +1672,7 @@ func (x *Recommendation_EnhancedCpcOptInRecommendation) String() string { func (*Recommendation_EnhancedCpcOptInRecommendation) ProtoMessage() {} func (x *Recommendation_EnhancedCpcOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1685,7 +1685,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 8} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 8} } // The Search Partners Opt-In recommendation. @@ -1697,7 +1697,7 @@ type Recommendation_SearchPartnersOptInRecommendation struct { func (x *Recommendation_SearchPartnersOptInRecommendation) Reset() { *x = Recommendation_SearchPartnersOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1709,7 +1709,7 @@ func (x *Recommendation_SearchPartnersOptInRecommendation) String() string { func (*Recommendation_SearchPartnersOptInRecommendation) ProtoMessage() {} func (x *Recommendation_SearchPartnersOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1722,7 +1722,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 9} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 9} } // The Maximize Clicks opt-in recommendation. @@ -1737,7 +1737,7 @@ type Recommendation_MaximizeClicksOptInRecommendation struct { func (x *Recommendation_MaximizeClicksOptInRecommendation) Reset() { *x = Recommendation_MaximizeClicksOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1749,7 +1749,7 @@ func (x *Recommendation_MaximizeClicksOptInRecommendation) String() string { func (*Recommendation_MaximizeClicksOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeClicksOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1762,7 +1762,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 10} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 10} } func (x *Recommendation_MaximizeClicksOptInRecommendation) GetRecommendedBudgetAmountMicros() int64 { @@ -1781,7 +1781,7 @@ type Recommendation_OptimizeAdRotationRecommendation struct { func (x *Recommendation_OptimizeAdRotationRecommendation) Reset() { *x = Recommendation_OptimizeAdRotationRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1793,7 +1793,7 @@ func (x *Recommendation_OptimizeAdRotationRecommendation) String() string { func (*Recommendation_OptimizeAdRotationRecommendation) ProtoMessage() {} func (x *Recommendation_OptimizeAdRotationRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1806,7 +1806,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 11} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 11} } // The callout asset recommendation. @@ -1824,7 +1824,7 @@ type Recommendation_CalloutAssetRecommendation struct { func (x *Recommendation_CalloutAssetRecommendation) Reset() { *x = Recommendation_CalloutAssetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1836,7 +1836,7 @@ func (x *Recommendation_CalloutAssetRecommendation) String() string { func (*Recommendation_CalloutAssetRecommendation) ProtoMessage() {} func (x *Recommendation_CalloutAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1849,7 +1849,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 12} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 12} } func (x *Recommendation_CalloutAssetRecommendation) GetRecommendedCampaignCalloutAssets() []*Asset { @@ -1879,7 +1879,7 @@ type Recommendation_SitelinkAssetRecommendation struct { func (x *Recommendation_SitelinkAssetRecommendation) Reset() { *x = Recommendation_SitelinkAssetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1891,7 +1891,7 @@ func (x *Recommendation_SitelinkAssetRecommendation) String() string { func (*Recommendation_SitelinkAssetRecommendation) ProtoMessage() {} func (x *Recommendation_SitelinkAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1904,7 +1904,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 13} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 13} } func (x *Recommendation_SitelinkAssetRecommendation) GetRecommendedCampaignSitelinkAssets() []*Asset { @@ -1930,7 +1930,7 @@ type Recommendation_CallAssetRecommendation struct { func (x *Recommendation_CallAssetRecommendation) Reset() { *x = Recommendation_CallAssetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1942,7 +1942,7 @@ func (x *Recommendation_CallAssetRecommendation) String() string { func (*Recommendation_CallAssetRecommendation) ProtoMessage() {} func (x *Recommendation_CallAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1955,7 +1955,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 14} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 14} } // The keyword match type recommendation. @@ -1965,14 +1965,14 @@ 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.v21.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.v22.enums.KeywordMatchTypeEnum_KeywordMatchType" json:"recommended_match_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Recommendation_KeywordMatchTypeRecommendation) Reset() { *x = Recommendation_KeywordMatchTypeRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1984,7 +1984,7 @@ func (x *Recommendation_KeywordMatchTypeRecommendation) String() string { func (*Recommendation_KeywordMatchTypeRecommendation) ProtoMessage() {} func (x *Recommendation_KeywordMatchTypeRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1997,7 +1997,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 15} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 15} } func (x *Recommendation_KeywordMatchTypeRecommendation) GetKeyword() *common.KeywordInfo { @@ -2027,7 +2027,7 @@ type Recommendation_MoveUnusedBudgetRecommendation struct { func (x *Recommendation_MoveUnusedBudgetRecommendation) Reset() { *x = Recommendation_MoveUnusedBudgetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2039,7 +2039,7 @@ func (x *Recommendation_MoveUnusedBudgetRecommendation) String() string { func (*Recommendation_MoveUnusedBudgetRecommendation) ProtoMessage() {} func (x *Recommendation_MoveUnusedBudgetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2052,7 +2052,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 16} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 16} } func (x *Recommendation_MoveUnusedBudgetRecommendation) GetExcessCampaignBudget() string { @@ -2085,7 +2085,7 @@ type Recommendation_TargetRoasOptInRecommendation struct { func (x *Recommendation_TargetRoasOptInRecommendation) Reset() { *x = Recommendation_TargetRoasOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2097,7 +2097,7 @@ func (x *Recommendation_TargetRoasOptInRecommendation) String() string { func (*Recommendation_TargetRoasOptInRecommendation) ProtoMessage() {} func (x *Recommendation_TargetRoasOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2110,7 +2110,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 17} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 17} } func (x *Recommendation_TargetRoasOptInRecommendation) GetRecommendedTargetRoas() float64 { @@ -2141,7 +2141,7 @@ type Recommendation_ResponsiveSearchAdAssetRecommendation struct { func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdAssetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2153,7 +2153,7 @@ func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) String() string { func (*Recommendation_ResponsiveSearchAdAssetRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2166,7 +2166,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 18} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 18} } func (x *Recommendation_ResponsiveSearchAdAssetRecommendation) GetCurrentAd() *Ad { @@ -2196,7 +2196,7 @@ type Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation struct { func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2208,7 +2208,7 @@ func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Strin func (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2221,7 +2221,7 @@ func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Proto // Deprecated: Use Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 19} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 19} } func (x *Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation) GetCurrentAd() *Ad { @@ -2249,7 +2249,7 @@ type Recommendation_ResponsiveSearchAdRecommendation struct { func (x *Recommendation_ResponsiveSearchAdRecommendation) Reset() { *x = Recommendation_ResponsiveSearchAdRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2261,7 +2261,7 @@ func (x *Recommendation_ResponsiveSearchAdRecommendation) String() string { func (*Recommendation_ResponsiveSearchAdRecommendation) ProtoMessage() {} func (x *Recommendation_ResponsiveSearchAdRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2274,7 +2274,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 20} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 20} } func (x *Recommendation_ResponsiveSearchAdRecommendation) GetAd() *Ad { @@ -2305,7 +2305,7 @@ type Recommendation_UseBroadMatchKeywordRecommendation struct { func (x *Recommendation_UseBroadMatchKeywordRecommendation) Reset() { *x = Recommendation_UseBroadMatchKeywordRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2317,7 +2317,7 @@ func (x *Recommendation_UseBroadMatchKeywordRecommendation) String() string { func (*Recommendation_UseBroadMatchKeywordRecommendation) ProtoMessage() {} func (x *Recommendation_UseBroadMatchKeywordRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2330,7 +2330,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 21} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 21} } func (x *Recommendation_UseBroadMatchKeywordRecommendation) GetKeyword() []*common.KeywordInfo { @@ -2383,7 +2383,7 @@ type Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation s func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2395,7 +2395,7 @@ func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendati func (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) ProtoMessage() {} func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2408,7 +2408,7 @@ func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendati // Deprecated: Use Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 22} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 22} } func (x *Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation) GetMerchantId() int64 { @@ -2440,7 +2440,7 @@ type Recommendation_RaiseTargetCpaBidTooLowRecommendation struct { func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) Reset() { *x = Recommendation_RaiseTargetCpaBidTooLowRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2452,7 +2452,7 @@ func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) String() string { func (*Recommendation_RaiseTargetCpaBidTooLowRecommendation) ProtoMessage() {} func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2465,7 +2465,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 23} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 23} } func (x *Recommendation_RaiseTargetCpaBidTooLowRecommendation) GetRecommendedTargetMultiplier() float64 { @@ -2491,7 +2491,7 @@ type Recommendation_DisplayExpansionOptInRecommendation struct { func (x *Recommendation_DisplayExpansionOptInRecommendation) Reset() { *x = Recommendation_DisplayExpansionOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2503,7 +2503,7 @@ func (x *Recommendation_DisplayExpansionOptInRecommendation) String() string { func (*Recommendation_DisplayExpansionOptInRecommendation) ProtoMessage() {} func (x *Recommendation_DisplayExpansionOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2516,7 +2516,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 24} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 24} } // The Upgrade Local campaign to Performance Max campaign recommendation. @@ -2528,7 +2528,7 @@ type Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation struct { func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2540,7 +2540,7 @@ func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Stri func (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) ProtoMessage() {} func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2553,7 +2553,7 @@ func (x *Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Prot // Deprecated: Use Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 25} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 25} } // The forecasting set target ROAS recommendation. @@ -2570,7 +2570,7 @@ type Recommendation_ForecastingSetTargetRoasRecommendation struct { func (x *Recommendation_ForecastingSetTargetRoasRecommendation) Reset() { *x = Recommendation_ForecastingSetTargetRoasRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2582,7 +2582,7 @@ func (x *Recommendation_ForecastingSetTargetRoasRecommendation) String() string func (*Recommendation_ForecastingSetTargetRoasRecommendation) ProtoMessage() {} func (x *Recommendation_ForecastingSetTargetRoasRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2595,7 +2595,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 26} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 26} } func (x *Recommendation_ForecastingSetTargetRoasRecommendation) GetRecommendedTargetRoas() float64 { @@ -2631,7 +2631,7 @@ type Recommendation_ShoppingOfferAttributeRecommendation struct { func (x *Recommendation_ShoppingOfferAttributeRecommendation) Reset() { *x = Recommendation_ShoppingOfferAttributeRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2643,7 +2643,7 @@ func (x *Recommendation_ShoppingOfferAttributeRecommendation) String() string { func (*Recommendation_ShoppingOfferAttributeRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingOfferAttributeRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2656,7 +2656,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 27} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 27} } func (x *Recommendation_ShoppingOfferAttributeRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2706,7 +2706,7 @@ type Recommendation_ShoppingFixDisapprovedProductsRecommendation struct { func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) Reset() { *x = Recommendation_ShoppingFixDisapprovedProductsRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2718,7 +2718,7 @@ func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) String() s func (*Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2731,7 +2731,7 @@ func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) ProtoRefle // Deprecated: Use Recommendation_ShoppingFixDisapprovedProductsRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingFixDisapprovedProductsRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 28} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 28} } func (x *Recommendation_ShoppingFixDisapprovedProductsRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2778,7 +2778,7 @@ type Recommendation_ShoppingTargetAllOffersRecommendation struct { func (x *Recommendation_ShoppingTargetAllOffersRecommendation) Reset() { *x = Recommendation_ShoppingTargetAllOffersRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2790,7 +2790,7 @@ func (x *Recommendation_ShoppingTargetAllOffersRecommendation) String() string { func (*Recommendation_ShoppingTargetAllOffersRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingTargetAllOffersRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2803,7 +2803,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 29} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 29} } func (x *Recommendation_ShoppingTargetAllOffersRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2836,14 +2836,14 @@ 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.v21.enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason" json:"reason,omitempty"` + Reason enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason `protobuf:"varint,3,opt,name=reason,proto3,enum=google.ads.googleads.v22.enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason" json:"reason,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) Reset() { *x = Recommendation_ShoppingAddProductsToCampaignRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2855,7 +2855,7 @@ func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) String() st func (*Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2868,7 +2868,7 @@ func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) ProtoReflec // Deprecated: Use Recommendation_ShoppingAddProductsToCampaignRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingAddProductsToCampaignRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 30} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 30} } func (x *Recommendation_ShoppingAddProductsToCampaignRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2907,7 +2907,7 @@ type Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation struct func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) Reset() { *x = Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2919,7 +2919,7 @@ func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) S func (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) ProtoMessage() {} func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2932,7 +2932,7 @@ func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) P // Deprecated: Use Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 31} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 31} } func (x *Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -2964,7 +2964,7 @@ type Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMax func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) Reset() { *x = Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2977,7 +2977,7 @@ func (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceM } func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2990,7 +2990,7 @@ func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanc // Deprecated: Use Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 32} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 32} } func (x *Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation) GetMerchant() *Recommendation_MerchantInfo { @@ -3026,7 +3026,7 @@ type Recommendation_TargetAdjustmentInfo struct { func (x *Recommendation_TargetAdjustmentInfo) Reset() { *x = Recommendation_TargetAdjustmentInfo{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3038,7 +3038,7 @@ func (x *Recommendation_TargetAdjustmentInfo) String() string { func (*Recommendation_TargetAdjustmentInfo) ProtoMessage() {} func (x *Recommendation_TargetAdjustmentInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3051,7 +3051,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 33} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 33} } func (x *Recommendation_TargetAdjustmentInfo) GetSharedSet() string { @@ -3083,14 +3083,14 @@ 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.v21.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.v22.enums.AppBiddingGoalEnum_AppBiddingGoal,oneof" json:"app_bidding_goal,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Recommendation_RaiseTargetCpaRecommendation) Reset() { *x = Recommendation_RaiseTargetCpaRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3102,7 +3102,7 @@ func (x *Recommendation_RaiseTargetCpaRecommendation) String() string { func (*Recommendation_RaiseTargetCpaRecommendation) ProtoMessage() {} func (x *Recommendation_RaiseTargetCpaRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3115,7 +3115,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 34} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 34} } func (x *Recommendation_RaiseTargetCpaRecommendation) GetTargetAdjustment() *Recommendation_TargetAdjustmentInfo { @@ -3144,7 +3144,7 @@ type Recommendation_LowerTargetRoasRecommendation struct { func (x *Recommendation_LowerTargetRoasRecommendation) Reset() { *x = Recommendation_LowerTargetRoasRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3156,7 +3156,7 @@ func (x *Recommendation_LowerTargetRoasRecommendation) String() string { func (*Recommendation_LowerTargetRoasRecommendation) ProtoMessage() {} func (x *Recommendation_LowerTargetRoasRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3169,7 +3169,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 35} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 35} } func (x *Recommendation_LowerTargetRoasRecommendation) GetTargetAdjustment() *Recommendation_TargetAdjustmentInfo { @@ -3190,7 +3190,7 @@ type Recommendation_DynamicImageExtensionOptInRecommendation struct { func (x *Recommendation_DynamicImageExtensionOptInRecommendation) Reset() { *x = Recommendation_DynamicImageExtensionOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3202,7 +3202,7 @@ func (x *Recommendation_DynamicImageExtensionOptInRecommendation) String() strin func (*Recommendation_DynamicImageExtensionOptInRecommendation) ProtoMessage() {} func (x *Recommendation_DynamicImageExtensionOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3215,7 +3215,7 @@ func (x *Recommendation_DynamicImageExtensionOptInRecommendation) ProtoReflect() // Deprecated: Use Recommendation_DynamicImageExtensionOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_DynamicImageExtensionOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 36} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3248,7 +3248,7 @@ func (x *Recommendation_CampaignBudget) String() string { func (*Recommendation_CampaignBudget) ProtoMessage() {} func (x *Recommendation_CampaignBudget) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3261,7 +3261,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 37} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 37} } func (x *Recommendation_CampaignBudget) GetCurrentAmountMicros() int64 { @@ -3294,7 +3294,7 @@ type Recommendation_PerformanceMaxOptInRecommendation struct { func (x *Recommendation_PerformanceMaxOptInRecommendation) Reset() { *x = Recommendation_PerformanceMaxOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[39] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3306,7 +3306,7 @@ func (x *Recommendation_PerformanceMaxOptInRecommendation) String() string { func (*Recommendation_PerformanceMaxOptInRecommendation) ProtoMessage() {} func (x *Recommendation_PerformanceMaxOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[39] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[39] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3319,7 +3319,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 38} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 38} } // Recommendation to improve the asset group strength of a Performance Max @@ -3329,14 +3329,14 @@ type Recommendation_ImprovePerformanceMaxAdStrengthRecommendation struct { // Output only. The asset group resource name. AssetGroup string `protobuf:"bytes,1,opt,name=asset_group,json=assetGroup,proto3" json:"asset_group,omitempty"` // Output only. The current ad strength score of the asset group. - AdStrength enums.AdStrengthEnum_AdStrength `protobuf:"varint,2,opt,name=ad_strength,json=adStrength,proto3,enum=google.ads.googleads.v21.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.v22.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) Reset() { *x = Recommendation_ImprovePerformanceMaxAdStrengthRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[40] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3348,7 +3348,7 @@ func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) String() func (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[40] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[40] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3361,7 +3361,7 @@ func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) ProtoRefl // Deprecated: Use Recommendation_ImprovePerformanceMaxAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 39} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 39} } func (x *Recommendation_ImprovePerformanceMaxAdStrengthRecommendation) GetAssetGroup() string { @@ -3390,7 +3390,7 @@ type Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendatio func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) Reset() { *x = Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_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_v21_resources_recommendation_proto_msgTypes[41] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[41] if 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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 40} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 40} } func (x *Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation) GetApplyLink() string { @@ -3438,7 +3438,7 @@ type Recommendation_ForecastingSetTargetCpaRecommendation struct { func (x *Recommendation_ForecastingSetTargetCpaRecommendation) Reset() { *x = Recommendation_ForecastingSetTargetCpaRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[42] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[42] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3450,7 +3450,7 @@ func (x *Recommendation_ForecastingSetTargetCpaRecommendation) String() string { func (*Recommendation_ForecastingSetTargetCpaRecommendation) ProtoMessage() {} func (x *Recommendation_ForecastingSetTargetCpaRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[42] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[42] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3463,7 +3463,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 41} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 41} } func (x *Recommendation_ForecastingSetTargetCpaRecommendation) GetRecommendedTargetCpaMicros() int64 { @@ -3489,7 +3489,7 @@ type Recommendation_MaximizeConversionValueOptInRecommendation struct { func (x *Recommendation_MaximizeConversionValueOptInRecommendation) Reset() { *x = Recommendation_MaximizeConversionValueOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[43] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[43] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3501,7 +3501,7 @@ func (x *Recommendation_MaximizeConversionValueOptInRecommendation) String() str func (*Recommendation_MaximizeConversionValueOptInRecommendation) ProtoMessage() {} func (x *Recommendation_MaximizeConversionValueOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[43] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[43] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3514,7 +3514,7 @@ func (x *Recommendation_MaximizeConversionValueOptInRecommendation) ProtoReflect // Deprecated: Use Recommendation_MaximizeConversionValueOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_MaximizeConversionValueOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 42} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 42} } // Recommendation to deploy Google Tag on more pages. @@ -3526,7 +3526,7 @@ type Recommendation_ImproveGoogleTagCoverageRecommendation struct { func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) Reset() { *x = Recommendation_ImproveGoogleTagCoverageRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[44] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[44] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3538,7 +3538,7 @@ func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) String() string func (*Recommendation_ImproveGoogleTagCoverageRecommendation) ProtoMessage() {} func (x *Recommendation_ImproveGoogleTagCoverageRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[44] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[44] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3551,7 +3551,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 43} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 43} } // Recommendation to turn on Final URL expansion for your Performance Max @@ -3564,7 +3564,7 @@ type Recommendation_PerformanceMaxFinalUrlOptInRecommendation struct { func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) Reset() { *x = Recommendation_PerformanceMaxFinalUrlOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[45] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[45] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3576,7 +3576,7 @@ func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) String() stri func (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoMessage() {} func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[45] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[45] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3589,7 +3589,7 @@ func (x *Recommendation_PerformanceMaxFinalUrlOptInRecommendation) ProtoReflect( // Deprecated: Use Recommendation_PerformanceMaxFinalUrlOptInRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 44} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 44} } // The recommendation to update a customer list that hasn't been updated in @@ -3619,7 +3619,7 @@ type Recommendation_RefreshCustomerMatchListRecommendation struct { func (x *Recommendation_RefreshCustomerMatchListRecommendation) Reset() { *x = Recommendation_RefreshCustomerMatchListRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[46] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[46] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3631,7 +3631,7 @@ func (x *Recommendation_RefreshCustomerMatchListRecommendation) String() string func (*Recommendation_RefreshCustomerMatchListRecommendation) ProtoMessage() {} func (x *Recommendation_RefreshCustomerMatchListRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[46] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[46] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3644,7 +3644,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 45} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 45} } func (x *Recommendation_RefreshCustomerMatchListRecommendation) GetUserListId() int64 { @@ -3702,7 +3702,7 @@ type Recommendation_AccountInfo struct { func (x *Recommendation_AccountInfo) Reset() { *x = Recommendation_AccountInfo{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[47] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[47] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3714,7 +3714,7 @@ func (x *Recommendation_AccountInfo) String() string { func (*Recommendation_AccountInfo) ProtoMessage() {} func (x *Recommendation_AccountInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[47] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[47] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3727,7 +3727,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 46} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 46} } func (x *Recommendation_AccountInfo) GetCustomerId() int64 { @@ -3755,7 +3755,7 @@ type Recommendation_CustomAudienceOptInRecommendation struct { func (x *Recommendation_CustomAudienceOptInRecommendation) Reset() { *x = Recommendation_CustomAudienceOptInRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[48] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[48] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3767,7 +3767,7 @@ func (x *Recommendation_CustomAudienceOptInRecommendation) String() string { func (*Recommendation_CustomAudienceOptInRecommendation) ProtoMessage() {} func (x *Recommendation_CustomAudienceOptInRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[48] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[48] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3780,7 +3780,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 47} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 47} } func (x *Recommendation_CustomAudienceOptInRecommendation) GetKeywords() []*common.KeywordInfo { @@ -3799,7 +3799,7 @@ type Recommendation_LeadFormAssetRecommendation struct { func (x *Recommendation_LeadFormAssetRecommendation) Reset() { *x = Recommendation_LeadFormAssetRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[49] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[49] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3811,7 +3811,7 @@ func (x *Recommendation_LeadFormAssetRecommendation) String() string { func (*Recommendation_LeadFormAssetRecommendation) ProtoMessage() {} func (x *Recommendation_LeadFormAssetRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[49] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[49] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3824,7 +3824,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 48} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 48} } // The improve Demand Gen ad strength recommendation. @@ -3833,7 +3833,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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -3842,7 +3842,7 @@ type Recommendation_ImproveDemandGenAdStrengthRecommendation struct { func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) Reset() { *x = Recommendation_ImproveDemandGenAdStrengthRecommendation{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[50] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[50] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3854,7 +3854,7 @@ func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) String() strin func (*Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoMessage() {} func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[50] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[50] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3867,7 +3867,7 @@ func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) ProtoReflect() // Deprecated: Use Recommendation_ImproveDemandGenAdStrengthRecommendation.ProtoReflect.Descriptor instead. func (*Recommendation_ImproveDemandGenAdStrengthRecommendation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 49} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 49} } func (x *Recommendation_ImproveDemandGenAdStrengthRecommendation) GetAd() string { @@ -3905,7 +3905,7 @@ type Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOpt func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) Reset() { *x = Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[51] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[51] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3918,7 +3918,7 @@ func (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationO } func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[51] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[51] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3931,7 +3931,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 3, 0} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 3, 0} } func (x *Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption) GetBudgetAmountMicros() int64 { @@ -3962,7 +3962,7 @@ type Recommendation_KeywordRecommendation_SearchTerm struct { func (x *Recommendation_KeywordRecommendation_SearchTerm) Reset() { *x = Recommendation_KeywordRecommendation_SearchTerm{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[52] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[52] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3974,7 +3974,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_v21_resources_recommendation_proto_msgTypes[52] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[52] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3987,7 +3987,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 4, 0} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 4, 0} } func (x *Recommendation_KeywordRecommendation_SearchTerm) GetText() string { @@ -4008,7 +4008,7 @@ func (x *Recommendation_KeywordRecommendation_SearchTerm) GetEstimatedWeeklySear type Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption struct { state protoimpl.MessageState `protogen:"open.v1"` // Output only. The goal achieved by this option. - Goal enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v21.enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal" json:"goal,omitempty"` + Goal enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal `protobuf:"varint,1,opt,name=goal,proto3,enum=google.ads.googleads.v22.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 @@ -4023,7 +4023,7 @@ type Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOpt func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) Reset() { *x = Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption{} - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[53] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[53] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4036,7 +4036,7 @@ func (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationO } func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[53] + mi := &file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[53] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4049,7 +4049,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_v21_resources_recommendation_proto_rawDescGZIP(), []int{0, 6, 0} + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP(), []int{0, 6, 0} } func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption) GetGoal() enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal { @@ -4080,47 +4080,47 @@ func (x *Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendatio return nil } -var File_google_ads_googleads_v21_resources_recommendation_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_recommendation_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_recommendation_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x2e, 0x67, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x68, 0x6f, 0x70, 0x70, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -4134,14 +4134,14 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4171,7 +4171,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4182,7 +4182,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4192,7 +4192,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4200,7 +4200,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4209,7 +4209,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4220,7 +4220,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4232,7 +4232,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x32, 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, @@ -4242,7 +4242,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4253,7 +4253,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4264,7 +4264,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4275,7 +4275,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4285,7 +4285,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4295,7 +4295,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4306,7 +4306,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4317,7 +4317,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4328,7 +4328,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4340,7 +4340,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x32, 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, @@ -4353,7 +4353,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4368,7 +4368,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4381,7 +4381,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4394,7 +4394,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4407,7 +4407,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4419,7 +4419,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4430,7 +4430,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4440,7 +4440,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4449,7 +4449,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4459,7 +4459,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4470,7 +4470,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4481,7 +4481,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4491,7 +4491,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4503,7 +4503,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -4514,7 +4514,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4526,7 +4526,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4539,7 +4539,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4551,7 +4551,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4564,7 +4564,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4580,7 +4580,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4597,7 +4597,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4614,7 +4614,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x32, 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, @@ -4625,7 +4625,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4635,7 +4635,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4646,7 +4646,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4657,7 +4657,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4672,7 +4672,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4687,7 +4687,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4698,7 +4698,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4708,7 +4708,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4720,7 +4720,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4732,7 +4732,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4744,7 +4744,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4757,7 +4757,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -4768,7 +4768,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4779,7 +4779,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4790,7 +4790,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x32, 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, @@ -4808,14 +4808,14 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4859,7 +4859,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4875,7 +4875,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x32, 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, @@ -4889,12 +4889,12 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -4916,7 +4916,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -4930,7 +4930,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -4947,7 +4947,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x76, 0x32, 0x32, 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, @@ -4964,7 +4964,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5007,7 +5007,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5015,7 +5015,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5025,7 +5025,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5033,7 +5033,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5043,13 +5043,13 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5063,7 +5063,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5092,12 +5092,12 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5106,25 +5106,25 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5185,7 +5185,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5194,7 +5194,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5211,7 +5211,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5229,7 +5229,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5245,7 +5245,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, @@ -5253,7 +5253,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x68, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5264,7 +5264,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5277,7 +5277,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5302,7 +5302,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5310,7 +5310,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5321,7 +5321,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5351,7 +5351,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x72, 0x6f, 0x75, 0x70, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x1a, 0x63, 0x0a, 0x3d, 0x4d, 0x69, 0x67, 0x72, 0x61, 0x74, 0x65, @@ -5370,7 +5370,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x67, 0x65, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5398,7 +5398,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x6f, 0x70, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -5409,7 +5409,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x74, 0x12, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, @@ -5424,7 +5424,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, + 0x32, 0x32, 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, 0x73, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, @@ -5435,7 +5435,7 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x03, 0x52, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x64, 0x53, 0x74, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -5456,199 +5456,199 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc = strin 0x61, 0x64, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_recommendation_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_recommendation_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_recommendation_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_recommendation_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_recommendation_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_recommendation_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_recommendation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_recommendation_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_recommendation_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_recommendation_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_recommendation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_recommendation_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_recommendation_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes = make([]protoimpl.MessageInfo, 54) -var file_google_ads_googleads_v21_resources_recommendation_proto_goTypes = []any{ - (*Recommendation)(nil), // 0: google.ads.googleads.v21.resources.Recommendation - (*Recommendation_MerchantInfo)(nil), // 1: google.ads.googleads.v21.resources.Recommendation.MerchantInfo - (*Recommendation_RecommendationImpact)(nil), // 2: google.ads.googleads.v21.resources.Recommendation.RecommendationImpact - (*Recommendation_RecommendationMetrics)(nil), // 3: google.ads.googleads.v21.resources.Recommendation.RecommendationMetrics - (*Recommendation_CampaignBudgetRecommendation)(nil), // 4: google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation - (*Recommendation_KeywordRecommendation)(nil), // 5: google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation - (*Recommendation_TextAdRecommendation)(nil), // 6: google.ads.googleads.v21.resources.Recommendation.TextAdRecommendation - (*Recommendation_TargetCpaOptInRecommendation)(nil), // 7: google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation - (*Recommendation_MaximizeConversionsOptInRecommendation)(nil), // 8: google.ads.googleads.v21.resources.Recommendation.MaximizeConversionsOptInRecommendation - (*Recommendation_EnhancedCpcOptInRecommendation)(nil), // 9: google.ads.googleads.v21.resources.Recommendation.EnhancedCpcOptInRecommendation - (*Recommendation_SearchPartnersOptInRecommendation)(nil), // 10: google.ads.googleads.v21.resources.Recommendation.SearchPartnersOptInRecommendation - (*Recommendation_MaximizeClicksOptInRecommendation)(nil), // 11: google.ads.googleads.v21.resources.Recommendation.MaximizeClicksOptInRecommendation - (*Recommendation_OptimizeAdRotationRecommendation)(nil), // 12: google.ads.googleads.v21.resources.Recommendation.OptimizeAdRotationRecommendation - (*Recommendation_CalloutAssetRecommendation)(nil), // 13: google.ads.googleads.v21.resources.Recommendation.CalloutAssetRecommendation - (*Recommendation_SitelinkAssetRecommendation)(nil), // 14: google.ads.googleads.v21.resources.Recommendation.SitelinkAssetRecommendation - (*Recommendation_CallAssetRecommendation)(nil), // 15: google.ads.googleads.v21.resources.Recommendation.CallAssetRecommendation - (*Recommendation_KeywordMatchTypeRecommendation)(nil), // 16: google.ads.googleads.v21.resources.Recommendation.KeywordMatchTypeRecommendation - (*Recommendation_MoveUnusedBudgetRecommendation)(nil), // 17: google.ads.googleads.v21.resources.Recommendation.MoveUnusedBudgetRecommendation - (*Recommendation_TargetRoasOptInRecommendation)(nil), // 18: google.ads.googleads.v21.resources.Recommendation.TargetRoasOptInRecommendation - (*Recommendation_ResponsiveSearchAdAssetRecommendation)(nil), // 19: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdAssetRecommendation - (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation)(nil), // 20: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation - (*Recommendation_ResponsiveSearchAdRecommendation)(nil), // 21: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdRecommendation - (*Recommendation_UseBroadMatchKeywordRecommendation)(nil), // 22: google.ads.googleads.v21.resources.Recommendation.UseBroadMatchKeywordRecommendation - (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation)(nil), // 23: google.ads.googleads.v21.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation - (*Recommendation_RaiseTargetCpaBidTooLowRecommendation)(nil), // 24: google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation - (*Recommendation_DisplayExpansionOptInRecommendation)(nil), // 25: google.ads.googleads.v21.resources.Recommendation.DisplayExpansionOptInRecommendation - (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation)(nil), // 26: google.ads.googleads.v21.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation - (*Recommendation_ForecastingSetTargetRoasRecommendation)(nil), // 27: google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetRoasRecommendation - (*Recommendation_ShoppingOfferAttributeRecommendation)(nil), // 28: google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - (*Recommendation_ShoppingFixDisapprovedProductsRecommendation)(nil), // 29: google.ads.googleads.v21.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation - (*Recommendation_ShoppingTargetAllOffersRecommendation)(nil), // 30: google.ads.googleads.v21.resources.Recommendation.ShoppingTargetAllOffersRecommendation - (*Recommendation_ShoppingAddProductsToCampaignRecommendation)(nil), // 31: google.ads.googleads.v21.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation - (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation)(nil), // 32: google.ads.googleads.v21.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation)(nil), // 33: google.ads.googleads.v21.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation - (*Recommendation_TargetAdjustmentInfo)(nil), // 34: google.ads.googleads.v21.resources.Recommendation.TargetAdjustmentInfo - (*Recommendation_RaiseTargetCpaRecommendation)(nil), // 35: google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaRecommendation - (*Recommendation_LowerTargetRoasRecommendation)(nil), // 36: google.ads.googleads.v21.resources.Recommendation.LowerTargetRoasRecommendation - (*Recommendation_DynamicImageExtensionOptInRecommendation)(nil), // 37: google.ads.googleads.v21.resources.Recommendation.DynamicImageExtensionOptInRecommendation - (*Recommendation_CampaignBudget)(nil), // 38: google.ads.googleads.v21.resources.Recommendation.CampaignBudget - (*Recommendation_PerformanceMaxOptInRecommendation)(nil), // 39: google.ads.googleads.v21.resources.Recommendation.PerformanceMaxOptInRecommendation - (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation)(nil), // 40: google.ads.googleads.v21.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation - (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation)(nil), // 41: google.ads.googleads.v21.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation - (*Recommendation_ForecastingSetTargetCpaRecommendation)(nil), // 42: google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetCpaRecommendation - (*Recommendation_MaximizeConversionValueOptInRecommendation)(nil), // 43: google.ads.googleads.v21.resources.Recommendation.MaximizeConversionValueOptInRecommendation - (*Recommendation_ImproveGoogleTagCoverageRecommendation)(nil), // 44: google.ads.googleads.v21.resources.Recommendation.ImproveGoogleTagCoverageRecommendation - (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation)(nil), // 45: google.ads.googleads.v21.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation - (*Recommendation_RefreshCustomerMatchListRecommendation)(nil), // 46: google.ads.googleads.v21.resources.Recommendation.RefreshCustomerMatchListRecommendation - (*Recommendation_AccountInfo)(nil), // 47: google.ads.googleads.v21.resources.Recommendation.AccountInfo - (*Recommendation_CustomAudienceOptInRecommendation)(nil), // 48: google.ads.googleads.v21.resources.Recommendation.CustomAudienceOptInRecommendation - (*Recommendation_LeadFormAssetRecommendation)(nil), // 49: google.ads.googleads.v21.resources.Recommendation.LeadFormAssetRecommendation - (*Recommendation_ImproveDemandGenAdStrengthRecommendation)(nil), // 50: google.ads.googleads.v21.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation - (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption)(nil), // 51: google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption - (*Recommendation_KeywordRecommendation_SearchTerm)(nil), // 52: google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation.SearchTerm - (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption)(nil), // 53: google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption - (enums.RecommendationTypeEnum_RecommendationType)(0), // 54: google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - (*common.KeywordInfo)(nil), // 55: google.ads.googleads.v21.common.KeywordInfo - (*Ad)(nil), // 56: google.ads.googleads.v21.resources.Ad - (*Asset)(nil), // 57: google.ads.googleads.v21.resources.Asset - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 58: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - (enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 59: google.ads.googleads.v21.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason - (enums.AppBiddingGoalEnum_AppBiddingGoal)(0), // 60: google.ads.googleads.v21.enums.AppBiddingGoalEnum.AppBiddingGoal - (enums.AdStrengthEnum_AdStrength)(0), // 61: google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - (enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 62: google.ads.googleads.v21.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal -} -var file_google_ads_googleads_v21_resources_recommendation_proto_depIdxs = []int32{ - 54, // 0: google.ads.googleads.v21.resources.Recommendation.type:type_name -> google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - 2, // 1: google.ads.googleads.v21.resources.Recommendation.impact:type_name -> google.ads.googleads.v21.resources.Recommendation.RecommendationImpact - 4, // 2: google.ads.googleads.v21.resources.Recommendation.campaign_budget_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation - 4, // 3: google.ads.googleads.v21.resources.Recommendation.forecasting_campaign_budget_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation - 5, // 4: google.ads.googleads.v21.resources.Recommendation.keyword_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation - 6, // 5: google.ads.googleads.v21.resources.Recommendation.text_ad_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.TextAdRecommendation - 7, // 6: google.ads.googleads.v21.resources.Recommendation.target_cpa_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation - 8, // 7: google.ads.googleads.v21.resources.Recommendation.maximize_conversions_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.MaximizeConversionsOptInRecommendation - 9, // 8: google.ads.googleads.v21.resources.Recommendation.enhanced_cpc_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.EnhancedCpcOptInRecommendation - 10, // 9: google.ads.googleads.v21.resources.Recommendation.search_partners_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.SearchPartnersOptInRecommendation - 11, // 10: google.ads.googleads.v21.resources.Recommendation.maximize_clicks_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.MaximizeClicksOptInRecommendation - 12, // 11: google.ads.googleads.v21.resources.Recommendation.optimize_ad_rotation_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.OptimizeAdRotationRecommendation - 16, // 12: google.ads.googleads.v21.resources.Recommendation.keyword_match_type_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.KeywordMatchTypeRecommendation - 17, // 13: google.ads.googleads.v21.resources.Recommendation.move_unused_budget_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.MoveUnusedBudgetRecommendation - 18, // 14: google.ads.googleads.v21.resources.Recommendation.target_roas_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.TargetRoasOptInRecommendation - 21, // 15: google.ads.googleads.v21.resources.Recommendation.responsive_search_ad_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdRecommendation - 4, // 16: google.ads.googleads.v21.resources.Recommendation.marginal_roi_campaign_budget_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation - 22, // 17: google.ads.googleads.v21.resources.Recommendation.use_broad_match_keyword_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.UseBroadMatchKeywordRecommendation - 19, // 18: google.ads.googleads.v21.resources.Recommendation.responsive_search_ad_asset_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdAssetRecommendation - 23, // 19: google.ads.googleads.v21.resources.Recommendation.upgrade_smart_shopping_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation - 20, // 20: google.ads.googleads.v21.resources.Recommendation.responsive_search_ad_improve_ad_strength_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation - 25, // 21: google.ads.googleads.v21.resources.Recommendation.display_expansion_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.DisplayExpansionOptInRecommendation - 26, // 22: google.ads.googleads.v21.resources.Recommendation.upgrade_local_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation - 24, // 23: google.ads.googleads.v21.resources.Recommendation.raise_target_cpa_bid_too_low_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation - 27, // 24: google.ads.googleads.v21.resources.Recommendation.forecasting_set_target_roas_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetRoasRecommendation - 13, // 25: google.ads.googleads.v21.resources.Recommendation.callout_asset_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CalloutAssetRecommendation - 14, // 26: google.ads.googleads.v21.resources.Recommendation.sitelink_asset_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.SitelinkAssetRecommendation - 15, // 27: google.ads.googleads.v21.resources.Recommendation.call_asset_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CallAssetRecommendation - 28, // 28: google.ads.googleads.v21.resources.Recommendation.shopping_add_age_group_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 29: google.ads.googleads.v21.resources.Recommendation.shopping_add_color_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 30: google.ads.googleads.v21.resources.Recommendation.shopping_add_gender_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 31: google.ads.googleads.v21.resources.Recommendation.shopping_add_gtin_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 32: google.ads.googleads.v21.resources.Recommendation.shopping_add_more_identifiers_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 28, // 33: google.ads.googleads.v21.resources.Recommendation.shopping_add_size_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation - 31, // 34: google.ads.googleads.v21.resources.Recommendation.shopping_add_products_to_campaign_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation - 29, // 35: google.ads.googleads.v21.resources.Recommendation.shopping_fix_disapproved_products_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation - 30, // 36: google.ads.googleads.v21.resources.Recommendation.shopping_target_all_offers_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingTargetAllOffersRecommendation - 32, // 37: google.ads.googleads.v21.resources.Recommendation.shopping_fix_suspended_merchant_center_account_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - 32, // 38: google.ads.googleads.v21.resources.Recommendation.shopping_fix_merchant_center_account_suspension_warning_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation - 33, // 39: google.ads.googleads.v21.resources.Recommendation.shopping_migrate_regular_shopping_campaign_offers_to_performance_max_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation - 37, // 40: google.ads.googleads.v21.resources.Recommendation.dynamic_image_extension_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.DynamicImageExtensionOptInRecommendation - 35, // 41: google.ads.googleads.v21.resources.Recommendation.raise_target_cpa_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaRecommendation - 36, // 42: google.ads.googleads.v21.resources.Recommendation.lower_target_roas_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.LowerTargetRoasRecommendation - 39, // 43: google.ads.googleads.v21.resources.Recommendation.performance_max_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.PerformanceMaxOptInRecommendation - 40, // 44: google.ads.googleads.v21.resources.Recommendation.improve_performance_max_ad_strength_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation - 41, // 45: google.ads.googleads.v21.resources.Recommendation.migrate_dynamic_search_ads_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation - 42, // 46: google.ads.googleads.v21.resources.Recommendation.forecasting_set_target_cpa_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetCpaRecommendation - 42, // 47: google.ads.googleads.v21.resources.Recommendation.set_target_cpa_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetCpaRecommendation - 27, // 48: google.ads.googleads.v21.resources.Recommendation.set_target_roas_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetRoasRecommendation - 43, // 49: google.ads.googleads.v21.resources.Recommendation.maximize_conversion_value_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.MaximizeConversionValueOptInRecommendation - 44, // 50: google.ads.googleads.v21.resources.Recommendation.improve_google_tag_coverage_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ImproveGoogleTagCoverageRecommendation - 45, // 51: google.ads.googleads.v21.resources.Recommendation.performance_max_final_url_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation - 46, // 52: google.ads.googleads.v21.resources.Recommendation.refresh_customer_match_list_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.RefreshCustomerMatchListRecommendation - 48, // 53: google.ads.googleads.v21.resources.Recommendation.custom_audience_opt_in_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CustomAudienceOptInRecommendation - 49, // 54: google.ads.googleads.v21.resources.Recommendation.lead_form_asset_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.LeadFormAssetRecommendation - 50, // 55: google.ads.googleads.v21.resources.Recommendation.improve_demand_gen_ad_strength_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation - 3, // 56: google.ads.googleads.v21.resources.Recommendation.RecommendationImpact.base_metrics:type_name -> google.ads.googleads.v21.resources.Recommendation.RecommendationMetrics - 3, // 57: google.ads.googleads.v21.resources.Recommendation.RecommendationImpact.potential_metrics:type_name -> google.ads.googleads.v21.resources.Recommendation.RecommendationMetrics - 51, // 58: google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation.budget_options:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption - 55, // 59: google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 52, // 60: google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation.search_terms:type_name -> google.ads.googleads.v21.resources.Recommendation.KeywordRecommendation.SearchTerm - 56, // 61: google.ads.googleads.v21.resources.Recommendation.TextAdRecommendation.ad:type_name -> google.ads.googleads.v21.resources.Ad - 53, // 62: google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation.options:type_name -> google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption - 57, // 63: google.ads.googleads.v21.resources.Recommendation.CalloutAssetRecommendation.recommended_campaign_callout_assets:type_name -> google.ads.googleads.v21.resources.Asset - 57, // 64: google.ads.googleads.v21.resources.Recommendation.CalloutAssetRecommendation.recommended_customer_callout_assets:type_name -> google.ads.googleads.v21.resources.Asset - 57, // 65: google.ads.googleads.v21.resources.Recommendation.SitelinkAssetRecommendation.recommended_campaign_sitelink_assets:type_name -> google.ads.googleads.v21.resources.Asset - 57, // 66: google.ads.googleads.v21.resources.Recommendation.SitelinkAssetRecommendation.recommended_customer_sitelink_assets:type_name -> google.ads.googleads.v21.resources.Asset - 55, // 67: google.ads.googleads.v21.resources.Recommendation.KeywordMatchTypeRecommendation.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 58, // 68: google.ads.googleads.v21.resources.Recommendation.KeywordMatchTypeRecommendation.recommended_match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - 4, // 69: google.ads.googleads.v21.resources.Recommendation.MoveUnusedBudgetRecommendation.budget_recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation - 56, // 70: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.current_ad:type_name -> google.ads.googleads.v21.resources.Ad - 56, // 71: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.recommended_assets:type_name -> google.ads.googleads.v21.resources.Ad - 56, // 72: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.current_ad:type_name -> google.ads.googleads.v21.resources.Ad - 56, // 73: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.recommended_ad:type_name -> google.ads.googleads.v21.resources.Ad - 56, // 74: google.ads.googleads.v21.resources.Recommendation.ResponsiveSearchAdRecommendation.ad:type_name -> google.ads.googleads.v21.resources.Ad - 55, // 75: google.ads.googleads.v21.resources.Recommendation.UseBroadMatchKeywordRecommendation.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 38, // 76: google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetRoasRecommendation.campaign_budget:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudget - 1, // 77: google.ads.googleads.v21.resources.Recommendation.ShoppingOfferAttributeRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 1, // 78: google.ads.googleads.v21.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 1, // 79: google.ads.googleads.v21.resources.Recommendation.ShoppingTargetAllOffersRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 1, // 80: google.ads.googleads.v21.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 59, // 81: google.ads.googleads.v21.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.reason:type_name -> google.ads.googleads.v21.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason - 1, // 82: google.ads.googleads.v21.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 1, // 83: google.ads.googleads.v21.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.merchant:type_name -> google.ads.googleads.v21.resources.Recommendation.MerchantInfo - 34, // 84: google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaRecommendation.target_adjustment:type_name -> google.ads.googleads.v21.resources.Recommendation.TargetAdjustmentInfo - 60, // 85: google.ads.googleads.v21.resources.Recommendation.RaiseTargetCpaRecommendation.app_bidding_goal:type_name -> google.ads.googleads.v21.enums.AppBiddingGoalEnum.AppBiddingGoal - 34, // 86: google.ads.googleads.v21.resources.Recommendation.LowerTargetRoasRecommendation.target_adjustment:type_name -> google.ads.googleads.v21.resources.Recommendation.TargetAdjustmentInfo - 61, // 87: google.ads.googleads.v21.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - 38, // 88: google.ads.googleads.v21.resources.Recommendation.ForecastingSetTargetCpaRecommendation.campaign_budget:type_name -> google.ads.googleads.v21.resources.Recommendation.CampaignBudget - 47, // 89: google.ads.googleads.v21.resources.Recommendation.RefreshCustomerMatchListRecommendation.top_spending_account:type_name -> google.ads.googleads.v21.resources.Recommendation.AccountInfo - 47, // 90: google.ads.googleads.v21.resources.Recommendation.RefreshCustomerMatchListRecommendation.owner_account:type_name -> google.ads.googleads.v21.resources.Recommendation.AccountInfo - 55, // 91: google.ads.googleads.v21.resources.Recommendation.CustomAudienceOptInRecommendation.keywords:type_name -> google.ads.googleads.v21.common.KeywordInfo - 61, // 92: google.ads.googleads.v21.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v21.enums.AdStrengthEnum.AdStrength - 2, // 93: google.ads.googleads.v21.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption.impact:type_name -> google.ads.googleads.v21.resources.Recommendation.RecommendationImpact - 62, // 94: google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.goal:type_name -> google.ads.googleads.v21.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal - 2, // 95: google.ads.googleads.v21.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.impact:type_name -> google.ads.googleads.v21.resources.Recommendation.RecommendationImpact + return file_google_ads_googleads_v22_resources_recommendation_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes = make([]protoimpl.MessageInfo, 54) +var file_google_ads_googleads_v22_resources_recommendation_proto_goTypes = []any{ + (*Recommendation)(nil), // 0: google.ads.googleads.v22.resources.Recommendation + (*Recommendation_MerchantInfo)(nil), // 1: google.ads.googleads.v22.resources.Recommendation.MerchantInfo + (*Recommendation_RecommendationImpact)(nil), // 2: google.ads.googleads.v22.resources.Recommendation.RecommendationImpact + (*Recommendation_RecommendationMetrics)(nil), // 3: google.ads.googleads.v22.resources.Recommendation.RecommendationMetrics + (*Recommendation_CampaignBudgetRecommendation)(nil), // 4: google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation + (*Recommendation_KeywordRecommendation)(nil), // 5: google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation + (*Recommendation_TextAdRecommendation)(nil), // 6: google.ads.googleads.v22.resources.Recommendation.TextAdRecommendation + (*Recommendation_TargetCpaOptInRecommendation)(nil), // 7: google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation + (*Recommendation_MaximizeConversionsOptInRecommendation)(nil), // 8: google.ads.googleads.v22.resources.Recommendation.MaximizeConversionsOptInRecommendation + (*Recommendation_EnhancedCpcOptInRecommendation)(nil), // 9: google.ads.googleads.v22.resources.Recommendation.EnhancedCpcOptInRecommendation + (*Recommendation_SearchPartnersOptInRecommendation)(nil), // 10: google.ads.googleads.v22.resources.Recommendation.SearchPartnersOptInRecommendation + (*Recommendation_MaximizeClicksOptInRecommendation)(nil), // 11: google.ads.googleads.v22.resources.Recommendation.MaximizeClicksOptInRecommendation + (*Recommendation_OptimizeAdRotationRecommendation)(nil), // 12: google.ads.googleads.v22.resources.Recommendation.OptimizeAdRotationRecommendation + (*Recommendation_CalloutAssetRecommendation)(nil), // 13: google.ads.googleads.v22.resources.Recommendation.CalloutAssetRecommendation + (*Recommendation_SitelinkAssetRecommendation)(nil), // 14: google.ads.googleads.v22.resources.Recommendation.SitelinkAssetRecommendation + (*Recommendation_CallAssetRecommendation)(nil), // 15: google.ads.googleads.v22.resources.Recommendation.CallAssetRecommendation + (*Recommendation_KeywordMatchTypeRecommendation)(nil), // 16: google.ads.googleads.v22.resources.Recommendation.KeywordMatchTypeRecommendation + (*Recommendation_MoveUnusedBudgetRecommendation)(nil), // 17: google.ads.googleads.v22.resources.Recommendation.MoveUnusedBudgetRecommendation + (*Recommendation_TargetRoasOptInRecommendation)(nil), // 18: google.ads.googleads.v22.resources.Recommendation.TargetRoasOptInRecommendation + (*Recommendation_ResponsiveSearchAdAssetRecommendation)(nil), // 19: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdAssetRecommendation + (*Recommendation_ResponsiveSearchAdImproveAdStrengthRecommendation)(nil), // 20: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation + (*Recommendation_ResponsiveSearchAdRecommendation)(nil), // 21: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdRecommendation + (*Recommendation_UseBroadMatchKeywordRecommendation)(nil), // 22: google.ads.googleads.v22.resources.Recommendation.UseBroadMatchKeywordRecommendation + (*Recommendation_UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation)(nil), // 23: google.ads.googleads.v22.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation + (*Recommendation_RaiseTargetCpaBidTooLowRecommendation)(nil), // 24: google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation + (*Recommendation_DisplayExpansionOptInRecommendation)(nil), // 25: google.ads.googleads.v22.resources.Recommendation.DisplayExpansionOptInRecommendation + (*Recommendation_UpgradeLocalCampaignToPerformanceMaxRecommendation)(nil), // 26: google.ads.googleads.v22.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation + (*Recommendation_ForecastingSetTargetRoasRecommendation)(nil), // 27: google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetRoasRecommendation + (*Recommendation_ShoppingOfferAttributeRecommendation)(nil), // 28: google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + (*Recommendation_ShoppingFixDisapprovedProductsRecommendation)(nil), // 29: google.ads.googleads.v22.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation + (*Recommendation_ShoppingTargetAllOffersRecommendation)(nil), // 30: google.ads.googleads.v22.resources.Recommendation.ShoppingTargetAllOffersRecommendation + (*Recommendation_ShoppingAddProductsToCampaignRecommendation)(nil), // 31: google.ads.googleads.v22.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation + (*Recommendation_ShoppingMerchantCenterAccountSuspensionRecommendation)(nil), // 32: google.ads.googleads.v22.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + (*Recommendation_ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation)(nil), // 33: google.ads.googleads.v22.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation + (*Recommendation_TargetAdjustmentInfo)(nil), // 34: google.ads.googleads.v22.resources.Recommendation.TargetAdjustmentInfo + (*Recommendation_RaiseTargetCpaRecommendation)(nil), // 35: google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaRecommendation + (*Recommendation_LowerTargetRoasRecommendation)(nil), // 36: google.ads.googleads.v22.resources.Recommendation.LowerTargetRoasRecommendation + (*Recommendation_DynamicImageExtensionOptInRecommendation)(nil), // 37: google.ads.googleads.v22.resources.Recommendation.DynamicImageExtensionOptInRecommendation + (*Recommendation_CampaignBudget)(nil), // 38: google.ads.googleads.v22.resources.Recommendation.CampaignBudget + (*Recommendation_PerformanceMaxOptInRecommendation)(nil), // 39: google.ads.googleads.v22.resources.Recommendation.PerformanceMaxOptInRecommendation + (*Recommendation_ImprovePerformanceMaxAdStrengthRecommendation)(nil), // 40: google.ads.googleads.v22.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation + (*Recommendation_MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation)(nil), // 41: google.ads.googleads.v22.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation + (*Recommendation_ForecastingSetTargetCpaRecommendation)(nil), // 42: google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetCpaRecommendation + (*Recommendation_MaximizeConversionValueOptInRecommendation)(nil), // 43: google.ads.googleads.v22.resources.Recommendation.MaximizeConversionValueOptInRecommendation + (*Recommendation_ImproveGoogleTagCoverageRecommendation)(nil), // 44: google.ads.googleads.v22.resources.Recommendation.ImproveGoogleTagCoverageRecommendation + (*Recommendation_PerformanceMaxFinalUrlOptInRecommendation)(nil), // 45: google.ads.googleads.v22.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation + (*Recommendation_RefreshCustomerMatchListRecommendation)(nil), // 46: google.ads.googleads.v22.resources.Recommendation.RefreshCustomerMatchListRecommendation + (*Recommendation_AccountInfo)(nil), // 47: google.ads.googleads.v22.resources.Recommendation.AccountInfo + (*Recommendation_CustomAudienceOptInRecommendation)(nil), // 48: google.ads.googleads.v22.resources.Recommendation.CustomAudienceOptInRecommendation + (*Recommendation_LeadFormAssetRecommendation)(nil), // 49: google.ads.googleads.v22.resources.Recommendation.LeadFormAssetRecommendation + (*Recommendation_ImproveDemandGenAdStrengthRecommendation)(nil), // 50: google.ads.googleads.v22.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation + (*Recommendation_CampaignBudgetRecommendation_CampaignBudgetRecommendationOption)(nil), // 51: google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption + (*Recommendation_KeywordRecommendation_SearchTerm)(nil), // 52: google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation.SearchTerm + (*Recommendation_TargetCpaOptInRecommendation_TargetCpaOptInRecommendationOption)(nil), // 53: google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption + (enums.RecommendationTypeEnum_RecommendationType)(0), // 54: google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + (*common.KeywordInfo)(nil), // 55: google.ads.googleads.v22.common.KeywordInfo + (*Ad)(nil), // 56: google.ads.googleads.v22.resources.Ad + (*Asset)(nil), // 57: google.ads.googleads.v22.resources.Asset + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 58: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + (enums.ShoppingAddProductsToCampaignRecommendationEnum_Reason)(0), // 59: google.ads.googleads.v22.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason + (enums.AppBiddingGoalEnum_AppBiddingGoal)(0), // 60: google.ads.googleads.v22.enums.AppBiddingGoalEnum.AppBiddingGoal + (enums.AdStrengthEnum_AdStrength)(0), // 61: google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + (enums.TargetCpaOptInRecommendationGoalEnum_TargetCpaOptInRecommendationGoal)(0), // 62: google.ads.googleads.v22.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal +} +var file_google_ads_googleads_v22_resources_recommendation_proto_depIdxs = []int32{ + 54, // 0: google.ads.googleads.v22.resources.Recommendation.type:type_name -> google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + 2, // 1: google.ads.googleads.v22.resources.Recommendation.impact:type_name -> google.ads.googleads.v22.resources.Recommendation.RecommendationImpact + 4, // 2: google.ads.googleads.v22.resources.Recommendation.campaign_budget_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation + 4, // 3: google.ads.googleads.v22.resources.Recommendation.forecasting_campaign_budget_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation + 5, // 4: google.ads.googleads.v22.resources.Recommendation.keyword_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation + 6, // 5: google.ads.googleads.v22.resources.Recommendation.text_ad_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.TextAdRecommendation + 7, // 6: google.ads.googleads.v22.resources.Recommendation.target_cpa_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation + 8, // 7: google.ads.googleads.v22.resources.Recommendation.maximize_conversions_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.MaximizeConversionsOptInRecommendation + 9, // 8: google.ads.googleads.v22.resources.Recommendation.enhanced_cpc_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.EnhancedCpcOptInRecommendation + 10, // 9: google.ads.googleads.v22.resources.Recommendation.search_partners_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.SearchPartnersOptInRecommendation + 11, // 10: google.ads.googleads.v22.resources.Recommendation.maximize_clicks_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.MaximizeClicksOptInRecommendation + 12, // 11: google.ads.googleads.v22.resources.Recommendation.optimize_ad_rotation_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.OptimizeAdRotationRecommendation + 16, // 12: google.ads.googleads.v22.resources.Recommendation.keyword_match_type_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.KeywordMatchTypeRecommendation + 17, // 13: google.ads.googleads.v22.resources.Recommendation.move_unused_budget_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.MoveUnusedBudgetRecommendation + 18, // 14: google.ads.googleads.v22.resources.Recommendation.target_roas_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.TargetRoasOptInRecommendation + 21, // 15: google.ads.googleads.v22.resources.Recommendation.responsive_search_ad_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdRecommendation + 4, // 16: google.ads.googleads.v22.resources.Recommendation.marginal_roi_campaign_budget_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation + 22, // 17: google.ads.googleads.v22.resources.Recommendation.use_broad_match_keyword_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.UseBroadMatchKeywordRecommendation + 19, // 18: google.ads.googleads.v22.resources.Recommendation.responsive_search_ad_asset_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdAssetRecommendation + 23, // 19: google.ads.googleads.v22.resources.Recommendation.upgrade_smart_shopping_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.UpgradeSmartShoppingCampaignToPerformanceMaxRecommendation + 20, // 20: google.ads.googleads.v22.resources.Recommendation.responsive_search_ad_improve_ad_strength_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation + 25, // 21: google.ads.googleads.v22.resources.Recommendation.display_expansion_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.DisplayExpansionOptInRecommendation + 26, // 22: google.ads.googleads.v22.resources.Recommendation.upgrade_local_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.UpgradeLocalCampaignToPerformanceMaxRecommendation + 24, // 23: google.ads.googleads.v22.resources.Recommendation.raise_target_cpa_bid_too_low_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaBidTooLowRecommendation + 27, // 24: google.ads.googleads.v22.resources.Recommendation.forecasting_set_target_roas_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetRoasRecommendation + 13, // 25: google.ads.googleads.v22.resources.Recommendation.callout_asset_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CalloutAssetRecommendation + 14, // 26: google.ads.googleads.v22.resources.Recommendation.sitelink_asset_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.SitelinkAssetRecommendation + 15, // 27: google.ads.googleads.v22.resources.Recommendation.call_asset_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CallAssetRecommendation + 28, // 28: google.ads.googleads.v22.resources.Recommendation.shopping_add_age_group_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 29: google.ads.googleads.v22.resources.Recommendation.shopping_add_color_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 30: google.ads.googleads.v22.resources.Recommendation.shopping_add_gender_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 31: google.ads.googleads.v22.resources.Recommendation.shopping_add_gtin_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 32: google.ads.googleads.v22.resources.Recommendation.shopping_add_more_identifiers_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 28, // 33: google.ads.googleads.v22.resources.Recommendation.shopping_add_size_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation + 31, // 34: google.ads.googleads.v22.resources.Recommendation.shopping_add_products_to_campaign_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation + 29, // 35: google.ads.googleads.v22.resources.Recommendation.shopping_fix_disapproved_products_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation + 30, // 36: google.ads.googleads.v22.resources.Recommendation.shopping_target_all_offers_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingTargetAllOffersRecommendation + 32, // 37: google.ads.googleads.v22.resources.Recommendation.shopping_fix_suspended_merchant_center_account_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + 32, // 38: google.ads.googleads.v22.resources.Recommendation.shopping_fix_merchant_center_account_suspension_warning_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation + 33, // 39: google.ads.googleads.v22.resources.Recommendation.shopping_migrate_regular_shopping_campaign_offers_to_performance_max_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation + 37, // 40: google.ads.googleads.v22.resources.Recommendation.dynamic_image_extension_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.DynamicImageExtensionOptInRecommendation + 35, // 41: google.ads.googleads.v22.resources.Recommendation.raise_target_cpa_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaRecommendation + 36, // 42: google.ads.googleads.v22.resources.Recommendation.lower_target_roas_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.LowerTargetRoasRecommendation + 39, // 43: google.ads.googleads.v22.resources.Recommendation.performance_max_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.PerformanceMaxOptInRecommendation + 40, // 44: google.ads.googleads.v22.resources.Recommendation.improve_performance_max_ad_strength_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation + 41, // 45: google.ads.googleads.v22.resources.Recommendation.migrate_dynamic_search_ads_campaign_to_performance_max_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.MigrateDynamicSearchAdsCampaignToPerformanceMaxRecommendation + 42, // 46: google.ads.googleads.v22.resources.Recommendation.forecasting_set_target_cpa_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetCpaRecommendation + 42, // 47: google.ads.googleads.v22.resources.Recommendation.set_target_cpa_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetCpaRecommendation + 27, // 48: google.ads.googleads.v22.resources.Recommendation.set_target_roas_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetRoasRecommendation + 43, // 49: google.ads.googleads.v22.resources.Recommendation.maximize_conversion_value_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.MaximizeConversionValueOptInRecommendation + 44, // 50: google.ads.googleads.v22.resources.Recommendation.improve_google_tag_coverage_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ImproveGoogleTagCoverageRecommendation + 45, // 51: google.ads.googleads.v22.resources.Recommendation.performance_max_final_url_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.PerformanceMaxFinalUrlOptInRecommendation + 46, // 52: google.ads.googleads.v22.resources.Recommendation.refresh_customer_match_list_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.RefreshCustomerMatchListRecommendation + 48, // 53: google.ads.googleads.v22.resources.Recommendation.custom_audience_opt_in_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CustomAudienceOptInRecommendation + 49, // 54: google.ads.googleads.v22.resources.Recommendation.lead_form_asset_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.LeadFormAssetRecommendation + 50, // 55: google.ads.googleads.v22.resources.Recommendation.improve_demand_gen_ad_strength_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation + 3, // 56: google.ads.googleads.v22.resources.Recommendation.RecommendationImpact.base_metrics:type_name -> google.ads.googleads.v22.resources.Recommendation.RecommendationMetrics + 3, // 57: google.ads.googleads.v22.resources.Recommendation.RecommendationImpact.potential_metrics:type_name -> google.ads.googleads.v22.resources.Recommendation.RecommendationMetrics + 51, // 58: google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation.budget_options:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption + 55, // 59: google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 52, // 60: google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation.search_terms:type_name -> google.ads.googleads.v22.resources.Recommendation.KeywordRecommendation.SearchTerm + 56, // 61: google.ads.googleads.v22.resources.Recommendation.TextAdRecommendation.ad:type_name -> google.ads.googleads.v22.resources.Ad + 53, // 62: google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation.options:type_name -> google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption + 57, // 63: google.ads.googleads.v22.resources.Recommendation.CalloutAssetRecommendation.recommended_campaign_callout_assets:type_name -> google.ads.googleads.v22.resources.Asset + 57, // 64: google.ads.googleads.v22.resources.Recommendation.CalloutAssetRecommendation.recommended_customer_callout_assets:type_name -> google.ads.googleads.v22.resources.Asset + 57, // 65: google.ads.googleads.v22.resources.Recommendation.SitelinkAssetRecommendation.recommended_campaign_sitelink_assets:type_name -> google.ads.googleads.v22.resources.Asset + 57, // 66: google.ads.googleads.v22.resources.Recommendation.SitelinkAssetRecommendation.recommended_customer_sitelink_assets:type_name -> google.ads.googleads.v22.resources.Asset + 55, // 67: google.ads.googleads.v22.resources.Recommendation.KeywordMatchTypeRecommendation.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 58, // 68: google.ads.googleads.v22.resources.Recommendation.KeywordMatchTypeRecommendation.recommended_match_type:type_name -> google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + 4, // 69: google.ads.googleads.v22.resources.Recommendation.MoveUnusedBudgetRecommendation.budget_recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation + 56, // 70: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.current_ad:type_name -> google.ads.googleads.v22.resources.Ad + 56, // 71: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdAssetRecommendation.recommended_assets:type_name -> google.ads.googleads.v22.resources.Ad + 56, // 72: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.current_ad:type_name -> google.ads.googleads.v22.resources.Ad + 56, // 73: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdImproveAdStrengthRecommendation.recommended_ad:type_name -> google.ads.googleads.v22.resources.Ad + 56, // 74: google.ads.googleads.v22.resources.Recommendation.ResponsiveSearchAdRecommendation.ad:type_name -> google.ads.googleads.v22.resources.Ad + 55, // 75: google.ads.googleads.v22.resources.Recommendation.UseBroadMatchKeywordRecommendation.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 38, // 76: google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetRoasRecommendation.campaign_budget:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudget + 1, // 77: google.ads.googleads.v22.resources.Recommendation.ShoppingOfferAttributeRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 1, // 78: google.ads.googleads.v22.resources.Recommendation.ShoppingFixDisapprovedProductsRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 1, // 79: google.ads.googleads.v22.resources.Recommendation.ShoppingTargetAllOffersRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 1, // 80: google.ads.googleads.v22.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 59, // 81: google.ads.googleads.v22.resources.Recommendation.ShoppingAddProductsToCampaignRecommendation.reason:type_name -> google.ads.googleads.v22.enums.ShoppingAddProductsToCampaignRecommendationEnum.Reason + 1, // 82: google.ads.googleads.v22.resources.Recommendation.ShoppingMerchantCenterAccountSuspensionRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 1, // 83: google.ads.googleads.v22.resources.Recommendation.ShoppingMigrateRegularShoppingCampaignOffersToPerformanceMaxRecommendation.merchant:type_name -> google.ads.googleads.v22.resources.Recommendation.MerchantInfo + 34, // 84: google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaRecommendation.target_adjustment:type_name -> google.ads.googleads.v22.resources.Recommendation.TargetAdjustmentInfo + 60, // 85: google.ads.googleads.v22.resources.Recommendation.RaiseTargetCpaRecommendation.app_bidding_goal:type_name -> google.ads.googleads.v22.enums.AppBiddingGoalEnum.AppBiddingGoal + 34, // 86: google.ads.googleads.v22.resources.Recommendation.LowerTargetRoasRecommendation.target_adjustment:type_name -> google.ads.googleads.v22.resources.Recommendation.TargetAdjustmentInfo + 61, // 87: google.ads.googleads.v22.resources.Recommendation.ImprovePerformanceMaxAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + 38, // 88: google.ads.googleads.v22.resources.Recommendation.ForecastingSetTargetCpaRecommendation.campaign_budget:type_name -> google.ads.googleads.v22.resources.Recommendation.CampaignBudget + 47, // 89: google.ads.googleads.v22.resources.Recommendation.RefreshCustomerMatchListRecommendation.top_spending_account:type_name -> google.ads.googleads.v22.resources.Recommendation.AccountInfo + 47, // 90: google.ads.googleads.v22.resources.Recommendation.RefreshCustomerMatchListRecommendation.owner_account:type_name -> google.ads.googleads.v22.resources.Recommendation.AccountInfo + 55, // 91: google.ads.googleads.v22.resources.Recommendation.CustomAudienceOptInRecommendation.keywords:type_name -> google.ads.googleads.v22.common.KeywordInfo + 61, // 92: google.ads.googleads.v22.resources.Recommendation.ImproveDemandGenAdStrengthRecommendation.ad_strength:type_name -> google.ads.googleads.v22.enums.AdStrengthEnum.AdStrength + 2, // 93: google.ads.googleads.v22.resources.Recommendation.CampaignBudgetRecommendation.CampaignBudgetRecommendationOption.impact:type_name -> google.ads.googleads.v22.resources.Recommendation.RecommendationImpact + 62, // 94: google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.goal:type_name -> google.ads.googleads.v22.enums.TargetCpaOptInRecommendationGoalEnum.TargetCpaOptInRecommendationGoal + 2, // 95: google.ads.googleads.v22.resources.Recommendation.TargetCpaOptInRecommendation.TargetCpaOptInRecommendationOption.impact:type_name -> google.ads.googleads.v22.resources.Recommendation.RecommendationImpact 96, // [96:96] is the sub-list for method output_type 96, // [96:96] is the sub-list for method input_type 96, // [96:96] is the sub-list for extension type_name @@ -5656,14 +5656,14 @@ var file_google_ads_googleads_v21_resources_recommendation_proto_depIdxs = []int 0, // [0:96] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_recommendation_proto_init() } -func file_google_ads_googleads_v21_resources_recommendation_proto_init() { - if File_google_ads_googleads_v21_resources_recommendation_proto != nil { +func init() { file_google_ads_googleads_v22_resources_recommendation_proto_init() } +func file_google_ads_googleads_v22_resources_recommendation_proto_init() { + if File_google_ads_googleads_v22_resources_recommendation_proto != nil { return } - file_google_ads_googleads_v21_resources_ad_proto_init() - file_google_ads_googleads_v21_resources_asset_proto_init() - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_ad_proto_init() + file_google_ads_googleads_v22_resources_asset_proto_init() + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[0].OneofWrappers = []any{ (*Recommendation_CampaignBudgetRecommendation_)(nil), (*Recommendation_ForecastingCampaignBudgetRecommendation)(nil), (*Recommendation_KeywordRecommendation_)(nil), @@ -5719,35 +5719,35 @@ func file_google_ads_googleads_v21_resources_recommendation_proto_init() { (*Recommendation_LeadFormAssetRecommendation_)(nil), (*Recommendation_ImproveDemandGenAdStrengthRecommendation_)(nil), } - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[17].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[18].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[24].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[34].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[35].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[51].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes[53].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[18].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[24].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[34].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[35].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[51].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes[53].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc), len(file_google_ads_googleads_v21_resources_recommendation_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_recommendation_proto_rawDesc), len(file_google_ads_googleads_v22_resources_recommendation_proto_rawDesc)), NumEnums: 0, NumMessages: 54, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_recommendation_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_recommendation_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_recommendation_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_recommendation_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_recommendation_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_recommendation_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_recommendation_proto = out.File - file_google_ads_googleads_v21_resources_recommendation_proto_goTypes = nil - file_google_ads_googleads_v21_resources_recommendation_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_recommendation_proto = out.File + file_google_ads_googleads_v22_resources_recommendation_proto_goTypes = nil + file_google_ads_googleads_v22_resources_recommendation_proto_depIdxs = nil } diff --git a/resources/recommendation_subscription.pb.go b/resources/recommendation_subscription.pb.go index a89e7890..2d86cb51 100644 --- a/resources/recommendation_subscription.pb.go +++ b/resources/recommendation_subscription.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/recommendation_subscription.proto +// source: google/ads/googleads/v22/resources/recommendation_subscription.proto package resources @@ -45,7 +45,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.v21.enums.RecommendationTypeEnum_RecommendationType" json:"type,omitempty"` + Type enums.RecommendationTypeEnum_RecommendationType `protobuf:"varint,2,opt,name=type,proto3,enum=google.ads.googleads.v22.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. @@ -55,14 +55,14 @@ 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.v21.enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus,oneof" json:"status,omitempty"` + Status *enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus,oneof" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RecommendationSubscription) Reset() { *x = RecommendationSubscription{} - mi := &file_google_ads_googleads_v21_resources_recommendation_subscription_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_recommendation_subscription_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *RecommendationSubscription) String() string { func (*RecommendationSubscription) ProtoMessage() {} func (x *RecommendationSubscription) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_recommendation_subscription_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_recommendation_subscription_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *RecommendationSubscription) ProtoReflect() protoreflect.Message { // Deprecated: Use RecommendationSubscription.ProtoReflect.Descriptor instead. func (*RecommendationSubscription) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescGZIP(), []int{0} } func (x *RecommendationSubscription) GetResourceName() string { @@ -125,22 +125,22 @@ func (x *RecommendationSubscription) GetStatus() enums.RecommendationSubscriptio return enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus(0) } -var File_google_ads_googleads_v21_resources_recommendation_subscription_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_recommendation_subscription_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x63, 0x6f, 0x6d, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -157,7 +157,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, + 0x76, 0x32, 0x32, 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, @@ -170,7 +170,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -189,46 +189,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDesc), len(file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDesc), len(file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDescData + return file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDescData } -var file_google_ads_googleads_v21_resources_recommendation_subscription_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_recommendation_subscription_proto_goTypes = []any{ - (*RecommendationSubscription)(nil), // 0: google.ads.googleads.v21.resources.RecommendationSubscription - (enums.RecommendationTypeEnum_RecommendationType)(0), // 1: google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - (enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 2: google.ads.googleads.v21.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus +var file_google_ads_googleads_v22_resources_recommendation_subscription_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_recommendation_subscription_proto_goTypes = []any{ + (*RecommendationSubscription)(nil), // 0: google.ads.googleads.v22.resources.RecommendationSubscription + (enums.RecommendationTypeEnum_RecommendationType)(0), // 1: google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + (enums.RecommendationSubscriptionStatusEnum_RecommendationSubscriptionStatus)(0), // 2: google.ads.googleads.v22.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus } -var file_google_ads_googleads_v21_resources_recommendation_subscription_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.RecommendationSubscription.type:type_name -> google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - 2, // 1: google.ads.googleads.v21.resources.RecommendationSubscription.status:type_name -> google.ads.googleads.v21.enums.RecommendationSubscriptionStatusEnum.RecommendationSubscriptionStatus +var file_google_ads_googleads_v22_resources_recommendation_subscription_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.RecommendationSubscription.type:type_name -> google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + 2, // 1: google.ads.googleads.v22.resources.RecommendationSubscription.status:type_name -> google.ads.googleads.v22.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 @@ -236,27 +236,27 @@ var file_google_ads_googleads_v21_resources_recommendation_subscription_proto_de 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_recommendation_subscription_proto_init() } -func file_google_ads_googleads_v21_resources_recommendation_subscription_proto_init() { - if File_google_ads_googleads_v21_resources_recommendation_subscription_proto != nil { +func init() { file_google_ads_googleads_v22_resources_recommendation_subscription_proto_init() } +func file_google_ads_googleads_v22_resources_recommendation_subscription_proto_init() { + if File_google_ads_googleads_v22_resources_recommendation_subscription_proto != nil { return } - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDesc), len(file_google_ads_googleads_v21_resources_recommendation_subscription_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDesc), len(file_google_ads_googleads_v22_resources_recommendation_subscription_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_recommendation_subscription_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_recommendation_subscription_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_recommendation_subscription_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_recommendation_subscription_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_recommendation_subscription_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_recommendation_subscription_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_recommendation_subscription_proto = out.File - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_goTypes = nil - file_google_ads_googleads_v21_resources_recommendation_subscription_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_recommendation_subscription_proto = out.File + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_goTypes = nil + file_google_ads_googleads_v22_resources_recommendation_subscription_proto_depIdxs = nil } diff --git a/resources/remarketing_action.pb.go b/resources/remarketing_action.pb.go index 5c39e0d2..66f23150 100644 --- a/resources/remarketing_action.pb.go +++ b/resources/remarketing_action.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/remarketing_action.proto +// source: google/ads/googleads/v22/resources/remarketing_action.proto package resources @@ -62,7 +62,7 @@ type RemarketingAction struct { func (x *RemarketingAction) Reset() { *x = RemarketingAction{} - mi := &file_google_ads_googleads_v21_resources_remarketing_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_remarketing_action_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *RemarketingAction) String() string { func (*RemarketingAction) ProtoMessage() {} func (x *RemarketingAction) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_remarketing_action_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_remarketing_action_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *RemarketingAction) ProtoReflect() protoreflect.Message { // Deprecated: Use RemarketingAction.ProtoReflect.Descriptor instead. func (*RemarketingAction) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescGZIP(), []int{0} } func (x *RemarketingAction) GetResourceName() string { @@ -118,17 +118,17 @@ func (x *RemarketingAction) GetTagSnippets() []*common.TagSnippet { return nil } -var File_google_ads_googleads_v21_resources_remarketing_action_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_remarketing_action_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -147,7 +147,7 @@ var file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x54, 0x61, 0x67, 0x53, 0x6e, + 0x76, 0x32, 0x32, 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, @@ -159,43 +159,43 @@ var file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc), len(file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDesc), len(file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDescData + return file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDescData } -var file_google_ads_googleads_v21_resources_remarketing_action_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_remarketing_action_proto_goTypes = []any{ - (*RemarketingAction)(nil), // 0: google.ads.googleads.v21.resources.RemarketingAction - (*common.TagSnippet)(nil), // 1: google.ads.googleads.v21.common.TagSnippet +var file_google_ads_googleads_v22_resources_remarketing_action_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_remarketing_action_proto_goTypes = []any{ + (*RemarketingAction)(nil), // 0: google.ads.googleads.v22.resources.RemarketingAction + (*common.TagSnippet)(nil), // 1: google.ads.googleads.v22.common.TagSnippet } -var file_google_ads_googleads_v21_resources_remarketing_action_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.RemarketingAction.tag_snippets:type_name -> google.ads.googleads.v21.common.TagSnippet +var file_google_ads_googleads_v22_resources_remarketing_action_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.RemarketingAction.tag_snippets:type_name -> google.ads.googleads.v22.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 @@ -203,27 +203,27 @@ var file_google_ads_googleads_v21_resources_remarketing_action_proto_depIdxs = [ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_remarketing_action_proto_init() } -func file_google_ads_googleads_v21_resources_remarketing_action_proto_init() { - if File_google_ads_googleads_v21_resources_remarketing_action_proto != nil { +func init() { file_google_ads_googleads_v22_resources_remarketing_action_proto_init() } +func file_google_ads_googleads_v22_resources_remarketing_action_proto_init() { + if File_google_ads_googleads_v22_resources_remarketing_action_proto != nil { return } - file_google_ads_googleads_v21_resources_remarketing_action_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_remarketing_action_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc), len(file_google_ads_googleads_v21_resources_remarketing_action_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDesc), len(file_google_ads_googleads_v22_resources_remarketing_action_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_remarketing_action_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_remarketing_action_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_remarketing_action_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_remarketing_action_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_remarketing_action_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_remarketing_action_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_remarketing_action_proto = out.File - file_google_ads_googleads_v21_resources_remarketing_action_proto_goTypes = nil - file_google_ads_googleads_v21_resources_remarketing_action_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_remarketing_action_proto = out.File + file_google_ads_googleads_v22_resources_remarketing_action_proto_goTypes = nil + file_google_ads_googleads_v22_resources_remarketing_action_proto_depIdxs = nil } diff --git a/resources/search_term_view.pb.go b/resources/search_term_view.pb.go index cf9c7686..383ac30b 100644 --- a/resources/search_term_view.pb.go +++ b/resources/search_term_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/search_term_view.proto +// source: google/ads/googleads/v22/resources/search_term_view.proto package resources @@ -53,14 +53,14 @@ 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.v21.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"status,omitempty"` + Status enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus `protobuf:"varint,4,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SearchTermView) Reset() { *x = SearchTermView{} - mi := &file_google_ads_googleads_v21_resources_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *SearchTermView) String() string { func (*SearchTermView) ProtoMessage() {} func (x *SearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_search_term_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *SearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTermView.ProtoReflect.Descriptor instead. func (*SearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *SearchTermView) GetResourceName() string { @@ -116,17 +116,17 @@ func (x *SearchTermView) GetStatus() enums.SearchTermTargetingStatusEnum_SearchT return enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus(0) } -var File_google_ads_googleads_v21_resources_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_search_term_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -149,7 +149,7 @@ var file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -165,43 +165,43 @@ var file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_search_term_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_search_term_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_search_term_view_proto_goTypes = []any{ - (*SearchTermView)(nil), // 0: google.ads.googleads.v21.resources.SearchTermView - (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 1: google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus +var file_google_ads_googleads_v22_resources_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_search_term_view_proto_goTypes = []any{ + (*SearchTermView)(nil), // 0: google.ads.googleads.v22.resources.SearchTermView + (enums.SearchTermTargetingStatusEnum_SearchTermTargetingStatus)(0), // 1: google.ads.googleads.v22.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus } -var file_google_ads_googleads_v21_resources_search_term_view_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.SearchTermView.status:type_name -> google.ads.googleads.v21.enums.SearchTermTargetingStatusEnum.SearchTermTargetingStatus +var file_google_ads_googleads_v22_resources_search_term_view_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.SearchTermView.status:type_name -> google.ads.googleads.v22.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 @@ -209,27 +209,27 @@ var file_google_ads_googleads_v21_resources_search_term_view_proto_depIdxs = []i 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_search_term_view_proto_init() } -func file_google_ads_googleads_v21_resources_search_term_view_proto_init() { - if File_google_ads_googleads_v21_resources_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_search_term_view_proto_init() } +func file_google_ads_googleads_v22_resources_search_term_view_proto_init() { + if File_google_ads_googleads_v22_resources_search_term_view_proto != nil { return } - file_google_ads_googleads_v21_resources_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_search_term_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_search_term_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_search_term_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_search_term_view_proto = out.File - file_google_ads_googleads_v21_resources_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_search_term_view_proto = out.File + file_google_ads_googleads_v22_resources_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_search_term_view_proto_depIdxs = nil } diff --git a/resources/shared_criterion.pb.go b/resources/shared_criterion.pb.go index 3161cd0b..1463b502 100644 --- a/resources/shared_criterion.pb.go +++ b/resources/shared_criterion.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/shared_criterion.proto +// source: google/ads/googleads/v22/resources/shared_criterion.proto package resources @@ -53,7 +53,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.v21.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"` + Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v22.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{} - mi := &file_google_ads_googleads_v21_resources_shared_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shared_criterion_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -87,7 +87,7 @@ func (x *SharedCriterion) String() string { func (*SharedCriterion) ProtoMessage() {} func (x *SharedCriterion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_shared_criterion_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shared_criterion_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -100,7 +100,7 @@ func (x *SharedCriterion) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedCriterion.ProtoReflect.Descriptor instead. func (*SharedCriterion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescGZIP(), []int{0} } func (x *SharedCriterion) GetResourceName() string { @@ -270,20 +270,20 @@ func (*SharedCriterion_Brand) isSharedCriterion_Criterion() {} func (*SharedCriterion_Webpage) isSharedCriterion_Criterion() {} -var File_google_ads_googleads_v21_resources_shared_criterion_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_shared_criterion_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -306,53 +306,53 @@ var file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x59, 0x6f, 0x75, 0x54, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6c, 0x61, 0x63, 0x65, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x6f, 0x62, 0x69, 0x6c, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x49, 0x6e, + 0x32, 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, 0x12, 0x4d, 0x0a, 0x07, 0x77, 0x65, 0x62, 0x70, 0x61, 0x67, 0x65, 0x18, 0x0d, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x3a, 0x74, 0xea, 0x41, 0x71, 0x0a, 0x28, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, @@ -367,59 +367,59 @@ var file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x53, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDescData + return file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDescData } -var file_google_ads_googleads_v21_resources_shared_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_shared_criterion_proto_goTypes = []any{ - (*SharedCriterion)(nil), // 0: google.ads.googleads.v21.resources.SharedCriterion - (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v21.common.KeywordInfo - (*common.YouTubeVideoInfo)(nil), // 3: google.ads.googleads.v21.common.YouTubeVideoInfo - (*common.YouTubeChannelInfo)(nil), // 4: google.ads.googleads.v21.common.YouTubeChannelInfo - (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v21.common.PlacementInfo - (*common.MobileAppCategoryInfo)(nil), // 6: google.ads.googleads.v21.common.MobileAppCategoryInfo - (*common.MobileApplicationInfo)(nil), // 7: google.ads.googleads.v21.common.MobileApplicationInfo - (*common.BrandInfo)(nil), // 8: google.ads.googleads.v21.common.BrandInfo - (*common.WebpageInfo)(nil), // 9: google.ads.googleads.v21.common.WebpageInfo +var file_google_ads_googleads_v22_resources_shared_criterion_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_shared_criterion_proto_goTypes = []any{ + (*SharedCriterion)(nil), // 0: google.ads.googleads.v22.resources.SharedCriterion + (enums.CriterionTypeEnum_CriterionType)(0), // 1: google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + (*common.KeywordInfo)(nil), // 2: google.ads.googleads.v22.common.KeywordInfo + (*common.YouTubeVideoInfo)(nil), // 3: google.ads.googleads.v22.common.YouTubeVideoInfo + (*common.YouTubeChannelInfo)(nil), // 4: google.ads.googleads.v22.common.YouTubeChannelInfo + (*common.PlacementInfo)(nil), // 5: google.ads.googleads.v22.common.PlacementInfo + (*common.MobileAppCategoryInfo)(nil), // 6: google.ads.googleads.v22.common.MobileAppCategoryInfo + (*common.MobileApplicationInfo)(nil), // 7: google.ads.googleads.v22.common.MobileApplicationInfo + (*common.BrandInfo)(nil), // 8: google.ads.googleads.v22.common.BrandInfo + (*common.WebpageInfo)(nil), // 9: google.ads.googleads.v22.common.WebpageInfo } -var file_google_ads_googleads_v21_resources_shared_criterion_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.SharedCriterion.type:type_name -> google.ads.googleads.v21.enums.CriterionTypeEnum.CriterionType - 2, // 1: google.ads.googleads.v21.resources.SharedCriterion.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 3, // 2: google.ads.googleads.v21.resources.SharedCriterion.youtube_video:type_name -> google.ads.googleads.v21.common.YouTubeVideoInfo - 4, // 3: google.ads.googleads.v21.resources.SharedCriterion.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 5, // 4: google.ads.googleads.v21.resources.SharedCriterion.placement:type_name -> google.ads.googleads.v21.common.PlacementInfo - 6, // 5: google.ads.googleads.v21.resources.SharedCriterion.mobile_app_category:type_name -> google.ads.googleads.v21.common.MobileAppCategoryInfo - 7, // 6: google.ads.googleads.v21.resources.SharedCriterion.mobile_application:type_name -> google.ads.googleads.v21.common.MobileApplicationInfo - 8, // 7: google.ads.googleads.v21.resources.SharedCriterion.brand:type_name -> google.ads.googleads.v21.common.BrandInfo - 9, // 8: google.ads.googleads.v21.resources.SharedCriterion.webpage:type_name -> google.ads.googleads.v21.common.WebpageInfo +var file_google_ads_googleads_v22_resources_shared_criterion_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.SharedCriterion.type:type_name -> google.ads.googleads.v22.enums.CriterionTypeEnum.CriterionType + 2, // 1: google.ads.googleads.v22.resources.SharedCriterion.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 3, // 2: google.ads.googleads.v22.resources.SharedCriterion.youtube_video:type_name -> google.ads.googleads.v22.common.YouTubeVideoInfo + 4, // 3: google.ads.googleads.v22.resources.SharedCriterion.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 5, // 4: google.ads.googleads.v22.resources.SharedCriterion.placement:type_name -> google.ads.googleads.v22.common.PlacementInfo + 6, // 5: google.ads.googleads.v22.resources.SharedCriterion.mobile_app_category:type_name -> google.ads.googleads.v22.common.MobileAppCategoryInfo + 7, // 6: google.ads.googleads.v22.resources.SharedCriterion.mobile_application:type_name -> google.ads.googleads.v22.common.MobileApplicationInfo + 8, // 7: google.ads.googleads.v22.resources.SharedCriterion.brand:type_name -> google.ads.googleads.v22.common.BrandInfo + 9, // 8: google.ads.googleads.v22.resources.SharedCriterion.webpage:type_name -> google.ads.googleads.v22.common.WebpageInfo 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 @@ -427,12 +427,12 @@ var file_google_ads_googleads_v21_resources_shared_criterion_proto_depIdxs = []i 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_shared_criterion_proto_init() } -func file_google_ads_googleads_v21_resources_shared_criterion_proto_init() { - if File_google_ads_googleads_v21_resources_shared_criterion_proto != nil { +func init() { file_google_ads_googleads_v22_resources_shared_criterion_proto_init() } +func file_google_ads_googleads_v22_resources_shared_criterion_proto_init() { + if File_google_ads_googleads_v22_resources_shared_criterion_proto != nil { return } - file_google_ads_googleads_v21_resources_shared_criterion_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_shared_criterion_proto_msgTypes[0].OneofWrappers = []any{ (*SharedCriterion_Keyword)(nil), (*SharedCriterion_YoutubeVideo)(nil), (*SharedCriterion_YoutubeChannel)(nil), @@ -446,17 +446,17 @@ func file_google_ads_googleads_v21_resources_shared_criterion_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shared_criterion_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shared_criterion_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_shared_criterion_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_shared_criterion_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_shared_criterion_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_shared_criterion_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_shared_criterion_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_shared_criterion_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_shared_criterion_proto = out.File - file_google_ads_googleads_v21_resources_shared_criterion_proto_goTypes = nil - file_google_ads_googleads_v21_resources_shared_criterion_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_shared_criterion_proto = out.File + file_google_ads_googleads_v22_resources_shared_criterion_proto_goTypes = nil + file_google_ads_googleads_v22_resources_shared_criterion_proto_depIdxs = nil } diff --git a/resources/shared_set.pb.go b/resources/shared_set.pb.go index 4cfbc8fd..3f4b2b5e 100644 --- a/resources/shared_set.pb.go +++ b/resources/shared_set.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/shared_set.proto +// source: google/ads/googleads/v22/resources/shared_set.proto package resources @@ -50,7 +50,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.v21.enums.SharedSetTypeEnum_SharedSetType" json:"type,omitempty"` + Type enums.SharedSetTypeEnum_SharedSetType `protobuf:"varint,3,opt,name=type,proto3,enum=google.ads.googleads.v22.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. @@ -58,7 +58,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.v21.enums.SharedSetStatusEnum_SharedSetStatus" json:"status,omitempty"` + Status enums.SharedSetStatusEnum_SharedSetStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v22.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"` @@ -71,7 +71,7 @@ type SharedSet struct { func (x *SharedSet) Reset() { *x = SharedSet{} - mi := &file_google_ads_googleads_v21_resources_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shared_set_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -83,7 +83,7 @@ func (x *SharedSet) String() string { func (*SharedSet) ProtoMessage() {} func (x *SharedSet) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_shared_set_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shared_set_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -96,7 +96,7 @@ func (x *SharedSet) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSet.ProtoReflect.Descriptor instead. func (*SharedSet) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_shared_set_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_shared_set_proto_rawDescGZIP(), []int{0} } func (x *SharedSet) GetResourceName() string { @@ -148,20 +148,20 @@ func (x *SharedSet) GetReferenceCount() int64 { return 0 } -var File_google_ads_googleads_v21_resources_shared_set_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_shared_set_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_shared_set_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -177,14 +177,14 @@ var file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -205,44 +205,44 @@ var file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0e, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_shared_set_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_shared_set_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_shared_set_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_shared_set_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_shared_set_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_shared_set_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_shared_set_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_shared_set_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_shared_set_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shared_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shared_set_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_shared_set_proto_rawDescData + return file_google_ads_googleads_v22_resources_shared_set_proto_rawDescData } -var file_google_ads_googleads_v21_resources_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_shared_set_proto_goTypes = []any{ - (*SharedSet)(nil), // 0: google.ads.googleads.v21.resources.SharedSet - (enums.SharedSetTypeEnum_SharedSetType)(0), // 1: google.ads.googleads.v21.enums.SharedSetTypeEnum.SharedSetType - (enums.SharedSetStatusEnum_SharedSetStatus)(0), // 2: google.ads.googleads.v21.enums.SharedSetStatusEnum.SharedSetStatus +var file_google_ads_googleads_v22_resources_shared_set_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_shared_set_proto_goTypes = []any{ + (*SharedSet)(nil), // 0: google.ads.googleads.v22.resources.SharedSet + (enums.SharedSetTypeEnum_SharedSetType)(0), // 1: google.ads.googleads.v22.enums.SharedSetTypeEnum.SharedSetType + (enums.SharedSetStatusEnum_SharedSetStatus)(0), // 2: google.ads.googleads.v22.enums.SharedSetStatusEnum.SharedSetStatus } -var file_google_ads_googleads_v21_resources_shared_set_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.SharedSet.type:type_name -> google.ads.googleads.v21.enums.SharedSetTypeEnum.SharedSetType - 2, // 1: google.ads.googleads.v21.resources.SharedSet.status:type_name -> google.ads.googleads.v21.enums.SharedSetStatusEnum.SharedSetStatus +var file_google_ads_googleads_v22_resources_shared_set_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.SharedSet.type:type_name -> google.ads.googleads.v22.enums.SharedSetTypeEnum.SharedSetType + 2, // 1: google.ads.googleads.v22.resources.SharedSet.status:type_name -> google.ads.googleads.v22.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 @@ -250,27 +250,27 @@ var file_google_ads_googleads_v21_resources_shared_set_proto_depIdxs = []int32{ 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_shared_set_proto_init() } -func file_google_ads_googleads_v21_resources_shared_set_proto_init() { - if File_google_ads_googleads_v21_resources_shared_set_proto != nil { +func init() { file_google_ads_googleads_v22_resources_shared_set_proto_init() } +func file_google_ads_googleads_v22_resources_shared_set_proto_init() { + if File_google_ads_googleads_v22_resources_shared_set_proto != nil { return } - file_google_ads_googleads_v21_resources_shared_set_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_shared_set_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shared_set_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shared_set_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shared_set_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_shared_set_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_shared_set_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_shared_set_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_shared_set_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_shared_set_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_shared_set_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_shared_set_proto = out.File - file_google_ads_googleads_v21_resources_shared_set_proto_goTypes = nil - file_google_ads_googleads_v21_resources_shared_set_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_shared_set_proto = out.File + file_google_ads_googleads_v22_resources_shared_set_proto_goTypes = nil + file_google_ads_googleads_v22_resources_shared_set_proto_depIdxs = nil } diff --git a/resources/shopping_performance_view.pb.go b/resources/shopping_performance_view.pb.go index 3393954c..116ba93d 100644 --- a/resources/shopping_performance_view.pb.go +++ b/resources/shopping_performance_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/shopping_performance_view.proto +// source: google/ads/googleads/v22/resources/shopping_performance_view.proto package resources @@ -54,7 +54,7 @@ type ShoppingPerformanceView struct { func (x *ShoppingPerformanceView) Reset() { *x = ShoppingPerformanceView{} - mi := &file_google_ads_googleads_v21_resources_shopping_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shopping_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *ShoppingPerformanceView) String() string { func (*ShoppingPerformanceView) ProtoMessage() {} func (x *ShoppingPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_shopping_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shopping_performance_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *ShoppingPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingPerformanceView.ProtoReflect.Descriptor instead. func (*ShoppingPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescGZIP(), []int{0} } func (x *ShoppingPerformanceView) GetResourceName() string { @@ -89,15 +89,15 @@ func (x *ShoppingPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_shopping_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_shopping_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -118,41 +118,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_shopping_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_shopping_performance_view_proto_goTypes = []any{ - (*ShoppingPerformanceView)(nil), // 0: google.ads.googleads.v21.resources.ShoppingPerformanceView +var file_google_ads_googleads_v22_resources_shopping_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_shopping_performance_view_proto_goTypes = []any{ + (*ShoppingPerformanceView)(nil), // 0: google.ads.googleads.v22.resources.ShoppingPerformanceView } -var file_google_ads_googleads_v21_resources_shopping_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -160,26 +160,26 @@ var file_google_ads_googleads_v21_resources_shopping_performance_view_proto_depI 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_shopping_performance_view_proto_init() } -func file_google_ads_googleads_v21_resources_shopping_performance_view_proto_init() { - if File_google_ads_googleads_v21_resources_shopping_performance_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_shopping_performance_view_proto_init() } +func file_google_ads_googleads_v22_resources_shopping_performance_view_proto_init() { + if File_google_ads_googleads_v22_resources_shopping_performance_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shopping_performance_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shopping_performance_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_shopping_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_shopping_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_shopping_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_shopping_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_shopping_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_shopping_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_shopping_performance_view_proto = out.File - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_shopping_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_shopping_performance_view_proto = out.File + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_shopping_performance_view_proto_depIdxs = nil } diff --git a/resources/shopping_product.pb.go b/resources/shopping_product.pb.go index f8ab5ac3..bed76c74 100644 --- a/resources/shopping_product.pb.go +++ b/resources/shopping_product.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/shopping_product.proto +// source: google/ads/googleads/v22/resources/shopping_product.proto package resources @@ -61,6 +61,8 @@ const ( // - Only products that are included by the specified campaign are returned. // - Metrics and some fields (see the per-field documentation) are restricted // to the specified campaign. +// - Only the following metrics are supported for Demand Gen and Video +// campaigns: impressions, clicks, ctr. // // Ad group: // - An equality filter on `ad group` and `campaign` is specified. Supported @@ -68,6 +70,8 @@ const ( // - Only products that are included by the specified campaign are returned. // - Metrics and some fields (see the per-field documentation) are restricted // to the specified ad group. +// - Only the following metrics are supported for Demand Gen and Video +// campaigns: impressions, clicks, ctr. // // Note that segmentation by date segments is not permitted and will return // UNSUPPORTED_DATE_SEGMENTATION error. On the other hand, filtering on date @@ -82,7 +86,7 @@ type ShoppingProduct struct { // 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.v21.enums.ProductChannelEnum_ProductChannel" json:"channel,omitempty"` + Channel enums.ProductChannelEnum_ProductChannel `protobuf:"varint,3,opt,name=channel,proto3,enum=google.ads.googleads.v22.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"` @@ -106,11 +110,11 @@ type ShoppingProduct struct { 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.v21.enums.ProductChannelExclusivityEnum_ProductChannelExclusivity,oneof" json:"channel_exclusivity,omitempty"` + ChannelExclusivity *enums.ProductChannelExclusivityEnum_ProductChannelExclusivity `protobuf:"varint,12,opt,name=channel_exclusivity,json=channelExclusivity,proto3,enum=google.ads.googleads.v22.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.v21.enums.ProductConditionEnum_ProductCondition,oneof" json:"condition,omitempty"` + Condition *enums.ProductConditionEnum_ProductCondition `protobuf:"varint,13,opt,name=condition,proto3,enum=google.ads.googleads.v22.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.v21.enums.ProductAvailabilityEnum_ProductAvailability,oneof" json:"availability,omitempty"` + Availability *enums.ProductAvailabilityEnum_ProductAvailability `protobuf:"varint,14,opt,name=availability,proto3,enum=google.ads.googleads.v22.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"` @@ -160,7 +164,7 @@ type ShoppingProduct struct { // 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.v21.enums.ProductStatusEnum_ProductStatus" json:"status,omitempty"` + Status enums.ProductStatusEnum_ProductStatus `protobuf:"varint,32,opt,name=status,proto3,enum=google.ads.googleads.v22.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 @@ -180,7 +184,7 @@ type ShoppingProduct struct { func (x *ShoppingProduct) Reset() { *x = ShoppingProduct{} - mi := &file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +196,7 @@ func (x *ShoppingProduct) String() string { func (*ShoppingProduct) ProtoMessage() {} func (x *ShoppingProduct) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,7 +209,7 @@ func (x *ShoppingProduct) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingProduct.ProtoReflect.Descriptor instead. func (*ShoppingProduct) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescGZIP(), []int{0} } func (x *ShoppingProduct) GetResourceName() string { @@ -459,7 +463,7 @@ type ShoppingProduct_ProductIssue struct { // 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.v21.enums.ProductIssueSeverityEnum_ProductIssueSeverity" json:"ads_severity,omitempty"` + AdsSeverity enums.ProductIssueSeverityEnum_ProductIssueSeverity `protobuf:"varint,2,opt,name=ads_severity,json=adsSeverity,proto3,enum=google.ads.googleads.v22.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"` @@ -478,7 +482,7 @@ type ShoppingProduct_ProductIssue struct { func (x *ShoppingProduct_ProductIssue) Reset() { *x = ShoppingProduct_ProductIssue{} - mi := &file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -490,7 +494,7 @@ func (x *ShoppingProduct_ProductIssue) String() string { func (*ShoppingProduct_ProductIssue) ProtoMessage() {} func (x *ShoppingProduct_ProductIssue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -503,7 +507,7 @@ func (x *ShoppingProduct_ProductIssue) ProtoReflect() protoreflect.Message { // Deprecated: Use ShoppingProduct_ProductIssue.ProtoReflect.Descriptor instead. func (*ShoppingProduct_ProductIssue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescGZIP(), []int{0, 0} } func (x *ShoppingProduct_ProductIssue) GetErrorCode() string { @@ -555,36 +559,36 @@ func (x *ShoppingProduct_ProductIssue) GetAffectedRegions() []string { return nil } -var File_google_ads_googleads_v21_resources_shopping_product_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_shopping_product_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_shopping_product_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, + 0x32, 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, @@ -602,7 +606,7 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x32, 0x32, 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, @@ -629,7 +633,7 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -638,14 +642,14 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x50, 0x72, 0x6f, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -727,13 +731,13 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -752,7 +756,7 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -818,55 +822,55 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc = str 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x14, 0x53, 0x68, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shopping_product_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shopping_product_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_shopping_product_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_resources_shopping_product_proto_goTypes = []any{ - (*ShoppingProduct)(nil), // 0: google.ads.googleads.v21.resources.ShoppingProduct - (*ShoppingProduct_ProductIssue)(nil), // 1: google.ads.googleads.v21.resources.ShoppingProduct.ProductIssue - (enums.ProductChannelEnum_ProductChannel)(0), // 2: google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 3: google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - (enums.ProductConditionEnum_ProductCondition)(0), // 4: google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - (enums.ProductAvailabilityEnum_ProductAvailability)(0), // 5: google.ads.googleads.v21.enums.ProductAvailabilityEnum.ProductAvailability - (enums.ProductStatusEnum_ProductStatus)(0), // 6: google.ads.googleads.v21.enums.ProductStatusEnum.ProductStatus - (enums.ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 7: google.ads.googleads.v21.enums.ProductIssueSeverityEnum.ProductIssueSeverity -} -var file_google_ads_googleads_v21_resources_shopping_product_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.resources.ShoppingProduct.channel:type_name -> google.ads.googleads.v21.enums.ProductChannelEnum.ProductChannel - 3, // 1: google.ads.googleads.v21.resources.ShoppingProduct.channel_exclusivity:type_name -> google.ads.googleads.v21.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity - 4, // 2: google.ads.googleads.v21.resources.ShoppingProduct.condition:type_name -> google.ads.googleads.v21.enums.ProductConditionEnum.ProductCondition - 5, // 3: google.ads.googleads.v21.resources.ShoppingProduct.availability:type_name -> google.ads.googleads.v21.enums.ProductAvailabilityEnum.ProductAvailability - 6, // 4: google.ads.googleads.v21.resources.ShoppingProduct.status:type_name -> google.ads.googleads.v21.enums.ProductStatusEnum.ProductStatus - 1, // 5: google.ads.googleads.v21.resources.ShoppingProduct.issues:type_name -> google.ads.googleads.v21.resources.ShoppingProduct.ProductIssue - 7, // 6: google.ads.googleads.v21.resources.ShoppingProduct.ProductIssue.ads_severity:type_name -> google.ads.googleads.v21.enums.ProductIssueSeverityEnum.ProductIssueSeverity + return file_google_ads_googleads_v22_resources_shopping_product_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_resources_shopping_product_proto_goTypes = []any{ + (*ShoppingProduct)(nil), // 0: google.ads.googleads.v22.resources.ShoppingProduct + (*ShoppingProduct_ProductIssue)(nil), // 1: google.ads.googleads.v22.resources.ShoppingProduct.ProductIssue + (enums.ProductChannelEnum_ProductChannel)(0), // 2: google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + (enums.ProductChannelExclusivityEnum_ProductChannelExclusivity)(0), // 3: google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + (enums.ProductConditionEnum_ProductCondition)(0), // 4: google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + (enums.ProductAvailabilityEnum_ProductAvailability)(0), // 5: google.ads.googleads.v22.enums.ProductAvailabilityEnum.ProductAvailability + (enums.ProductStatusEnum_ProductStatus)(0), // 6: google.ads.googleads.v22.enums.ProductStatusEnum.ProductStatus + (enums.ProductIssueSeverityEnum_ProductIssueSeverity)(0), // 7: google.ads.googleads.v22.enums.ProductIssueSeverityEnum.ProductIssueSeverity +} +var file_google_ads_googleads_v22_resources_shopping_product_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.resources.ShoppingProduct.channel:type_name -> google.ads.googleads.v22.enums.ProductChannelEnum.ProductChannel + 3, // 1: google.ads.googleads.v22.resources.ShoppingProduct.channel_exclusivity:type_name -> google.ads.googleads.v22.enums.ProductChannelExclusivityEnum.ProductChannelExclusivity + 4, // 2: google.ads.googleads.v22.resources.ShoppingProduct.condition:type_name -> google.ads.googleads.v22.enums.ProductConditionEnum.ProductCondition + 5, // 3: google.ads.googleads.v22.resources.ShoppingProduct.availability:type_name -> google.ads.googleads.v22.enums.ProductAvailabilityEnum.ProductAvailability + 6, // 4: google.ads.googleads.v22.resources.ShoppingProduct.status:type_name -> google.ads.googleads.v22.enums.ProductStatusEnum.ProductStatus + 1, // 5: google.ads.googleads.v22.resources.ShoppingProduct.issues:type_name -> google.ads.googleads.v22.resources.ShoppingProduct.ProductIssue + 7, // 6: google.ads.googleads.v22.resources.ShoppingProduct.ProductIssue.ads_severity:type_name -> google.ads.googleads.v22.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 @@ -874,28 +878,28 @@ var file_google_ads_googleads_v21_resources_shopping_product_proto_depIdxs = []i 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_shopping_product_proto_init() } -func file_google_ads_googleads_v21_resources_shopping_product_proto_init() { - if File_google_ads_googleads_v21_resources_shopping_product_proto != nil { +func init() { file_google_ads_googleads_v22_resources_shopping_product_proto_init() } +func file_google_ads_googleads_v22_resources_shopping_product_proto_init() { + if File_google_ads_googleads_v22_resources_shopping_product_proto != nil { return } - file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc), len(file_google_ads_googleads_v21_resources_shopping_product_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_shopping_product_proto_rawDesc), len(file_google_ads_googleads_v22_resources_shopping_product_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_shopping_product_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_shopping_product_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_shopping_product_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_shopping_product_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_shopping_product_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_shopping_product_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_shopping_product_proto = out.File - file_google_ads_googleads_v21_resources_shopping_product_proto_goTypes = nil - file_google_ads_googleads_v21_resources_shopping_product_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_shopping_product_proto = out.File + file_google_ads_googleads_v22_resources_shopping_product_proto_goTypes = nil + file_google_ads_googleads_v22_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 a5221137..99c7a825 100644 --- a/resources/smart_campaign_search_term_view.pb.go +++ b/resources/smart_campaign_search_term_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/smart_campaign_search_term_view.proto +// source: google/ads/googleads/v22/resources/smart_campaign_search_term_view.proto package resources @@ -54,7 +54,7 @@ type SmartCampaignSearchTermView struct { func (x *SmartCampaignSearchTermView) Reset() { *x = SmartCampaignSearchTermView{} - mi := &file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -66,7 +66,7 @@ func (x *SmartCampaignSearchTermView) String() string { func (*SmartCampaignSearchTermView) ProtoMessage() {} func (x *SmartCampaignSearchTermView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -79,7 +79,7 @@ func (x *SmartCampaignSearchTermView) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSearchTermView.ProtoReflect.Descriptor instead. func (*SmartCampaignSearchTermView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescGZIP(), []int{0} } func (x *SmartCampaignSearchTermView) GetResourceName() string { @@ -103,16 +103,16 @@ func (x *SmartCampaignSearchTermView) GetCampaign() string { return "" } -var File_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -142,41 +142,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x20, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_goTypes = []any{ - (*SmartCampaignSearchTermView)(nil), // 0: google.ads.googleads.v21.resources.SmartCampaignSearchTermView +var file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_goTypes = []any{ + (*SmartCampaignSearchTermView)(nil), // 0: google.ads.googleads.v22.resources.SmartCampaignSearchTermView } -var file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -184,26 +184,26 @@ var file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_prot 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_init() } -func file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_init() { - if File_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_init() } +func file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_init() { + if File_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto = out.File - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_smart_campaign_search_term_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto = out.File + file_google_ads_googleads_v22_resources_smart_campaign_search_term_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 03ef92b2..b93195d1 100644 --- a/resources/smart_campaign_setting.pb.go +++ b/resources/smart_campaign_setting.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/smart_campaign_setting.proto +// source: google/ads/googleads/v22/resources/smart_campaign_setting.proto package resources @@ -72,7 +72,7 @@ type SmartCampaignSetting struct { func (x *SmartCampaignSetting) Reset() { *x = SmartCampaignSetting{} - mi := &file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *SmartCampaignSetting) String() string { func (*SmartCampaignSetting) ProtoMessage() {} func (x *SmartCampaignSetting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *SmartCampaignSetting) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSetting.ProtoReflect.Descriptor instead. func (*SmartCampaignSetting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0} } func (x *SmartCampaignSetting) GetResourceName() string { @@ -238,7 +238,7 @@ type SmartCampaignSetting_PhoneNumber struct { func (x *SmartCampaignSetting_PhoneNumber) Reset() { *x = SmartCampaignSetting_PhoneNumber{} - mi := &file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -250,7 +250,7 @@ func (x *SmartCampaignSetting_PhoneNumber) String() string { func (*SmartCampaignSetting_PhoneNumber) ProtoMessage() {} func (x *SmartCampaignSetting_PhoneNumber) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -263,7 +263,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_v21_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 0} } func (x *SmartCampaignSetting_PhoneNumber) GetPhoneNumber() string { @@ -294,7 +294,7 @@ type SmartCampaignSetting_AdOptimizedBusinessProfileSetting struct { func (x *SmartCampaignSetting_AdOptimizedBusinessProfileSetting) Reset() { *x = SmartCampaignSetting_AdOptimizedBusinessProfileSetting{} - mi := &file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_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_v21_resources_smart_campaign_setting_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[2] if 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_v21_resources_smart_campaign_setting_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_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_v21_resources_smart_campaign_setting_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_smart_campaign_setting_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDesc), len(file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDesc), len(file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDescData + return file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDescData } -var file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_goTypes = []any{ - (*SmartCampaignSetting)(nil), // 0: google.ads.googleads.v21.resources.SmartCampaignSetting - (*SmartCampaignSetting_PhoneNumber)(nil), // 1: google.ads.googleads.v21.resources.SmartCampaignSetting.PhoneNumber - (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting)(nil), // 2: google.ads.googleads.v21.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting +var file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_goTypes = []any{ + (*SmartCampaignSetting)(nil), // 0: google.ads.googleads.v22.resources.SmartCampaignSetting + (*SmartCampaignSetting_PhoneNumber)(nil), // 1: google.ads.googleads.v22.resources.SmartCampaignSetting.PhoneNumber + (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting)(nil), // 2: google.ads.googleads.v22.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting } -var file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.SmartCampaignSetting.phone_number:type_name -> google.ads.googleads.v21.resources.SmartCampaignSetting.PhoneNumber - 2, // 1: google.ads.googleads.v21.resources.SmartCampaignSetting.ad_optimized_business_profile_setting:type_name -> google.ads.googleads.v21.resources.SmartCampaignSetting.AdOptimizedBusinessProfileSetting +var file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.SmartCampaignSetting.phone_number:type_name -> google.ads.googleads.v22.resources.SmartCampaignSetting.PhoneNumber + 2, // 1: google.ads.googleads.v22.resources.SmartCampaignSetting.ad_optimized_business_profile_setting:type_name -> google.ads.googleads.v22.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,34 +455,34 @@ var file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_depIdxs 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_init() } -func file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_init() { - if File_google_ads_googleads_v21_resources_smart_campaign_setting_proto != nil { +func init() { file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_init() } +func file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_init() { + if File_google_ads_googleads_v22_resources_smart_campaign_setting_proto != nil { return } - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[0].OneofWrappers = []any{ (*SmartCampaignSetting_FinalUrl)(nil), (*SmartCampaignSetting_AdOptimizedBusinessProfileSetting_)(nil), (*SmartCampaignSetting_BusinessName)(nil), (*SmartCampaignSetting_BusinessProfileLocation)(nil), } - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDesc), len(file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDesc), len(file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_smart_campaign_setting_proto = out.File - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_goTypes = nil - file_google_ads_googleads_v21_resources_smart_campaign_setting_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_smart_campaign_setting_proto = out.File + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_goTypes = nil + file_google_ads_googleads_v22_resources_smart_campaign_setting_proto_depIdxs = nil } diff --git a/resources/targeting_expansion_view.pb.go b/resources/targeting_expansion_view.pb.go new file mode 100644 index 00000000..e2c92469 --- /dev/null +++ b/resources/targeting_expansion_view.pb.go @@ -0,0 +1,188 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/resources/targeting_expansion_view.proto + +package resources + +import ( + _ "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" + unsafe "unsafe" +) + +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 targeting expansion view with metrics. +// Returns metrics for automated expansion over manual targeting. +type TargetingExpansionView struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Output only. The resource name of the targeting expansion view. + // Targeting expansion view resource names have the form: + // + // `customers/{customer_id}/targetingExpansionViews/{campaign_id}~{targeting_expansion_type}` + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *TargetingExpansionView) Reset() { + *x = TargetingExpansionView{} + mi := &file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *TargetingExpansionView) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*TargetingExpansionView) ProtoMessage() {} + +func (x *TargetingExpansionView) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use TargetingExpansionView.ProtoReflect.Descriptor instead. +func (*TargetingExpansionView) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescGZIP(), []int{0} +} + +func (x *TargetingExpansionView) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +var File_google_ads_googleads_v22_resources_targeting_expansion_view_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, + 0x78, 0x70, 0x61, 0x6e, 0x73, 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, 0x32, 0x32, 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, 0x65, 0x2e, 0x70, 0x72, + 0x6f, 0x74, 0x6f, 0x22, 0xb9, 0x02, 0x0a, 0x16, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, + 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x12, 0x5c, + 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, + 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x37, 0xe0, 0x41, 0x03, 0xfa, 0x41, 0x31, 0x0a, 0x2f, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, + 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x0c, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x3a, 0xc0, 0x01, 0xea, + 0x41, 0xbc, 0x01, 0x0a, 0x2f, 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, 0x54, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, + 0x56, 0x69, 0x65, 0x77, 0x12, 0x58, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x7b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x7d, 0x2f, 0x74, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, + 0x56, 0x69, 0x65, 0x77, 0x73, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, + 0x69, 0x64, 0x7d, 0x7e, 0x7b, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, + 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x7d, 0x2a, 0x17, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x73, 0x32, 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, + 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 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, 0x32, 0x32, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x54, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_goTypes = []any{ + (*TargetingExpansionView)(nil), // 0: google.ads.googleads.v22.resources.TargetingExpansionView +} +var file_google_ads_googleads_v22_resources_targeting_expansion_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 + 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_v22_resources_targeting_expansion_view_proto_init() } +func file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_init() { + if File_google_ads_googleads_v22_resources_targeting_expansion_view_proto != nil { + return + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_rawDesc)), + NumEnums: 0, + NumMessages: 1, + NumExtensions: 0, + NumServices: 0, + }, + GoTypes: file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_resources_targeting_expansion_view_proto = out.File + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_targeting_expansion_view_proto_depIdxs = nil +} diff --git a/resources/third_party_app_analytics_link.pb.go b/resources/third_party_app_analytics_link.pb.go index bc000872..f584858a 100644 --- a/resources/third_party_app_analytics_link.pb.go +++ b/resources/third_party_app_analytics_link.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/third_party_app_analytics_link.proto +// source: google/ads/googleads/v22/resources/third_party_app_analytics_link.proto package resources @@ -55,7 +55,7 @@ type ThirdPartyAppAnalyticsLink struct { func (x *ThirdPartyAppAnalyticsLink) Reset() { *x = ThirdPartyAppAnalyticsLink{} - mi := &file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *ThirdPartyAppAnalyticsLink) String() string { func (*ThirdPartyAppAnalyticsLink) ProtoMessage() {} func (x *ThirdPartyAppAnalyticsLink) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *ThirdPartyAppAnalyticsLink) ProtoReflect() protoreflect.Message { // Deprecated: Use ThirdPartyAppAnalyticsLink.ProtoReflect.Descriptor instead. func (*ThirdPartyAppAnalyticsLink) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescGZIP(), []int{0} } func (x *ThirdPartyAppAnalyticsLink) GetResourceName() string { @@ -97,16 +97,16 @@ func (x *ThirdPartyAppAnalyticsLink) GetShareableLinkId() string { return "" } -var File_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -133,42 +133,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDescData + return file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDescData } -var file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_goTypes = []any{ - (*ThirdPartyAppAnalyticsLink)(nil), // 0: google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLink +var file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_goTypes = []any{ + (*ThirdPartyAppAnalyticsLink)(nil), // 0: google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLink } -var file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -176,27 +176,27 @@ var file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_init() } -func file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_init() { - if File_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto != nil { +func init() { file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_init() } +func file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_init() { + if File_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto != nil { return } - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDesc), len(file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDesc), len(file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto = out.File - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_goTypes = nil - file_google_ads_googleads_v21_resources_third_party_app_analytics_link_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto = out.File + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_goTypes = nil + file_google_ads_googleads_v22_resources_third_party_app_analytics_link_proto_depIdxs = nil } diff --git a/resources/topic_constant.pb.go b/resources/topic_constant.pb.go index 12846d32..e4052e11 100644 --- a/resources/topic_constant.pb.go +++ b/resources/topic_constant.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/topic_constant.proto +// source: google/ads/googleads/v22/resources/topic_constant.proto package resources @@ -62,7 +62,7 @@ type TopicConstant struct { func (x *TopicConstant) Reset() { *x = TopicConstant{} - mi := &file_google_ads_googleads_v21_resources_topic_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_topic_constant_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *TopicConstant) String() string { func (*TopicConstant) ProtoMessage() {} func (x *TopicConstant) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_topic_constant_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_topic_constant_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *TopicConstant) ProtoReflect() protoreflect.Message { // Deprecated: Use TopicConstant.ProtoReflect.Descriptor instead. func (*TopicConstant) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescGZIP(), []int{0} } func (x *TopicConstant) GetResourceName() string { @@ -118,15 +118,15 @@ func (x *TopicConstant) GetPath() []string { return nil } -var File_google_ads_googleads_v21_resources_topic_constant_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_topic_constant_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_topic_constant_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, + 0x76, 0x32, 0x32, 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, @@ -155,41 +155,41 @@ var file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_topic_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_topic_constant_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_topic_constant_proto_rawDescData + return file_google_ads_googleads_v22_resources_topic_constant_proto_rawDescData } -var file_google_ads_googleads_v21_resources_topic_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_topic_constant_proto_goTypes = []any{ - (*TopicConstant)(nil), // 0: google.ads.googleads.v21.resources.TopicConstant +var file_google_ads_googleads_v22_resources_topic_constant_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_topic_constant_proto_goTypes = []any{ + (*TopicConstant)(nil), // 0: google.ads.googleads.v22.resources.TopicConstant } -var file_google_ads_googleads_v21_resources_topic_constant_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -197,27 +197,27 @@ var file_google_ads_googleads_v21_resources_topic_constant_proto_depIdxs = []int 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_topic_constant_proto_init() } -func file_google_ads_googleads_v21_resources_topic_constant_proto_init() { - if File_google_ads_googleads_v21_resources_topic_constant_proto != nil { +func init() { file_google_ads_googleads_v22_resources_topic_constant_proto_init() } +func file_google_ads_googleads_v22_resources_topic_constant_proto_init() { + if File_google_ads_googleads_v22_resources_topic_constant_proto != nil { return } - file_google_ads_googleads_v21_resources_topic_constant_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_topic_constant_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc), len(file_google_ads_googleads_v21_resources_topic_constant_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_topic_constant_proto_rawDesc), len(file_google_ads_googleads_v22_resources_topic_constant_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_topic_constant_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_topic_constant_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_topic_constant_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_topic_constant_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_topic_constant_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_topic_constant_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_topic_constant_proto = out.File - file_google_ads_googleads_v21_resources_topic_constant_proto_goTypes = nil - file_google_ads_googleads_v21_resources_topic_constant_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_topic_constant_proto = out.File + file_google_ads_googleads_v22_resources_topic_constant_proto_goTypes = nil + file_google_ads_googleads_v22_resources_topic_constant_proto_depIdxs = nil } diff --git a/resources/topic_view.pb.go b/resources/topic_view.pb.go index 53227e78..a5b2e502 100644 --- a/resources/topic_view.pb.go +++ b/resources/topic_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/topic_view.proto +// source: google/ads/googleads/v22/resources/topic_view.proto package resources @@ -50,7 +50,7 @@ type TopicView struct { func (x *TopicView) Reset() { *x = TopicView{} - mi := &file_google_ads_googleads_v21_resources_topic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_topic_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *TopicView) String() string { func (*TopicView) ProtoMessage() {} func (x *TopicView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_topic_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_topic_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *TopicView) ProtoReflect() protoreflect.Message { // Deprecated: Use TopicView.ProtoReflect.Descriptor instead. func (*TopicView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_topic_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_topic_view_proto_rawDescGZIP(), []int{0} } func (x *TopicView) GetResourceName() string { @@ -85,14 +85,14 @@ func (x *TopicView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_topic_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_topic_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_topic_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -111,41 +111,41 @@ var file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc = string([] 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_topic_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_topic_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_topic_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_topic_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_topic_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_topic_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_topic_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_topic_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_topic_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_topic_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_topic_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_topic_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_topic_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_topic_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_topic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_topic_view_proto_goTypes = []any{ - (*TopicView)(nil), // 0: google.ads.googleads.v21.resources.TopicView +var file_google_ads_googleads_v22_resources_topic_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_topic_view_proto_goTypes = []any{ + (*TopicView)(nil), // 0: google.ads.googleads.v22.resources.TopicView } -var file_google_ads_googleads_v21_resources_topic_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -153,26 +153,26 @@ var file_google_ads_googleads_v21_resources_topic_view_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_topic_view_proto_init() } -func file_google_ads_googleads_v21_resources_topic_view_proto_init() { - if File_google_ads_googleads_v21_resources_topic_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_topic_view_proto_init() } +func file_google_ads_googleads_v22_resources_topic_view_proto_init() { + if File_google_ads_googleads_v22_resources_topic_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_topic_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_topic_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_topic_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_topic_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_topic_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_topic_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_topic_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_topic_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_topic_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_topic_view_proto = out.File - file_google_ads_googleads_v21_resources_topic_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_topic_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_topic_view_proto = out.File + file_google_ads_googleads_v22_resources_topic_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 f2c3b343..3fa30daf 100644 --- a/resources/travel_activity_group_view.pb.go +++ b/resources/travel_activity_group_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/travel_activity_group_view.proto +// source: google/ads/googleads/v22/resources/travel_activity_group_view.proto package resources @@ -50,7 +50,7 @@ type TravelActivityGroupView struct { func (x *TravelActivityGroupView) Reset() { *x = TravelActivityGroupView{} - mi := &file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *TravelActivityGroupView) String() string { func (*TravelActivityGroupView) ProtoMessage() {} func (x *TravelActivityGroupView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *TravelActivityGroupView) ProtoReflect() protoreflect.Message { // Deprecated: Use TravelActivityGroupView.ProtoReflect.Descriptor instead. func (*TravelActivityGroupView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescGZIP(), []int{0} } func (x *TravelActivityGroupView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *TravelActivityGroupView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_travel_activity_group_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_travel_activity_group_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -116,42 +116,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, 0x02, 0x22, 0x47, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_goTypes = []any{ - (*TravelActivityGroupView)(nil), // 0: google.ads.googleads.v21.resources.TravelActivityGroupView +var file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_goTypes = []any{ + (*TravelActivityGroupView)(nil), // 0: google.ads.googleads.v22.resources.TravelActivityGroupView } -var file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -159,26 +159,26 @@ var file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_dep 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_init() } -func file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_init() { - if File_google_ads_googleads_v21_resources_travel_activity_group_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_init() } +func file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_init() { + if File_google_ads_googleads_v22_resources_travel_activity_group_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_travel_activity_group_view_proto = out.File - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_travel_activity_group_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_travel_activity_group_view_proto = out.File + file_google_ads_googleads_v22_resources_travel_activity_group_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 69b037c7..01f3172e 100644 --- a/resources/travel_activity_performance_view.pb.go +++ b/resources/travel_activity_performance_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/travel_activity_performance_view.proto +// source: google/ads/googleads/v22/resources/travel_activity_performance_view.proto package resources @@ -50,7 +50,7 @@ type TravelActivityPerformanceView struct { func (x *TravelActivityPerformanceView) Reset() { *x = TravelActivityPerformanceView{} - mi := &file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *TravelActivityPerformanceView) String() string { func (*TravelActivityPerformanceView) ProtoMessage() {} func (x *TravelActivityPerformanceView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *TravelActivityPerformanceView) ProtoReflect() protoreflect.Message { // Deprecated: Use TravelActivityPerformanceView.ProtoReflect.Descriptor instead. func (*TravelActivityPerformanceView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescGZIP(), []int{0} } func (x *TravelActivityPerformanceView) GetResourceName() string { @@ -85,16 +85,16 @@ func (x *TravelActivityPerformanceView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_travel_activity_performance_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_travel_activity_performance_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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,42 +116,42 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, 0x73, 0x6f, + 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_goTypes = []any{ - (*TravelActivityPerformanceView)(nil), // 0: google.ads.googleads.v21.resources.TravelActivityPerformanceView +var file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_goTypes = []any{ + (*TravelActivityPerformanceView)(nil), // 0: google.ads.googleads.v22.resources.TravelActivityPerformanceView } -var file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -159,26 +159,26 @@ var file_google_ads_googleads_v21_resources_travel_activity_performance_view_pro 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_init() } -func file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_init() { - if File_google_ads_googleads_v21_resources_travel_activity_performance_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_init() } +func file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_init() { + if File_google_ads_googleads_v22_resources_travel_activity_performance_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_travel_activity_performance_view_proto = out.File - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_travel_activity_performance_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_travel_activity_performance_view_proto = out.File + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_travel_activity_performance_view_proto_depIdxs = nil } diff --git a/resources/user_interest.pb.go b/resources/user_interest.pb.go index b10f73d5..82f7560d 100644 --- a/resources/user_interest.pb.go +++ b/resources/user_interest.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/user_interest.proto +// source: google/ads/googleads/v22/resources/user_interest.proto package resources @@ -47,7 +47,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.v21.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.v22.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. @@ -65,7 +65,7 @@ type UserInterest struct { func (x *UserInterest) Reset() { *x = UserInterest{} - mi := &file_google_ads_googleads_v21_resources_user_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_interest_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *UserInterest) String() string { func (*UserInterest) ProtoMessage() {} func (x *UserInterest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_user_interest_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_interest_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *UserInterest) ProtoReflect() protoreflect.Message { // Deprecated: Use UserInterest.ProtoReflect.Descriptor instead. func (*UserInterest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_user_interest_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_user_interest_proto_rawDescGZIP(), []int{0} } func (x *UserInterest) GetResourceName() string { @@ -142,21 +142,21 @@ func (x *UserInterest) GetAvailabilities() []*common.CriterionCategoryAvailabili return nil } -var File_google_ads_googleads_v21_resources_user_interest_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_user_interest_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_user_interest_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x45, 0x67, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -172,7 +172,7 @@ var file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -195,7 +195,7 @@ var file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc = string 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x72, 0x69, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -211,45 +211,45 @@ var file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc = string 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_user_interest_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_user_interest_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_user_interest_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_user_interest_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_user_interest_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_user_interest_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_user_interest_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_user_interest_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_user_interest_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_user_interest_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_interest_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_interest_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_user_interest_proto_rawDescData + return file_google_ads_googleads_v22_resources_user_interest_proto_rawDescData } -var file_google_ads_googleads_v21_resources_user_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_user_interest_proto_goTypes = []any{ - (*UserInterest)(nil), // 0: google.ads.googleads.v21.resources.UserInterest - (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 1: google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - (*common.CriterionCategoryAvailability)(nil), // 2: google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_user_interest_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_user_interest_proto_goTypes = []any{ + (*UserInterest)(nil), // 0: google.ads.googleads.v22.resources.UserInterest + (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 1: google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + (*common.CriterionCategoryAvailability)(nil), // 2: google.ads.googleads.v22.common.CriterionCategoryAvailability } -var file_google_ads_googleads_v21_resources_user_interest_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.UserInterest.taxonomy_type:type_name -> google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - 2, // 1: google.ads.googleads.v21.resources.UserInterest.availabilities:type_name -> google.ads.googleads.v21.common.CriterionCategoryAvailability +var file_google_ads_googleads_v22_resources_user_interest_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.UserInterest.taxonomy_type:type_name -> google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + 2, // 1: google.ads.googleads.v22.resources.UserInterest.availabilities:type_name -> google.ads.googleads.v22.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 @@ -257,27 +257,27 @@ var file_google_ads_googleads_v21_resources_user_interest_proto_depIdxs = []int3 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_user_interest_proto_init() } -func file_google_ads_googleads_v21_resources_user_interest_proto_init() { - if File_google_ads_googleads_v21_resources_user_interest_proto != nil { +func init() { file_google_ads_googleads_v22_resources_user_interest_proto_init() } +func file_google_ads_googleads_v22_resources_user_interest_proto_init() { + if File_google_ads_googleads_v22_resources_user_interest_proto != nil { return } - file_google_ads_googleads_v21_resources_user_interest_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_user_interest_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_interest_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_interest_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_interest_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_user_interest_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_user_interest_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_user_interest_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_user_interest_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_user_interest_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_user_interest_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_user_interest_proto = out.File - file_google_ads_googleads_v21_resources_user_interest_proto_goTypes = nil - file_google_ads_googleads_v21_resources_user_interest_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_user_interest_proto = out.File + file_google_ads_googleads_v22_resources_user_interest_proto_goTypes = nil + file_google_ads_googleads_v22_resources_user_interest_proto_depIdxs = nil } diff --git a/resources/user_list.pb.go b/resources/user_list.pb.go index 1809aeeb..8ad4ca2e 100644 --- a/resources/user_list.pb.go +++ b/resources/user_list.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/user_list.proto +// source: google/ads/googleads/v22/resources/user_list.proto package resources @@ -62,7 +62,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.v21.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.v22.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"` @@ -86,7 +86,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.v21.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.v22.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. @@ -97,25 +97,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.v21.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.v22.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.v21.enums.UserListTypeEnum_UserListType" json:"type,omitempty"` + Type enums.UserListTypeEnum_UserListType `protobuf:"varint,13,opt,name=type,proto3,enum=google.ads.googleads.v22.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.v21.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.v22.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.v21.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.v22.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.v21.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.v22.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{} - mi := &file_google_ads_googleads_v21_resources_user_list_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_list_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *UserList) String() string { func (*UserList) ProtoMessage() {} func (x *UserList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_user_list_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_list_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *UserList) ProtoReflect() protoreflect.Message { // Deprecated: Use UserList.ProtoReflect.Descriptor instead. func (*UserList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_user_list_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_user_list_proto_rawDescGZIP(), []int{0} } func (x *UserList) GetResourceName() string { @@ -417,39 +417,39 @@ func (*UserList_BasicUserList) isUserList_UserList() {} func (*UserList_LookalikeUserList) isUserList_UserList() {} -var File_google_ads_googleads_v21_resources_user_list_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_user_list_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_user_list_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, 0x63, 0x65, 0x73, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, + 0x32, 0x32, 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, @@ -471,7 +471,7 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -490,7 +490,7 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x76, 0x32, 0x32, 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, @@ -501,27 +501,27 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -529,7 +529,7 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -548,39 +548,39 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67, 0x69, 0x63, 0x61, 0x6c, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x42, 0x61, 0x73, 0x69, 0x63, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -605,65 +605,65 @@ var file_google_ads_googleads_v21_resources_user_list_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_user_list_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_user_list_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_user_list_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_user_list_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_user_list_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_user_list_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_user_list_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_list_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_list_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_user_list_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_user_list_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_user_list_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_list_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_list_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_user_list_proto_rawDescData -} - -var file_google_ads_googleads_v21_resources_user_list_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_user_list_proto_goTypes = []any{ - (*UserList)(nil), // 0: google.ads.googleads.v21.resources.UserList - (enums.UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 1: google.ads.googleads.v21.enums.UserListMembershipStatusEnum.UserListMembershipStatus - (enums.UserListSizeRangeEnum_UserListSizeRange)(0), // 2: google.ads.googleads.v21.enums.UserListSizeRangeEnum.UserListSizeRange - (enums.UserListTypeEnum_UserListType)(0), // 3: google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - (enums.UserListClosingReasonEnum_UserListClosingReason)(0), // 4: google.ads.googleads.v21.enums.UserListClosingReasonEnum.UserListClosingReason - (enums.AccessReasonEnum_AccessReason)(0), // 5: google.ads.googleads.v21.enums.AccessReasonEnum.AccessReason - (enums.UserListAccessStatusEnum_UserListAccessStatus)(0), // 6: google.ads.googleads.v21.enums.UserListAccessStatusEnum.UserListAccessStatus - (*common.CrmBasedUserListInfo)(nil), // 7: google.ads.googleads.v21.common.CrmBasedUserListInfo - (*common.SimilarUserListInfo)(nil), // 8: google.ads.googleads.v21.common.SimilarUserListInfo - (*common.RuleBasedUserListInfo)(nil), // 9: google.ads.googleads.v21.common.RuleBasedUserListInfo - (*common.LogicalUserListInfo)(nil), // 10: google.ads.googleads.v21.common.LogicalUserListInfo - (*common.BasicUserListInfo)(nil), // 11: google.ads.googleads.v21.common.BasicUserListInfo - (*common.LookalikeUserListInfo)(nil), // 12: google.ads.googleads.v21.common.LookalikeUserListInfo -} -var file_google_ads_googleads_v21_resources_user_list_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.UserList.membership_status:type_name -> google.ads.googleads.v21.enums.UserListMembershipStatusEnum.UserListMembershipStatus - 2, // 1: google.ads.googleads.v21.resources.UserList.size_range_for_display:type_name -> google.ads.googleads.v21.enums.UserListSizeRangeEnum.UserListSizeRange - 2, // 2: google.ads.googleads.v21.resources.UserList.size_range_for_search:type_name -> google.ads.googleads.v21.enums.UserListSizeRangeEnum.UserListSizeRange - 3, // 3: google.ads.googleads.v21.resources.UserList.type:type_name -> google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - 4, // 4: google.ads.googleads.v21.resources.UserList.closing_reason:type_name -> google.ads.googleads.v21.enums.UserListClosingReasonEnum.UserListClosingReason - 5, // 5: google.ads.googleads.v21.resources.UserList.access_reason:type_name -> google.ads.googleads.v21.enums.AccessReasonEnum.AccessReason - 6, // 6: google.ads.googleads.v21.resources.UserList.account_user_list_status:type_name -> google.ads.googleads.v21.enums.UserListAccessStatusEnum.UserListAccessStatus - 7, // 7: google.ads.googleads.v21.resources.UserList.crm_based_user_list:type_name -> google.ads.googleads.v21.common.CrmBasedUserListInfo - 8, // 8: google.ads.googleads.v21.resources.UserList.similar_user_list:type_name -> google.ads.googleads.v21.common.SimilarUserListInfo - 9, // 9: google.ads.googleads.v21.resources.UserList.rule_based_user_list:type_name -> google.ads.googleads.v21.common.RuleBasedUserListInfo - 10, // 10: google.ads.googleads.v21.resources.UserList.logical_user_list:type_name -> google.ads.googleads.v21.common.LogicalUserListInfo - 11, // 11: google.ads.googleads.v21.resources.UserList.basic_user_list:type_name -> google.ads.googleads.v21.common.BasicUserListInfo - 12, // 12: google.ads.googleads.v21.resources.UserList.lookalike_user_list:type_name -> google.ads.googleads.v21.common.LookalikeUserListInfo + return file_google_ads_googleads_v22_resources_user_list_proto_rawDescData +} + +var file_google_ads_googleads_v22_resources_user_list_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_user_list_proto_goTypes = []any{ + (*UserList)(nil), // 0: google.ads.googleads.v22.resources.UserList + (enums.UserListMembershipStatusEnum_UserListMembershipStatus)(0), // 1: google.ads.googleads.v22.enums.UserListMembershipStatusEnum.UserListMembershipStatus + (enums.UserListSizeRangeEnum_UserListSizeRange)(0), // 2: google.ads.googleads.v22.enums.UserListSizeRangeEnum.UserListSizeRange + (enums.UserListTypeEnum_UserListType)(0), // 3: google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + (enums.UserListClosingReasonEnum_UserListClosingReason)(0), // 4: google.ads.googleads.v22.enums.UserListClosingReasonEnum.UserListClosingReason + (enums.AccessReasonEnum_AccessReason)(0), // 5: google.ads.googleads.v22.enums.AccessReasonEnum.AccessReason + (enums.UserListAccessStatusEnum_UserListAccessStatus)(0), // 6: google.ads.googleads.v22.enums.UserListAccessStatusEnum.UserListAccessStatus + (*common.CrmBasedUserListInfo)(nil), // 7: google.ads.googleads.v22.common.CrmBasedUserListInfo + (*common.SimilarUserListInfo)(nil), // 8: google.ads.googleads.v22.common.SimilarUserListInfo + (*common.RuleBasedUserListInfo)(nil), // 9: google.ads.googleads.v22.common.RuleBasedUserListInfo + (*common.LogicalUserListInfo)(nil), // 10: google.ads.googleads.v22.common.LogicalUserListInfo + (*common.BasicUserListInfo)(nil), // 11: google.ads.googleads.v22.common.BasicUserListInfo + (*common.LookalikeUserListInfo)(nil), // 12: google.ads.googleads.v22.common.LookalikeUserListInfo +} +var file_google_ads_googleads_v22_resources_user_list_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.UserList.membership_status:type_name -> google.ads.googleads.v22.enums.UserListMembershipStatusEnum.UserListMembershipStatus + 2, // 1: google.ads.googleads.v22.resources.UserList.size_range_for_display:type_name -> google.ads.googleads.v22.enums.UserListSizeRangeEnum.UserListSizeRange + 2, // 2: google.ads.googleads.v22.resources.UserList.size_range_for_search:type_name -> google.ads.googleads.v22.enums.UserListSizeRangeEnum.UserListSizeRange + 3, // 3: google.ads.googleads.v22.resources.UserList.type:type_name -> google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + 4, // 4: google.ads.googleads.v22.resources.UserList.closing_reason:type_name -> google.ads.googleads.v22.enums.UserListClosingReasonEnum.UserListClosingReason + 5, // 5: google.ads.googleads.v22.resources.UserList.access_reason:type_name -> google.ads.googleads.v22.enums.AccessReasonEnum.AccessReason + 6, // 6: google.ads.googleads.v22.resources.UserList.account_user_list_status:type_name -> google.ads.googleads.v22.enums.UserListAccessStatusEnum.UserListAccessStatus + 7, // 7: google.ads.googleads.v22.resources.UserList.crm_based_user_list:type_name -> google.ads.googleads.v22.common.CrmBasedUserListInfo + 8, // 8: google.ads.googleads.v22.resources.UserList.similar_user_list:type_name -> google.ads.googleads.v22.common.SimilarUserListInfo + 9, // 9: google.ads.googleads.v22.resources.UserList.rule_based_user_list:type_name -> google.ads.googleads.v22.common.RuleBasedUserListInfo + 10, // 10: google.ads.googleads.v22.resources.UserList.logical_user_list:type_name -> google.ads.googleads.v22.common.LogicalUserListInfo + 11, // 11: google.ads.googleads.v22.resources.UserList.basic_user_list:type_name -> google.ads.googleads.v22.common.BasicUserListInfo + 12, // 12: google.ads.googleads.v22.resources.UserList.lookalike_user_list:type_name -> google.ads.googleads.v22.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 @@ -671,12 +671,12 @@ var file_google_ads_googleads_v21_resources_user_list_proto_depIdxs = []int32{ 0, // [0:13] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_user_list_proto_init() } -func file_google_ads_googleads_v21_resources_user_list_proto_init() { - if File_google_ads_googleads_v21_resources_user_list_proto != nil { +func init() { file_google_ads_googleads_v22_resources_user_list_proto_init() } +func file_google_ads_googleads_v22_resources_user_list_proto_init() { + if File_google_ads_googleads_v22_resources_user_list_proto != nil { return } - file_google_ads_googleads_v21_resources_user_list_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_resources_user_list_proto_msgTypes[0].OneofWrappers = []any{ (*UserList_CrmBasedUserList)(nil), (*UserList_SimilarUserList)(nil), (*UserList_RuleBasedUserList)(nil), @@ -688,17 +688,17 @@ func file_google_ads_googleads_v21_resources_user_list_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_list_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_list_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_list_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_list_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_user_list_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_user_list_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_user_list_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_user_list_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_user_list_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_user_list_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_user_list_proto = out.File - file_google_ads_googleads_v21_resources_user_list_proto_goTypes = nil - file_google_ads_googleads_v21_resources_user_list_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_user_list_proto = out.File + file_google_ads_googleads_v22_resources_user_list_proto_goTypes = nil + file_google_ads_googleads_v22_resources_user_list_proto_depIdxs = nil } diff --git a/resources/user_list_customer_type.pb.go b/resources/user_list_customer_type.pb.go index caa65f09..bf154128 100644 --- a/resources/user_list_customer_type.pb.go +++ b/resources/user_list_customer_type.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/user_list_customer_type.proto +// source: google/ads/googleads/v22/resources/user_list_customer_type.proto package resources @@ -48,14 +48,14 @@ type UserListCustomerType struct { // 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.v21.enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory" json:"customer_type_category,omitempty"` + CustomerTypeCategory enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory `protobuf:"varint,3,opt,name=customer_type_category,json=customerTypeCategory,proto3,enum=google.ads.googleads.v22.enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory" json:"customer_type_category,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *UserListCustomerType) Reset() { *x = UserListCustomerType{} - mi := &file_google_ads_googleads_v21_resources_user_list_customer_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_list_customer_type_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *UserListCustomerType) String() string { func (*UserListCustomerType) ProtoMessage() {} func (x *UserListCustomerType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_user_list_customer_type_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_list_customer_type_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *UserListCustomerType) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListCustomerType.ProtoReflect.Descriptor instead. func (*UserListCustomerType) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescGZIP(), []int{0} } func (x *UserListCustomerType) GetResourceName() string { @@ -104,17 +104,17 @@ func (x *UserListCustomerType) GetCustomerTypeCategory() enums.UserListCustomerT return enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory(0) } -var File_google_ads_googleads_v21_resources_user_list_customer_type_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_user_list_customer_type_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -137,7 +137,7 @@ var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDes 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, + 0x32, 0x32, 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, @@ -153,43 +153,43 @@ var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDes 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDescData + return file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDescData } -var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_goTypes = []any{ - (*UserListCustomerType)(nil), // 0: google.ads.googleads.v21.resources.UserListCustomerType - (enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 1: google.ads.googleads.v21.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory +var file_google_ads_googleads_v22_resources_user_list_customer_type_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_user_list_customer_type_proto_goTypes = []any{ + (*UserListCustomerType)(nil), // 0: google.ads.googleads.v22.resources.UserListCustomerType + (enums.UserListCustomerTypeCategoryEnum_UserListCustomerTypeCategory)(0), // 1: google.ads.googleads.v22.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory } -var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.resources.UserListCustomerType.customer_type_category:type_name -> google.ads.googleads.v21.enums.UserListCustomerTypeCategoryEnum.UserListCustomerTypeCategory +var file_google_ads_googleads_v22_resources_user_list_customer_type_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.resources.UserListCustomerType.customer_type_category:type_name -> google.ads.googleads.v22.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 @@ -197,26 +197,26 @@ var file_google_ads_googleads_v21_resources_user_list_customer_type_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_user_list_customer_type_proto_init() } -func file_google_ads_googleads_v21_resources_user_list_customer_type_proto_init() { - if File_google_ads_googleads_v21_resources_user_list_customer_type_proto != nil { +func init() { file_google_ads_googleads_v22_resources_user_list_customer_type_proto_init() } +func file_google_ads_googleads_v22_resources_user_list_customer_type_proto_init() { + if File_google_ads_googleads_v22_resources_user_list_customer_type_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_list_customer_type_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_list_customer_type_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_user_list_customer_type_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_user_list_customer_type_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_user_list_customer_type_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_user_list_customer_type_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_user_list_customer_type_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_user_list_customer_type_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_user_list_customer_type_proto = out.File - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_goTypes = nil - file_google_ads_googleads_v21_resources_user_list_customer_type_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_user_list_customer_type_proto = out.File + file_google_ads_googleads_v22_resources_user_list_customer_type_proto_goTypes = nil + file_google_ads_googleads_v22_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 1ca7d527..d50bd61e 100644 --- a/resources/user_location_view.pb.go +++ b/resources/user_location_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/user_location_view.proto +// source: google/ads/googleads/v22/resources/user_location_view.proto package resources @@ -59,7 +59,7 @@ type UserLocationView struct { func (x *UserLocationView) Reset() { *x = UserLocationView{} - mi := &file_google_ads_googleads_v21_resources_user_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_location_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *UserLocationView) String() string { func (*UserLocationView) ProtoMessage() {} func (x *UserLocationView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_user_location_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_user_location_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *UserLocationView) ProtoReflect() protoreflect.Message { // Deprecated: Use UserLocationView.ProtoReflect.Descriptor instead. func (*UserLocationView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescGZIP(), []int{0} } func (x *UserLocationView) GetResourceName() string { @@ -108,15 +108,15 @@ func (x *UserLocationView) GetTargetingLocation() bool { return false } -var File_google_ads_googleads_v21_resources_user_location_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_user_location_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_user_location_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -148,41 +148,41 @@ var file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xea, 0x02, 0x26, 0x47, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_location_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_location_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_user_location_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_user_location_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_user_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_user_location_view_proto_goTypes = []any{ - (*UserLocationView)(nil), // 0: google.ads.googleads.v21.resources.UserLocationView +var file_google_ads_googleads_v22_resources_user_location_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_user_location_view_proto_goTypes = []any{ + (*UserLocationView)(nil), // 0: google.ads.googleads.v22.resources.UserLocationView } -var file_google_ads_googleads_v21_resources_user_location_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -190,27 +190,27 @@ var file_google_ads_googleads_v21_resources_user_location_view_proto_depIdxs = [ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_user_location_view_proto_init() } -func file_google_ads_googleads_v21_resources_user_location_view_proto_init() { - if File_google_ads_googleads_v21_resources_user_location_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_user_location_view_proto_init() } +func file_google_ads_googleads_v22_resources_user_location_view_proto_init() { + if File_google_ads_googleads_v22_resources_user_location_view_proto != nil { return } - file_google_ads_googleads_v21_resources_user_location_view_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_user_location_view_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_user_location_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_user_location_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_user_location_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_user_location_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_user_location_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_user_location_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_user_location_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_user_location_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_user_location_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_user_location_view_proto = out.File - file_google_ads_googleads_v21_resources_user_location_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_user_location_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_user_location_view_proto = out.File + file_google_ads_googleads_v22_resources_user_location_view_proto_goTypes = nil + file_google_ads_googleads_v22_resources_user_location_view_proto_depIdxs = nil } diff --git a/resources/video.pb.go b/resources/video.pb.go index 317ae9e5..78a4923c 100644 --- a/resources/video.pb.go +++ b/resources/video.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/video.proto +// source: google/ads/googleads/v22/resources/video.proto package resources @@ -58,7 +58,7 @@ type Video struct { func (x *Video) Reset() { *x = Video{} - mi := &file_google_ads_googleads_v21_resources_video_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_video_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -70,7 +70,7 @@ func (x *Video) String() string { func (*Video) ProtoMessage() {} func (x *Video) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_video_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_video_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -83,7 +83,7 @@ func (x *Video) ProtoReflect() protoreflect.Message { // Deprecated: Use Video.ProtoReflect.Descriptor instead. func (*Video) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_video_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_video_proto_rawDescGZIP(), []int{0} } func (x *Video) GetResourceName() string { @@ -121,14 +121,14 @@ func (x *Video) GetTitle() string { return "" } -var File_google_ads_googleads_v21_resources_video_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_video_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_video_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_video_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -158,40 +158,40 @@ var file_google_ads_googleads_v21_resources_video_proto_rawDesc = string([]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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x42, 0x0a, 0x56, 0x69, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x3b, 0x72, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_video_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_video_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_video_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_video_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_video_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_video_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_video_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_video_proto_rawDesc), len(file_google_ads_googleads_v21_resources_video_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_video_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_video_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_video_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_video_proto_rawDesc), len(file_google_ads_googleads_v22_resources_video_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_video_proto_rawDescData + return file_google_ads_googleads_v22_resources_video_proto_rawDescData } -var file_google_ads_googleads_v21_resources_video_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_video_proto_goTypes = []any{ - (*Video)(nil), // 0: google.ads.googleads.v21.resources.Video +var file_google_ads_googleads_v22_resources_video_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_video_proto_goTypes = []any{ + (*Video)(nil), // 0: google.ads.googleads.v22.resources.Video } -var file_google_ads_googleads_v21_resources_video_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -199,27 +199,27 @@ var file_google_ads_googleads_v21_resources_video_proto_depIdxs = []int32{ 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_video_proto_init() } -func file_google_ads_googleads_v21_resources_video_proto_init() { - if File_google_ads_googleads_v21_resources_video_proto != nil { +func init() { file_google_ads_googleads_v22_resources_video_proto_init() } +func file_google_ads_googleads_v22_resources_video_proto_init() { + if File_google_ads_googleads_v22_resources_video_proto != nil { return } - file_google_ads_googleads_v21_resources_video_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_resources_video_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_video_proto_rawDesc), len(file_google_ads_googleads_v21_resources_video_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_video_proto_rawDesc), len(file_google_ads_googleads_v22_resources_video_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_video_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_video_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_video_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_video_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_video_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_video_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_video_proto = out.File - file_google_ads_googleads_v21_resources_video_proto_goTypes = nil - file_google_ads_googleads_v21_resources_video_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_video_proto = out.File + file_google_ads_googleads_v22_resources_video_proto_goTypes = nil + file_google_ads_googleads_v22_resources_video_proto_depIdxs = nil } diff --git a/resources/webpage_view.pb.go b/resources/webpage_view.pb.go index ed34f0b4..4dee9a9c 100644 --- a/resources/webpage_view.pb.go +++ b/resources/webpage_view.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/resources/webpage_view.proto +// source: google/ads/googleads/v22/resources/webpage_view.proto package resources @@ -50,7 +50,7 @@ type WebpageView struct { func (x *WebpageView) Reset() { *x = WebpageView{} - mi := &file_google_ads_googleads_v21_resources_webpage_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_webpage_view_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -62,7 +62,7 @@ func (x *WebpageView) String() string { func (*WebpageView) ProtoMessage() {} func (x *WebpageView) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_resources_webpage_view_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_resources_webpage_view_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -75,7 +75,7 @@ func (x *WebpageView) ProtoReflect() protoreflect.Message { // Deprecated: Use WebpageView.ProtoReflect.Descriptor instead. func (*WebpageView) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescGZIP(), []int{0} } func (x *WebpageView) GetResourceName() string { @@ -85,15 +85,15 @@ func (x *WebpageView) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_resources_webpage_view_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_resources_webpage_view_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_resources_webpage_view_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x1a, 0x1f, 0x67, 0x6f, 0x6f, + 0x32, 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, @@ -112,41 +112,41 @@ var file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0xca, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x52, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x32, 0x32, 0x3a, 0x3a, 0x52, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescData []byte + file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc))) +func file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_webpage_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_webpage_view_proto_rawDesc))) }) - return file_google_ads_googleads_v21_resources_webpage_view_proto_rawDescData + return file_google_ads_googleads_v22_resources_webpage_view_proto_rawDescData } -var file_google_ads_googleads_v21_resources_webpage_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) -var file_google_ads_googleads_v21_resources_webpage_view_proto_goTypes = []any{ - (*WebpageView)(nil), // 0: google.ads.googleads.v21.resources.WebpageView +var file_google_ads_googleads_v22_resources_webpage_view_proto_msgTypes = make([]protoimpl.MessageInfo, 1) +var file_google_ads_googleads_v22_resources_webpage_view_proto_goTypes = []any{ + (*WebpageView)(nil), // 0: google.ads.googleads.v22.resources.WebpageView } -var file_google_ads_googleads_v21_resources_webpage_view_proto_depIdxs = []int32{ +var file_google_ads_googleads_v22_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 @@ -154,26 +154,26 @@ var file_google_ads_googleads_v21_resources_webpage_view_proto_depIdxs = []int32 0, // [0:0] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_resources_webpage_view_proto_init() } -func file_google_ads_googleads_v21_resources_webpage_view_proto_init() { - if File_google_ads_googleads_v21_resources_webpage_view_proto != nil { +func init() { file_google_ads_googleads_v22_resources_webpage_view_proto_init() } +func file_google_ads_googleads_v22_resources_webpage_view_proto_init() { + if File_google_ads_googleads_v22_resources_webpage_view_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc), len(file_google_ads_googleads_v21_resources_webpage_view_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_resources_webpage_view_proto_rawDesc), len(file_google_ads_googleads_v22_resources_webpage_view_proto_rawDesc)), NumEnums: 0, NumMessages: 1, NumExtensions: 0, NumServices: 0, }, - GoTypes: file_google_ads_googleads_v21_resources_webpage_view_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_resources_webpage_view_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_resources_webpage_view_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_resources_webpage_view_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_resources_webpage_view_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_resources_webpage_view_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_resources_webpage_view_proto = out.File - file_google_ads_googleads_v21_resources_webpage_view_proto_goTypes = nil - file_google_ads_googleads_v21_resources_webpage_view_proto_depIdxs = nil + File_google_ads_googleads_v22_resources_webpage_view_proto = out.File + file_google_ads_googleads_v22_resources_webpage_view_proto_goTypes = nil + file_google_ads_googleads_v22_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 0388c6fb..b6d60097 100644 --- a/services/account_budget_proposal_service.pb.go +++ b/services/account_budget_proposal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/account_budget_proposal_service.proto +// source: google/ads/googleads/v22/services/account_budget_proposal_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AccountBudgetProposalService.MutateAccountBudgetProposal][google.ads.googleads.v21.services.AccountBudgetProposalService.MutateAccountBudgetProposal]. +// [AccountBudgetProposalService.MutateAccountBudgetProposal][google.ads.googleads.v22.services.AccountBudgetProposalService.MutateAccountBudgetProposal]. type MutateAccountBudgetProposalRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -56,7 +56,7 @@ type MutateAccountBudgetProposalRequest struct { func (x *MutateAccountBudgetProposalRequest) Reset() { *x = MutateAccountBudgetProposalRequest{} - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *MutateAccountBudgetProposalRequest) String() string { func (*MutateAccountBudgetProposalRequest) ProtoMessage() {} func (x *MutateAccountBudgetProposalRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *MutateAccountBudgetProposalRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAccountBudgetProposalRequest.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAccountBudgetProposalRequest) GetCustomerId() string { @@ -129,7 +129,7 @@ type AccountBudgetProposalOperation struct { func (x *AccountBudgetProposalOperation) Reset() { *x = AccountBudgetProposalOperation{} - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141,7 +141,7 @@ func (x *AccountBudgetProposalOperation) String() string { func (*AccountBudgetProposalOperation) ProtoMessage() {} func (x *AccountBudgetProposalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154,7 +154,7 @@ func (x *AccountBudgetProposalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountBudgetProposalOperation.ProtoReflect.Descriptor instead. func (*AccountBudgetProposalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{1} } func (x *AccountBudgetProposalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -225,7 +225,7 @@ type MutateAccountBudgetProposalResponse struct { func (x *MutateAccountBudgetProposalResponse) Reset() { *x = MutateAccountBudgetProposalResponse{} - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -237,7 +237,7 @@ func (x *MutateAccountBudgetProposalResponse) String() string { func (*MutateAccountBudgetProposalResponse) ProtoMessage() {} func (x *MutateAccountBudgetProposalResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -250,7 +250,7 @@ func (x *MutateAccountBudgetProposalResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateAccountBudgetProposalResponse.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAccountBudgetProposalResponse) GetResult() *MutateAccountBudgetProposalResult { @@ -271,7 +271,7 @@ type MutateAccountBudgetProposalResult struct { func (x *MutateAccountBudgetProposalResult) Reset() { *x = MutateAccountBudgetProposalResult{} - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -283,7 +283,7 @@ func (x *MutateAccountBudgetProposalResult) String() string { func (*MutateAccountBudgetProposalResult) ProtoMessage() {} func (x *MutateAccountBudgetProposalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -296,7 +296,7 @@ func (x *MutateAccountBudgetProposalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAccountBudgetProposalResult.ProtoReflect.Descriptor instead. func (*MutateAccountBudgetProposalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAccountBudgetProposalResult) GetResourceName() string { @@ -306,18 +306,18 @@ func (x *MutateAccountBudgetProposalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_account_budget_proposal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_account_budget_proposal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -336,7 +336,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -351,7 +351,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -364,7 +364,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -381,17 +381,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x32, 0x32, 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, @@ -401,53 +401,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_goTypes = []any{ - (*MutateAccountBudgetProposalRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAccountBudgetProposalRequest - (*AccountBudgetProposalOperation)(nil), // 1: google.ads.googleads.v21.services.AccountBudgetProposalOperation - (*MutateAccountBudgetProposalResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAccountBudgetProposalResponse - (*MutateAccountBudgetProposalResult)(nil), // 3: google.ads.googleads.v21.services.MutateAccountBudgetProposalResult +var file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_goTypes = []any{ + (*MutateAccountBudgetProposalRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAccountBudgetProposalRequest + (*AccountBudgetProposalOperation)(nil), // 1: google.ads.googleads.v22.services.AccountBudgetProposalOperation + (*MutateAccountBudgetProposalResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAccountBudgetProposalResponse + (*MutateAccountBudgetProposalResult)(nil), // 3: google.ads.googleads.v22.services.MutateAccountBudgetProposalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AccountBudgetProposal)(nil), // 5: google.ads.googleads.v21.resources.AccountBudgetProposal -} -var file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAccountBudgetProposalRequest.operation:type_name -> google.ads.googleads.v21.services.AccountBudgetProposalOperation - 4, // 1: google.ads.googleads.v21.services.AccountBudgetProposalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.AccountBudgetProposalOperation.create:type_name -> google.ads.googleads.v21.resources.AccountBudgetProposal - 3, // 3: google.ads.googleads.v21.services.MutateAccountBudgetProposalResponse.result:type_name -> google.ads.googleads.v21.services.MutateAccountBudgetProposalResult - 0, // 4: google.ads.googleads.v21.services.AccountBudgetProposalService.MutateAccountBudgetProposal:input_type -> google.ads.googleads.v21.services.MutateAccountBudgetProposalRequest - 2, // 5: google.ads.googleads.v21.services.AccountBudgetProposalService.MutateAccountBudgetProposal:output_type -> google.ads.googleads.v21.services.MutateAccountBudgetProposalResponse + (*resources.AccountBudgetProposal)(nil), // 5: google.ads.googleads.v22.resources.AccountBudgetProposal +} +var file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAccountBudgetProposalRequest.operation:type_name -> google.ads.googleads.v22.services.AccountBudgetProposalOperation + 4, // 1: google.ads.googleads.v22.services.AccountBudgetProposalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.AccountBudgetProposalOperation.create:type_name -> google.ads.googleads.v22.resources.AccountBudgetProposal + 3, // 3: google.ads.googleads.v22.services.MutateAccountBudgetProposalResponse.result:type_name -> google.ads.googleads.v22.services.MutateAccountBudgetProposalResult + 0, // 4: google.ads.googleads.v22.services.AccountBudgetProposalService.MutateAccountBudgetProposal:input_type -> google.ads.googleads.v22.services.MutateAccountBudgetProposalRequest + 2, // 5: google.ads.googleads.v22.services.AccountBudgetProposalService.MutateAccountBudgetProposal:output_type -> google.ads.googleads.v22.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 @@ -455,12 +455,12 @@ var file_google_ads_googleads_v21_services_account_budget_proposal_service_proto 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_init() } -func file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_init() { - if File_google_ads_googleads_v21_services_account_budget_proposal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_init() } +func file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_init() { + if File_google_ads_googleads_v22_services_account_budget_proposal_service_proto != nil { return } - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes[1].OneofWrappers = []any{ (*AccountBudgetProposalOperation_Create)(nil), (*AccountBudgetProposalOperation_Remove)(nil), } @@ -468,17 +468,17 @@ func file_google_ads_googleads_v21_services_account_budget_proposal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_account_budget_proposal_service_proto = out.File - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_account_budget_proposal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_account_budget_proposal_service_proto = out.File + file_google_ads_googleads_v22_services_account_budget_proposal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 d38287e0..6624143b 100644 --- a/services/account_budget_proposal_service_grpc.pb.go +++ b/services/account_budget_proposal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/account_budget_proposal_service.proto +// source: google/ads/googleads/v22/services/account_budget_proposal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName = "/google.ads.googleads.v21.services.AccountBudgetProposalService/MutateAccountBudgetProposal" + AccountBudgetProposalService_MutateAccountBudgetProposal_FullMethodName = "/google.ads.googleads.v22.services.AccountBudgetProposalService/MutateAccountBudgetProposal" ) // AccountBudgetProposalServiceClient is the client API for AccountBudgetProposalService service. @@ -179,7 +179,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.v21.services.AccountBudgetProposalService", + ServiceName: "google.ads.googleads.v22.services.AccountBudgetProposalService", HandlerType: (*AccountBudgetProposalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -188,5 +188,5 @@ var AccountBudgetProposalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/account_budget_proposal_service.proto", + Metadata: "google/ads/googleads/v22/services/account_budget_proposal_service.proto", } diff --git a/services/account_link_service.pb.go b/services/account_link_service.pb.go index c9971ea6..b89ee9eb 100644 --- a/services/account_link_service.pb.go +++ b/services/account_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/account_link_service.proto +// source: google/ads/googleads/v22/services/account_link_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AccountLinkService.CreateAccountLink][google.ads.googleads.v21.services.AccountLinkService.CreateAccountLink]. +// [AccountLinkService.CreateAccountLink][google.ads.googleads.v22.services.AccountLinkService.CreateAccountLink]. type CreateAccountLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which the account link is created. @@ -53,7 +53,7 @@ type CreateAccountLinkRequest struct { func (x *CreateAccountLinkRequest) Reset() { *x = CreateAccountLinkRequest{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *CreateAccountLinkRequest) String() string { func (*CreateAccountLinkRequest) ProtoMessage() {} func (x *CreateAccountLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *CreateAccountLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAccountLinkRequest.ProtoReflect.Descriptor instead. func (*CreateAccountLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{0} } func (x *CreateAccountLinkRequest) GetCustomerId() string { @@ -96,7 +96,7 @@ func (x *CreateAccountLinkRequest) GetAccountLink() *resources.AccountLink { } // Response message for -// [AccountLinkService.CreateAccountLink][google.ads.googleads.v21.services.AccountLinkService.CreateAccountLink]. +// [AccountLinkService.CreateAccountLink][google.ads.googleads.v22.services.AccountLinkService.CreateAccountLink]. type CreateAccountLinkResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Returned for successful operations. Resource name of the account link. @@ -107,7 +107,7 @@ type CreateAccountLinkResponse struct { func (x *CreateAccountLinkResponse) Reset() { *x = CreateAccountLinkResponse{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *CreateAccountLinkResponse) String() string { func (*CreateAccountLinkResponse) ProtoMessage() {} func (x *CreateAccountLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,7 +132,7 @@ func (x *CreateAccountLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateAccountLinkResponse.ProtoReflect.Descriptor instead. func (*CreateAccountLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{1} } func (x *CreateAccountLinkResponse) GetResourceName() string { @@ -143,7 +143,7 @@ func (x *CreateAccountLinkResponse) GetResourceName() string { } // Request message for -// [AccountLinkService.MutateAccountLink][google.ads.googleads.v21.services.AccountLinkService.MutateAccountLink]. +// [AccountLinkService.MutateAccountLink][google.ads.googleads.v22.services.AccountLinkService.MutateAccountLink]. type MutateAccountLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being modified. @@ -164,7 +164,7 @@ type MutateAccountLinkRequest struct { func (x *MutateAccountLinkRequest) Reset() { *x = MutateAccountLinkRequest{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -176,7 +176,7 @@ func (x *MutateAccountLinkRequest) String() string { func (*MutateAccountLinkRequest) ProtoMessage() {} func (x *MutateAccountLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -189,7 +189,7 @@ func (x *MutateAccountLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkRequest.ProtoReflect.Descriptor instead. func (*MutateAccountLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAccountLinkRequest) GetCustomerId() string { @@ -238,7 +238,7 @@ type AccountLinkOperation struct { func (x *AccountLinkOperation) Reset() { *x = AccountLinkOperation{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -250,7 +250,7 @@ func (x *AccountLinkOperation) String() string { func (*AccountLinkOperation) ProtoMessage() {} func (x *AccountLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -263,7 +263,7 @@ func (x *AccountLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AccountLinkOperation.ProtoReflect.Descriptor instead. func (*AccountLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{3} } func (x *AccountLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -336,7 +336,7 @@ type MutateAccountLinkResponse struct { func (x *MutateAccountLinkResponse) Reset() { *x = MutateAccountLinkResponse{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -348,7 +348,7 @@ func (x *MutateAccountLinkResponse) String() string { func (*MutateAccountLinkResponse) ProtoMessage() {} func (x *MutateAccountLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -361,7 +361,7 @@ func (x *MutateAccountLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkResponse.ProtoReflect.Descriptor instead. func (*MutateAccountLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{4} } func (x *MutateAccountLinkResponse) GetResult() *MutateAccountLinkResult { @@ -389,7 +389,7 @@ type MutateAccountLinkResult struct { func (x *MutateAccountLinkResult) Reset() { *x = MutateAccountLinkResult{} - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -401,7 +401,7 @@ func (x *MutateAccountLinkResult) String() string { func (*MutateAccountLinkResult) ProtoMessage() {} func (x *MutateAccountLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -414,7 +414,7 @@ func (x *MutateAccountLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAccountLinkResult.ProtoReflect.Descriptor instead. func (*MutateAccountLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP(), []int{5} } func (x *MutateAccountLinkResult) GetResourceName() string { @@ -424,17 +424,17 @@ func (x *MutateAccountLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_account_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_account_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_account_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_account_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -470,7 +470,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -486,7 +486,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -498,7 +498,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -516,30 +516,30 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x32, 0x32, 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, @@ -549,59 +549,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_account_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_account_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_account_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_account_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_account_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_account_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_account_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_account_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_account_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_account_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_account_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_account_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_account_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_account_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_account_link_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_account_link_service_proto_goTypes = []any{ - (*CreateAccountLinkRequest)(nil), // 0: google.ads.googleads.v21.services.CreateAccountLinkRequest - (*CreateAccountLinkResponse)(nil), // 1: google.ads.googleads.v21.services.CreateAccountLinkResponse - (*MutateAccountLinkRequest)(nil), // 2: google.ads.googleads.v21.services.MutateAccountLinkRequest - (*AccountLinkOperation)(nil), // 3: google.ads.googleads.v21.services.AccountLinkOperation - (*MutateAccountLinkResponse)(nil), // 4: google.ads.googleads.v21.services.MutateAccountLinkResponse - (*MutateAccountLinkResult)(nil), // 5: google.ads.googleads.v21.services.MutateAccountLinkResult - (*resources.AccountLink)(nil), // 6: google.ads.googleads.v21.resources.AccountLink + return file_google_ads_googleads_v22_services_account_link_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_account_link_service_proto_goTypes = []any{ + (*CreateAccountLinkRequest)(nil), // 0: google.ads.googleads.v22.services.CreateAccountLinkRequest + (*CreateAccountLinkResponse)(nil), // 1: google.ads.googleads.v22.services.CreateAccountLinkResponse + (*MutateAccountLinkRequest)(nil), // 2: google.ads.googleads.v22.services.MutateAccountLinkRequest + (*AccountLinkOperation)(nil), // 3: google.ads.googleads.v22.services.AccountLinkOperation + (*MutateAccountLinkResponse)(nil), // 4: google.ads.googleads.v22.services.MutateAccountLinkResponse + (*MutateAccountLinkResult)(nil), // 5: google.ads.googleads.v22.services.MutateAccountLinkResult + (*resources.AccountLink)(nil), // 6: google.ads.googleads.v22.resources.AccountLink (*fieldmaskpb.FieldMask)(nil), // 7: google.protobuf.FieldMask (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v21_services_account_link_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.services.CreateAccountLinkRequest.account_link:type_name -> google.ads.googleads.v21.resources.AccountLink - 3, // 1: google.ads.googleads.v21.services.MutateAccountLinkRequest.operation:type_name -> google.ads.googleads.v21.services.AccountLinkOperation - 7, // 2: google.ads.googleads.v21.services.AccountLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AccountLinkOperation.update:type_name -> google.ads.googleads.v21.resources.AccountLink - 5, // 4: google.ads.googleads.v21.services.MutateAccountLinkResponse.result:type_name -> google.ads.googleads.v21.services.MutateAccountLinkResult - 8, // 5: google.ads.googleads.v21.services.MutateAccountLinkResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v21.services.AccountLinkService.CreateAccountLink:input_type -> google.ads.googleads.v21.services.CreateAccountLinkRequest - 2, // 7: google.ads.googleads.v21.services.AccountLinkService.MutateAccountLink:input_type -> google.ads.googleads.v21.services.MutateAccountLinkRequest - 1, // 8: google.ads.googleads.v21.services.AccountLinkService.CreateAccountLink:output_type -> google.ads.googleads.v21.services.CreateAccountLinkResponse - 4, // 9: google.ads.googleads.v21.services.AccountLinkService.MutateAccountLink:output_type -> google.ads.googleads.v21.services.MutateAccountLinkResponse +var file_google_ads_googleads_v22_services_account_link_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.services.CreateAccountLinkRequest.account_link:type_name -> google.ads.googleads.v22.resources.AccountLink + 3, // 1: google.ads.googleads.v22.services.MutateAccountLinkRequest.operation:type_name -> google.ads.googleads.v22.services.AccountLinkOperation + 7, // 2: google.ads.googleads.v22.services.AccountLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AccountLinkOperation.update:type_name -> google.ads.googleads.v22.resources.AccountLink + 5, // 4: google.ads.googleads.v22.services.MutateAccountLinkResponse.result:type_name -> google.ads.googleads.v22.services.MutateAccountLinkResult + 8, // 5: google.ads.googleads.v22.services.MutateAccountLinkResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v22.services.AccountLinkService.CreateAccountLink:input_type -> google.ads.googleads.v22.services.CreateAccountLinkRequest + 2, // 7: google.ads.googleads.v22.services.AccountLinkService.MutateAccountLink:input_type -> google.ads.googleads.v22.services.MutateAccountLinkRequest + 1, // 8: google.ads.googleads.v22.services.AccountLinkService.CreateAccountLink:output_type -> google.ads.googleads.v22.services.CreateAccountLinkResponse + 4, // 9: google.ads.googleads.v22.services.AccountLinkService.MutateAccountLink:output_type -> google.ads.googleads.v22.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 @@ -609,12 +609,12 @@ var file_google_ads_googleads_v21_services_account_link_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_account_link_service_proto_init() } -func file_google_ads_googleads_v21_services_account_link_service_proto_init() { - if File_google_ads_googleads_v21_services_account_link_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_account_link_service_proto_init() } +func file_google_ads_googleads_v22_services_account_link_service_proto_init() { + if File_google_ads_googleads_v22_services_account_link_service_proto != nil { return } - file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes[3].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes[3].OneofWrappers = []any{ (*AccountLinkOperation_Update)(nil), (*AccountLinkOperation_Remove)(nil), } @@ -622,17 +622,17 @@ func file_google_ads_googleads_v21_services_account_link_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_account_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_account_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_account_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_account_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_account_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_account_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_account_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_account_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_account_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_account_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_account_link_service_proto = out.File - file_google_ads_googleads_v21_services_account_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_account_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_account_link_service_proto = out.File + file_google_ads_googleads_v22_services_account_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 abc4ba5c..cf8ac6d9 100644 --- a/services/account_link_service_grpc.pb.go +++ b/services/account_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/account_link_service.proto +// source: google/ads/googleads/v22/services/account_link_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AccountLinkService_CreateAccountLink_FullMethodName = "/google.ads.googleads.v21.services.AccountLinkService/CreateAccountLink" - AccountLinkService_MutateAccountLink_FullMethodName = "/google.ads.googleads.v21.services.AccountLinkService/MutateAccountLink" + AccountLinkService_CreateAccountLink_FullMethodName = "/google.ads.googleads.v22.services.AccountLinkService/CreateAccountLink" + AccountLinkService_MutateAccountLink_FullMethodName = "/google.ads.googleads.v22.services.AccountLinkService/MutateAccountLink" ) // AccountLinkServiceClient is the client API for AccountLinkService service. @@ -222,7 +222,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.v21.services.AccountLinkService", + ServiceName: "google.ads.googleads.v22.services.AccountLinkService", HandlerType: (*AccountLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -235,5 +235,5 @@ var AccountLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/account_link_service.proto", + Metadata: "google/ads/googleads/v22/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 660bf9bc..84a2d932 100644 --- a/services/ad_group_ad_label_service.pb.go +++ b/services/ad_group_ad_label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_ad_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_ad_label_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupAdLabelService.MutateAdGroupAdLabels][google.ads.googleads.v21.services.AdGroupAdLabelService.MutateAdGroupAdLabels]. +// [AdGroupAdLabelService.MutateAdGroupAdLabels][google.ads.googleads.v22.services.AdGroupAdLabelService.MutateAdGroupAdLabels]. type MutateAdGroupAdLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose ad group ad labels are being modified. @@ -60,7 +60,7 @@ type MutateAdGroupAdLabelsRequest struct { func (x *MutateAdGroupAdLabelsRequest) Reset() { *x = MutateAdGroupAdLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *MutateAdGroupAdLabelsRequest) String() string { func (*MutateAdGroupAdLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupAdLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *MutateAdGroupAdLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAdLabelsRequest) GetCustomerId() string { @@ -132,7 +132,7 @@ type AdGroupAdLabelOperation struct { func (x *AdGroupAdLabelOperation) Reset() { *x = AdGroupAdLabelOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144,7 +144,7 @@ func (x *AdGroupAdLabelOperation) String() string { func (*AdGroupAdLabelOperation) ProtoMessage() {} func (x *AdGroupAdLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157,7 +157,7 @@ func (x *AdGroupAdLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupAdLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAdLabelOperation) GetOperation() isAdGroupAdLabelOperation_Operation { @@ -223,7 +223,7 @@ type MutateAdGroupAdLabelsResponse struct { func (x *MutateAdGroupAdLabelsResponse) Reset() { *x = MutateAdGroupAdLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -235,7 +235,7 @@ func (x *MutateAdGroupAdLabelsResponse) String() string { func (*MutateAdGroupAdLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupAdLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -248,7 +248,7 @@ func (x *MutateAdGroupAdLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAdLabelsResponse) GetPartialFailureError() *status.Status { @@ -276,7 +276,7 @@ type MutateAdGroupAdLabelResult struct { func (x *MutateAdGroupAdLabelResult) Reset() { *x = MutateAdGroupAdLabelResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -288,7 +288,7 @@ func (x *MutateAdGroupAdLabelResult) String() string { func (*MutateAdGroupAdLabelResult) ProtoMessage() {} func (x *MutateAdGroupAdLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -301,7 +301,7 @@ func (x *MutateAdGroupAdLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAdLabelResult) GetResourceName() string { @@ -311,17 +311,17 @@ func (x *MutateAdGroupAdLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_ad_group_ad_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_ad_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -340,7 +340,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -352,7 +352,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -369,7 +369,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -384,16 +384,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, @@ -403,52 +403,52 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x41, 0x64, 0x47, 0x72, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_goTypes = []any{ - (*MutateAdGroupAdLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupAdLabelsRequest - (*AdGroupAdLabelOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupAdLabelOperation - (*MutateAdGroupAdLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse - (*MutateAdGroupAdLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupAdLabelResult - (*resources.AdGroupAdLabel)(nil), // 4: google.ads.googleads.v21.resources.AdGroupAdLabel +var file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_goTypes = []any{ + (*MutateAdGroupAdLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupAdLabelsRequest + (*AdGroupAdLabelOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupAdLabelOperation + (*MutateAdGroupAdLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupAdLabelsResponse + (*MutateAdGroupAdLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupAdLabelResult + (*resources.AdGroupAdLabel)(nil), // 4: google.ads.googleads.v22.resources.AdGroupAdLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupAdLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupAdLabelOperation - 4, // 1: google.ads.googleads.v21.services.AdGroupAdLabelOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupAdLabel - 5, // 2: google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupAdLabelResult - 0, // 4: google.ads.googleads.v21.services.AdGroupAdLabelService.MutateAdGroupAdLabels:input_type -> google.ads.googleads.v21.services.MutateAdGroupAdLabelsRequest - 2, // 5: google.ads.googleads.v21.services.AdGroupAdLabelService.MutateAdGroupAdLabels:output_type -> google.ads.googleads.v21.services.MutateAdGroupAdLabelsResponse +var file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupAdLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupAdLabelOperation + 4, // 1: google.ads.googleads.v22.services.AdGroupAdLabelOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupAdLabel + 5, // 2: google.ads.googleads.v22.services.MutateAdGroupAdLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupAdLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupAdLabelResult + 0, // 4: google.ads.googleads.v22.services.AdGroupAdLabelService.MutateAdGroupAdLabels:input_type -> google.ads.googleads.v22.services.MutateAdGroupAdLabelsRequest + 2, // 5: google.ads.googleads.v22.services.AdGroupAdLabelService.MutateAdGroupAdLabels:output_type -> google.ads.googleads.v22.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 @@ -456,12 +456,12 @@ var file_google_ads_googleads_v21_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_v21_services_ad_group_ad_label_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_ad_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_ad_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupAdLabelOperation_Create)(nil), (*AdGroupAdLabelOperation_Remove)(nil), } @@ -469,17 +469,17 @@ func file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_ad_label_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_ad_label_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 6f40171f..db310b30 100644 --- a/services/ad_group_ad_label_service_grpc.pb.go +++ b/services/ad_group_ad_label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_ad_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_ad_label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName = "/google.ads.googleads.v21.services.AdGroupAdLabelService/MutateAdGroupAdLabels" + AdGroupAdLabelService_MutateAdGroupAdLabels_FullMethodName = "/google.ads.googleads.v22.services.AdGroupAdLabelService/MutateAdGroupAdLabels" ) // AdGroupAdLabelServiceClient is the client API for AdGroupAdLabelService service. @@ -156,7 +156,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.v21.services.AdGroupAdLabelService", + ServiceName: "google.ads.googleads.v22.services.AdGroupAdLabelService", HandlerType: (*AdGroupAdLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -165,5 +165,5 @@ var AdGroupAdLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_ad_label_service.proto", + Metadata: "google/ads/googleads/v22/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 8b4a0101..d96cd208 100644 --- a/services/ad_group_ad_service.pb.go +++ b/services/ad_group_ad_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_ad_service.proto +// source: google/ads/googleads/v22/services/ad_group_ad_service.proto package services @@ -43,7 +43,7 @@ const ( ) // Request message for -// [AdGroupAdService.MutateAdGroupAds][google.ads.googleads.v21.services.AdGroupAdService.MutateAdGroupAds]. +// [AdGroupAdService.MutateAdGroupAds][google.ads.googleads.v22.services.AdGroupAdService.MutateAdGroupAds]. type MutateAdGroupAdsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ads are being modified. @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupAdsRequest) Reset() { *x = MutateAdGroupAdsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdGroupAdsRequest) String() string { func (*MutateAdGroupAdsRequest) ProtoMessage() {} func (x *MutateAdGroupAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdGroupAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAdsRequest) GetCustomerId() string { @@ -151,7 +151,7 @@ type AdGroupAdOperation struct { func (x *AdGroupAdOperation) Reset() { *x = AdGroupAdOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -163,7 +163,7 @@ func (x *AdGroupAdOperation) String() string { func (*AdGroupAdOperation) ProtoMessage() {} func (x *AdGroupAdOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -176,7 +176,7 @@ func (x *AdGroupAdOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAdOperation.ProtoReflect.Descriptor instead. func (*AdGroupAdOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -283,7 +283,7 @@ func (x *MutateAdGroupAdsResponse) String() string { func (*MutateAdGroupAdsResponse) ProtoMessage() {} func (x *MutateAdGroupAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -296,7 +296,7 @@ func (x *MutateAdGroupAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAdsResponse) GetPartialFailureError() *status.Status { @@ -328,7 +328,7 @@ type MutateAdGroupAdResult struct { func (x *MutateAdGroupAdResult) Reset() { *x = MutateAdGroupAdResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -340,7 +340,7 @@ func (x *MutateAdGroupAdResult) String() string { func (*MutateAdGroupAdResult) ProtoMessage() {} func (x *MutateAdGroupAdResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -353,7 +353,7 @@ func (x *MutateAdGroupAdResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAdResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAdResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAdResult) GetResourceName() string { @@ -385,7 +385,7 @@ type RemoveAutomaticallyCreatedAssetsRequest struct { func (x *RemoveAutomaticallyCreatedAssetsRequest) Reset() { *x = RemoveAutomaticallyCreatedAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -397,7 +397,7 @@ func (x *RemoveAutomaticallyCreatedAssetsRequest) String() string { func (*RemoveAutomaticallyCreatedAssetsRequest) ProtoMessage() {} func (x *RemoveAutomaticallyCreatedAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -410,7 +410,7 @@ func (x *RemoveAutomaticallyCreatedAssetsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use RemoveAutomaticallyCreatedAssetsRequest.ProtoReflect.Descriptor instead. func (*RemoveAutomaticallyCreatedAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP(), []int{4} } func (x *RemoveAutomaticallyCreatedAssetsRequest) GetAdGroupAd() string { @@ -433,14 +433,14 @@ type AssetsWithFieldType struct { // Required. The resource name of the asset to be removed. Asset string `protobuf:"bytes,1,opt,name=asset,proto3" json:"asset,omitempty"` // Required. The asset field type. - AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *AssetsWithFieldType) Reset() { *x = AssetsWithFieldType{} - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -452,7 +452,7 @@ func (x *AssetsWithFieldType) String() string { func (*AssetsWithFieldType) ProtoMessage() {} func (x *AssetsWithFieldType) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -465,7 +465,7 @@ func (x *AssetsWithFieldType) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetsWithFieldType.ProtoReflect.Descriptor instead. func (*AssetsWithFieldType) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP(), []int{5} } func (x *AssetsWithFieldType) GetAsset() string { @@ -482,27 +482,27 @@ func (x *AssetsWithFieldType) GetAssetFieldType() enums.AssetFieldTypeEnum_Asset return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v21_services_ad_group_ad_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_ad_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, - 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -524,7 +524,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x76, 0x32, 0x32, 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, 0x70, 0x61, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, 0x6c, @@ -535,7 +535,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -549,18 +549,18 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x76, 0x32, 0x32, 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, 0x41, 0x24, 0x0a, 0x22, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, @@ -576,7 +576,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x65, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x52, 0x65, @@ -588,7 +588,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x32, 0x32, 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, 0x22, 0xe7, 0x01, 0x0a, 0x27, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, @@ -601,7 +601,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 0x65, 0x74, 0x73, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x13, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x57, 0x69, 0x74, 0x68, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0xc5, 0x01, 0x0a, 0x13, @@ -613,7 +613,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 0x74, 0x12, 0x70, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x02, 0x52, 0x0e, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, @@ -621,22 +621,22 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x32, 0x32, 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, 0x12, 0x84, 0x02, 0x0a, 0x20, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, @@ -644,7 +644,7 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x7c, 0xda, 0x41, 0x22, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x2c, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 0x5f, 0x77, 0x69, 0x74, 0x68, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x82, 0xd3, 0xe4, 0x93, - 0x02, 0x51, 0x3a, 0x01, 0x2a, 0x22, 0x4c, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x7b, 0x61, 0x64, 0x5f, + 0x02, 0x51, 0x3a, 0x01, 0x2a, 0x22, 0x4c, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x7b, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x3d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x2a, 0x2f, 0x61, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, 0x73, 0x2f, 0x2a, 0x7d, 0x3a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, @@ -655,68 +655,68 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_goTypes = []any{ - (*MutateAdGroupAdsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupAdsRequest - (*AdGroupAdOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupAdOperation - (*MutateAdGroupAdsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupAdsResponse - (*MutateAdGroupAdResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupAdResult - (*RemoveAutomaticallyCreatedAssetsRequest)(nil), // 4: google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest - (*AssetsWithFieldType)(nil), // 5: google.ads.googleads.v21.services.AssetsWithFieldType - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 6: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType + return file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_ad_group_ad_service_proto_goTypes = []any{ + (*MutateAdGroupAdsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupAdsRequest + (*AdGroupAdOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupAdOperation + (*MutateAdGroupAdsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupAdsResponse + (*MutateAdGroupAdResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupAdResult + (*RemoveAutomaticallyCreatedAssetsRequest)(nil), // 4: google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest + (*AssetsWithFieldType)(nil), // 5: google.ads.googleads.v22.services.AssetsWithFieldType + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 6: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 7: google.protobuf.FieldMask - (*common.PolicyValidationParameter)(nil), // 8: google.ads.googleads.v21.common.PolicyValidationParameter - (*resources.AdGroupAd)(nil), // 9: google.ads.googleads.v21.resources.AdGroupAd + (*common.PolicyValidationParameter)(nil), // 8: google.ads.googleads.v22.common.PolicyValidationParameter + (*resources.AdGroupAd)(nil), // 9: google.ads.googleads.v22.resources.AdGroupAd (*status.Status)(nil), // 10: google.rpc.Status - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 11: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 11: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType (*emptypb.Empty)(nil), // 12: google.protobuf.Empty } -var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupAdsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupAdOperation - 6, // 1: google.ads.googleads.v21.services.MutateAdGroupAdsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 7, // 2: google.ads.googleads.v21.services.AdGroupAdOperation.update_mask:type_name -> google.protobuf.FieldMask - 8, // 3: google.ads.googleads.v21.services.AdGroupAdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v21.common.PolicyValidationParameter - 9, // 4: google.ads.googleads.v21.services.AdGroupAdOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupAd - 9, // 5: google.ads.googleads.v21.services.AdGroupAdOperation.update:type_name -> google.ads.googleads.v21.resources.AdGroupAd - 10, // 6: google.ads.googleads.v21.services.MutateAdGroupAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 7: google.ads.googleads.v21.services.MutateAdGroupAdsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupAdResult - 9, // 8: google.ads.googleads.v21.services.MutateAdGroupAdResult.ad_group_ad:type_name -> google.ads.googleads.v21.resources.AdGroupAd - 5, // 9: google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest.assets_with_field_type:type_name -> google.ads.googleads.v21.services.AssetsWithFieldType - 11, // 10: google.ads.googleads.v21.services.AssetsWithFieldType.asset_field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 0, // 11: google.ads.googleads.v21.services.AdGroupAdService.MutateAdGroupAds:input_type -> google.ads.googleads.v21.services.MutateAdGroupAdsRequest - 4, // 12: google.ads.googleads.v21.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets:input_type -> google.ads.googleads.v21.services.RemoveAutomaticallyCreatedAssetsRequest - 2, // 13: google.ads.googleads.v21.services.AdGroupAdService.MutateAdGroupAds:output_type -> google.ads.googleads.v21.services.MutateAdGroupAdsResponse - 12, // 14: google.ads.googleads.v21.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets:output_type -> google.protobuf.Empty +var file_google_ads_googleads_v22_services_ad_group_ad_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupAdsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupAdOperation + 6, // 1: google.ads.googleads.v22.services.MutateAdGroupAdsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 7, // 2: google.ads.googleads.v22.services.AdGroupAdOperation.update_mask:type_name -> google.protobuf.FieldMask + 8, // 3: google.ads.googleads.v22.services.AdGroupAdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v22.common.PolicyValidationParameter + 9, // 4: google.ads.googleads.v22.services.AdGroupAdOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupAd + 9, // 5: google.ads.googleads.v22.services.AdGroupAdOperation.update:type_name -> google.ads.googleads.v22.resources.AdGroupAd + 10, // 6: google.ads.googleads.v22.services.MutateAdGroupAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 7: google.ads.googleads.v22.services.MutateAdGroupAdsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupAdResult + 9, // 8: google.ads.googleads.v22.services.MutateAdGroupAdResult.ad_group_ad:type_name -> google.ads.googleads.v22.resources.AdGroupAd + 5, // 9: google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest.assets_with_field_type:type_name -> google.ads.googleads.v22.services.AssetsWithFieldType + 11, // 10: google.ads.googleads.v22.services.AssetsWithFieldType.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 0, // 11: google.ads.googleads.v22.services.AdGroupAdService.MutateAdGroupAds:input_type -> google.ads.googleads.v22.services.MutateAdGroupAdsRequest + 4, // 12: google.ads.googleads.v22.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets:input_type -> google.ads.googleads.v22.services.RemoveAutomaticallyCreatedAssetsRequest + 2, // 13: google.ads.googleads.v22.services.AdGroupAdService.MutateAdGroupAds:output_type -> google.ads.googleads.v22.services.MutateAdGroupAdsResponse + 12, // 14: google.ads.googleads.v22.services.AdGroupAdService.RemoveAutomaticallyCreatedAssets:output_type -> google.protobuf.Empty 13, // [13:15] is the sub-list for method output_type 11, // [11:13] is the sub-list for method input_type 11, // [11:11] is the sub-list for extension type_name @@ -724,12 +724,12 @@ var file_google_ads_googleads_v21_services_ad_group_ad_service_proto_depIdxs = [ 0, // [0:11] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_ad_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_ad_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_ad_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_ad_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_ad_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_ad_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupAdOperation_Create)(nil), (*AdGroupAdOperation_Update)(nil), (*AdGroupAdOperation_Remove)(nil), @@ -738,17 +738,17 @@ func file_google_ads_googleads_v21_services_ad_group_ad_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_ad_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_ad_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_ad_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_ad_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_ad_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_ad_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_ad_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_ad_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_ad_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_ad_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 32d76ea3..74d82a88 100644 --- a/services/ad_group_ad_service_grpc.pb.go +++ b/services/ad_group_ad_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_ad_service.proto +// source: google/ads/googleads/v22/services/ad_group_ad_service.proto package services @@ -34,8 +34,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupAdService_MutateAdGroupAds_FullMethodName = "/google.ads.googleads.v21.services.AdGroupAdService/MutateAdGroupAds" - AdGroupAdService_RemoveAutomaticallyCreatedAssets_FullMethodName = "/google.ads.googleads.v21.services.AdGroupAdService/RemoveAutomaticallyCreatedAssets" + AdGroupAdService_MutateAdGroupAds_FullMethodName = "/google.ads.googleads.v22.services.AdGroupAdService/MutateAdGroupAds" + AdGroupAdService_RemoveAutomaticallyCreatedAssets_FullMethodName = "/google.ads.googleads.v22.services.AdGroupAdService/RemoveAutomaticallyCreatedAssets" ) // AdGroupAdServiceClient is the client API for AdGroupAdService service. @@ -281,7 +281,7 @@ func _AdGroupAdService_RemoveAutomaticallyCreatedAssets_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 AdGroupAdService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.AdGroupAdService", + ServiceName: "google.ads.googleads.v22.services.AdGroupAdService", HandlerType: (*AdGroupAdServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -294,5 +294,5 @@ var AdGroupAdService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_ad_service.proto", + Metadata: "google/ads/googleads/v22/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 a7c90ffd..d0330617 100644 --- a/services/ad_group_asset_service.pb.go +++ b/services/ad_group_asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_asset_service.proto +// source: google/ads/googleads/v22/services/ad_group_asset_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdGroupAssetService.MutateAdGroupAssets][google.ads.googleads.v21.services.AdGroupAssetService.MutateAdGroupAssets]. +// [AdGroupAssetService.MutateAdGroupAssets][google.ads.googleads.v22.services.AdGroupAssetService.MutateAdGroupAssets]. type MutateAdGroupAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad group assets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupAssetsRequest) Reset() { *x = MutateAdGroupAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAdGroupAssetsRequest) String() string { func (*MutateAdGroupAssetsRequest) ProtoMessage() {} func (x *MutateAdGroupAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAdGroupAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAssetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type AdGroupAssetOperation struct { func (x *AdGroupAssetOperation) Reset() { *x = AdGroupAssetOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *AdGroupAssetOperation) String() string { func (*AdGroupAssetOperation) ProtoMessage() {} func (x *AdGroupAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *AdGroupAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetOperation.ProtoReflect.Descriptor instead. func (*AdGroupAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateAdGroupAssetsResponse struct { func (x *MutateAdGroupAssetsResponse) Reset() { *x = MutateAdGroupAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateAdGroupAssetsResponse) String() string { func (*MutateAdGroupAssetsResponse) ProtoMessage() {} func (x *MutateAdGroupAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateAdGroupAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAssetsResponse) GetPartialFailureError() *status.Status { @@ -319,7 +319,7 @@ type MutateAdGroupAssetResult struct { func (x *MutateAdGroupAssetResult) Reset() { *x = MutateAdGroupAssetResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateAdGroupAssetResult) String() string { func (*MutateAdGroupAssetResult) ProtoMessage() {} func (x *MutateAdGroupAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateAdGroupAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAssetResult) GetResourceName() string { @@ -361,21 +361,21 @@ func (x *MutateAdGroupAssetResult) GetAdGroupAsset() *resources.AdGroupAsset { return nil } -var File_google_ads_googleads_v21_services_ad_group_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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,12 +419,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -440,7 +440,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -453,23 +453,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, @@ -478,58 +478,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_asset_service_proto_goTypes = []any{ - (*MutateAdGroupAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupAssetsRequest - (*AdGroupAssetOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupAssetOperation - (*MutateAdGroupAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupAssetsResponse - (*MutateAdGroupAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_asset_service_proto_goTypes = []any{ + (*MutateAdGroupAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupAssetsRequest + (*AdGroupAssetOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupAssetOperation + (*MutateAdGroupAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupAssetsResponse + (*MutateAdGroupAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroupAsset)(nil), // 6: google.ads.googleads.v21.resources.AdGroupAsset + (*resources.AdGroupAsset)(nil), // 6: google.ads.googleads.v22.resources.AdGroupAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupAssetOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupAssetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdGroupAssetOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupAsset - 6, // 4: google.ads.googleads.v21.services.AdGroupAssetOperation.update:type_name -> google.ads.googleads.v21.resources.AdGroupAsset - 7, // 5: google.ads.googleads.v21.services.MutateAdGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAdGroupAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupAssetResult - 6, // 7: google.ads.googleads.v21.services.MutateAdGroupAssetResult.ad_group_asset:type_name -> google.ads.googleads.v21.resources.AdGroupAsset - 0, // 8: google.ads.googleads.v21.services.AdGroupAssetService.MutateAdGroupAssets:input_type -> google.ads.googleads.v21.services.MutateAdGroupAssetsRequest - 2, // 9: google.ads.googleads.v21.services.AdGroupAssetService.MutateAdGroupAssets:output_type -> google.ads.googleads.v21.services.MutateAdGroupAssetsResponse +var file_google_ads_googleads_v22_services_ad_group_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupAssetOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupAssetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdGroupAssetOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupAsset + 6, // 4: google.ads.googleads.v22.services.AdGroupAssetOperation.update:type_name -> google.ads.googleads.v22.resources.AdGroupAsset + 7, // 5: google.ads.googleads.v22.services.MutateAdGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAdGroupAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupAssetResult + 6, // 7: google.ads.googleads.v22.services.MutateAdGroupAssetResult.ad_group_asset:type_name -> google.ads.googleads.v22.resources.AdGroupAsset + 0, // 8: google.ads.googleads.v22.services.AdGroupAssetService.MutateAdGroupAssets:input_type -> google.ads.googleads.v22.services.MutateAdGroupAssetsRequest + 2, // 9: google.ads.googleads.v22.services.AdGroupAssetService.MutateAdGroupAssets:output_type -> google.ads.googleads.v22.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 @@ -537,12 +537,12 @@ var file_google_ads_googleads_v21_services_ad_group_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupAssetOperation_Create)(nil), (*AdGroupAssetOperation_Update)(nil), (*AdGroupAssetOperation_Remove)(nil), @@ -551,17 +551,17 @@ func file_google_ads_googleads_v21_services_ad_group_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_asset_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_asset_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 eb9fa9fc..1b1ff647 100644 --- a/services/ad_group_asset_service_grpc.pb.go +++ b/services/ad_group_asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_asset_service.proto +// source: google/ads/googleads/v22/services/ad_group_asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupAssetService_MutateAdGroupAssets_FullMethodName = "/google.ads.googleads.v21.services.AdGroupAssetService/MutateAdGroupAssets" + AdGroupAssetService_MutateAdGroupAssets_FullMethodName = "/google.ads.googleads.v22.services.AdGroupAssetService/MutateAdGroupAssets" ) // AdGroupAssetServiceClient is the client API for AdGroupAssetService service. @@ -158,7 +158,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.v21.services.AdGroupAssetService", + ServiceName: "google.ads.googleads.v22.services.AdGroupAssetService", HandlerType: (*AdGroupAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -167,5 +167,5 @@ var AdGroupAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_asset_service.proto", + Metadata: "google/ads/googleads/v22/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 bcdf8511..d7b5616d 100644 --- a/services/ad_group_asset_set_service.pb.go +++ b/services/ad_group_asset_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_asset_set_service.proto +// source: google/ads/googleads/v22/services/ad_group_asset_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupAssetSetService.MutateAdGroupAssetSets][google.ads.googleads.v21.services.AdGroupAssetSetService.MutateAdGroupAssetSets]. +// [AdGroupAssetSetService.MutateAdGroupAssetSets][google.ads.googleads.v22.services.AdGroupAssetSetService.MutateAdGroupAssetSets]. type MutateAdGroupAssetSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad group asset sets are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupAssetSetsRequest) Reset() { *x = MutateAdGroupAssetSetsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdGroupAssetSetsRequest) String() string { func (*MutateAdGroupAssetSetsRequest) ProtoMessage() {} func (x *MutateAdGroupAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAdGroupAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupAssetSetsRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type AdGroupAssetSetOperation struct { func (x *AdGroupAssetSetOperation) Reset() { *x = AdGroupAssetSetOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *AdGroupAssetSetOperation) String() string { func (*AdGroupAssetSetOperation) ProtoMessage() {} func (x *AdGroupAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *AdGroupAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupAssetSetOperation.ProtoReflect.Descriptor instead. func (*AdGroupAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupAssetSetOperation) GetOperation() isAdGroupAssetSetOperation_Operation { @@ -235,7 +235,7 @@ type MutateAdGroupAssetSetsResponse struct { func (x *MutateAdGroupAssetSetsResponse) Reset() { *x = MutateAdGroupAssetSetsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateAdGroupAssetSetsResponse) String() string { func (*MutateAdGroupAssetSetsResponse) ProtoMessage() {} func (x *MutateAdGroupAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateAdGroupAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupAssetSetsResponse) GetResults() []*MutateAdGroupAssetSetResult { @@ -292,7 +292,7 @@ type MutateAdGroupAssetSetResult struct { func (x *MutateAdGroupAssetSetResult) Reset() { *x = MutateAdGroupAssetSetResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateAdGroupAssetSetResult) String() string { func (*MutateAdGroupAssetSetResult) ProtoMessage() {} func (x *MutateAdGroupAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateAdGroupAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupAssetSetResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateAdGroupAssetSetResult) GetAdGroupAssetSet() *resources.AdGroupAss return nil } -var File_google_ads_googleads_v21_services_ad_group_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, + 0x76, 0x32, 0x32, 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, @@ -378,7 +378,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,16 +426,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x32, 0x32, 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, @@ -445,55 +445,55 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x41, 0x64, 0x47, 0x72, + 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_goTypes = []any{ - (*MutateAdGroupAssetSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest - (*AdGroupAssetSetOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupAssetSetOperation - (*MutateAdGroupAssetSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse - (*MutateAdGroupAssetSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupAssetSet)(nil), // 5: google.ads.googleads.v21.resources.AdGroupAssetSet +var file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_goTypes = []any{ + (*MutateAdGroupAssetSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest + (*AdGroupAssetSetOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupAssetSetOperation + (*MutateAdGroupAssetSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupAssetSetsResponse + (*MutateAdGroupAssetSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupAssetSet)(nil), // 5: google.ads.googleads.v22.resources.AdGroupAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupAssetSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupAssetSetOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupAssetSet - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupAssetSetResult - 6, // 4: google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateAdGroupAssetSetResult.ad_group_asset_set:type_name -> google.ads.googleads.v21.resources.AdGroupAssetSet - 0, // 6: google.ads.googleads.v21.services.AdGroupAssetSetService.MutateAdGroupAssetSets:input_type -> google.ads.googleads.v21.services.MutateAdGroupAssetSetsRequest - 2, // 7: google.ads.googleads.v21.services.AdGroupAssetSetService.MutateAdGroupAssetSets:output_type -> google.ads.googleads.v21.services.MutateAdGroupAssetSetsResponse +var file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupAssetSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupAssetSetOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupAssetSet + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupAssetSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupAssetSetResult + 6, // 4: google.ads.googleads.v22.services.MutateAdGroupAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateAdGroupAssetSetResult.ad_group_asset_set:type_name -> google.ads.googleads.v22.resources.AdGroupAssetSet + 0, // 6: google.ads.googleads.v22.services.AdGroupAssetSetService.MutateAdGroupAssetSets:input_type -> google.ads.googleads.v22.services.MutateAdGroupAssetSetsRequest + 2, // 7: google.ads.googleads.v22.services.AdGroupAssetSetService.MutateAdGroupAssetSets:output_type -> google.ads.googleads.v22.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 @@ -501,12 +501,12 @@ var file_google_ads_googleads_v21_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_v21_services_ad_group_asset_set_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_asset_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupAssetSetOperation_Create)(nil), (*AdGroupAssetSetOperation_Remove)(nil), } @@ -514,17 +514,17 @@ func file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_asset_set_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_asset_set_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 812f000d..e064f7cd 100644 --- a/services/ad_group_asset_set_service_grpc.pb.go +++ b/services/ad_group_asset_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_asset_set_service.proto +// source: google/ads/googleads/v22/services/ad_group_asset_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName = "/google.ads.googleads.v21.services.AdGroupAssetSetService/MutateAdGroupAssetSets" + AdGroupAssetSetService_MutateAdGroupAssetSets_FullMethodName = "/google.ads.googleads.v22.services.AdGroupAssetSetService/MutateAdGroupAssetSets" ) // AdGroupAssetSetServiceClient is the client API for AdGroupAssetSetService service. @@ -131,7 +131,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.v21.services.AdGroupAssetSetService", + ServiceName: "google.ads.googleads.v22.services.AdGroupAssetSetService", HandlerType: (*AdGroupAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AdGroupAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_asset_set_service.proto", + Metadata: "google/ads/googleads/v22/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 29d5cb80..2b572b11 100644 --- a/services/ad_group_bid_modifier_service.pb.go +++ b/services/ad_group_bid_modifier_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_bid_modifier_service.proto +// source: google/ads/googleads/v22/services/ad_group_bid_modifier_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdGroupBidModifierService.MutateAdGroupBidModifiers][google.ads.googleads.v21.services.AdGroupBidModifierService.MutateAdGroupBidModifiers]. +// [AdGroupBidModifierService.MutateAdGroupBidModifiers][google.ads.googleads.v22.services.AdGroupBidModifierService.MutateAdGroupBidModifiers]. type MutateAdGroupBidModifiersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose ad group bid modifiers are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupBidModifiersRequest) Reset() { *x = MutateAdGroupBidModifiersRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateAdGroupBidModifiersRequest) String() string { func (*MutateAdGroupBidModifiersRequest) ProtoMessage() {} func (x *MutateAdGroupBidModifiersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateAdGroupBidModifiersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupBidModifiersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifiersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupBidModifiersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type AdGroupBidModifierOperation struct { func (x *AdGroupBidModifierOperation) Reset() { *x = AdGroupBidModifierOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *AdGroupBidModifierOperation) String() string { func (*AdGroupBidModifierOperation) ProtoMessage() {} func (x *AdGroupBidModifierOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *AdGroupBidModifierOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupBidModifierOperation.ProtoReflect.Descriptor instead. func (*AdGroupBidModifierOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupBidModifierOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -264,7 +264,7 @@ type MutateAdGroupBidModifiersResponse struct { func (x *MutateAdGroupBidModifiersResponse) Reset() { *x = MutateAdGroupBidModifiersResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateAdGroupBidModifiersResponse) String() string { func (*MutateAdGroupBidModifiersResponse) ProtoMessage() {} func (x *MutateAdGroupBidModifiersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateAdGroupBidModifiersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAdGroupBidModifiersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifiersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupBidModifiersResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateAdGroupBidModifierResult struct { func (x *MutateAdGroupBidModifierResult) Reset() { *x = MutateAdGroupBidModifierResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateAdGroupBidModifierResult) String() string { func (*MutateAdGroupBidModifierResult) ProtoMessage() {} func (x *MutateAdGroupBidModifierResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateAdGroupBidModifierResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupBidModifierResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupBidModifierResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupBidModifierResult) GetResourceName() string { @@ -363,21 +363,21 @@ func (x *MutateAdGroupBidModifierResult) GetAdGroupBidModifier() *resources.AdGr return nil } -var File_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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,12 +423,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -460,7 +460,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -469,16 +469,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x32, 0x32, 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, @@ -488,58 +488,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_goTypes = []any{ - (*MutateAdGroupBidModifiersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest - (*AdGroupBidModifierOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupBidModifierOperation - (*MutateAdGroupBidModifiersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse - (*MutateAdGroupBidModifierResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupBidModifierResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_goTypes = []any{ + (*MutateAdGroupBidModifiersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest + (*AdGroupBidModifierOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupBidModifierOperation + (*MutateAdGroupBidModifiersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupBidModifiersResponse + (*MutateAdGroupBidModifierResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupBidModifierResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroupBidModifier)(nil), // 6: google.ads.googleads.v21.resources.AdGroupBidModifier + (*resources.AdGroupBidModifier)(nil), // 6: google.ads.googleads.v22.resources.AdGroupBidModifier (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupBidModifierOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdGroupBidModifierOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupBidModifier - 6, // 4: google.ads.googleads.v21.services.AdGroupBidModifierOperation.update:type_name -> google.ads.googleads.v21.resources.AdGroupBidModifier - 7, // 5: google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupBidModifierResult - 6, // 7: google.ads.googleads.v21.services.MutateAdGroupBidModifierResult.ad_group_bid_modifier:type_name -> google.ads.googleads.v21.resources.AdGroupBidModifier - 0, // 8: google.ads.googleads.v21.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:input_type -> google.ads.googleads.v21.services.MutateAdGroupBidModifiersRequest - 2, // 9: google.ads.googleads.v21.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:output_type -> google.ads.googleads.v21.services.MutateAdGroupBidModifiersResponse +var file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupBidModifierOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdGroupBidModifierOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupBidModifier + 6, // 4: google.ads.googleads.v22.services.AdGroupBidModifierOperation.update:type_name -> google.ads.googleads.v22.resources.AdGroupBidModifier + 7, // 5: google.ads.googleads.v22.services.MutateAdGroupBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAdGroupBidModifiersResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupBidModifierResult + 6, // 7: google.ads.googleads.v22.services.MutateAdGroupBidModifierResult.ad_group_bid_modifier:type_name -> google.ads.googleads.v22.resources.AdGroupBidModifier + 0, // 8: google.ads.googleads.v22.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:input_type -> google.ads.googleads.v22.services.MutateAdGroupBidModifiersRequest + 2, // 9: google.ads.googleads.v22.services.AdGroupBidModifierService.MutateAdGroupBidModifiers:output_type -> google.ads.googleads.v22.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 @@ -547,12 +547,12 @@ var file_google_ads_googleads_v21_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_v21_services_ad_group_bid_modifier_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupBidModifierOperation_Create)(nil), (*AdGroupBidModifierOperation_Update)(nil), (*AdGroupBidModifierOperation_Remove)(nil), @@ -561,17 +561,17 @@ func file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 6ac274d8..902f02e4 100644 --- a/services/ad_group_bid_modifier_service_grpc.pb.go +++ b/services/ad_group_bid_modifier_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_bid_modifier_service.proto +// source: google/ads/googleads/v22/services/ad_group_bid_modifier_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName = "/google.ads.googleads.v21.services.AdGroupBidModifierService/MutateAdGroupBidModifiers" + AdGroupBidModifierService_MutateAdGroupBidModifiers_FullMethodName = "/google.ads.googleads.v22.services.AdGroupBidModifierService/MutateAdGroupBidModifiers" ) // AdGroupBidModifierServiceClient is the client API for AdGroupBidModifierService service. @@ -183,7 +183,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.v21.services.AdGroupBidModifierService", + ServiceName: "google.ads.googleads.v22.services.AdGroupBidModifierService", HandlerType: (*AdGroupBidModifierServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -192,5 +192,5 @@ var AdGroupBidModifierService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_bid_modifier_service.proto", + Metadata: "google/ads/googleads/v22/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 26f2f625..263f6336 100644 --- a/services/ad_group_criterion_customizer_service.pb.go +++ b/services/ad_group_criterion_customizer_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_customizer_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_customizer_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers][google.ads.googleads.v21.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers]. +// [AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers][google.ads.googleads.v22.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers]. type MutateAdGroupCriterionCustomizersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad group criterion customizers are @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupCriterionCustomizersRequest) Reset() { *x = MutateAdGroupCriterionCustomizersRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdGroupCriterionCustomizersRequest) String() string { func (*MutateAdGroupCriterionCustomizersRequest) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAdGroupCriterionCustomizersRequest) ProtoReflect() protoreflect.M // Deprecated: Use MutateAdGroupCriterionCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriterionCustomizersRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type AdGroupCriterionCustomizerOperation struct { func (x *AdGroupCriterionCustomizerOperation) Reset() { *x = AdGroupCriterionCustomizerOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *AdGroupCriterionCustomizerOperation) String() string { func (*AdGroupCriterionCustomizerOperation) ProtoMessage() {} func (x *AdGroupCriterionCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *AdGroupCriterionCustomizerOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use AdGroupCriterionCustomizerOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupCriterionCustomizerOperation) GetOperation() isAdGroupCriterionCustomizerOperation_Operation { @@ -238,7 +238,7 @@ type MutateAdGroupCriterionCustomizersResponse struct { func (x *MutateAdGroupCriterionCustomizersResponse) Reset() { *x = MutateAdGroupCriterionCustomizersResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -250,7 +250,7 @@ func (x *MutateAdGroupCriterionCustomizersResponse) String() string { func (*MutateAdGroupCriterionCustomizersResponse) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -263,7 +263,7 @@ func (x *MutateAdGroupCriterionCustomizersResponse) ProtoReflect() protoreflect. // Deprecated: Use MutateAdGroupCriterionCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriterionCustomizersResponse) GetResults() []*MutateAdGroupCriterionCustomizerResult { @@ -295,7 +295,7 @@ type MutateAdGroupCriterionCustomizerResult struct { func (x *MutateAdGroupCriterionCustomizerResult) Reset() { *x = MutateAdGroupCriterionCustomizerResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -307,7 +307,7 @@ func (x *MutateAdGroupCriterionCustomizerResult) String() string { func (*MutateAdGroupCriterionCustomizerResult) ProtoMessage() {} func (x *MutateAdGroupCriterionCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -320,7 +320,7 @@ func (x *MutateAdGroupCriterionCustomizerResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateAdGroupCriterionCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionCustomizerResult) GetResourceName() string { @@ -337,22 +337,22 @@ func (x *MutateAdGroupCriterionCustomizerResult) GetAdGroupCriterionCustomizer() return nil } -var File_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -429,7 +429,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -440,17 +440,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x32, 0x32, 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, @@ -461,55 +461,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x26, 0x41, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_goTypes = []any{ - (*MutateAdGroupCriterionCustomizersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest - (*AdGroupCriterionCustomizerOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupCriterionCustomizerOperation - (*MutateAdGroupCriterionCustomizersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse - (*MutateAdGroupCriterionCustomizerResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupCriterionCustomizer)(nil), // 5: google.ads.googleads.v21.resources.AdGroupCriterionCustomizer +var file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_goTypes = []any{ + (*MutateAdGroupCriterionCustomizersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest + (*AdGroupCriterionCustomizerOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupCriterionCustomizerOperation + (*MutateAdGroupCriterionCustomizersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersResponse + (*MutateAdGroupCriterionCustomizerResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupCriterionCustomizer)(nil), // 5: google.ads.googleads.v22.resources.AdGroupCriterionCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupCriterionCustomizerOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupCriterionCustomizerOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionCustomizer - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizerResult - 6, // 4: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizerResult.ad_group_criterion_customizer:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionCustomizer - 0, // 6: google.ads.googleads.v21.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:input_type -> google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersRequest - 2, // 7: google.ads.googleads.v21.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:output_type -> google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizersResponse +var file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupCriterionCustomizerOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupCriterionCustomizerOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionCustomizer + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizerResult + 6, // 4: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizerResult.ad_group_criterion_customizer:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionCustomizer + 0, // 6: google.ads.googleads.v22.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:input_type -> google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizersRequest + 2, // 7: google.ads.googleads.v22.services.AdGroupCriterionCustomizerService.MutateAdGroupCriterionCustomizers:output_type -> google.ads.googleads.v22.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 @@ -518,13 +518,13 @@ var file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service } func init() { - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto != nil { +func file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupCriterionCustomizerOperation_Create)(nil), (*AdGroupCriterionCustomizerOperation_Remove)(nil), } @@ -532,17 +532,17 @@ func file_google_ads_googleads_v21_services_ad_group_criterion_customizer_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 7189959b..1c5046c6 100644 --- a/services/ad_group_criterion_customizer_service_grpc.pb.go +++ b/services/ad_group_criterion_customizer_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_customizer_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_customizer_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName = "/google.ads.googleads.v21.services.AdGroupCriterionCustomizerService/MutateAdGroupCriterionCustomizers" + AdGroupCriterionCustomizerService_MutateAdGroupCriterionCustomizers_FullMethodName = "/google.ads.googleads.v22.services.AdGroupCriterionCustomizerService/MutateAdGroupCriterionCustomizers" ) // AdGroupCriterionCustomizerServiceClient is the client API for AdGroupCriterionCustomizerService service. @@ -131,7 +131,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.v21.services.AdGroupCriterionCustomizerService", + ServiceName: "google.ads.googleads.v22.services.AdGroupCriterionCustomizerService", HandlerType: (*AdGroupCriterionCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AdGroupCriterionCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_criterion_customizer_service.proto", + Metadata: "google/ads/googleads/v22/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 551f27de..3ddd2c2d 100644 --- a/services/ad_group_criterion_label_service.pb.go +++ b/services/ad_group_criterion_label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_label_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupCriterionLabelService.MutateAdGroupCriterionLabels][google.ads.googleads.v21.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels]. +// [AdGroupCriterionLabelService.MutateAdGroupCriterionLabels][google.ads.googleads.v22.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels]. type MutateAdGroupCriterionLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose ad group criterion labels are being @@ -61,7 +61,7 @@ type MutateAdGroupCriterionLabelsRequest struct { func (x *MutateAdGroupCriterionLabelsRequest) Reset() { *x = MutateAdGroupCriterionLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateAdGroupCriterionLabelsRequest) String() string { func (*MutateAdGroupCriterionLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MutateAdGroupCriterionLabelsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateAdGroupCriterionLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriterionLabelsRequest) GetCustomerId() string { @@ -133,7 +133,7 @@ type AdGroupCriterionLabelOperation struct { func (x *AdGroupCriterionLabelOperation) Reset() { *x = AdGroupCriterionLabelOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -145,7 +145,7 @@ func (x *AdGroupCriterionLabelOperation) String() string { func (*AdGroupCriterionLabelOperation) ProtoMessage() {} func (x *AdGroupCriterionLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -158,7 +158,7 @@ func (x *AdGroupCriterionLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupCriterionLabelOperation) GetOperation() isAdGroupCriterionLabelOperation_Operation { @@ -224,7 +224,7 @@ type MutateAdGroupCriterionLabelsResponse struct { func (x *MutateAdGroupCriterionLabelsResponse) Reset() { *x = MutateAdGroupCriterionLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -236,7 +236,7 @@ func (x *MutateAdGroupCriterionLabelsResponse) String() string { func (*MutateAdGroupCriterionLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -249,7 +249,7 @@ func (x *MutateAdGroupCriterionLabelsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateAdGroupCriterionLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriterionLabelsResponse) GetPartialFailureError() *status.Status { @@ -277,7 +277,7 @@ type MutateAdGroupCriterionLabelResult struct { func (x *MutateAdGroupCriterionLabelResult) Reset() { *x = MutateAdGroupCriterionLabelResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -289,7 +289,7 @@ func (x *MutateAdGroupCriterionLabelResult) String() string { func (*MutateAdGroupCriterionLabelResult) ProtoMessage() {} func (x *MutateAdGroupCriterionLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -302,7 +302,7 @@ func (x *MutateAdGroupCriterionLabelResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateAdGroupCriterionLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionLabelResult) GetResourceName() string { @@ -312,18 +312,18 @@ func (x *MutateAdGroupCriterionLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -342,7 +342,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -355,7 +355,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -391,17 +391,17 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, @@ -411,52 +411,52 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x21, 0x41, 0x64, 0x47, 0x72, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_goTypes = []any{ - (*MutateAdGroupCriterionLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsRequest - (*AdGroupCriterionLabelOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupCriterionLabelOperation - (*MutateAdGroupCriterionLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse - (*MutateAdGroupCriterionLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelResult - (*resources.AdGroupCriterionLabel)(nil), // 4: google.ads.googleads.v21.resources.AdGroupCriterionLabel +var file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_goTypes = []any{ + (*MutateAdGroupCriterionLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsRequest + (*AdGroupCriterionLabelOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupCriterionLabelOperation + (*MutateAdGroupCriterionLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsResponse + (*MutateAdGroupCriterionLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelResult + (*resources.AdGroupCriterionLabel)(nil), // 4: google.ads.googleads.v22.resources.AdGroupCriterionLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupCriterionLabelOperation - 4, // 1: google.ads.googleads.v21.services.AdGroupCriterionLabelOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionLabel - 5, // 2: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionLabelResult - 0, // 4: google.ads.googleads.v21.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:input_type -> google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsRequest - 2, // 5: google.ads.googleads.v21.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:output_type -> google.ads.googleads.v21.services.MutateAdGroupCriterionLabelsResponse +var file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupCriterionLabelOperation + 4, // 1: google.ads.googleads.v22.services.AdGroupCriterionLabelOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionLabel + 5, // 2: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionLabelResult + 0, // 4: google.ads.googleads.v22.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:input_type -> google.ads.googleads.v22.services.MutateAdGroupCriterionLabelsRequest + 2, // 5: google.ads.googleads.v22.services.AdGroupCriterionLabelService.MutateAdGroupCriterionLabels:output_type -> google.ads.googleads.v22.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 @@ -464,12 +464,12 @@ var file_google_ads_googleads_v21_services_ad_group_criterion_label_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupCriterionLabelOperation_Create)(nil), (*AdGroupCriterionLabelOperation_Remove)(nil), } @@ -477,17 +477,17 @@ func file_google_ads_googleads_v21_services_ad_group_criterion_label_service_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ce191035..d707b58b 100644 --- a/services/ad_group_criterion_label_service_grpc.pb.go +++ b/services/ad_group_criterion_label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName = "/google.ads.googleads.v21.services.AdGroupCriterionLabelService/MutateAdGroupCriterionLabels" + AdGroupCriterionLabelService_MutateAdGroupCriterionLabels_FullMethodName = "/google.ads.googleads.v22.services.AdGroupCriterionLabelService/MutateAdGroupCriterionLabels" ) // AdGroupCriterionLabelServiceClient is the client API for AdGroupCriterionLabelService service. @@ -153,7 +153,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.v21.services.AdGroupCriterionLabelService", + ServiceName: "google.ads.googleads.v22.services.AdGroupCriterionLabelService", HandlerType: (*AdGroupCriterionLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -162,5 +162,5 @@ var AdGroupCriterionLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_criterion_label_service.proto", + Metadata: "google/ads/googleads/v22/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 7006b23d..e1b9566f 100644 --- a/services/ad_group_criterion_service.pb.go +++ b/services/ad_group_criterion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [AdGroupCriterionService.MutateAdGroupCriteria][google.ads.googleads.v21.services.AdGroupCriterionService.MutateAdGroupCriteria]. +// [AdGroupCriterionService.MutateAdGroupCriteria][google.ads.googleads.v22.services.AdGroupCriterionService.MutateAdGroupCriteria]. type MutateAdGroupCriteriaRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose criteria are being modified. @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupCriteriaRequest) Reset() { *x = MutateAdGroupCriteriaRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdGroupCriteriaRequest) String() string { func (*MutateAdGroupCriteriaRequest) ProtoMessage() {} func (x *MutateAdGroupCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAdGroupCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCriteriaRequest) GetCustomerId() string { @@ -158,7 +158,7 @@ type AdGroupCriterionOperation struct { func (x *AdGroupCriterionOperation) Reset() { *x = AdGroupCriterionOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -170,7 +170,7 @@ func (x *AdGroupCriterionOperation) String() string { func (*AdGroupCriterionOperation) ProtoMessage() {} func (x *AdGroupCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -183,7 +183,7 @@ func (x *AdGroupCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCriterionOperation.ProtoReflect.Descriptor instead. func (*AdGroupCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupCriterionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -279,7 +279,7 @@ type MutateAdGroupCriteriaResponse struct { func (x *MutateAdGroupCriteriaResponse) Reset() { *x = MutateAdGroupCriteriaResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *MutateAdGroupCriteriaResponse) String() string { func (*MutateAdGroupCriteriaResponse) ProtoMessage() {} func (x *MutateAdGroupCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *MutateAdGroupCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCriteriaResponse) GetPartialFailureError() *status.Status { @@ -336,7 +336,7 @@ type MutateAdGroupCriterionResult struct { func (x *MutateAdGroupCriterionResult) Reset() { *x = MutateAdGroupCriterionResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -348,7 +348,7 @@ func (x *MutateAdGroupCriterionResult) String() string { func (*MutateAdGroupCriterionResult) ProtoMessage() {} func (x *MutateAdGroupCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -361,7 +361,7 @@ func (x *MutateAdGroupCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCriterionResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCriterionResult) GetResourceName() string { @@ -378,24 +378,24 @@ func (x *MutateAdGroupCriterionResult) GetAdGroupCriterion() *resources.AdGroupC return nil } -var File_google_ads_googleads_v21_services_ad_group_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -416,7 +416,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x32, 0x32, 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, @@ -427,7 +427,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -442,18 +442,18 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x56, + 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x64, 0x47, 0x72, + 0x32, 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, @@ -470,7 +470,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, @@ -483,7 +483,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -491,16 +491,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, @@ -510,60 +510,60 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_goTypes = []any{ - (*MutateAdGroupCriteriaRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest - (*AdGroupCriterionOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupCriterionOperation - (*MutateAdGroupCriteriaResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse - (*MutateAdGroupCriterionResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_goTypes = []any{ + (*MutateAdGroupCriteriaRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest + (*AdGroupCriterionOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupCriterionOperation + (*MutateAdGroupCriteriaResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupCriteriaResponse + (*MutateAdGroupCriterionResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*common.PolicyViolationKey)(nil), // 6: google.ads.googleads.v21.common.PolicyViolationKey - (*resources.AdGroupCriterion)(nil), // 7: google.ads.googleads.v21.resources.AdGroupCriterion + (*common.PolicyViolationKey)(nil), // 6: google.ads.googleads.v22.common.PolicyViolationKey + (*resources.AdGroupCriterion)(nil), // 7: google.ads.googleads.v22.resources.AdGroupCriterion (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupCriterionOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdGroupCriterionOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v21.common.PolicyViolationKey - 7, // 4: google.ads.googleads.v21.services.AdGroupCriterionOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion - 7, // 5: google.ads.googleads.v21.services.AdGroupCriterionOperation.update:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion - 8, // 6: google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 7: google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionResult - 7, // 8: google.ads.googleads.v21.services.MutateAdGroupCriterionResult.ad_group_criterion:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion - 0, // 9: google.ads.googleads.v21.services.AdGroupCriterionService.MutateAdGroupCriteria:input_type -> google.ads.googleads.v21.services.MutateAdGroupCriteriaRequest - 2, // 10: google.ads.googleads.v21.services.AdGroupCriterionService.MutateAdGroupCriteria:output_type -> google.ads.googleads.v21.services.MutateAdGroupCriteriaResponse +var file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupCriterionOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdGroupCriterionOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v22.common.PolicyViolationKey + 7, // 4: google.ads.googleads.v22.services.AdGroupCriterionOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion + 7, // 5: google.ads.googleads.v22.services.AdGroupCriterionOperation.update:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion + 8, // 6: google.ads.googleads.v22.services.MutateAdGroupCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 7: google.ads.googleads.v22.services.MutateAdGroupCriteriaResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionResult + 7, // 8: google.ads.googleads.v22.services.MutateAdGroupCriterionResult.ad_group_criterion:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion + 0, // 9: google.ads.googleads.v22.services.AdGroupCriterionService.MutateAdGroupCriteria:input_type -> google.ads.googleads.v22.services.MutateAdGroupCriteriaRequest + 2, // 10: google.ads.googleads.v22.services.AdGroupCriterionService.MutateAdGroupCriteria:output_type -> google.ads.googleads.v22.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 @@ -571,12 +571,12 @@ var file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_depI 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_criterion_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupCriterionOperation_Create)(nil), (*AdGroupCriterionOperation_Update)(nil), (*AdGroupCriterionOperation_Remove)(nil), @@ -585,17 +585,17 @@ func file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_criterion_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_criterion_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 77c80719..3af734ae 100644 --- a/services/ad_group_criterion_service_grpc.pb.go +++ b/services/ad_group_criterion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_criterion_service.proto +// source: google/ads/googleads/v22/services/ad_group_criterion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName = "/google.ads.googleads.v21.services.AdGroupCriterionService/MutateAdGroupCriteria" + AdGroupCriterionService_MutateAdGroupCriteria_FullMethodName = "/google.ads.googleads.v22.services.AdGroupCriterionService/MutateAdGroupCriteria" ) // AdGroupCriterionServiceClient is the client API for AdGroupCriterionService service. @@ -201,7 +201,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.v21.services.AdGroupCriterionService", + ServiceName: "google.ads.googleads.v22.services.AdGroupCriterionService", HandlerType: (*AdGroupCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -210,5 +210,5 @@ var AdGroupCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_criterion_service.proto", + Metadata: "google/ads/googleads/v22/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 4cb61792..35890e3a 100644 --- a/services/ad_group_customizer_service.pb.go +++ b/services/ad_group_customizer_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_customizer_service.proto +// source: google/ads/googleads/v22/services/ad_group_customizer_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AdGroupCustomizerService.MutateAdGroupCustomizers][google.ads.googleads.v21.services.AdGroupCustomizerService.MutateAdGroupCustomizers]. +// [AdGroupCustomizerService.MutateAdGroupCustomizers][google.ads.googleads.v22.services.AdGroupCustomizerService.MutateAdGroupCustomizers]. type MutateAdGroupCustomizersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad group customizers are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupCustomizersRequest) Reset() { *x = MutateAdGroupCustomizersRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdGroupCustomizersRequest) String() string { func (*MutateAdGroupCustomizersRequest) ProtoMessage() {} func (x *MutateAdGroupCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAdGroupCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupCustomizersRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type AdGroupCustomizerOperation struct { func (x *AdGroupCustomizerOperation) Reset() { *x = AdGroupCustomizerOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *AdGroupCustomizerOperation) String() string { func (*AdGroupCustomizerOperation) ProtoMessage() {} func (x *AdGroupCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *AdGroupCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupCustomizerOperation.ProtoReflect.Descriptor instead. func (*AdGroupCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupCustomizerOperation) GetOperation() isAdGroupCustomizerOperation_Operation { @@ -235,7 +235,7 @@ type MutateAdGroupCustomizersResponse struct { func (x *MutateAdGroupCustomizersResponse) Reset() { *x = MutateAdGroupCustomizersResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateAdGroupCustomizersResponse) String() string { func (*MutateAdGroupCustomizersResponse) ProtoMessage() {} func (x *MutateAdGroupCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateAdGroupCustomizersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupCustomizersResponse) GetResults() []*MutateAdGroupCustomizerResult { @@ -292,7 +292,7 @@ type MutateAdGroupCustomizerResult struct { func (x *MutateAdGroupCustomizerResult) Reset() { *x = MutateAdGroupCustomizerResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateAdGroupCustomizerResult) String() string { func (*MutateAdGroupCustomizerResult) ProtoMessage() {} func (x *MutateAdGroupCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateAdGroupCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupCustomizerResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateAdGroupCustomizerResult) GetAdGroupCustomizer() *resources.AdGrou return nil } -var File_google_ads_googleads_v21_services_ad_group_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -388,7 +388,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -401,7 +401,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -419,7 +419,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -427,17 +427,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x32, 0x32, 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, @@ -447,55 +447,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_goTypes = []any{ - (*MutateAdGroupCustomizersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest - (*AdGroupCustomizerOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupCustomizerOperation - (*MutateAdGroupCustomizersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse - (*MutateAdGroupCustomizerResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AdGroupCustomizer)(nil), // 5: google.ads.googleads.v21.resources.AdGroupCustomizer +var file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_goTypes = []any{ + (*MutateAdGroupCustomizersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest + (*AdGroupCustomizerOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupCustomizerOperation + (*MutateAdGroupCustomizersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupCustomizersResponse + (*MutateAdGroupCustomizerResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AdGroupCustomizer)(nil), // 5: google.ads.googleads.v22.resources.AdGroupCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupCustomizerOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupCustomizerOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupCustomizer - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupCustomizerResult - 6, // 4: google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateAdGroupCustomizerResult.ad_group_customizer:type_name -> google.ads.googleads.v21.resources.AdGroupCustomizer - 0, // 6: google.ads.googleads.v21.services.AdGroupCustomizerService.MutateAdGroupCustomizers:input_type -> google.ads.googleads.v21.services.MutateAdGroupCustomizersRequest - 2, // 7: google.ads.googleads.v21.services.AdGroupCustomizerService.MutateAdGroupCustomizers:output_type -> google.ads.googleads.v21.services.MutateAdGroupCustomizersResponse +var file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupCustomizerOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupCustomizerOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupCustomizer + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupCustomizersResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupCustomizerResult + 6, // 4: google.ads.googleads.v22.services.MutateAdGroupCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateAdGroupCustomizerResult.ad_group_customizer:type_name -> google.ads.googleads.v22.resources.AdGroupCustomizer + 0, // 6: google.ads.googleads.v22.services.AdGroupCustomizerService.MutateAdGroupCustomizers:input_type -> google.ads.googleads.v22.services.MutateAdGroupCustomizersRequest + 2, // 7: google.ads.googleads.v22.services.AdGroupCustomizerService.MutateAdGroupCustomizers:output_type -> google.ads.googleads.v22.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 @@ -503,12 +503,12 @@ var file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_customizer_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupCustomizerOperation_Create)(nil), (*AdGroupCustomizerOperation_Remove)(nil), } @@ -516,17 +516,17 @@ func file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_customizer_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_customizer_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 8e6adf39..a45571c6 100644 --- a/services/ad_group_customizer_service_grpc.pb.go +++ b/services/ad_group_customizer_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_customizer_service.proto +// source: google/ads/googleads/v22/services/ad_group_customizer_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName = "/google.ads.googleads.v21.services.AdGroupCustomizerService/MutateAdGroupCustomizers" + AdGroupCustomizerService_MutateAdGroupCustomizers_FullMethodName = "/google.ads.googleads.v22.services.AdGroupCustomizerService/MutateAdGroupCustomizers" ) // AdGroupCustomizerServiceClient is the client API for AdGroupCustomizerService service. @@ -131,7 +131,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.v21.services.AdGroupCustomizerService", + ServiceName: "google.ads.googleads.v22.services.AdGroupCustomizerService", HandlerType: (*AdGroupCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AdGroupCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_customizer_service.proto", + Metadata: "google/ads/googleads/v22/services/ad_group_customizer_service.proto", } diff --git a/services/ad_group_label_service.pb.go b/services/ad_group_label_service.pb.go index dcdcbfb9..b54056bc 100644 --- a/services/ad_group_label_service.pb.go +++ b/services/ad_group_label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_label_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AdGroupLabelService.MutateAdGroupLabels][google.ads.googleads.v21.services.AdGroupLabelService.MutateAdGroupLabels]. +// [AdGroupLabelService.MutateAdGroupLabels][google.ads.googleads.v22.services.AdGroupLabelService.MutateAdGroupLabels]. type MutateAdGroupLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose ad group labels are being modified. @@ -60,7 +60,7 @@ type MutateAdGroupLabelsRequest struct { func (x *MutateAdGroupLabelsRequest) Reset() { *x = MutateAdGroupLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *MutateAdGroupLabelsRequest) String() string { func (*MutateAdGroupLabelsRequest) ProtoMessage() {} func (x *MutateAdGroupLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *MutateAdGroupLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupLabelsRequest) GetCustomerId() string { @@ -132,7 +132,7 @@ type AdGroupLabelOperation struct { func (x *AdGroupLabelOperation) Reset() { *x = AdGroupLabelOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -144,7 +144,7 @@ func (x *AdGroupLabelOperation) String() string { func (*AdGroupLabelOperation) ProtoMessage() {} func (x *AdGroupLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -157,7 +157,7 @@ func (x *AdGroupLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupLabelOperation.ProtoReflect.Descriptor instead. func (*AdGroupLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupLabelOperation) GetOperation() isAdGroupLabelOperation_Operation { @@ -223,7 +223,7 @@ type MutateAdGroupLabelsResponse struct { func (x *MutateAdGroupLabelsResponse) Reset() { *x = MutateAdGroupLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -235,7 +235,7 @@ func (x *MutateAdGroupLabelsResponse) String() string { func (*MutateAdGroupLabelsResponse) ProtoMessage() {} func (x *MutateAdGroupLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -248,7 +248,7 @@ func (x *MutateAdGroupLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupLabelsResponse) GetPartialFailureError() *status.Status { @@ -276,7 +276,7 @@ type MutateAdGroupLabelResult struct { func (x *MutateAdGroupLabelResult) Reset() { *x = MutateAdGroupLabelResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -288,7 +288,7 @@ func (x *MutateAdGroupLabelResult) String() string { func (*MutateAdGroupLabelResult) ProtoMessage() {} func (x *MutateAdGroupLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -301,7 +301,7 @@ func (x *MutateAdGroupLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupLabelResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupLabelResult) GetResourceName() string { @@ -311,17 +311,17 @@ func (x *MutateAdGroupLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_ad_group_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -339,7 +339,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -351,7 +351,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -368,7 +368,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -382,16 +382,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, @@ -400,52 +400,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_label_service_proto_goTypes = []any{ - (*MutateAdGroupLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupLabelsRequest - (*AdGroupLabelOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupLabelOperation - (*MutateAdGroupLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupLabelsResponse - (*MutateAdGroupLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupLabelResult - (*resources.AdGroupLabel)(nil), // 4: google.ads.googleads.v21.resources.AdGroupLabel +var file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_label_service_proto_goTypes = []any{ + (*MutateAdGroupLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupLabelsRequest + (*AdGroupLabelOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupLabelOperation + (*MutateAdGroupLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupLabelsResponse + (*MutateAdGroupLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupLabelResult + (*resources.AdGroupLabel)(nil), // 4: google.ads.googleads.v22.resources.AdGroupLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupLabelOperation - 4, // 1: google.ads.googleads.v21.services.AdGroupLabelOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroupLabel - 5, // 2: google.ads.googleads.v21.services.MutateAdGroupLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateAdGroupLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupLabelResult - 0, // 4: google.ads.googleads.v21.services.AdGroupLabelService.MutateAdGroupLabels:input_type -> google.ads.googleads.v21.services.MutateAdGroupLabelsRequest - 2, // 5: google.ads.googleads.v21.services.AdGroupLabelService.MutateAdGroupLabels:output_type -> google.ads.googleads.v21.services.MutateAdGroupLabelsResponse +var file_google_ads_googleads_v22_services_ad_group_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupLabelOperation + 4, // 1: google.ads.googleads.v22.services.AdGroupLabelOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroupLabel + 5, // 2: google.ads.googleads.v22.services.MutateAdGroupLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateAdGroupLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupLabelResult + 0, // 4: google.ads.googleads.v22.services.AdGroupLabelService.MutateAdGroupLabels:input_type -> google.ads.googleads.v22.services.MutateAdGroupLabelsRequest + 2, // 5: google.ads.googleads.v22.services.AdGroupLabelService.MutateAdGroupLabels:output_type -> google.ads.googleads.v22.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 @@ -453,12 +453,12 @@ var file_google_ads_googleads_v21_services_ad_group_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_label_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_label_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_label_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_label_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupLabelOperation_Create)(nil), (*AdGroupLabelOperation_Remove)(nil), } @@ -466,17 +466,17 @@ func file_google_ads_googleads_v21_services_ad_group_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_label_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_label_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 0c61232a..51a4c22a 100644 --- a/services/ad_group_label_service_grpc.pb.go +++ b/services/ad_group_label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_label_service.proto +// source: google/ads/googleads/v22/services/ad_group_label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupLabelService_MutateAdGroupLabels_FullMethodName = "/google.ads.googleads.v21.services.AdGroupLabelService/MutateAdGroupLabels" + AdGroupLabelService_MutateAdGroupLabels_FullMethodName = "/google.ads.googleads.v22.services.AdGroupLabelService/MutateAdGroupLabels" ) // AdGroupLabelServiceClient is the client API for AdGroupLabelService service. @@ -158,7 +158,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.v21.services.AdGroupLabelService", + ServiceName: "google.ads.googleads.v22.services.AdGroupLabelService", HandlerType: (*AdGroupLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -167,5 +167,5 @@ var AdGroupLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_label_service.proto", + Metadata: "google/ads/googleads/v22/services/ad_group_label_service.proto", } diff --git a/services/ad_group_service.pb.go b/services/ad_group_service.pb.go index ad769333..30a0a3d2 100644 --- a/services/ad_group_service.pb.go +++ b/services/ad_group_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_service.proto +// source: google/ads/googleads/v22/services/ad_group_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdGroupService.MutateAdGroups][google.ads.googleads.v21.services.AdGroupService.MutateAdGroups]. +// [AdGroupService.MutateAdGroups][google.ads.googleads.v22.services.AdGroupService.MutateAdGroups]. type MutateAdGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad groups are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdGroupsRequest) Reset() { *x = MutateAdGroupsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAdGroupsRequest) String() string { func (*MutateAdGroupsRequest) ProtoMessage() {} func (x *MutateAdGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAdGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateAdGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdGroupsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type AdGroupOperation struct { func (x *AdGroupOperation) Reset() { *x = AdGroupOperation{} - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *AdGroupOperation) String() string { func (*AdGroupOperation) ProtoMessage() {} func (x *AdGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *AdGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupOperation.ProtoReflect.Descriptor instead. func (*AdGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescGZIP(), []int{1} } func (x *AdGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -260,7 +260,7 @@ type MutateAdGroupsResponse struct { func (x *MutateAdGroupsResponse) Reset() { *x = MutateAdGroupsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -272,7 +272,7 @@ func (x *MutateAdGroupsResponse) String() string { func (*MutateAdGroupsResponse) ProtoMessage() {} func (x *MutateAdGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -285,7 +285,7 @@ func (x *MutateAdGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateAdGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdGroupsResponse) GetPartialFailureError() *status.Status { @@ -316,7 +316,7 @@ type MutateAdGroupResult struct { func (x *MutateAdGroupResult) Reset() { *x = MutateAdGroupResult{} - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -328,7 +328,7 @@ func (x *MutateAdGroupResult) String() string { func (*MutateAdGroupResult) ProtoMessage() {} func (x *MutateAdGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -341,7 +341,7 @@ func (x *MutateAdGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdGroupResult.ProtoReflect.Descriptor instead. func (*MutateAdGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdGroupResult) GetResourceName() string { @@ -358,21 +358,21 @@ func (x *MutateAdGroupResult) GetAdGroup() *resources.AdGroup { return nil } -var File_google_ads_googleads_v21_services_ad_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_group_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, + 0x76, 0x32, 0x32, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -402,7 +402,7 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -414,12 +414,12 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -434,7 +434,7 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,21 +446,21 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x2e, 0x2f, 0x76, 0x32, 0x32, 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, @@ -469,58 +469,58 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_group_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_group_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_group_service_proto_goTypes = []any{ - (*MutateAdGroupsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdGroupsRequest - (*AdGroupOperation)(nil), // 1: google.ads.googleads.v21.services.AdGroupOperation - (*MutateAdGroupsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdGroupsResponse - (*MutateAdGroupResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdGroupResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_group_service_proto_goTypes = []any{ + (*MutateAdGroupsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdGroupsRequest + (*AdGroupOperation)(nil), // 1: google.ads.googleads.v22.services.AdGroupOperation + (*MutateAdGroupsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdGroupsResponse + (*MutateAdGroupResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdGroupResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdGroup)(nil), // 6: google.ads.googleads.v21.resources.AdGroup + (*resources.AdGroup)(nil), // 6: google.ads.googleads.v22.resources.AdGroup (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdGroupsRequest.operations:type_name -> google.ads.googleads.v21.services.AdGroupOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdGroupsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdGroupOperation.create:type_name -> google.ads.googleads.v21.resources.AdGroup - 6, // 4: google.ads.googleads.v21.services.AdGroupOperation.update:type_name -> google.ads.googleads.v21.resources.AdGroup - 7, // 5: google.ads.googleads.v21.services.MutateAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAdGroupsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdGroupResult - 6, // 7: google.ads.googleads.v21.services.MutateAdGroupResult.ad_group:type_name -> google.ads.googleads.v21.resources.AdGroup - 0, // 8: google.ads.googleads.v21.services.AdGroupService.MutateAdGroups:input_type -> google.ads.googleads.v21.services.MutateAdGroupsRequest - 2, // 9: google.ads.googleads.v21.services.AdGroupService.MutateAdGroups:output_type -> google.ads.googleads.v21.services.MutateAdGroupsResponse +var file_google_ads_googleads_v22_services_ad_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdGroupsRequest.operations:type_name -> google.ads.googleads.v22.services.AdGroupOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdGroupsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdGroupOperation.create:type_name -> google.ads.googleads.v22.resources.AdGroup + 6, // 4: google.ads.googleads.v22.services.AdGroupOperation.update:type_name -> google.ads.googleads.v22.resources.AdGroup + 7, // 5: google.ads.googleads.v22.services.MutateAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAdGroupsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdGroupResult + 6, // 7: google.ads.googleads.v22.services.MutateAdGroupResult.ad_group:type_name -> google.ads.googleads.v22.resources.AdGroup + 0, // 8: google.ads.googleads.v22.services.AdGroupService.MutateAdGroups:input_type -> google.ads.googleads.v22.services.MutateAdGroupsRequest + 2, // 9: google.ads.googleads.v22.services.AdGroupService.MutateAdGroups:output_type -> google.ads.googleads.v22.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 @@ -528,12 +528,12 @@ var file_google_ads_googleads_v21_services_ad_group_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_group_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_group_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_group_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_group_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_group_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_group_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdGroupOperation_Create)(nil), (*AdGroupOperation_Update)(nil), (*AdGroupOperation_Remove)(nil), @@ -542,17 +542,17 @@ func file_google_ads_googleads_v21_services_ad_group_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_group_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_group_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_group_service_proto = out.File - file_google_ads_googleads_v21_services_ad_group_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_group_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_group_service_proto = out.File + file_google_ads_googleads_v22_services_ad_group_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 08629029..6c3ed660 100644 --- a/services/ad_group_service_grpc.pb.go +++ b/services/ad_group_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_group_service.proto +// source: google/ads/googleads/v22/services/ad_group_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdGroupService_MutateAdGroups_FullMethodName = "/google.ads.googleads.v21.services.AdGroupService/MutateAdGroups" + AdGroupService_MutateAdGroups_FullMethodName = "/google.ads.googleads.v22.services.AdGroupService/MutateAdGroups" ) // AdGroupServiceClient is the client API for AdGroupService service. @@ -196,7 +196,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.v21.services.AdGroupService", + ServiceName: "google.ads.googleads.v22.services.AdGroupService", HandlerType: (*AdGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -205,5 +205,5 @@ var AdGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_group_service.proto", + Metadata: "google/ads/googleads/v22/services/ad_group_service.proto", } diff --git a/services/ad_parameter_service.pb.go b/services/ad_parameter_service.pb.go index 79f8ce85..30788dff 100644 --- a/services/ad_parameter_service.pb.go +++ b/services/ad_parameter_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_parameter_service.proto +// source: google/ads/googleads/v22/services/ad_parameter_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AdParameterService.MutateAdParameters][google.ads.googleads.v21.services.AdParameterService.MutateAdParameters] +// [AdParameterService.MutateAdParameters][google.ads.googleads.v22.services.AdParameterService.MutateAdParameters] type MutateAdParametersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ad parameters are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAdParametersRequest) Reset() { *x = MutateAdParametersRequest{} - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAdParametersRequest) String() string { func (*MutateAdParametersRequest) ProtoMessage() {} func (x *MutateAdParametersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAdParametersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParametersRequest.ProtoReflect.Descriptor instead. func (*MutateAdParametersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdParametersRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type AdParameterOperation struct { func (x *AdParameterOperation) Reset() { *x = AdParameterOperation{} - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *AdParameterOperation) String() string { func (*AdParameterOperation) ProtoMessage() {} func (x *AdParameterOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *AdParameterOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdParameterOperation.ProtoReflect.Descriptor instead. func (*AdParameterOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescGZIP(), []int{1} } func (x *AdParameterOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateAdParametersResponse struct { func (x *MutateAdParametersResponse) Reset() { *x = MutateAdParametersResponse{} - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *MutateAdParametersResponse) String() string { func (*MutateAdParametersResponse) ProtoMessage() {} func (x *MutateAdParametersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *MutateAdParametersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParametersResponse.ProtoReflect.Descriptor instead. func (*MutateAdParametersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdParametersResponse) GetPartialFailureError() *status.Status { @@ -318,7 +318,7 @@ type MutateAdParameterResult struct { func (x *MutateAdParameterResult) Reset() { *x = MutateAdParameterResult{} - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *MutateAdParameterResult) String() string { func (*MutateAdParameterResult) ProtoMessage() {} func (x *MutateAdParameterResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *MutateAdParameterResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdParameterResult.ProtoReflect.Descriptor instead. func (*MutateAdParameterResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdParameterResult) GetResourceName() string { @@ -360,21 +360,21 @@ func (x *MutateAdParameterResult) GetAdParameter() *resources.AdParameter { return nil } -var File_google_ads_googleads_v21_services_ad_parameter_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_parameter_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,11 +418,11 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -439,7 +439,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -451,23 +451,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -476,58 +476,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_parameter_service_proto_goTypes = []any{ - (*MutateAdParametersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdParametersRequest - (*AdParameterOperation)(nil), // 1: google.ads.googleads.v21.services.AdParameterOperation - (*MutateAdParametersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdParametersResponse - (*MutateAdParameterResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdParameterResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_parameter_service_proto_goTypes = []any{ + (*MutateAdParametersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdParametersRequest + (*AdParameterOperation)(nil), // 1: google.ads.googleads.v22.services.AdParameterOperation + (*MutateAdParametersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdParametersResponse + (*MutateAdParameterResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdParameterResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AdParameter)(nil), // 6: google.ads.googleads.v21.resources.AdParameter + (*resources.AdParameter)(nil), // 6: google.ads.googleads.v22.resources.AdParameter (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_parameter_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdParametersRequest.operations:type_name -> google.ads.googleads.v21.services.AdParameterOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdParametersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdParameterOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdParameterOperation.create:type_name -> google.ads.googleads.v21.resources.AdParameter - 6, // 4: google.ads.googleads.v21.services.AdParameterOperation.update:type_name -> google.ads.googleads.v21.resources.AdParameter - 7, // 5: google.ads.googleads.v21.services.MutateAdParametersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAdParametersResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdParameterResult - 6, // 7: google.ads.googleads.v21.services.MutateAdParameterResult.ad_parameter:type_name -> google.ads.googleads.v21.resources.AdParameter - 0, // 8: google.ads.googleads.v21.services.AdParameterService.MutateAdParameters:input_type -> google.ads.googleads.v21.services.MutateAdParametersRequest - 2, // 9: google.ads.googleads.v21.services.AdParameterService.MutateAdParameters:output_type -> google.ads.googleads.v21.services.MutateAdParametersResponse +var file_google_ads_googleads_v22_services_ad_parameter_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdParametersRequest.operations:type_name -> google.ads.googleads.v22.services.AdParameterOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdParametersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdParameterOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdParameterOperation.create:type_name -> google.ads.googleads.v22.resources.AdParameter + 6, // 4: google.ads.googleads.v22.services.AdParameterOperation.update:type_name -> google.ads.googleads.v22.resources.AdParameter + 7, // 5: google.ads.googleads.v22.services.MutateAdParametersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAdParametersResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdParameterResult + 6, // 7: google.ads.googleads.v22.services.MutateAdParameterResult.ad_parameter:type_name -> google.ads.googleads.v22.resources.AdParameter + 0, // 8: google.ads.googleads.v22.services.AdParameterService.MutateAdParameters:input_type -> google.ads.googleads.v22.services.MutateAdParametersRequest + 2, // 9: google.ads.googleads.v22.services.AdParameterService.MutateAdParameters:output_type -> google.ads.googleads.v22.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 @@ -535,12 +535,12 @@ var file_google_ads_googleads_v21_services_ad_parameter_service_proto_depIdxs = 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_parameter_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_parameter_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_parameter_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_parameter_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_parameter_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_parameter_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdParameterOperation_Create)(nil), (*AdParameterOperation_Update)(nil), (*AdParameterOperation_Remove)(nil), @@ -549,17 +549,17 @@ func file_google_ads_googleads_v21_services_ad_parameter_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_parameter_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_parameter_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_parameter_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_parameter_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_parameter_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_parameter_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_parameter_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_parameter_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_parameter_service_proto = out.File - file_google_ads_googleads_v21_services_ad_parameter_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_parameter_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_parameter_service_proto = out.File + file_google_ads_googleads_v22_services_ad_parameter_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 1c2468b2..eeeabd18 100644 --- a/services/ad_parameter_service_grpc.pb.go +++ b/services/ad_parameter_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_parameter_service.proto +// source: google/ads/googleads/v22/services/ad_parameter_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdParameterService_MutateAdParameters_FullMethodName = "/google.ads.googleads.v21.services.AdParameterService/MutateAdParameters" + AdParameterService_MutateAdParameters_FullMethodName = "/google.ads.googleads.v22.services.AdParameterService/MutateAdParameters" ) // AdParameterServiceClient is the client API for AdParameterService service. @@ -160,7 +160,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.v21.services.AdParameterService", + ServiceName: "google.ads.googleads.v22.services.AdParameterService", HandlerType: (*AdParameterServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -169,5 +169,5 @@ var AdParameterService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_parameter_service.proto", + Metadata: "google/ads/googleads/v22/services/ad_parameter_service.proto", } diff --git a/services/ad_service.pb.go b/services/ad_service.pb.go index 20e208be..9effba5f 100644 --- a/services/ad_service.pb.go +++ b/services/ad_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_service.proto +// source: google/ads/googleads/v22/services/ad_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [AdService.MutateAds][google.ads.googleads.v21.services.AdService.MutateAds]. +// [AdService.MutateAds][google.ads.googleads.v22.services.AdService.MutateAds]. type MutateAdsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose ads are being modified. @@ -56,7 +56,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.v21.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.v22.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"` @@ -66,7 +66,7 @@ type MutateAdsRequest struct { func (x *MutateAdsRequest) Reset() { *x = MutateAdsRequest{} - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAdsRequest) String() string { func (*MutateAdsRequest) ProtoMessage() {} func (x *MutateAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdsRequest.ProtoReflect.Descriptor instead. func (*MutateAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_ad_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAdsRequest) GetCustomerId() string { @@ -148,7 +148,7 @@ type AdOperation struct { func (x *AdOperation) Reset() { *x = AdOperation{} - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *AdOperation) String() string { func (*AdOperation) ProtoMessage() {} func (x *AdOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *AdOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AdOperation.ProtoReflect.Descriptor instead. func (*AdOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_ad_service_proto_rawDescGZIP(), []int{1} } func (x *AdOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -236,7 +236,7 @@ type MutateAdsResponse struct { func (x *MutateAdsResponse) Reset() { *x = MutateAdsResponse{} - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -248,7 +248,7 @@ func (x *MutateAdsResponse) String() string { func (*MutateAdsResponse) ProtoMessage() {} func (x *MutateAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -261,7 +261,7 @@ func (x *MutateAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdsResponse.ProtoReflect.Descriptor instead. func (*MutateAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_ad_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAdsResponse) GetPartialFailureError() *status.Status { @@ -292,7 +292,7 @@ type MutateAdResult struct { func (x *MutateAdResult) Reset() { *x = MutateAdResult{} - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateAdResult) String() string { func (*MutateAdResult) ProtoMessage() {} func (x *MutateAdResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateAdResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAdResult.ProtoReflect.Descriptor instead. func (*MutateAdResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_ad_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_ad_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAdResult) GetResourceName() string { @@ -334,23 +334,23 @@ func (x *MutateAdResult) GetAd() *resources.Ad { return nil } -var File_google_ads_googleads_v21_services_ad_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_ad_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_ad_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -369,7 +369,7 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -393,13 +393,13 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -420,20 +420,20 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, @@ -441,59 +441,59 @@ var file_google_ads_googleads_v21_services_ad_service_proto_rawDesc = string([]b 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_ad_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_ad_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_ad_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_ad_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_ad_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_ad_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_ad_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_ad_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_ad_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_ad_service_proto_rawDescData + return file_google_ads_googleads_v22_services_ad_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_ad_service_proto_goTypes = []any{ - (*MutateAdsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAdsRequest - (*AdOperation)(nil), // 1: google.ads.googleads.v21.services.AdOperation - (*MutateAdsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAdsResponse - (*MutateAdResult)(nil), // 3: google.ads.googleads.v21.services.MutateAdResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_ad_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_ad_service_proto_goTypes = []any{ + (*MutateAdsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAdsRequest + (*AdOperation)(nil), // 1: google.ads.googleads.v22.services.AdOperation + (*MutateAdsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAdsResponse + (*MutateAdResult)(nil), // 3: google.ads.googleads.v22.services.MutateAdResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*common.PolicyValidationParameter)(nil), // 6: google.ads.googleads.v21.common.PolicyValidationParameter - (*resources.Ad)(nil), // 7: google.ads.googleads.v21.resources.Ad + (*common.PolicyValidationParameter)(nil), // 6: google.ads.googleads.v22.common.PolicyValidationParameter + (*resources.Ad)(nil), // 7: google.ads.googleads.v22.resources.Ad (*status.Status)(nil), // 8: google.rpc.Status } -var file_google_ads_googleads_v21_services_ad_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAdsRequest.operations:type_name -> google.ads.googleads.v21.services.AdOperation - 4, // 1: google.ads.googleads.v21.services.MutateAdsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AdOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v21.common.PolicyValidationParameter - 7, // 4: google.ads.googleads.v21.services.AdOperation.update:type_name -> google.ads.googleads.v21.resources.Ad - 8, // 5: google.ads.googleads.v21.services.MutateAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAdsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAdResult - 7, // 7: google.ads.googleads.v21.services.MutateAdResult.ad:type_name -> google.ads.googleads.v21.resources.Ad - 0, // 8: google.ads.googleads.v21.services.AdService.MutateAds:input_type -> google.ads.googleads.v21.services.MutateAdsRequest - 2, // 9: google.ads.googleads.v21.services.AdService.MutateAds:output_type -> google.ads.googleads.v21.services.MutateAdsResponse +var file_google_ads_googleads_v22_services_ad_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAdsRequest.operations:type_name -> google.ads.googleads.v22.services.AdOperation + 4, // 1: google.ads.googleads.v22.services.MutateAdsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AdOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AdOperation.policy_validation_parameter:type_name -> google.ads.googleads.v22.common.PolicyValidationParameter + 7, // 4: google.ads.googleads.v22.services.AdOperation.update:type_name -> google.ads.googleads.v22.resources.Ad + 8, // 5: google.ads.googleads.v22.services.MutateAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAdsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAdResult + 7, // 7: google.ads.googleads.v22.services.MutateAdResult.ad:type_name -> google.ads.googleads.v22.resources.Ad + 0, // 8: google.ads.googleads.v22.services.AdService.MutateAds:input_type -> google.ads.googleads.v22.services.MutateAdsRequest + 2, // 9: google.ads.googleads.v22.services.AdService.MutateAds:output_type -> google.ads.googleads.v22.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 @@ -501,29 +501,29 @@ var file_google_ads_googleads_v21_services_ad_service_proto_depIdxs = []int32{ 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_ad_service_proto_init() } -func file_google_ads_googleads_v21_services_ad_service_proto_init() { - if File_google_ads_googleads_v21_services_ad_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_ad_service_proto_init() } +func file_google_ads_googleads_v22_services_ad_service_proto_init() { + if File_google_ads_googleads_v22_services_ad_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_service_proto_msgTypes[1].OneofWrappers = []any{ (*AdOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_ad_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_ad_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_ad_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_ad_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_ad_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_ad_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_ad_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_ad_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_ad_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_ad_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_ad_service_proto = out.File - file_google_ads_googleads_v21_services_ad_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_ad_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_ad_service_proto = out.File + file_google_ads_googleads_v22_services_ad_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_ad_service_proto_depIdxs = nil } diff --git a/services/ad_service_grpc.pb.go b/services/ad_service_grpc.pb.go index 6407c9cf..8abdb241 100644 --- a/services/ad_service_grpc.pb.go +++ b/services/ad_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/ad_service.proto +// source: google/ads/googleads/v22/services/ad_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AdService_MutateAds_FullMethodName = "/google.ads.googleads.v21.services.AdService/MutateAds" + AdService_MutateAds_FullMethodName = "/google.ads.googleads.v22.services.AdService/MutateAds" ) // AdServiceClient is the client API for AdService service. @@ -212,7 +212,7 @@ 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.v21.services.AdService", + ServiceName: "google.ads.googleads.v22.services.AdService", HandlerType: (*AdServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -221,5 +221,5 @@ var AdService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/ad_service.proto", + Metadata: "google/ads/googleads/v22/services/ad_service.proto", } diff --git a/services/asset_generation_service.pb.go b/services/asset_generation_service.pb.go new file mode 100644 index 00000000..1ce17dac --- /dev/null +++ b/services/asset_generation_service.pb.go @@ -0,0 +1,1189 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/services/asset_generation_service.proto + +package services + +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" + unsafe "unsafe" +) + +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 +// [AssetGenerationService.GenerateText][google.ads.googleads.v22.services.AssetGenerationService.GenerateText] +type GenerateTextRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. The ID of the customer to generate assets for. Required. + CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` + // Required. Which field types text is being generated for. Supported values + // are: HEADLINE, LONG_HEADLINE, DESCRIPTION. Required. + AssetFieldTypes []enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,rep,packed,name=asset_field_types,json=assetFieldTypes,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_types,omitempty"` + // Optional. Final url to use as a source for generating assets. + // Required if existing_generation_context is not provided + // or does not have a final url associated with it. + FinalUrl string `protobuf:"bytes,5,opt,name=final_url,json=finalUrl,proto3" json:"final_url,omitempty"` + // Optional. A freeform description of what assets should be generated. + // The string length must be between 1 and 1500, inclusive. + FreeformPrompt string `protobuf:"bytes,6,opt,name=freeform_prompt,json=freeformPrompt,proto3" json:"freeform_prompt,omitempty"` + // Optional. A freeform list of keywords that are relevant, + // used to inform asset generation. + Keywords []string `protobuf:"bytes,7,rep,name=keywords,proto3" json:"keywords,omitempty"` + // Additional context to guide the generation process. + // + // Types that are valid to be assigned to Context: + // + // *GenerateTextRequest_ExistingGenerationContext + // *GenerateTextRequest_AdvertisingChannelType + Context isGenerateTextRequest_Context `protobuf_oneof:"context"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GenerateTextRequest) Reset() { + *x = GenerateTextRequest{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GenerateTextRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateTextRequest) ProtoMessage() {} + +func (x *GenerateTextRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateTextRequest.ProtoReflect.Descriptor instead. +func (*GenerateTextRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{0} +} + +func (x *GenerateTextRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *GenerateTextRequest) GetAssetFieldTypes() []enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil { + return x.AssetFieldTypes + } + return nil +} + +func (x *GenerateTextRequest) GetFinalUrl() string { + if x != nil { + return x.FinalUrl + } + return "" +} + +func (x *GenerateTextRequest) GetFreeformPrompt() string { + if x != nil { + return x.FreeformPrompt + } + return "" +} + +func (x *GenerateTextRequest) GetKeywords() []string { + if x != nil { + return x.Keywords + } + return nil +} + +func (x *GenerateTextRequest) GetContext() isGenerateTextRequest_Context { + if x != nil { + return x.Context + } + return nil +} + +func (x *GenerateTextRequest) GetExistingGenerationContext() *AssetGenerationExistingContext { + if x != nil { + if x, ok := x.Context.(*GenerateTextRequest_ExistingGenerationContext); ok { + return x.ExistingGenerationContext + } + } + return nil +} + +func (x *GenerateTextRequest) GetAdvertisingChannelType() enums.AdvertisingChannelTypeEnum_AdvertisingChannelType { + if x != nil { + if x, ok := x.Context.(*GenerateTextRequest_AdvertisingChannelType); ok { + return x.AdvertisingChannelType + } + } + return enums.AdvertisingChannelTypeEnum_AdvertisingChannelType(0) +} + +type isGenerateTextRequest_Context interface { + isGenerateTextRequest_Context() +} + +type GenerateTextRequest_ExistingGenerationContext struct { + // Optional. The setting for which assets are being generated, such as an + // existing AssetGroup or AdGroupAd. + ExistingGenerationContext *AssetGenerationExistingContext `protobuf:"bytes,3,opt,name=existing_generation_context,json=existingGenerationContext,proto3,oneof"` +} + +type GenerateTextRequest_AdvertisingChannelType struct { + // Optional. The advertising channel for which to generate assets. Required + // if existing_context is not provided. + // + // Supported channel types: + // SEARCH, PERFORMANCE_MAX, DISPLAY, and DEMAND_GEN + AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,4,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType,oneof"` +} + +func (*GenerateTextRequest_ExistingGenerationContext) isGenerateTextRequest_Context() {} + +func (*GenerateTextRequest_AdvertisingChannelType) isGenerateTextRequest_Context() {} + +// Response message for +// [AssetGenerationService.GenerateText][google.ads.googleads.v22.services.AssetGenerationService.GenerateText] +type GenerateTextResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + // List of text that was generated and the field type to use it as. + GeneratedText []*GeneratedText `protobuf:"bytes,1,rep,name=generated_text,json=generatedText,proto3" json:"generated_text,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GenerateTextResponse) Reset() { + *x = GenerateTextResponse{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GenerateTextResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateTextResponse) ProtoMessage() {} + +func (x *GenerateTextResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateTextResponse.ProtoReflect.Descriptor instead. +func (*GenerateTextResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{1} +} + +func (x *GenerateTextResponse) GetGeneratedText() []*GeneratedText { + if x != nil { + return x.GeneratedText + } + return nil +} + +// Data and metadata about a piece of generated text. +type GeneratedText struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A string of text that was generated. + Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text,omitempty"` + // The type of asset this text is intended to be used as. + AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GeneratedText) Reset() { + *x = GeneratedText{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GeneratedText) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GeneratedText) ProtoMessage() {} + +func (x *GeneratedText) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GeneratedText.ProtoReflect.Descriptor instead. +func (*GeneratedText) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{2} +} + +func (x *GeneratedText) GetText() string { + if x != nil { + return x.Text + } + return "" +} + +func (x *GeneratedText) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil { + return x.AssetFieldType + } + return enums.AssetFieldTypeEnum_AssetFieldType(0) +} + +// Request message for +// [AssetGenerationService.GenerateImages][google.ads.googleads.v22.services.AssetGenerationService.GenerateImages] +type GenerateImagesRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. The ID of the customer for whom the images are being generated. + // Required. + CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` + // Optional. Output field types for generated images. Supported values are + // MARKETING_IMAGE, SQUARE_MARKETING_IMAGE, PORTRAIT_MARKETING_IMAGE, and + // TALL_PORTRAIT_MARKETING_IMAGE. All specified field types must be + // compatible with the `advertising_channel_type` or + // `existing_generation_context` (whichever is set). If no field types are + // provided, images will be generated for all compatible field types. + AssetFieldTypes []enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,4,rep,packed,name=asset_field_types,json=assetFieldTypes,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_types,omitempty"` + // Additional context to guide image generation. + // + // Types that are valid to be assigned to Context: + // + // *GenerateImagesRequest_AdvertisingChannelType + Context isGenerateImagesRequest_Context `protobuf_oneof:"context"` + // Type of image generation to apply. Required. + // + // Types that are valid to be assigned to GenerationType: + // + // *GenerateImagesRequest_FinalUrlGeneration + // *GenerateImagesRequest_FreeformGeneration + // *GenerateImagesRequest_ProductRecontextGeneration + GenerationType isGenerateImagesRequest_GenerationType `protobuf_oneof:"generation_type"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GenerateImagesRequest) Reset() { + *x = GenerateImagesRequest{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GenerateImagesRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateImagesRequest) ProtoMessage() {} + +func (x *GenerateImagesRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateImagesRequest.ProtoReflect.Descriptor instead. +func (*GenerateImagesRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{3} +} + +func (x *GenerateImagesRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *GenerateImagesRequest) GetAssetFieldTypes() []enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil { + return x.AssetFieldTypes + } + return nil +} + +func (x *GenerateImagesRequest) GetContext() isGenerateImagesRequest_Context { + if x != nil { + return x.Context + } + return nil +} + +func (x *GenerateImagesRequest) GetAdvertisingChannelType() enums.AdvertisingChannelTypeEnum_AdvertisingChannelType { + if x != nil { + if x, ok := x.Context.(*GenerateImagesRequest_AdvertisingChannelType); ok { + return x.AdvertisingChannelType + } + } + return enums.AdvertisingChannelTypeEnum_AdvertisingChannelType(0) +} + +func (x *GenerateImagesRequest) GetGenerationType() isGenerateImagesRequest_GenerationType { + if x != nil { + return x.GenerationType + } + return nil +} + +func (x *GenerateImagesRequest) GetFinalUrlGeneration() *FinalUrlImageGenerationInput { + if x != nil { + if x, ok := x.GenerationType.(*GenerateImagesRequest_FinalUrlGeneration); ok { + return x.FinalUrlGeneration + } + } + return nil +} + +func (x *GenerateImagesRequest) GetFreeformGeneration() *FreeformImageGenerationInput { + if x != nil { + if x, ok := x.GenerationType.(*GenerateImagesRequest_FreeformGeneration); ok { + return x.FreeformGeneration + } + } + return nil +} + +func (x *GenerateImagesRequest) GetProductRecontextGeneration() *ProductRecontextGenerationImageInput { + if x != nil { + if x, ok := x.GenerationType.(*GenerateImagesRequest_ProductRecontextGeneration); ok { + return x.ProductRecontextGeneration + } + } + return nil +} + +type isGenerateImagesRequest_Context interface { + isGenerateImagesRequest_Context() +} + +type GenerateImagesRequest_AdvertisingChannelType struct { + // Optional. The advertising channel type for which the images are being + // generated. This field is required if `existing_generation_context` is not + // provided. Supported channel types include SEARCH, PERFORMANCE_MAX, + // DISPLAY, and DEMAND_GEN. + AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,2,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType,oneof"` +} + +func (*GenerateImagesRequest_AdvertisingChannelType) isGenerateImagesRequest_Context() {} + +type isGenerateImagesRequest_GenerationType interface { + isGenerateImagesRequest_GenerationType() +} + +type GenerateImagesRequest_FinalUrlGeneration struct { + // Optional. Generate images from a final url. + FinalUrlGeneration *FinalUrlImageGenerationInput `protobuf:"bytes,5,opt,name=final_url_generation,json=finalUrlGeneration,proto3,oneof"` +} + +type GenerateImagesRequest_FreeformGeneration struct { + // Optional. Generate images from a freeform prompt. + FreeformGeneration *FreeformImageGenerationInput `protobuf:"bytes,6,opt,name=freeform_generation,json=freeformGeneration,proto3,oneof"` +} + +type GenerateImagesRequest_ProductRecontextGeneration struct { + // Optional. Generate new images by recontextualizing existing product + // images. + ProductRecontextGeneration *ProductRecontextGenerationImageInput `protobuf:"bytes,7,opt,name=product_recontext_generation,json=productRecontextGeneration,proto3,oneof"` +} + +func (*GenerateImagesRequest_FinalUrlGeneration) isGenerateImagesRequest_GenerationType() {} + +func (*GenerateImagesRequest_FreeformGeneration) isGenerateImagesRequest_GenerationType() {} + +func (*GenerateImagesRequest_ProductRecontextGeneration) isGenerateImagesRequest_GenerationType() {} + +// Input for guiding image asset generation with a final url. +type FinalUrlImageGenerationInput struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. A final url to guide the image generation process. Required. + FinalUrl string `protobuf:"bytes,1,opt,name=final_url,json=finalUrl,proto3" json:"final_url,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *FinalUrlImageGenerationInput) Reset() { + *x = FinalUrlImageGenerationInput{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[4] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *FinalUrlImageGenerationInput) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*FinalUrlImageGenerationInput) ProtoMessage() {} + +func (x *FinalUrlImageGenerationInput) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[4] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use FinalUrlImageGenerationInput.ProtoReflect.Descriptor instead. +func (*FinalUrlImageGenerationInput) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{4} +} + +func (x *FinalUrlImageGenerationInput) GetFinalUrl() string { + if x != nil { + return x.FinalUrl + } + return "" +} + +// Input for guiding image asset generation with a freeform prompt. +type FreeformImageGenerationInput struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. A freeform text description to guide the image generation + // process. The maximum length is 1500 characters. Required. + FreeformPrompt string `protobuf:"bytes,1,opt,name=freeform_prompt,json=freeformPrompt,proto3" json:"freeform_prompt,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *FreeformImageGenerationInput) Reset() { + *x = FreeformImageGenerationInput{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[5] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *FreeformImageGenerationInput) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*FreeformImageGenerationInput) ProtoMessage() {} + +func (x *FreeformImageGenerationInput) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[5] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use FreeformImageGenerationInput.ProtoReflect.Descriptor instead. +func (*FreeformImageGenerationInput) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{5} +} + +func (x *FreeformImageGenerationInput) GetFreeformPrompt() string { + if x != nil { + return x.FreeformPrompt + } + return "" +} + +// Input for generating new images by recontextualizing existing product images. +type ProductRecontextGenerationImageInput struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Optional. A freeform description of the assets to be generated. + // Maximum character limit is 1500. + Prompt string `protobuf:"bytes,1,opt,name=prompt,proto3" json:"prompt,omitempty"` + // Required. Product images to use for generating new images. + // 1-3 images must be provided. + SourceImages []*SourceImage `protobuf:"bytes,2,rep,name=source_images,json=sourceImages,proto3" json:"source_images,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *ProductRecontextGenerationImageInput) Reset() { + *x = ProductRecontextGenerationImageInput{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[6] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *ProductRecontextGenerationImageInput) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*ProductRecontextGenerationImageInput) ProtoMessage() {} + +func (x *ProductRecontextGenerationImageInput) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[6] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use ProductRecontextGenerationImageInput.ProtoReflect.Descriptor instead. +func (*ProductRecontextGenerationImageInput) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{6} +} + +func (x *ProductRecontextGenerationImageInput) GetPrompt() string { + if x != nil { + return x.Prompt + } + return "" +} + +func (x *ProductRecontextGenerationImageInput) GetSourceImages() []*SourceImage { + if x != nil { + return x.SourceImages + } + return nil +} + +// Response message for +// [AssetGenerationService.GenerateImages][google.ads.googleads.v22.services.AssetGenerationService.GenerateImages] +type GenerateImagesResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Successfully generated images. + GeneratedImages []*GeneratedImage `protobuf:"bytes,1,rep,name=generated_images,json=generatedImages,proto3" json:"generated_images,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GenerateImagesResponse) Reset() { + *x = GenerateImagesResponse{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[7] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GenerateImagesResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GenerateImagesResponse) ProtoMessage() {} + +func (x *GenerateImagesResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[7] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GenerateImagesResponse.ProtoReflect.Descriptor instead. +func (*GenerateImagesResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{7} +} + +func (x *GenerateImagesResponse) GetGeneratedImages() []*GeneratedImage { + if x != nil { + return x.GeneratedImages + } + return nil +} + +// A source image to be used in the generation process. +type SourceImage struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The image to be used as a source. + // + // Types that are valid to be assigned to Image: + // + // *SourceImage_ImageData + Image isSourceImage_Image `protobuf_oneof:"image"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *SourceImage) Reset() { + *x = SourceImage{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[8] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *SourceImage) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*SourceImage) ProtoMessage() {} + +func (x *SourceImage) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[8] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use SourceImage.ProtoReflect.Descriptor instead. +func (*SourceImage) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{8} +} + +func (x *SourceImage) GetImage() isSourceImage_Image { + if x != nil { + return x.Image + } + return nil +} + +func (x *SourceImage) GetImageData() []byte { + if x != nil { + if x, ok := x.Image.(*SourceImage_ImageData); ok { + return x.ImageData + } + } + return nil +} + +type isSourceImage_Image interface { + isSourceImage_Image() +} + +type SourceImage_ImageData struct { + // Optional. Raw bytes of the image to use. + ImageData []byte `protobuf:"bytes,1,opt,name=image_data,json=imageData,proto3,oneof"` +} + +func (*SourceImage_ImageData) isSourceImage_Image() {} + +// Generated image data and metadata. +type GeneratedImage struct { + state protoimpl.MessageState `protogen:"open.v1"` + // A temporary URL for the generated image. + ImageTemporaryUrl string `protobuf:"bytes,1,opt,name=image_temporary_url,json=imageTemporaryUrl,proto3" json:"image_temporary_url,omitempty"` + // The intended field type for this generated image. + AssetFieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,2,opt,name=asset_field_type,json=assetFieldType,proto3,enum=google.ads.googleads.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GeneratedImage) Reset() { + *x = GeneratedImage{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[9] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GeneratedImage) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GeneratedImage) ProtoMessage() {} + +func (x *GeneratedImage) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[9] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GeneratedImage.ProtoReflect.Descriptor instead. +func (*GeneratedImage) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{9} +} + +func (x *GeneratedImage) GetImageTemporaryUrl() string { + if x != nil { + return x.ImageTemporaryUrl + } + return "" +} + +func (x *GeneratedImage) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFieldType { + if x != nil { + return x.AssetFieldType + } + return enums.AssetFieldTypeEnum_AssetFieldType(0) +} + +// The context for which assets are being generated, such as an existing +// AssetGroup or AdGroupAd. +type AssetGenerationExistingContext struct { + state protoimpl.MessageState `protogen:"open.v1"` + // An existing context to generate assets for. + // + // Types that are valid to be assigned to ExistingContext: + // + // *AssetGenerationExistingContext_ExistingAssetGroup + // *AssetGenerationExistingContext_ExistingAdGroupAd + ExistingContext isAssetGenerationExistingContext_ExistingContext `protobuf_oneof:"existing_context"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *AssetGenerationExistingContext) Reset() { + *x = AssetGenerationExistingContext{} + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[10] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *AssetGenerationExistingContext) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*AssetGenerationExistingContext) ProtoMessage() {} + +func (x *AssetGenerationExistingContext) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[10] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use AssetGenerationExistingContext.ProtoReflect.Descriptor instead. +func (*AssetGenerationExistingContext) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP(), []int{10} +} + +func (x *AssetGenerationExistingContext) GetExistingContext() isAssetGenerationExistingContext_ExistingContext { + if x != nil { + return x.ExistingContext + } + return nil +} + +func (x *AssetGenerationExistingContext) GetExistingAssetGroup() string { + if x != nil { + if x, ok := x.ExistingContext.(*AssetGenerationExistingContext_ExistingAssetGroup); ok { + return x.ExistingAssetGroup + } + } + return "" +} + +func (x *AssetGenerationExistingContext) GetExistingAdGroupAd() string { + if x != nil { + if x, ok := x.ExistingContext.(*AssetGenerationExistingContext_ExistingAdGroupAd); ok { + return x.ExistingAdGroupAd + } + } + return "" +} + +type isAssetGenerationExistingContext_ExistingContext interface { + isAssetGenerationExistingContext_ExistingContext() +} + +type AssetGenerationExistingContext_ExistingAssetGroup struct { + // Resource name of an existing AssetGroup for which these assets are being + // generated. + ExistingAssetGroup string `protobuf:"bytes,1,opt,name=existing_asset_group,json=existingAssetGroup,proto3,oneof"` +} + +type AssetGenerationExistingContext_ExistingAdGroupAd struct { + // Resource name of an existing AdGroupAd for which these assets are being + // generated. + ExistingAdGroupAd string `protobuf:"bytes,2,opt,name=existing_ad_group_ad,json=existingAdGroupAd,proto3,oneof"` +} + +func (*AssetGenerationExistingContext_ExistingAssetGroup) isAssetGenerationExistingContext_ExistingContext() { +} + +func (*AssetGenerationExistingContext_ExistingAdGroupAd) isAssetGenerationExistingContext_ExistingContext() { +} + +var File_google_ads_googleads_v22_services_asset_generation_service_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x22, 0xcb, + 0x04, 0x0a, 0x13, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, 0x74, 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, 0x72, 0x0a, 0x11, + 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, + 0x73, 0x18, 0x02, 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, + 0x32, 0x32, 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, 0x02, 0x52, + 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x73, + 0x12, 0x20, 0x0a, 0x09, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x05, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x08, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, + 0x72, 0x6c, 0x12, 0x2c, 0x0a, 0x0f, 0x66, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x70, + 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, + 0x52, 0x0e, 0x66, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, + 0x12, 0x1f, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x07, 0x20, 0x03, + 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x73, 0x12, 0x88, 0x01, 0x0a, 0x1b, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, + 0x74, 0x18, 0x03, 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, + 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x69, 0x73, 0x74, + 0x69, 0x6e, 0x67, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, + 0x00, 0x52, 0x19, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x92, 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, 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, 0x32, 0x32, 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, 0x01, 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, 0x42, 0x09, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x22, 0x6f, 0x0a, 0x14, + 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x73, 0x70, + 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x57, 0x0a, 0x0e, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x64, 0x5f, 0x74, 0x65, 0x78, 0x74, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x52, 0x0d, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x22, 0x90, 0x01, + 0x0a, 0x0d, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x54, 0x65, 0x78, 0x74, 0x12, + 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x74, + 0x65, 0x78, 0x74, 0x12, 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, 0x32, 0x32, 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, 0xea, 0x05, 0x0a, 0x15, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, + 0x67, 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, 0x72, 0x0a, 0x11, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x73, 0x18, 0x04, 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, 0x32, 0x32, 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, 0x01, 0x52, 0x0f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x54, + 0x79, 0x70, 0x65, 0x73, 0x12, 0x92, 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, + 0x32, 0x32, 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, 0x01, 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, 0x12, 0x78, 0x0a, 0x14, 0x66, 0x69, 0x6e, + 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 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, + 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x69, 0x6e, 0x61, + 0x6c, 0x55, 0x72, 0x6c, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x01, 0x52, + 0x12, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x12, 0x77, 0x0a, 0x13, 0x66, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x5f, + 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x6d, 0x61, + 0x67, 0x65, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, + 0x74, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x01, 0x52, 0x12, 0x66, 0x72, 0x65, 0x65, 0x66, 0x6f, + 0x72, 0x6d, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x90, 0x01, 0x0a, + 0x1c, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x65, + 0x78, 0x74, 0x5f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 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, 0x32, 0x32, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, + 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x42, 0x03, 0xe0, 0x41, + 0x01, 0x48, 0x01, 0x52, 0x1a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x63, 0x6f, + 0x6e, 0x74, 0x65, 0x78, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x42, + 0x09, 0x0a, 0x07, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x42, 0x11, 0x0a, 0x0f, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0x40, 0x0a, + 0x1c, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x47, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x20, 0x0a, + 0x09, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, + 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x22, + 0x4c, 0x0a, 0x1c, 0x46, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x49, 0x6d, 0x61, 0x67, 0x65, + 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, + 0x2c, 0x0a, 0x0f, 0x66, 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x5f, 0x70, 0x72, 0x6f, 0x6d, + 0x70, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x66, + 0x72, 0x65, 0x65, 0x66, 0x6f, 0x72, 0x6d, 0x50, 0x72, 0x6f, 0x6d, 0x70, 0x74, 0x22, 0x9d, 0x01, + 0x0a, 0x24, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6e, 0x74, 0x65, + 0x78, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6d, 0x61, 0x67, + 0x65, 0x49, 0x6e, 0x70, 0x75, 0x74, 0x12, 0x1b, 0x0a, 0x06, 0x70, 0x72, 0x6f, 0x6d, 0x70, 0x74, + 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x06, 0x70, 0x72, 0x6f, + 0x6d, 0x70, 0x74, 0x12, 0x58, 0x0a, 0x0d, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x69, 0x6d, + 0x61, 0x67, 0x65, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, + 0x0c, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x22, 0x76, 0x0a, + 0x16, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x5c, 0x0a, 0x10, 0x67, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x64, 0x5f, 0x69, 0x6d, 0x61, 0x67, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, + 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x49, + 0x6d, 0x61, 0x67, 0x65, 0x52, 0x0f, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x64, 0x49, + 0x6d, 0x61, 0x67, 0x65, 0x73, 0x22, 0x3c, 0x0a, 0x0b, 0x53, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x49, + 0x6d, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0a, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x61, + 0x74, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0c, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x00, 0x52, + 0x09, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x44, 0x61, 0x74, 0x61, 0x42, 0x07, 0x0a, 0x05, 0x69, 0x6d, + 0x61, 0x67, 0x65, 0x22, 0xad, 0x01, 0x0a, 0x0e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x64, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x13, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x5f, + 0x74, 0x65, 0x6d, 0x70, 0x6f, 0x72, 0x61, 0x72, 0x79, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x11, 0x69, 0x6d, 0x61, 0x67, 0x65, 0x54, 0x65, 0x6d, 0x70, 0x6f, 0x72, + 0x61, 0x72, 0x79, 0x55, 0x72, 0x6c, 0x12, 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, 0x32, 0x32, 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, 0xee, 0x01, 0x0a, 0x1e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x45, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x43, + 0x6f, 0x6e, 0x74, 0x65, 0x78, 0x74, 0x12, 0x5c, 0x0a, 0x14, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x01, + 0x20, 0x01, 0x28, 0x09, 0x42, 0x28, 0xfa, 0x41, 0x25, 0x0a, 0x23, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x48, 0x00, + 0x52, 0x12, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x12, 0x5a, 0x0a, 0x14, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, + 0x5f, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x61, 0x64, 0x18, 0x02, 0x20, 0x01, + 0x28, 0x09, 0x42, 0x27, 0xfa, 0x41, 0x24, 0x0a, 0x22, 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, 0x41, 0x64, 0x48, 0x00, 0x52, 0x11, 0x65, + 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x41, 0x64, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x41, 0x64, + 0x42, 0x12, 0x0a, 0x10, 0x65, 0x78, 0x69, 0x73, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x63, 0x6f, 0x6e, + 0x74, 0x65, 0x78, 0x74, 0x32, 0xfd, 0x03, 0x0a, 0x16, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, + 0xc8, 0x01, 0x0a, 0x0c, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, 0x74, + 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, + 0x74, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x22, 0x47, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x41, 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, + 0x32, 0x32, 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, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x67, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x65, 0x78, 0x74, 0x12, 0xd0, 0x01, 0x0a, 0x0e, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 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, + 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x73, 0x65, 0x22, 0x49, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, + 0x76, 0x32, 0x32, 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, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x3a, 0x67, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6d, 0x61, 0x67, 0x65, 0x73, 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, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, + 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x65, 0x6e, 0x65, 0x72, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) +var file_google_ads_googleads_v22_services_asset_generation_service_proto_goTypes = []any{ + (*GenerateTextRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateTextRequest + (*GenerateTextResponse)(nil), // 1: google.ads.googleads.v22.services.GenerateTextResponse + (*GeneratedText)(nil), // 2: google.ads.googleads.v22.services.GeneratedText + (*GenerateImagesRequest)(nil), // 3: google.ads.googleads.v22.services.GenerateImagesRequest + (*FinalUrlImageGenerationInput)(nil), // 4: google.ads.googleads.v22.services.FinalUrlImageGenerationInput + (*FreeformImageGenerationInput)(nil), // 5: google.ads.googleads.v22.services.FreeformImageGenerationInput + (*ProductRecontextGenerationImageInput)(nil), // 6: google.ads.googleads.v22.services.ProductRecontextGenerationImageInput + (*GenerateImagesResponse)(nil), // 7: google.ads.googleads.v22.services.GenerateImagesResponse + (*SourceImage)(nil), // 8: google.ads.googleads.v22.services.SourceImage + (*GeneratedImage)(nil), // 9: google.ads.googleads.v22.services.GeneratedImage + (*AssetGenerationExistingContext)(nil), // 10: google.ads.googleads.v22.services.AssetGenerationExistingContext + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 11: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 12: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType +} +var file_google_ads_googleads_v22_services_asset_generation_service_proto_depIdxs = []int32{ + 11, // 0: google.ads.googleads.v22.services.GenerateTextRequest.asset_field_types:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 10, // 1: google.ads.googleads.v22.services.GenerateTextRequest.existing_generation_context:type_name -> google.ads.googleads.v22.services.AssetGenerationExistingContext + 12, // 2: google.ads.googleads.v22.services.GenerateTextRequest.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 2, // 3: google.ads.googleads.v22.services.GenerateTextResponse.generated_text:type_name -> google.ads.googleads.v22.services.GeneratedText + 11, // 4: google.ads.googleads.v22.services.GeneratedText.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 11, // 5: google.ads.googleads.v22.services.GenerateImagesRequest.asset_field_types:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 12, // 6: google.ads.googleads.v22.services.GenerateImagesRequest.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 4, // 7: google.ads.googleads.v22.services.GenerateImagesRequest.final_url_generation:type_name -> google.ads.googleads.v22.services.FinalUrlImageGenerationInput + 5, // 8: google.ads.googleads.v22.services.GenerateImagesRequest.freeform_generation:type_name -> google.ads.googleads.v22.services.FreeformImageGenerationInput + 6, // 9: google.ads.googleads.v22.services.GenerateImagesRequest.product_recontext_generation:type_name -> google.ads.googleads.v22.services.ProductRecontextGenerationImageInput + 8, // 10: google.ads.googleads.v22.services.ProductRecontextGenerationImageInput.source_images:type_name -> google.ads.googleads.v22.services.SourceImage + 9, // 11: google.ads.googleads.v22.services.GenerateImagesResponse.generated_images:type_name -> google.ads.googleads.v22.services.GeneratedImage + 11, // 12: google.ads.googleads.v22.services.GeneratedImage.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 0, // 13: google.ads.googleads.v22.services.AssetGenerationService.GenerateText:input_type -> google.ads.googleads.v22.services.GenerateTextRequest + 3, // 14: google.ads.googleads.v22.services.AssetGenerationService.GenerateImages:input_type -> google.ads.googleads.v22.services.GenerateImagesRequest + 1, // 15: google.ads.googleads.v22.services.AssetGenerationService.GenerateText:output_type -> google.ads.googleads.v22.services.GenerateTextResponse + 7, // 16: google.ads.googleads.v22.services.AssetGenerationService.GenerateImages:output_type -> google.ads.googleads.v22.services.GenerateImagesResponse + 15, // [15:17] is the sub-list for method output_type + 13, // [13:15] is the sub-list for method input_type + 13, // [13:13] is the sub-list for extension type_name + 13, // [13:13] is the sub-list for extension extendee + 0, // [0:13] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_asset_generation_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_generation_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_generation_service_proto != nil { + return + } + file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[0].OneofWrappers = []any{ + (*GenerateTextRequest_ExistingGenerationContext)(nil), + (*GenerateTextRequest_AdvertisingChannelType)(nil), + } + file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[3].OneofWrappers = []any{ + (*GenerateImagesRequest_AdvertisingChannelType)(nil), + (*GenerateImagesRequest_FinalUrlGeneration)(nil), + (*GenerateImagesRequest_FreeformGeneration)(nil), + (*GenerateImagesRequest_ProductRecontextGeneration)(nil), + } + file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[8].OneofWrappers = []any{ + (*SourceImage_ImageData)(nil), + } + file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes[10].OneofWrappers = []any{ + (*AssetGenerationExistingContext_ExistingAssetGroup)(nil), + (*AssetGenerationExistingContext_ExistingAdGroupAd)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_generation_service_proto_rawDesc)), + NumEnums: 0, + NumMessages: 11, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_google_ads_googleads_v22_services_asset_generation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_generation_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_generation_service_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_services_asset_generation_service_proto = out.File + file_google_ads_googleads_v22_services_asset_generation_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_asset_generation_service_proto_depIdxs = nil +} diff --git a/services/asset_generation_service_grpc.pb.go b/services/asset_generation_service_grpc.pb.go new file mode 100644 index 00000000..a2e48ebb --- /dev/null +++ b/services/asset_generation_service_grpc.pb.go @@ -0,0 +1,226 @@ +// Copyright 2025 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.5.1 +// - protoc v4.24.4 +// source: google/ads/googleads/v22/services/asset_generation_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.64.0 or later. +const _ = grpc.SupportPackageIsVersion9 + +const ( + AssetGenerationService_GenerateText_FullMethodName = "/google.ads.googleads.v22.services.AssetGenerationService/GenerateText" + AssetGenerationService_GenerateImages_FullMethodName = "/google.ads.googleads.v22.services.AssetGenerationService/GenerateImages" +) + +// AssetGenerationServiceClient is the client API for AssetGenerationService 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 for generating new assets with generative AI. +type AssetGenerationServiceClient interface { + // Uses generative AI to generate text that can be used as assets in a + // campaign. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [AssetGenerationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + GenerateText(ctx context.Context, in *GenerateTextRequest, opts ...grpc.CallOption) (*GenerateTextResponse, error) + // Uses generative AI to generate images that can be used as assets in a + // campaign. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [AssetGenerationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + GenerateImages(ctx context.Context, in *GenerateImagesRequest, opts ...grpc.CallOption) (*GenerateImagesResponse, error) +} + +type assetGenerationServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewAssetGenerationServiceClient(cc grpc.ClientConnInterface) AssetGenerationServiceClient { + return &assetGenerationServiceClient{cc} +} + +func (c *assetGenerationServiceClient) GenerateText(ctx context.Context, in *GenerateTextRequest, opts ...grpc.CallOption) (*GenerateTextResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(GenerateTextResponse) + err := c.cc.Invoke(ctx, AssetGenerationService_GenerateText_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +func (c *assetGenerationServiceClient) GenerateImages(ctx context.Context, in *GenerateImagesRequest, opts ...grpc.CallOption) (*GenerateImagesResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(GenerateImagesResponse) + err := c.cc.Invoke(ctx, AssetGenerationService_GenerateImages_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// AssetGenerationServiceServer is the server API for AssetGenerationService service. +// All implementations must embed UnimplementedAssetGenerationServiceServer +// for forward compatibility. +// +// Service for generating new assets with generative AI. +type AssetGenerationServiceServer interface { + // Uses generative AI to generate text that can be used as assets in a + // campaign. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [AssetGenerationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + GenerateText(context.Context, *GenerateTextRequest) (*GenerateTextResponse, error) + // Uses generative AI to generate images that can be used as assets in a + // campaign. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [AssetGenerationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + GenerateImages(context.Context, *GenerateImagesRequest) (*GenerateImagesResponse, error) + mustEmbedUnimplementedAssetGenerationServiceServer() +} + +// UnimplementedAssetGenerationServiceServer must be embedded to have +// forward compatible implementations. +// +// NOTE: this should be embedded by value instead of pointer to avoid a nil +// pointer dereference when methods are called. +type UnimplementedAssetGenerationServiceServer struct{} + +func (UnimplementedAssetGenerationServiceServer) GenerateText(context.Context, *GenerateTextRequest) (*GenerateTextResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GenerateText not implemented") +} +func (UnimplementedAssetGenerationServiceServer) GenerateImages(context.Context, *GenerateImagesRequest) (*GenerateImagesResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method GenerateImages not implemented") +} +func (UnimplementedAssetGenerationServiceServer) mustEmbedUnimplementedAssetGenerationServiceServer() { +} +func (UnimplementedAssetGenerationServiceServer) testEmbeddedByValue() {} + +// UnsafeAssetGenerationServiceServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to AssetGenerationServiceServer will +// result in compilation errors. +type UnsafeAssetGenerationServiceServer interface { + mustEmbedUnimplementedAssetGenerationServiceServer() +} + +func RegisterAssetGenerationServiceServer(s grpc.ServiceRegistrar, srv AssetGenerationServiceServer) { + // If the following call pancis, it indicates UnimplementedAssetGenerationServiceServer was + // embedded by pointer and is nil. This will cause panics if an + // unimplemented method is ever invoked, so we test this at initialization + // time to prevent it from happening at runtime later due to I/O. + if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { + t.testEmbeddedByValue() + } + s.RegisterService(&AssetGenerationService_ServiceDesc, srv) +} + +func _AssetGenerationService_GenerateText_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GenerateTextRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AssetGenerationServiceServer).GenerateText(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: AssetGenerationService_GenerateText_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AssetGenerationServiceServer).GenerateText(ctx, req.(*GenerateTextRequest)) + } + return interceptor(ctx, in, info, handler) +} + +func _AssetGenerationService_GenerateImages_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(GenerateImagesRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(AssetGenerationServiceServer).GenerateImages(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: AssetGenerationService_GenerateImages_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(AssetGenerationServiceServer).GenerateImages(ctx, req.(*GenerateImagesRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// AssetGenerationService_ServiceDesc is the grpc.ServiceDesc for AssetGenerationService service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var AssetGenerationService_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.ads.googleads.v22.services.AssetGenerationService", + HandlerType: (*AssetGenerationServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "GenerateText", + Handler: _AssetGenerationService_GenerateText_Handler, + }, + { + MethodName: "GenerateImages", + Handler: _AssetGenerationService_GenerateImages_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/ads/googleads/v22/services/asset_generation_service.proto", +} diff --git a/services/asset_group_asset_service.pb.go b/services/asset_group_asset_service.pb.go index ae42f4bb..9462d2b8 100644 --- a/services/asset_group_asset_service.pb.go +++ b/services/asset_group_asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_asset_service.proto +// source: google/ads/googleads/v22/services/asset_group_asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetGroupAssetService.MutateAssetGroupAssets][google.ads.googleads.v21.services.AssetGroupAssetService.MutateAssetGroupAssets]. +// [AssetGroupAssetService.MutateAssetGroupAssets][google.ads.googleads.v22.services.AssetGroupAssetService.MutateAssetGroupAssets]. type MutateAssetGroupAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose asset group assets are being @@ -63,7 +63,7 @@ type MutateAssetGroupAssetsRequest struct { func (x *MutateAssetGroupAssetsRequest) Reset() { *x = MutateAssetGroupAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateAssetGroupAssetsRequest) String() string { func (*MutateAssetGroupAssetsRequest) ProtoMessage() {} func (x *MutateAssetGroupAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateAssetGroupAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupAssetsRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type AssetGroupAssetOperation struct { func (x *AssetGroupAssetOperation) Reset() { *x = AssetGroupAssetOperation{} - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *AssetGroupAssetOperation) String() string { func (*AssetGroupAssetOperation) ProtoMessage() {} func (x *AssetGroupAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *AssetGroupAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupAssetOperation.ProtoReflect.Descriptor instead. func (*AssetGroupAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -252,7 +252,7 @@ type MutateAssetGroupAssetsResponse struct { func (x *MutateAssetGroupAssetsResponse) Reset() { *x = MutateAssetGroupAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateAssetGroupAssetsResponse) String() string { func (*MutateAssetGroupAssetsResponse) ProtoMessage() {} func (x *MutateAssetGroupAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateAssetGroupAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupAssetsResponse) GetResults() []*MutateAssetGroupAssetResult { @@ -305,7 +305,7 @@ type MutateAssetGroupAssetResult struct { func (x *MutateAssetGroupAssetResult) Reset() { *x = MutateAssetGroupAssetResult{} - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -317,7 +317,7 @@ func (x *MutateAssetGroupAssetResult) String() string { func (*MutateAssetGroupAssetResult) ProtoMessage() {} func (x *MutateAssetGroupAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -330,7 +330,7 @@ func (x *MutateAssetGroupAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupAssetResult) GetResourceName() string { @@ -340,17 +340,17 @@ func (x *MutateAssetGroupAssetResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_asset_group_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_group_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -371,7 +371,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,12 +387,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -424,17 +424,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -443,55 +443,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_group_asset_service_proto_goTypes = []any{ - (*MutateAssetGroupAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetGroupAssetsRequest - (*AssetGroupAssetOperation)(nil), // 1: google.ads.googleads.v21.services.AssetGroupAssetOperation - (*MutateAssetGroupAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse - (*MutateAssetGroupAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetGroupAssetResult +var file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_group_asset_service_proto_goTypes = []any{ + (*MutateAssetGroupAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetGroupAssetsRequest + (*AssetGroupAssetOperation)(nil), // 1: google.ads.googleads.v22.services.AssetGroupAssetOperation + (*MutateAssetGroupAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetGroupAssetsResponse + (*MutateAssetGroupAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetGroupAssetResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AssetGroupAsset)(nil), // 5: google.ads.googleads.v21.resources.AssetGroupAsset + (*resources.AssetGroupAsset)(nil), // 5: google.ads.googleads.v22.resources.AssetGroupAsset (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_group_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetGroupAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetGroupAssetOperation - 4, // 1: google.ads.googleads.v21.services.AssetGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.AssetGroupAssetOperation.create:type_name -> google.ads.googleads.v21.resources.AssetGroupAsset - 5, // 3: google.ads.googleads.v21.services.AssetGroupAssetOperation.update:type_name -> google.ads.googleads.v21.resources.AssetGroupAsset - 3, // 4: google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetGroupAssetResult - 6, // 5: google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v21.services.AssetGroupAssetService.MutateAssetGroupAssets:input_type -> google.ads.googleads.v21.services.MutateAssetGroupAssetsRequest - 2, // 7: google.ads.googleads.v21.services.AssetGroupAssetService.MutateAssetGroupAssets:output_type -> google.ads.googleads.v21.services.MutateAssetGroupAssetsResponse +var file_google_ads_googleads_v22_services_asset_group_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetGroupAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetGroupAssetOperation + 4, // 1: google.ads.googleads.v22.services.AssetGroupAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.AssetGroupAssetOperation.create:type_name -> google.ads.googleads.v22.resources.AssetGroupAsset + 5, // 3: google.ads.googleads.v22.services.AssetGroupAssetOperation.update:type_name -> google.ads.googleads.v22.resources.AssetGroupAsset + 3, // 4: google.ads.googleads.v22.services.MutateAssetGroupAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetGroupAssetResult + 6, // 5: google.ads.googleads.v22.services.MutateAssetGroupAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v22.services.AssetGroupAssetService.MutateAssetGroupAssets:input_type -> google.ads.googleads.v22.services.MutateAssetGroupAssetsRequest + 2, // 7: google.ads.googleads.v22.services.AssetGroupAssetService.MutateAssetGroupAssets:output_type -> google.ads.googleads.v22.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 @@ -499,12 +499,12 @@ var file_google_ads_googleads_v21_services_asset_group_asset_service_proto_depId 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_group_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_group_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_group_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_group_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_group_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_group_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetGroupAssetOperation_Create)(nil), (*AssetGroupAssetOperation_Update)(nil), (*AssetGroupAssetOperation_Remove)(nil), @@ -513,17 +513,17 @@ func file_google_ads_googleads_v21_services_asset_group_asset_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_group_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_group_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_group_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_group_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_group_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_group_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_group_asset_service_proto = out.File - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_group_asset_service_proto = out.File + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 c465fb6a..47f01e14 100644 --- a/services/asset_group_asset_service_grpc.pb.go +++ b/services/asset_group_asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_asset_service.proto +// source: google/ads/googleads/v22/services/asset_group_asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName = "/google.ads.googleads.v21.services.AssetGroupAssetService/MutateAssetGroupAssets" + AssetGroupAssetService_MutateAssetGroupAssets_FullMethodName = "/google.ads.googleads.v22.services.AssetGroupAssetService/MutateAssetGroupAssets" ) // AssetGroupAssetServiceClient is the client API for AssetGroupAssetService service. @@ -131,7 +131,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.v21.services.AssetGroupAssetService", + ServiceName: "google.ads.googleads.v22.services.AssetGroupAssetService", HandlerType: (*AssetGroupAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AssetGroupAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_group_asset_service.proto", + Metadata: "google/ads/googleads/v22/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 088b04e4..f88d78a7 100644 --- a/services/asset_group_listing_group_filter_service.pb.go +++ b/services/asset_group_listing_group_filter_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_listing_group_filter_service.proto +// source: google/ads/googleads/v22/services/asset_group_listing_group_filter_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters][google.ads.googleads.v21.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters]. +// [AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters][google.ads.googleads.v22.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters]. // partial_failure is not supported because the tree needs to be validated // together. type MutateAssetGroupListingGroupFiltersRequest struct { @@ -56,14 +56,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAssetGroupListingGroupFiltersRequest) Reset() { *x = MutateAssetGroupListingGroupFiltersRequest{} - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateAssetGroupListingGroupFiltersRequest) String() string { func (*MutateAssetGroupListingGroupFiltersRequest) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFiltersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateAssetGroupListingGroupFiltersRequest) ProtoReflect() protoreflect // Deprecated: Use MutateAssetGroupListingGroupFiltersRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFiltersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupListingGroupFiltersRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type AssetGroupListingGroupFilterOperation struct { func (x *AssetGroupListingGroupFilterOperation) Reset() { *x = AssetGroupListingGroupFilterOperation{} - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *AssetGroupListingGroupFilterOperation) String() string { func (*AssetGroupListingGroupFilterOperation) ProtoMessage() {} func (x *AssetGroupListingGroupFilterOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *AssetGroupListingGroupFilterOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use AssetGroupListingGroupFilterOperation.ProtoReflect.Descriptor instead. func (*AssetGroupListingGroupFilterOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupListingGroupFilterOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -253,7 +253,7 @@ type MutateAssetGroupListingGroupFiltersResponse struct { func (x *MutateAssetGroupListingGroupFiltersResponse) Reset() { *x = MutateAssetGroupListingGroupFiltersResponse{} - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -265,7 +265,7 @@ func (x *MutateAssetGroupListingGroupFiltersResponse) String() string { func (*MutateAssetGroupListingGroupFiltersResponse) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFiltersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -278,7 +278,7 @@ func (x *MutateAssetGroupListingGroupFiltersResponse) ProtoReflect() protoreflec // Deprecated: Use MutateAssetGroupListingGroupFiltersResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFiltersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupListingGroupFiltersResponse) GetResults() []*MutateAssetGroupListingGroupFilterResult { @@ -303,7 +303,7 @@ type MutateAssetGroupListingGroupFilterResult struct { func (x *MutateAssetGroupListingGroupFilterResult) Reset() { *x = MutateAssetGroupListingGroupFilterResult{} - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -315,7 +315,7 @@ func (x *MutateAssetGroupListingGroupFilterResult) String() string { func (*MutateAssetGroupListingGroupFilterResult) ProtoMessage() {} func (x *MutateAssetGroupListingGroupFilterResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -328,7 +328,7 @@ func (x *MutateAssetGroupListingGroupFilterResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateAssetGroupListingGroupFilterResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupListingGroupFilterResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupListingGroupFilterResult) GetResourceName() string { @@ -345,22 +345,22 @@ func (x *MutateAssetGroupListingGroupFilterResult) GetAssetGroupListingGroupFilt return nil } -var File_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -381,7 +381,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -404,13 +404,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -442,7 +442,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -453,18 +453,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x43, 0x2f, 0x76, 0x32, 0x32, 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, @@ -474,57 +474,57 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_goTypes = []any{ - (*MutateAssetGroupListingGroupFiltersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest - (*AssetGroupListingGroupFilterOperation)(nil), // 1: google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation - (*MutateAssetGroupListingGroupFiltersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersResponse - (*MutateAssetGroupListingGroupFilterResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFilterResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_goTypes = []any{ + (*MutateAssetGroupListingGroupFiltersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest + (*AssetGroupListingGroupFilterOperation)(nil), // 1: google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation + (*MutateAssetGroupListingGroupFiltersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersResponse + (*MutateAssetGroupListingGroupFilterResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFilterResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AssetGroupListingGroupFilter)(nil), // 6: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter -} -var file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest.operations:type_name -> google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation - 4, // 1: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation.create:type_name -> google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - 6, // 4: google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation.update:type_name -> google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - 3, // 5: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetGroupListingGroupFilterResult - 6, // 6: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFilterResult.asset_group_listing_group_filter:type_name -> google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - 0, // 7: google.ads.googleads.v21.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:input_type -> google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersRequest - 2, // 8: google.ads.googleads.v21.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:output_type -> google.ads.googleads.v21.services.MutateAssetGroupListingGroupFiltersResponse + (*resources.AssetGroupListingGroupFilter)(nil), // 6: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter +} +var file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest.operations:type_name -> google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation + 4, // 1: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation.create:type_name -> google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + 6, // 4: google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation.update:type_name -> google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + 3, // 5: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetGroupListingGroupFilterResult + 6, // 6: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFilterResult.asset_group_listing_group_filter:type_name -> google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + 0, // 7: google.ads.googleads.v22.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:input_type -> google.ads.googleads.v22.services.MutateAssetGroupListingGroupFiltersRequest + 2, // 8: google.ads.googleads.v22.services.AssetGroupListingGroupFilterService.MutateAssetGroupListingGroupFilters:output_type -> google.ads.googleads.v22.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 @@ -533,13 +533,13 @@ var file_google_ads_googleads_v21_services_asset_group_listing_group_filter_serv } func init() { - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_init() + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto != nil { +func file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetGroupListingGroupFilterOperation_Create)(nil), (*AssetGroupListingGroupFilterOperation_Update)(nil), (*AssetGroupListingGroupFilterOperation_Remove)(nil), @@ -548,17 +548,17 @@ func file_google_ads_googleads_v21_services_asset_group_listing_group_filter_ser out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto = out.File - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto = out.File + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 de60182e..77a5d060 100644 --- a/services/asset_group_listing_group_filter_service_grpc.pb.go +++ b/services/asset_group_listing_group_filter_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_listing_group_filter_service.proto +// source: google/ads/googleads/v22/services/asset_group_listing_group_filter_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName = "/google.ads.googleads.v21.services.AssetGroupListingGroupFilterService/MutateAssetGroupListingGroupFilters" + AssetGroupListingGroupFilterService_MutateAssetGroupListingGroupFilters_FullMethodName = "/google.ads.googleads.v22.services.AssetGroupListingGroupFilterService/MutateAssetGroupListingGroupFilters" ) // AssetGroupListingGroupFilterServiceClient is the client API for AssetGroupListingGroupFilterService service. @@ -131,7 +131,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.v21.services.AssetGroupListingGroupFilterService", + ServiceName: "google.ads.googleads.v22.services.AssetGroupListingGroupFilterService", HandlerType: (*AssetGroupListingGroupFilterServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AssetGroupListingGroupFilterService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_group_listing_group_filter_service.proto", + Metadata: "google/ads/googleads/v22/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 4e6a5552..98e9955d 100644 --- a/services/asset_group_service.pb.go +++ b/services/asset_group_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_service.proto +// source: google/ads/googleads/v22/services/asset_group_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetGroupService.MutateAssetGroups][google.ads.googleads.v21.services.AssetGroupService.MutateAssetGroups]. +// [AssetGroupService.MutateAssetGroups][google.ads.googleads.v22.services.AssetGroupService.MutateAssetGroups]. type MutateAssetGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose asset groups are being modified. @@ -56,7 +56,7 @@ type MutateAssetGroupsRequest struct { func (x *MutateAssetGroupsRequest) Reset() { *x = MutateAssetGroupsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *MutateAssetGroupsRequest) String() string { func (*MutateAssetGroupsRequest) ProtoMessage() {} func (x *MutateAssetGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *MutateAssetGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupsRequest) GetCustomerId() string { @@ -124,7 +124,7 @@ type AssetGroupOperation struct { func (x *AssetGroupOperation) Reset() { *x = AssetGroupOperation{} - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -136,7 +136,7 @@ func (x *AssetGroupOperation) String() string { func (*AssetGroupOperation) ProtoMessage() {} func (x *AssetGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -149,7 +149,7 @@ func (x *AssetGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupOperation.ProtoReflect.Descriptor instead. func (*AssetGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -237,7 +237,7 @@ type MutateAssetGroupsResponse struct { func (x *MutateAssetGroupsResponse) Reset() { *x = MutateAssetGroupsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -249,7 +249,7 @@ func (x *MutateAssetGroupsResponse) String() string { func (*MutateAssetGroupsResponse) ProtoMessage() {} func (x *MutateAssetGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -262,7 +262,7 @@ func (x *MutateAssetGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupsResponse) GetResults() []*MutateAssetGroupResult { @@ -290,7 +290,7 @@ type MutateAssetGroupResult struct { func (x *MutateAssetGroupResult) Reset() { *x = MutateAssetGroupResult{} - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -302,7 +302,7 @@ func (x *MutateAssetGroupResult) String() string { func (*MutateAssetGroupResult) ProtoMessage() {} func (x *MutateAssetGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -315,7 +315,7 @@ func (x *MutateAssetGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupResult) GetResourceName() string { @@ -325,17 +325,17 @@ func (x *MutateAssetGroupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_asset_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_group_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -355,7 +355,7 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -368,12 +368,12 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, + 0x76, 0x32, 0x32, 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, @@ -384,7 +384,7 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -402,16 +402,16 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x32, 0x32, 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, @@ -420,55 +420,55 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc = s 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_group_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_group_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_group_service_proto_goTypes = []any{ - (*MutateAssetGroupsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetGroupsRequest - (*AssetGroupOperation)(nil), // 1: google.ads.googleads.v21.services.AssetGroupOperation - (*MutateAssetGroupsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetGroupsResponse - (*MutateAssetGroupResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetGroupResult +var file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_group_service_proto_goTypes = []any{ + (*MutateAssetGroupsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetGroupsRequest + (*AssetGroupOperation)(nil), // 1: google.ads.googleads.v22.services.AssetGroupOperation + (*MutateAssetGroupsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetGroupsResponse + (*MutateAssetGroupResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetGroupResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.AssetGroup)(nil), // 5: google.ads.googleads.v21.resources.AssetGroup + (*resources.AssetGroup)(nil), // 5: google.ads.googleads.v22.resources.AssetGroup (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetGroupsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetGroupOperation - 4, // 1: google.ads.googleads.v21.services.AssetGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.AssetGroupOperation.create:type_name -> google.ads.googleads.v21.resources.AssetGroup - 5, // 3: google.ads.googleads.v21.services.AssetGroupOperation.update:type_name -> google.ads.googleads.v21.resources.AssetGroup - 3, // 4: google.ads.googleads.v21.services.MutateAssetGroupsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetGroupResult - 6, // 5: google.ads.googleads.v21.services.MutateAssetGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v21.services.AssetGroupService.MutateAssetGroups:input_type -> google.ads.googleads.v21.services.MutateAssetGroupsRequest - 2, // 7: google.ads.googleads.v21.services.AssetGroupService.MutateAssetGroups:output_type -> google.ads.googleads.v21.services.MutateAssetGroupsResponse +var file_google_ads_googleads_v22_services_asset_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetGroupsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetGroupOperation + 4, // 1: google.ads.googleads.v22.services.AssetGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.AssetGroupOperation.create:type_name -> google.ads.googleads.v22.resources.AssetGroup + 5, // 3: google.ads.googleads.v22.services.AssetGroupOperation.update:type_name -> google.ads.googleads.v22.resources.AssetGroup + 3, // 4: google.ads.googleads.v22.services.MutateAssetGroupsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetGroupResult + 6, // 5: google.ads.googleads.v22.services.MutateAssetGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v22.services.AssetGroupService.MutateAssetGroups:input_type -> google.ads.googleads.v22.services.MutateAssetGroupsRequest + 2, // 7: google.ads.googleads.v22.services.AssetGroupService.MutateAssetGroups:output_type -> google.ads.googleads.v22.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 @@ -476,12 +476,12 @@ var file_google_ads_googleads_v21_services_asset_group_service_proto_depIdxs = [ 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_group_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_group_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_group_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_group_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_group_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_group_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetGroupOperation_Create)(nil), (*AssetGroupOperation_Update)(nil), (*AssetGroupOperation_Remove)(nil), @@ -490,17 +490,17 @@ func file_google_ads_googleads_v21_services_asset_group_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_group_service_proto = out.File - file_google_ads_googleads_v21_services_asset_group_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_group_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_group_service_proto = out.File + file_google_ads_googleads_v22_services_asset_group_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 d632cfb4..67b941c3 100644 --- a/services/asset_group_service_grpc.pb.go +++ b/services/asset_group_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_service.proto +// source: google/ads/googleads/v22/services/asset_group_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetGroupService_MutateAssetGroups_FullMethodName = "/google.ads.googleads.v21.services.AssetGroupService/MutateAssetGroups" + AssetGroupService_MutateAssetGroups_FullMethodName = "/google.ads.googleads.v22.services.AssetGroupService/MutateAssetGroups" ) // AssetGroupServiceClient is the client API for AssetGroupService service. @@ -130,7 +130,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.v21.services.AssetGroupService", + ServiceName: "google.ads.googleads.v22.services.AssetGroupService", HandlerType: (*AssetGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -139,5 +139,5 @@ var AssetGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_group_service.proto", + Metadata: "google/ads/googleads/v22/services/asset_group_service.proto", } diff --git a/services/asset_group_signal_service.pb.go b/services/asset_group_signal_service.pb.go index 3ffe0bc3..40fd3583 100644 --- a/services/asset_group_signal_service.pb.go +++ b/services/asset_group_signal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_signal_service.proto +// source: google/ads/googleads/v22/services/asset_group_signal_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AssetGroupSignalService.MutateAssetGroupSignals][google.ads.googleads.v21.services.AssetGroupSignalService.MutateAssetGroupSignals]. +// [AssetGroupSignalService.MutateAssetGroupSignals][google.ads.googleads.v22.services.AssetGroupSignalService.MutateAssetGroupSignals]. type MutateAssetGroupSignalsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose asset group signals are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAssetGroupSignalsRequest) Reset() { *x = MutateAssetGroupSignalsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateAssetGroupSignalsRequest) String() string { func (*MutateAssetGroupSignalsRequest) ProtoMessage() {} func (x *MutateAssetGroupSignalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateAssetGroupSignalsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetGroupSignalsRequest) GetCustomerId() string { @@ -155,7 +155,7 @@ type AssetGroupSignalOperation struct { func (x *AssetGroupSignalOperation) Reset() { *x = AssetGroupSignalOperation{} - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167,7 +167,7 @@ func (x *AssetGroupSignalOperation) String() string { func (*AssetGroupSignalOperation) ProtoMessage() {} func (x *AssetGroupSignalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180,7 +180,7 @@ func (x *AssetGroupSignalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupSignalOperation.ProtoReflect.Descriptor instead. func (*AssetGroupSignalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescGZIP(), []int{1} } func (x *AssetGroupSignalOperation) GetExemptPolicyViolationKeys() []*common.PolicyViolationKey { @@ -252,7 +252,7 @@ type MutateAssetGroupSignalsResponse struct { func (x *MutateAssetGroupSignalsResponse) Reset() { *x = MutateAssetGroupSignalsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateAssetGroupSignalsResponse) String() string { func (*MutateAssetGroupSignalsResponse) ProtoMessage() {} func (x *MutateAssetGroupSignalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateAssetGroupSignalsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetGroupSignalsResponse) GetResults() []*MutateAssetGroupSignalResult { @@ -309,7 +309,7 @@ type MutateAssetGroupSignalResult struct { func (x *MutateAssetGroupSignalResult) Reset() { *x = MutateAssetGroupSignalResult{} - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -321,7 +321,7 @@ func (x *MutateAssetGroupSignalResult) String() string { func (*MutateAssetGroupSignalResult) ProtoMessage() {} func (x *MutateAssetGroupSignalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -334,7 +334,7 @@ func (x *MutateAssetGroupSignalResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetGroupSignalResult.ProtoReflect.Descriptor instead. func (*MutateAssetGroupSignalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetGroupSignalResult) GetResourceName() string { @@ -351,24 +351,24 @@ func (x *MutateAssetGroupSignalResult) GetAssetGroupSignal() *resources.AssetGro return nil } -var File_google_ads_googleads_v21_services_asset_group_signal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_group_signal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x70, 0x6f, 0x6c, 0x69, 0x63, 0x79, 0x2e, + 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x32, 0x32, 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, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -409,13 +409,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x6f, 0x6c, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -428,7 +428,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,16 +454,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, 0x76, 0x32, 0x32, 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, @@ -473,57 +473,57 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_group_signal_service_proto_goTypes = []any{ - (*MutateAssetGroupSignalsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest - (*AssetGroupSignalOperation)(nil), // 1: google.ads.googleads.v21.services.AssetGroupSignalOperation - (*MutateAssetGroupSignalsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse - (*MutateAssetGroupSignalResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetGroupSignalResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*common.PolicyViolationKey)(nil), // 5: google.ads.googleads.v21.common.PolicyViolationKey - (*resources.AssetGroupSignal)(nil), // 6: google.ads.googleads.v21.resources.AssetGroupSignal + return file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_group_signal_service_proto_goTypes = []any{ + (*MutateAssetGroupSignalsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest + (*AssetGroupSignalOperation)(nil), // 1: google.ads.googleads.v22.services.AssetGroupSignalOperation + (*MutateAssetGroupSignalsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetGroupSignalsResponse + (*MutateAssetGroupSignalResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetGroupSignalResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*common.PolicyViolationKey)(nil), // 5: google.ads.googleads.v22.common.PolicyViolationKey + (*resources.AssetGroupSignal)(nil), // 6: google.ads.googleads.v22.resources.AssetGroupSignal (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_group_signal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetGroupSignalOperation - 4, // 1: google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AssetGroupSignalOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v21.common.PolicyViolationKey - 6, // 3: google.ads.googleads.v21.services.AssetGroupSignalOperation.create:type_name -> google.ads.googleads.v21.resources.AssetGroupSignal - 3, // 4: google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetGroupSignalResult - 7, // 5: google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 6: google.ads.googleads.v21.services.MutateAssetGroupSignalResult.asset_group_signal:type_name -> google.ads.googleads.v21.resources.AssetGroupSignal - 0, // 7: google.ads.googleads.v21.services.AssetGroupSignalService.MutateAssetGroupSignals:input_type -> google.ads.googleads.v21.services.MutateAssetGroupSignalsRequest - 2, // 8: google.ads.googleads.v21.services.AssetGroupSignalService.MutateAssetGroupSignals:output_type -> google.ads.googleads.v21.services.MutateAssetGroupSignalsResponse +var file_google_ads_googleads_v22_services_asset_group_signal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetGroupSignalOperation + 4, // 1: google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AssetGroupSignalOperation.exempt_policy_violation_keys:type_name -> google.ads.googleads.v22.common.PolicyViolationKey + 6, // 3: google.ads.googleads.v22.services.AssetGroupSignalOperation.create:type_name -> google.ads.googleads.v22.resources.AssetGroupSignal + 3, // 4: google.ads.googleads.v22.services.MutateAssetGroupSignalsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetGroupSignalResult + 7, // 5: google.ads.googleads.v22.services.MutateAssetGroupSignalsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 6: google.ads.googleads.v22.services.MutateAssetGroupSignalResult.asset_group_signal:type_name -> google.ads.googleads.v22.resources.AssetGroupSignal + 0, // 7: google.ads.googleads.v22.services.AssetGroupSignalService.MutateAssetGroupSignals:input_type -> google.ads.googleads.v22.services.MutateAssetGroupSignalsRequest + 2, // 8: google.ads.googleads.v22.services.AssetGroupSignalService.MutateAssetGroupSignals:output_type -> google.ads.googleads.v22.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 @@ -531,12 +531,12 @@ var file_google_ads_googleads_v21_services_asset_group_signal_service_proto_depI 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_group_signal_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_group_signal_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_group_signal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_group_signal_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_group_signal_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_group_signal_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetGroupSignalOperation_Create)(nil), (*AssetGroupSignalOperation_Remove)(nil), } @@ -544,17 +544,17 @@ func file_google_ads_googleads_v21_services_asset_group_signal_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_group_signal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_group_signal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_group_signal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_group_signal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_group_signal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_group_signal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_group_signal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_group_signal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_group_signal_service_proto = out.File - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_group_signal_service_proto = out.File + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 55656e4e..549d340a 100644 --- a/services/asset_group_signal_service_grpc.pb.go +++ b/services/asset_group_signal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_group_signal_service.proto +// source: google/ads/googleads/v22/services/asset_group_signal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName = "/google.ads.googleads.v21.services.AssetGroupSignalService/MutateAssetGroupSignals" + AssetGroupSignalService_MutateAssetGroupSignals_FullMethodName = "/google.ads.googleads.v22.services.AssetGroupSignalService/MutateAssetGroupSignals" ) // AssetGroupSignalServiceClient is the client API for AssetGroupSignalService service. @@ -131,7 +131,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.v21.services.AssetGroupSignalService", + ServiceName: "google.ads.googleads.v22.services.AssetGroupSignalService", HandlerType: (*AssetGroupSignalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var AssetGroupSignalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_group_signal_service.proto", + Metadata: "google/ads/googleads/v22/services/asset_group_signal_service.proto", } diff --git a/services/asset_service.pb.go b/services/asset_service.pb.go index 4ce9075f..23f37667 100644 --- a/services/asset_service.pb.go +++ b/services/asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_service.proto +// source: google/ads/googleads/v22/services/asset_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AssetService.MutateAssets][google.ads.googleads.v21.services.AssetService.MutateAssets] +// [AssetService.MutateAssets][google.ads.googleads.v22.services.AssetService.MutateAssets] type MutateAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose assets are being modified. @@ -55,7 +55,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.v21.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.v22.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"` @@ -65,7 +65,7 @@ type MutateAssetsRequest struct { func (x *MutateAssetsRequest) Reset() { *x = MutateAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAssetsRequest) String() string { func (*MutateAssetsRequest) ProtoMessage() {} func (x *MutateAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type AssetOperation struct { func (x *AssetOperation) Reset() { *x = AssetOperation{} - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *AssetOperation) String() string { func (*AssetOperation) ProtoMessage() {} func (x *AssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *AssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetOperation.ProtoReflect.Descriptor instead. func (*AssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -246,7 +246,7 @@ type MutateAssetsResponse struct { func (x *MutateAssetsResponse) Reset() { *x = MutateAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -258,7 +258,7 @@ func (x *MutateAssetsResponse) String() string { func (*MutateAssetsResponse) ProtoMessage() {} func (x *MutateAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -271,7 +271,7 @@ func (x *MutateAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetsResponse) GetPartialFailureError() *status.Status { @@ -302,7 +302,7 @@ type MutateAssetResult struct { func (x *MutateAssetResult) Reset() { *x = MutateAssetResult{} - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *MutateAssetResult) String() string { func (*MutateAssetResult) ProtoMessage() {} func (x *MutateAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *MutateAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetResult) GetResourceName() string { @@ -344,20 +344,20 @@ func (x *MutateAssetResult) GetAsset() *resources.Asset { return nil } -var File_google_ads_googleads_v21_services_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x32, 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, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -400,11 +400,11 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -415,7 +415,7 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,20 +426,20 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x32, 0x32, 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, @@ -448,58 +448,58 @@ var file_google_ads_googleads_v21_services_asset_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_service_proto_goTypes = []any{ - (*MutateAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetsRequest - (*AssetOperation)(nil), // 1: google.ads.googleads.v21.services.AssetOperation - (*MutateAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetsResponse - (*MutateAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_service_proto_goTypes = []any{ + (*MutateAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetsRequest + (*AssetOperation)(nil), // 1: google.ads.googleads.v22.services.AssetOperation + (*MutateAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetsResponse + (*MutateAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Asset)(nil), // 6: google.ads.googleads.v21.resources.Asset + (*resources.Asset)(nil), // 6: google.ads.googleads.v22.resources.Asset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetOperation - 4, // 1: google.ads.googleads.v21.services.MutateAssetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AssetOperation.create:type_name -> google.ads.googleads.v21.resources.Asset - 6, // 4: google.ads.googleads.v21.services.AssetOperation.update:type_name -> google.ads.googleads.v21.resources.Asset - 7, // 5: google.ads.googleads.v21.services.MutateAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetResult - 6, // 7: google.ads.googleads.v21.services.MutateAssetResult.asset:type_name -> google.ads.googleads.v21.resources.Asset - 0, // 8: google.ads.googleads.v21.services.AssetService.MutateAssets:input_type -> google.ads.googleads.v21.services.MutateAssetsRequest - 2, // 9: google.ads.googleads.v21.services.AssetService.MutateAssets:output_type -> google.ads.googleads.v21.services.MutateAssetsResponse +var file_google_ads_googleads_v22_services_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetOperation + 4, // 1: google.ads.googleads.v22.services.MutateAssetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AssetOperation.create:type_name -> google.ads.googleads.v22.resources.Asset + 6, // 4: google.ads.googleads.v22.services.AssetOperation.update:type_name -> google.ads.googleads.v22.resources.Asset + 7, // 5: google.ads.googleads.v22.services.MutateAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetResult + 6, // 7: google.ads.googleads.v22.services.MutateAssetResult.asset:type_name -> google.ads.googleads.v22.resources.Asset + 0, // 8: google.ads.googleads.v22.services.AssetService.MutateAssets:input_type -> google.ads.googleads.v22.services.MutateAssetsRequest + 2, // 9: google.ads.googleads.v22.services.AssetService.MutateAssets:output_type -> google.ads.googleads.v22.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 @@ -507,12 +507,12 @@ var file_google_ads_googleads_v21_services_asset_service_proto_depIdxs = []int32 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetOperation_Create)(nil), (*AssetOperation_Update)(nil), } @@ -520,17 +520,17 @@ func file_google_ads_googleads_v21_services_asset_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_service_proto = out.File - file_google_ads_googleads_v21_services_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_service_proto = out.File + file_google_ads_googleads_v22_services_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_asset_service_proto_depIdxs = nil } diff --git a/services/asset_service_grpc.pb.go b/services/asset_service_grpc.pb.go index ec9cd97a..1a67535a 100644 --- a/services/asset_service_grpc.pb.go +++ b/services/asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_service.proto +// source: google/ads/googleads/v22/services/asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetService_MutateAssets_FullMethodName = "/google.ads.googleads.v21.services.AssetService/MutateAssets" + AssetService_MutateAssets_FullMethodName = "/google.ads.googleads.v22.services.AssetService/MutateAssets" ) // AssetServiceClient is the client API for AssetService service. @@ -192,7 +192,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.v21.services.AssetService", + ServiceName: "google.ads.googleads.v22.services.AssetService", HandlerType: (*AssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -201,5 +201,5 @@ var AssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_service.proto", + Metadata: "google/ads/googleads/v22/services/asset_service.proto", } diff --git a/services/asset_set_asset_service.pb.go b/services/asset_set_asset_service.pb.go index eb5924ed..e2ae5bef 100644 --- a/services/asset_set_asset_service.pb.go +++ b/services/asset_set_asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_set_asset_service.proto +// source: google/ads/googleads/v22/services/asset_set_asset_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [AssetSetAssetService.MutateAssetSetAssets][google.ads.googleads.v21.services.AssetSetAssetService.MutateAssetSetAssets]. +// [AssetSetAssetService.MutateAssetSetAssets][google.ads.googleads.v22.services.AssetSetAssetService.MutateAssetSetAssets]. type MutateAssetSetAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose asset set assets are being modified. @@ -57,14 +57,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAssetSetAssetsRequest) Reset() { *x = MutateAssetSetAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateAssetSetAssetsRequest) String() string { func (*MutateAssetSetAssetsRequest) ProtoMessage() {} func (x *MutateAssetSetAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *MutateAssetSetAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetSetAssetsRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type AssetSetAssetOperation struct { func (x *AssetSetAssetOperation) Reset() { *x = AssetSetAssetOperation{} - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *AssetSetAssetOperation) String() string { func (*AssetSetAssetOperation) ProtoMessage() {} func (x *AssetSetAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *AssetSetAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetAssetOperation.ProtoReflect.Descriptor instead. func (*AssetSetAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescGZIP(), []int{1} } func (x *AssetSetAssetOperation) GetOperation() isAssetSetAssetOperation_Operation { @@ -233,7 +233,7 @@ type MutateAssetSetAssetsResponse struct { func (x *MutateAssetSetAssetsResponse) Reset() { *x = MutateAssetSetAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -245,7 +245,7 @@ func (x *MutateAssetSetAssetsResponse) String() string { func (*MutateAssetSetAssetsResponse) ProtoMessage() {} func (x *MutateAssetSetAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -258,7 +258,7 @@ func (x *MutateAssetSetAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetSetAssetsResponse) GetResults() []*MutateAssetSetAssetResult { @@ -290,7 +290,7 @@ type MutateAssetSetAssetResult struct { func (x *MutateAssetSetAssetResult) Reset() { *x = MutateAssetSetAssetResult{} - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -302,7 +302,7 @@ func (x *MutateAssetSetAssetResult) String() string { func (*MutateAssetSetAssetResult) ProtoMessage() {} func (x *MutateAssetSetAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -315,7 +315,7 @@ func (x *MutateAssetSetAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetAssetResult.ProtoReflect.Descriptor instead. func (*MutateAssetSetAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetSetAssetResult) GetResourceName() string { @@ -332,21 +332,21 @@ func (x *MutateAssetSetAssetResult) GetAssetSetAsset() *resources.AssetSetAsset return nil } -var File_google_ads_googleads_v21_services_asset_set_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_set_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -364,7 +364,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -376,7 +376,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, + 0x32, 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, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -414,23 +414,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -440,55 +440,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_set_asset_service_proto_goTypes = []any{ - (*MutateAssetSetAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetSetAssetsRequest - (*AssetSetAssetOperation)(nil), // 1: google.ads.googleads.v21.services.AssetSetAssetOperation - (*MutateAssetSetAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetSetAssetsResponse - (*MutateAssetSetAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetSetAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.AssetSetAsset)(nil), // 5: google.ads.googleads.v21.resources.AssetSetAsset +var file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_set_asset_service_proto_goTypes = []any{ + (*MutateAssetSetAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetSetAssetsRequest + (*AssetSetAssetOperation)(nil), // 1: google.ads.googleads.v22.services.AssetSetAssetOperation + (*MutateAssetSetAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetSetAssetsResponse + (*MutateAssetSetAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetSetAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.AssetSetAsset)(nil), // 5: google.ads.googleads.v22.resources.AssetSetAsset (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_set_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetSetAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetSetAssetOperation - 4, // 1: google.ads.googleads.v21.services.MutateAssetSetAssetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AssetSetAssetOperation.create:type_name -> google.ads.googleads.v21.resources.AssetSetAsset - 3, // 3: google.ads.googleads.v21.services.MutateAssetSetAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetSetAssetResult - 6, // 4: google.ads.googleads.v21.services.MutateAssetSetAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateAssetSetAssetResult.asset_set_asset:type_name -> google.ads.googleads.v21.resources.AssetSetAsset - 0, // 6: google.ads.googleads.v21.services.AssetSetAssetService.MutateAssetSetAssets:input_type -> google.ads.googleads.v21.services.MutateAssetSetAssetsRequest - 2, // 7: google.ads.googleads.v21.services.AssetSetAssetService.MutateAssetSetAssets:output_type -> google.ads.googleads.v21.services.MutateAssetSetAssetsResponse +var file_google_ads_googleads_v22_services_asset_set_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetSetAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetSetAssetOperation + 4, // 1: google.ads.googleads.v22.services.MutateAssetSetAssetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AssetSetAssetOperation.create:type_name -> google.ads.googleads.v22.resources.AssetSetAsset + 3, // 3: google.ads.googleads.v22.services.MutateAssetSetAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetSetAssetResult + 6, // 4: google.ads.googleads.v22.services.MutateAssetSetAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateAssetSetAssetResult.asset_set_asset:type_name -> google.ads.googleads.v22.resources.AssetSetAsset + 0, // 6: google.ads.googleads.v22.services.AssetSetAssetService.MutateAssetSetAssets:input_type -> google.ads.googleads.v22.services.MutateAssetSetAssetsRequest + 2, // 7: google.ads.googleads.v22.services.AssetSetAssetService.MutateAssetSetAssets:output_type -> google.ads.googleads.v22.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 @@ -496,12 +496,12 @@ var file_google_ads_googleads_v21_services_asset_set_asset_service_proto_depIdxs 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_set_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_set_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_set_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_set_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_set_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_set_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetSetAssetOperation_Create)(nil), (*AssetSetAssetOperation_Remove)(nil), } @@ -509,17 +509,17 @@ func file_google_ads_googleads_v21_services_asset_set_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_set_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_set_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_set_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_set_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_set_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_set_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_set_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_set_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_set_asset_service_proto = out.File - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_set_asset_service_proto = out.File + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 27b3a4d4..60457adb 100644 --- a/services/asset_set_asset_service_grpc.pb.go +++ b/services/asset_set_asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_set_asset_service.proto +// source: google/ads/googleads/v22/services/asset_set_asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetSetAssetService_MutateAssetSetAssets_FullMethodName = "/google.ads.googleads.v21.services.AssetSetAssetService/MutateAssetSetAssets" + AssetSetAssetService_MutateAssetSetAssets_FullMethodName = "/google.ads.googleads.v22.services.AssetSetAssetService/MutateAssetSetAssets" ) // AssetSetAssetServiceClient is the client API for AssetSetAssetService service. @@ -130,7 +130,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.v21.services.AssetSetAssetService", + ServiceName: "google.ads.googleads.v22.services.AssetSetAssetService", HandlerType: (*AssetSetAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -139,5 +139,5 @@ var AssetSetAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_set_asset_service.proto", + Metadata: "google/ads/googleads/v22/services/asset_set_asset_service.proto", } diff --git a/services/asset_set_service.pb.go b/services/asset_set_service.pb.go index aea214f5..3cdae62c 100644 --- a/services/asset_set_service.pb.go +++ b/services/asset_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_set_service.proto +// source: google/ads/googleads/v22/services/asset_set_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AssetSetService.MutateAssetSets][google.ads.googleads.v21.services.AssetSetService.MutateAssetSets]. +// [AssetSetService.MutateAssetSets][google.ads.googleads.v22.services.AssetSetService.MutateAssetSets]. type MutateAssetSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose asset sets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAssetSetsRequest) Reset() { *x = MutateAssetSetsRequest{} - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateAssetSetsRequest) String() string { func (*MutateAssetSetsRequest) ProtoMessage() {} func (x *MutateAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAssetSetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type AssetSetOperation struct { func (x *AssetSetOperation) Reset() { *x = AssetSetOperation{} - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *AssetSetOperation) String() string { func (*AssetSetOperation) ProtoMessage() {} func (x *AssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *AssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetSetOperation.ProtoReflect.Descriptor instead. func (*AssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescGZIP(), []int{1} } func (x *AssetSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -260,7 +260,7 @@ type MutateAssetSetsResponse struct { func (x *MutateAssetSetsResponse) Reset() { *x = MutateAssetSetsResponse{} - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -272,7 +272,7 @@ func (x *MutateAssetSetsResponse) String() string { func (*MutateAssetSetsResponse) ProtoMessage() {} func (x *MutateAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -285,7 +285,7 @@ func (x *MutateAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateAssetSetsResponse) GetResults() []*MutateAssetSetResult { @@ -316,7 +316,7 @@ type MutateAssetSetResult struct { func (x *MutateAssetSetResult) Reset() { *x = MutateAssetSetResult{} - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -328,7 +328,7 @@ func (x *MutateAssetSetResult) String() string { func (*MutateAssetSetResult) ProtoMessage() {} func (x *MutateAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -341,7 +341,7 @@ func (x *MutateAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAssetSetResult) GetResourceName() string { @@ -358,21 +358,21 @@ func (x *MutateAssetSetResult) GetAssetSet() *resources.AssetSet { return nil } -var File_google_ads_googleads_v21_services_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_asset_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -402,7 +402,7 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -415,11 +415,11 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -431,7 +431,7 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -447,21 +447,21 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -470,58 +470,58 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_asset_set_service_proto_goTypes = []any{ - (*MutateAssetSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAssetSetsRequest - (*AssetSetOperation)(nil), // 1: google.ads.googleads.v21.services.AssetSetOperation - (*MutateAssetSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateAssetSetsResponse - (*MutateAssetSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_asset_set_service_proto_goTypes = []any{ + (*MutateAssetSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAssetSetsRequest + (*AssetSetOperation)(nil), // 1: google.ads.googleads.v22.services.AssetSetOperation + (*MutateAssetSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateAssetSetsResponse + (*MutateAssetSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.AssetSet)(nil), // 6: google.ads.googleads.v21.resources.AssetSet + (*resources.AssetSet)(nil), // 6: google.ads.googleads.v22.resources.AssetSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateAssetSetsRequest.operations:type_name -> google.ads.googleads.v21.services.AssetSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.AssetSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.AssetSetOperation.create:type_name -> google.ads.googleads.v21.resources.AssetSet - 6, // 4: google.ads.googleads.v21.services.AssetSetOperation.update:type_name -> google.ads.googleads.v21.resources.AssetSet - 3, // 5: google.ads.googleads.v21.services.MutateAssetSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateAssetSetResult - 7, // 6: google.ads.googleads.v21.services.MutateAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v21.services.MutateAssetSetResult.asset_set:type_name -> google.ads.googleads.v21.resources.AssetSet - 0, // 8: google.ads.googleads.v21.services.AssetSetService.MutateAssetSets:input_type -> google.ads.googleads.v21.services.MutateAssetSetsRequest - 2, // 9: google.ads.googleads.v21.services.AssetSetService.MutateAssetSets:output_type -> google.ads.googleads.v21.services.MutateAssetSetsResponse +var file_google_ads_googleads_v22_services_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateAssetSetsRequest.operations:type_name -> google.ads.googleads.v22.services.AssetSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.AssetSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.AssetSetOperation.create:type_name -> google.ads.googleads.v22.resources.AssetSet + 6, // 4: google.ads.googleads.v22.services.AssetSetOperation.update:type_name -> google.ads.googleads.v22.resources.AssetSet + 3, // 5: google.ads.googleads.v22.services.MutateAssetSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateAssetSetResult + 7, // 6: google.ads.googleads.v22.services.MutateAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v22.services.MutateAssetSetResult.asset_set:type_name -> google.ads.googleads.v22.resources.AssetSet + 0, // 8: google.ads.googleads.v22.services.AssetSetService.MutateAssetSets:input_type -> google.ads.googleads.v22.services.MutateAssetSetsRequest + 2, // 9: google.ads.googleads.v22.services.AssetSetService.MutateAssetSets:output_type -> google.ads.googleads.v22.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 @@ -529,12 +529,12 @@ var file_google_ads_googleads_v21_services_asset_set_service_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_asset_set_service_proto_init() } -func file_google_ads_googleads_v21_services_asset_set_service_proto_init() { - if File_google_ads_googleads_v21_services_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_asset_set_service_proto_init() } +func file_google_ads_googleads_v22_services_asset_set_service_proto_init() { + if File_google_ads_googleads_v22_services_asset_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*AssetSetOperation_Create)(nil), (*AssetSetOperation_Update)(nil), (*AssetSetOperation_Remove)(nil), @@ -543,17 +543,17 @@ func file_google_ads_googleads_v21_services_asset_set_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_asset_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_asset_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_asset_set_service_proto = out.File - file_google_ads_googleads_v21_services_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_asset_set_service_proto = out.File + file_google_ads_googleads_v22_services_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 5c8838f2..2faff091 100644 --- a/services/asset_set_service_grpc.pb.go +++ b/services/asset_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/asset_set_service.proto +// source: google/ads/googleads/v22/services/asset_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AssetSetService_MutateAssetSets_FullMethodName = "/google.ads.googleads.v21.services.AssetSetService/MutateAssetSets" + AssetSetService_MutateAssetSets_FullMethodName = "/google.ads.googleads.v22.services.AssetSetService/MutateAssetSets" ) // AssetSetServiceClient is the client API for AssetSetService service. @@ -130,7 +130,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.v21.services.AssetSetService", + ServiceName: "google.ads.googleads.v22.services.AssetSetService", HandlerType: (*AssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -139,5 +139,5 @@ var AssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/asset_set_service.proto", + Metadata: "google/ads/googleads/v22/services/asset_set_service.proto", } diff --git a/services/audience_insights_service.pb.go b/services/audience_insights_service.pb.go index c6be8f1f..28fb7968 100644 --- a/services/audience_insights_service.pb.go +++ b/services/audience_insights_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/audience_insights_service.proto +// source: google/ads/googleads/v22/services/audience_insights_service.proto package services @@ -39,18 +39,18 @@ const ( ) // Request message for -// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v21.services.AudienceInsightsService.GenerateInsightsFinderReport]. +// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v22.services.AudienceInsightsService.GenerateInsightsFinderReport]. type GenerateInsightsFinderReportRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // Required. A baseline audience for this report, typically all people in a // region. - BaselineAudience *BasicInsightsAudience `protobuf:"bytes,2,opt,name=baseline_audience,json=baselineAudience,proto3" json:"baseline_audience,omitempty"` + BaselineAudience *InsightsAudience `protobuf:"bytes,6,opt,name=baseline_audience,json=baselineAudience,proto3" json:"baseline_audience,omitempty"` // Required. The specific audience of interest for this report. The insights // in the report will be based on attributes more prevalent in this audience // than in the report's baseline audience. - SpecificAudience *BasicInsightsAudience `protobuf:"bytes,3,opt,name=specific_audience,json=specificAudience,proto3" json:"specific_audience,omitempty"` + SpecificAudience *InsightsAudience `protobuf:"bytes,7,opt,name=specific_audience,json=specificAudience,proto3" json:"specific_audience,omitempty"` // The name of the customer being planned for. This is a user-defined value. CustomerInsightsGroup string `protobuf:"bytes,4,opt,name=customer_insights_group,json=customerInsightsGroup,proto3" json:"customer_insights_group,omitempty"` // Optional. Additional information on the application issuing the request. @@ -61,7 +61,7 @@ type GenerateInsightsFinderReportRequest struct { func (x *GenerateInsightsFinderReportRequest) Reset() { *x = GenerateInsightsFinderReportRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_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_v21_services_audience_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[0] if 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_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateInsightsFinderReportRequest) GetCustomerId() string { @@ -96,14 +96,14 @@ func (x *GenerateInsightsFinderReportRequest) GetCustomerId() string { return "" } -func (x *GenerateInsightsFinderReportRequest) GetBaselineAudience() *BasicInsightsAudience { +func (x *GenerateInsightsFinderReportRequest) GetBaselineAudience() *InsightsAudience { if x != nil { return x.BaselineAudience } return nil } -func (x *GenerateInsightsFinderReportRequest) GetSpecificAudience() *BasicInsightsAudience { +func (x *GenerateInsightsFinderReportRequest) GetSpecificAudience() *InsightsAudience { if x != nil { return x.SpecificAudience } @@ -125,7 +125,7 @@ func (x *GenerateInsightsFinderReportRequest) GetInsightsApplicationInfo() *comm } // The response message for -// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v21.services.AudienceInsightsService.GenerateInsightsFinderReport], +// [AudienceInsightsService.GenerateInsightsFinderReport][google.ads.googleads.v22.services.AudienceInsightsService.GenerateInsightsFinderReport], // containing the shareable URL for the report. type GenerateInsightsFinderReportResponse struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -138,7 +138,7 @@ type GenerateInsightsFinderReportResponse struct { func (x *GenerateInsightsFinderReportResponse) Reset() { *x = GenerateInsightsFinderReportResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *GenerateInsightsFinderReportResponse) String() string { func (*GenerateInsightsFinderReportResponse) ProtoMessage() {} func (x *GenerateInsightsFinderReportResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *GenerateInsightsFinderReportResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use GenerateInsightsFinderReportResponse.ProtoReflect.Descriptor instead. func (*GenerateInsightsFinderReportResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{1} } func (x *GenerateInsightsFinderReportResponse) GetSavedReportUrl() string { @@ -174,7 +174,7 @@ func (x *GenerateInsightsFinderReportResponse) GetSavedReportUrl() string { } // Request message for -// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. +// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. type GenerateAudienceCompositionInsightsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -193,7 +193,7 @@ type GenerateAudienceCompositionInsightsRequest struct { // SUB_COUNTRY_LOCATION, YOUTUBE_CHANNEL, YOUTUBE_LINEUP, // AFFINITY_USER_INTEREST, IN_MARKET_USER_INTEREST, PARENTAL_STATUS, // INCOME_RANGE, AGE_RANGE, and GENDER. - Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` + Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v22.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"` // Optional. Additional information on the application issuing the request. @@ -204,7 +204,7 @@ type GenerateAudienceCompositionInsightsRequest struct { func (x *GenerateAudienceCompositionInsightsRequest) Reset() { *x = GenerateAudienceCompositionInsightsRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -216,7 +216,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) String() string { func (*GenerateAudienceCompositionInsightsRequest) ProtoMessage() {} func (x *GenerateAudienceCompositionInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -229,7 +229,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) ProtoReflect() protoreflect // Deprecated: Use GenerateAudienceCompositionInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateAudienceCompositionInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{2} } func (x *GenerateAudienceCompositionInsightsRequest) GetCustomerId() string { @@ -282,7 +282,7 @@ func (x *GenerateAudienceCompositionInsightsRequest) GetInsightsApplicationInfo( } // Response message for -// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. +// [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceCompositionInsights]. type GenerateAudienceCompositionInsightsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The contents of the insights report, organized into sections. @@ -295,7 +295,7 @@ type GenerateAudienceCompositionInsightsResponse struct { func (x *GenerateAudienceCompositionInsightsResponse) Reset() { *x = GenerateAudienceCompositionInsightsResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -307,7 +307,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) String() string { func (*GenerateAudienceCompositionInsightsResponse) ProtoMessage() {} func (x *GenerateAudienceCompositionInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -320,7 +320,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) ProtoReflect() protoreflec // Deprecated: Use GenerateAudienceCompositionInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateAudienceCompositionInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{3} } func (x *GenerateAudienceCompositionInsightsResponse) GetSections() []*AudienceCompositionSection { @@ -331,7 +331,7 @@ func (x *GenerateAudienceCompositionInsightsResponse) GetSections() []*AudienceC } // Request message for -// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. +// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. type GenerateSuggestedTargetingInsightsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -354,7 +354,7 @@ type GenerateSuggestedTargetingInsightsRequest struct { func (x *GenerateSuggestedTargetingInsightsRequest) Reset() { *x = GenerateSuggestedTargetingInsightsRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -366,7 +366,7 @@ func (x *GenerateSuggestedTargetingInsightsRequest) String() string { func (*GenerateSuggestedTargetingInsightsRequest) ProtoMessage() {} func (x *GenerateSuggestedTargetingInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -379,7 +379,7 @@ func (x *GenerateSuggestedTargetingInsightsRequest) ProtoReflect() protoreflect. // Deprecated: Use GenerateSuggestedTargetingInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateSuggestedTargetingInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{4} } func (x *GenerateSuggestedTargetingInsightsRequest) GetCustomerId() string { @@ -450,7 +450,7 @@ func (*GenerateSuggestedTargetingInsightsRequest_AudienceDescription) isGenerate } // Response message for -// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. +// [AudienceInsightsService.GenerateSuggestedTargetingInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateSuggestedTargetingInsights]. type GenerateSuggestedTargetingInsightsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Suggested insights for targetable audiences. @@ -461,7 +461,7 @@ type GenerateSuggestedTargetingInsightsResponse struct { func (x *GenerateSuggestedTargetingInsightsResponse) Reset() { *x = GenerateSuggestedTargetingInsightsResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -473,7 +473,7 @@ func (x *GenerateSuggestedTargetingInsightsResponse) String() string { func (*GenerateSuggestedTargetingInsightsResponse) ProtoMessage() {} func (x *GenerateSuggestedTargetingInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -486,7 +486,7 @@ func (x *GenerateSuggestedTargetingInsightsResponse) ProtoReflect() protoreflect // Deprecated: Use GenerateSuggestedTargetingInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateSuggestedTargetingInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{5} } func (x *GenerateSuggestedTargetingInsightsResponse) GetSuggestions() []*TargetingSuggestionMetrics { @@ -529,7 +529,7 @@ type TargetingSuggestionMetrics struct { func (x *TargetingSuggestionMetrics) Reset() { *x = TargetingSuggestionMetrics{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -541,7 +541,7 @@ func (x *TargetingSuggestionMetrics) String() string { func (*TargetingSuggestionMetrics) ProtoMessage() {} func (x *TargetingSuggestionMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -554,7 +554,7 @@ func (x *TargetingSuggestionMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetingSuggestionMetrics.ProtoReflect.Descriptor instead. func (*TargetingSuggestionMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{6} } func (x *TargetingSuggestionMetrics) GetLocations() []*common.AudienceInsightsAttributeMetadata { @@ -614,7 +614,7 @@ func (x *TargetingSuggestionMetrics) GetPotentialYoutubeReach() int64 { } // Request message for -// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]. +// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]. type ListAudienceInsightsAttributesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -624,7 +624,7 @@ type ListAudienceInsightsAttributesRequest struct { // GEO_TARGET_COUNTRY, SUB_COUNTRY_LOCATION, YOUTUBE_LINEUP, // AFFINITY_USER_INTEREST, IN_MARKET_USER_INTEREST, PARENTAL_STATUS, // INCOME_RANGE, AGE_RANGE, and GENDER. - Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,2,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` + Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,2,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v22.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 @@ -653,7 +653,7 @@ type ListAudienceInsightsAttributesRequest struct { func (x *ListAudienceInsightsAttributesRequest) Reset() { *x = ListAudienceInsightsAttributesRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -665,7 +665,7 @@ func (x *ListAudienceInsightsAttributesRequest) String() string { func (*ListAudienceInsightsAttributesRequest) ProtoMessage() {} func (x *ListAudienceInsightsAttributesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -678,7 +678,7 @@ func (x *ListAudienceInsightsAttributesRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use ListAudienceInsightsAttributesRequest.ProtoReflect.Descriptor instead. func (*ListAudienceInsightsAttributesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{7} } func (x *ListAudienceInsightsAttributesRequest) GetCustomerId() string { @@ -731,7 +731,7 @@ func (x *ListAudienceInsightsAttributesRequest) GetYoutubeReachLocation() *commo } // Response message for -// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes]. +// [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes]. type ListAudienceInsightsAttributesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The attributes matching the search query. @@ -742,7 +742,7 @@ type ListAudienceInsightsAttributesResponse struct { func (x *ListAudienceInsightsAttributesResponse) Reset() { *x = ListAudienceInsightsAttributesResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -754,7 +754,7 @@ func (x *ListAudienceInsightsAttributesResponse) String() string { func (*ListAudienceInsightsAttributesResponse) ProtoMessage() {} func (x *ListAudienceInsightsAttributesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -767,7 +767,7 @@ func (x *ListAudienceInsightsAttributesResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use ListAudienceInsightsAttributesResponse.ProtoReflect.Descriptor instead. func (*ListAudienceInsightsAttributesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{8} } func (x *ListAudienceInsightsAttributesResponse) GetAttributes() []*common.AudienceInsightsAttributeMetadata { @@ -778,7 +778,7 @@ func (x *ListAudienceInsightsAttributesResponse) GetAttributes() []*common.Audie } // Request message for -// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v21.services.AudienceInsightsService.ListInsightsEligibleDates]. +// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v22.services.AudienceInsightsService.ListInsightsEligibleDates]. type ListInsightsEligibleDatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Optional. Additional information on the application issuing the request. @@ -789,7 +789,7 @@ type ListInsightsEligibleDatesRequest struct { func (x *ListInsightsEligibleDatesRequest) Reset() { *x = ListInsightsEligibleDatesRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -801,7 +801,7 @@ func (x *ListInsightsEligibleDatesRequest) String() string { func (*ListInsightsEligibleDatesRequest) ProtoMessage() {} func (x *ListInsightsEligibleDatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -814,7 +814,7 @@ func (x *ListInsightsEligibleDatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInsightsEligibleDatesRequest.ProtoReflect.Descriptor instead. func (*ListInsightsEligibleDatesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{9} } func (x *ListInsightsEligibleDatesRequest) GetInsightsApplicationInfo() *common.AdditionalApplicationInfo { @@ -825,7 +825,7 @@ func (x *ListInsightsEligibleDatesRequest) GetInsightsApplicationInfo() *common. } // Response message for -// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v21.services.AudienceInsightsService.ListInsightsEligibleDates]. +// [AudienceInsightsService.ListInsightsEligibleDates][google.ads.googleads.v22.services.AudienceInsightsService.ListInsightsEligibleDates]. type ListInsightsEligibleDatesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The months for which AudienceInsights data is currently @@ -833,7 +833,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.v21.services.AudienceInsightsService.GenerateAudienceCompositionInsights] + // [AudienceInsightsService.GenerateAudienceCompositionInsights][google.ads.googleads.v22.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"` unknownFields protoimpl.UnknownFields @@ -842,7 +842,7 @@ type ListInsightsEligibleDatesResponse struct { func (x *ListInsightsEligibleDatesResponse) Reset() { *x = ListInsightsEligibleDatesResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -854,7 +854,7 @@ func (x *ListInsightsEligibleDatesResponse) String() string { func (*ListInsightsEligibleDatesResponse) ProtoMessage() {} func (x *ListInsightsEligibleDatesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -867,7 +867,7 @@ func (x *ListInsightsEligibleDatesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ListInsightsEligibleDatesResponse.ProtoReflect.Descriptor instead. func (*ListInsightsEligibleDatesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{10} } func (x *ListInsightsEligibleDatesResponse) GetDataMonths() []string { @@ -885,7 +885,7 @@ func (x *ListInsightsEligibleDatesResponse) GetLastThirtyDays() *common.DateRang } // Request message for -// [AudienceInsightsService.GenerateAudienceOverlapInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceOverlapInsights]. +// [AudienceInsightsService.GenerateAudienceOverlapInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceOverlapInsights]. type GenerateAudienceOverlapInsightsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -900,7 +900,7 @@ type GenerateAudienceOverlapInsightsRequest struct { // Required. The types of attributes of which to calculate the overlap with // the primary_attribute. The values must be a subset of // AFFINITY_USER_INTEREST, IN_MARKET_USER_INTEREST, AGE_RANGE and GENDER. - Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimensions,omitempty"` + Dimensions []enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,4,rep,packed,name=dimensions,proto3,enum=google.ads.googleads.v22.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"` // Optional. Additional information on the application issuing the request. @@ -911,7 +911,7 @@ type GenerateAudienceOverlapInsightsRequest struct { func (x *GenerateAudienceOverlapInsightsRequest) Reset() { *x = GenerateAudienceOverlapInsightsRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -923,7 +923,7 @@ func (x *GenerateAudienceOverlapInsightsRequest) String() string { func (*GenerateAudienceOverlapInsightsRequest) ProtoMessage() {} func (x *GenerateAudienceOverlapInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -936,7 +936,7 @@ func (x *GenerateAudienceOverlapInsightsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use GenerateAudienceOverlapInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateAudienceOverlapInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{11} } func (x *GenerateAudienceOverlapInsightsRequest) GetCustomerId() string { @@ -982,7 +982,7 @@ func (x *GenerateAudienceOverlapInsightsRequest) GetInsightsApplicationInfo() *c } // Response message for -// [AudienceInsightsService.GenerateAudienceOverlapInsights][google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceOverlapInsights]. +// [AudienceInsightsService.GenerateAudienceOverlapInsights][google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceOverlapInsights]. type GenerateAudienceOverlapInsightsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Metadata for the primary attribute, including potential YouTube reach. @@ -996,7 +996,7 @@ type GenerateAudienceOverlapInsightsResponse struct { func (x *GenerateAudienceOverlapInsightsResponse) Reset() { *x = GenerateAudienceOverlapInsightsResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1008,7 +1008,7 @@ func (x *GenerateAudienceOverlapInsightsResponse) String() string { func (*GenerateAudienceOverlapInsightsResponse) ProtoMessage() {} func (x *GenerateAudienceOverlapInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1021,7 +1021,7 @@ func (x *GenerateAudienceOverlapInsightsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use GenerateAudienceOverlapInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateAudienceOverlapInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{12} } func (x *GenerateAudienceOverlapInsightsResponse) GetPrimaryAttributeMetadata() *common.AudienceInsightsAttributeMetadata { @@ -1040,11 +1040,11 @@ func (x *GenerateAudienceOverlapInsightsResponse) GetDimensionResults() []*Dimen // A list of audience attributes of a single dimension, including their overlap // with a primary attribute, returned as part of a -// [GenerateAudienceOverlapInsightsResponse][google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse]. +// [GenerateAudienceOverlapInsightsResponse][google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse]. type DimensionOverlapResult struct { state protoimpl.MessageState `protogen:"open.v1"` // The dimension of all the attributes in this section. - Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` + Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` // The attributes and their overlap with the primary attribute. Items []*AudienceOverlapItem `protobuf:"bytes,2,rep,name=items,proto3" json:"items,omitempty"` unknownFields protoimpl.UnknownFields @@ -1053,7 +1053,7 @@ type DimensionOverlapResult struct { func (x *DimensionOverlapResult) Reset() { *x = DimensionOverlapResult{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1065,7 +1065,7 @@ func (x *DimensionOverlapResult) String() string { func (*DimensionOverlapResult) ProtoMessage() {} func (x *DimensionOverlapResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1078,7 +1078,7 @@ func (x *DimensionOverlapResult) ProtoReflect() protoreflect.Message { // Deprecated: Use DimensionOverlapResult.ProtoReflect.Descriptor instead. func (*DimensionOverlapResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{13} } func (x *DimensionOverlapResult) GetDimension() enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension { @@ -1111,7 +1111,7 @@ type AudienceOverlapItem struct { func (x *AudienceOverlapItem) Reset() { *x = AudienceOverlapItem{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1123,7 +1123,7 @@ func (x *AudienceOverlapItem) String() string { func (*AudienceOverlapItem) ProtoMessage() {} func (x *AudienceOverlapItem) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1136,7 +1136,7 @@ func (x *AudienceOverlapItem) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceOverlapItem.ProtoReflect.Descriptor instead. func (*AudienceOverlapItem) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{14} } func (x *AudienceOverlapItem) GetAttributeMetadata() *common.AudienceInsightsAttributeMetadata { @@ -1154,7 +1154,7 @@ func (x *AudienceOverlapItem) GetPotentialYoutubeReachIntersection() int64 { } // Request message for -// [AudienceInsightsService.GenerateTargetingSuggestionMetrics][google.ads.googleads.v21.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics]. +// [AudienceInsightsService.GenerateTargetingSuggestionMetrics][google.ads.googleads.v22.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics]. type GenerateTargetingSuggestionMetricsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -1172,7 +1172,7 @@ type GenerateTargetingSuggestionMetricsRequest struct { func (x *GenerateTargetingSuggestionMetricsRequest) Reset() { *x = GenerateTargetingSuggestionMetricsRequest{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1184,7 +1184,7 @@ func (x *GenerateTargetingSuggestionMetricsRequest) String() string { func (*GenerateTargetingSuggestionMetricsRequest) ProtoMessage() {} func (x *GenerateTargetingSuggestionMetricsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1197,7 +1197,7 @@ func (x *GenerateTargetingSuggestionMetricsRequest) ProtoReflect() protoreflect. // Deprecated: Use GenerateTargetingSuggestionMetricsRequest.ProtoReflect.Descriptor instead. func (*GenerateTargetingSuggestionMetricsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{15} } func (x *GenerateTargetingSuggestionMetricsRequest) GetCustomerId() string { @@ -1229,7 +1229,7 @@ func (x *GenerateTargetingSuggestionMetricsRequest) GetInsightsApplicationInfo() } // Response message for -// [AudienceInsightsService.GenerateTargetingSuggestionMetrics][google.ads.googleads.v21.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics]. +// [AudienceInsightsService.GenerateTargetingSuggestionMetrics][google.ads.googleads.v22.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics]. type GenerateTargetingSuggestionMetricsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Suggested targetable audiences. There will be one suggestion for each @@ -1242,7 +1242,7 @@ type GenerateTargetingSuggestionMetricsResponse struct { func (x *GenerateTargetingSuggestionMetricsResponse) Reset() { *x = GenerateTargetingSuggestionMetricsResponse{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1254,7 +1254,7 @@ func (x *GenerateTargetingSuggestionMetricsResponse) String() string { func (*GenerateTargetingSuggestionMetricsResponse) ProtoMessage() {} func (x *GenerateTargetingSuggestionMetricsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1267,7 +1267,7 @@ func (x *GenerateTargetingSuggestionMetricsResponse) ProtoReflect() protoreflect // Deprecated: Use GenerateTargetingSuggestionMetricsResponse.ProtoReflect.Descriptor instead. func (*GenerateTargetingSuggestionMetricsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{16} } func (x *GenerateTargetingSuggestionMetricsResponse) GetSuggestions() []*TargetingSuggestionMetrics { @@ -1277,102 +1277,6 @@ func (x *GenerateTargetingSuggestionMetricsResponse) GetSuggestions() []*Targeti return nil } -// A description of an audience used for requesting insights. -type BasicInsightsAudience struct { - state protoimpl.MessageState `protogen:"open.v1"` - // Required. The countries for this audience. - CountryLocation []*common.LocationInfo `protobuf:"bytes,1,rep,name=country_location,json=countryLocation,proto3" json:"country_location,omitempty"` - // Sub-country geographic location attributes. If present, each of these - // must be contained in one of the countries in this audience. - SubCountryLocations []*common.LocationInfo `protobuf:"bytes,2,rep,name=sub_country_locations,json=subCountryLocations,proto3" json:"sub_country_locations,omitempty"` - // Gender for the audience. If absent, the audience does not restrict by - // gender. - Gender *common.GenderInfo `protobuf:"bytes,3,opt,name=gender,proto3" json:"gender,omitempty"` - // Age ranges for the audience. If absent, the audience represents all people - // over 18 that match the other attributes. - AgeRanges []*common.AgeRangeInfo `protobuf:"bytes,4,rep,name=age_ranges,json=ageRanges,proto3" json:"age_ranges,omitempty"` - // User interests defining this audience. Affinity and In-Market audiences - // are supported. - UserInterests []*common.UserInterestInfo `protobuf:"bytes,5,rep,name=user_interests,json=userInterests,proto3" json:"user_interests,omitempty"` - // Topics, represented by Knowledge Graph entities and/or Product & Service - // categories, that this audience is interested in. - Topics []*common.AudienceInsightsTopic `protobuf:"bytes,7,rep,name=topics,proto3" json:"topics,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache -} - -func (x *BasicInsightsAudience) Reset() { - *x = BasicInsightsAudience{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[17] - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - ms.StoreMessageInfo(mi) -} - -func (x *BasicInsightsAudience) String() string { - return protoimpl.X.MessageStringOf(x) -} - -func (*BasicInsightsAudience) ProtoMessage() {} - -func (x *BasicInsightsAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[17] - if x != nil { - ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) - if ms.LoadMessageInfo() == nil { - ms.StoreMessageInfo(mi) - } - return ms - } - return mi.MessageOf(x) -} - -// Deprecated: Use BasicInsightsAudience.ProtoReflect.Descriptor instead. -func (*BasicInsightsAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{17} -} - -func (x *BasicInsightsAudience) GetCountryLocation() []*common.LocationInfo { - if x != nil { - return x.CountryLocation - } - return nil -} - -func (x *BasicInsightsAudience) GetSubCountryLocations() []*common.LocationInfo { - if x != nil { - return x.SubCountryLocations - } - return nil -} - -func (x *BasicInsightsAudience) GetGender() *common.GenderInfo { - if x != nil { - return x.Gender - } - return nil -} - -func (x *BasicInsightsAudience) GetAgeRanges() []*common.AgeRangeInfo { - if x != nil { - return x.AgeRanges - } - return nil -} - -func (x *BasicInsightsAudience) GetUserInterests() []*common.UserInterestInfo { - if x != nil { - return x.UserInterests - } - return nil -} - -func (x *BasicInsightsAudience) GetTopics() []*common.AudienceInsightsTopic { - if x != nil { - return x.Topics - } - return nil -} - // A structured definition of the audience of interest for which insights are // being requested in AudienceInsightsService. type InsightsAudienceDefinition struct { @@ -1392,7 +1296,7 @@ type InsightsAudienceDefinition struct { func (x *InsightsAudienceDefinition) Reset() { *x = InsightsAudienceDefinition{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1404,7 +1308,7 @@ func (x *InsightsAudienceDefinition) String() string { func (*InsightsAudienceDefinition) ProtoMessage() {} func (x *InsightsAudienceDefinition) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1417,7 +1321,7 @@ func (x *InsightsAudienceDefinition) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudienceDefinition.ProtoReflect.Descriptor instead. func (*InsightsAudienceDefinition) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{17} } func (x *InsightsAudienceDefinition) GetAudience() *InsightsAudience { @@ -1455,14 +1359,14 @@ type InsightsAudienceDescription struct { // suggestions produced. AWARENESS will provide affinity audience segments, // while CONSIDERATION will provide in-market audience segments. Leaving it // unset will provide both. - MarketingObjective enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective `protobuf:"varint,3,opt,name=marketing_objective,json=marketingObjective,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective" json:"marketing_objective,omitempty"` + MarketingObjective enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective `protobuf:"varint,3,opt,name=marketing_objective,json=marketingObjective,proto3,enum=google.ads.googleads.v22.enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective" json:"marketing_objective,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *InsightsAudienceDescription) Reset() { *x = InsightsAudienceDescription{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1474,7 +1378,7 @@ func (x *InsightsAudienceDescription) String() string { func (*InsightsAudienceDescription) ProtoMessage() {} func (x *InsightsAudienceDescription) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1487,7 +1391,7 @@ func (x *InsightsAudienceDescription) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudienceDescription.ProtoReflect.Descriptor instead. func (*InsightsAudienceDescription) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{18} } func (x *InsightsAudienceDescription) GetCountryLocations() []*common.LocationInfo { @@ -1551,7 +1455,7 @@ type InsightsAudience struct { func (x *InsightsAudience) Reset() { *x = InsightsAudience{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1563,7 +1467,7 @@ func (x *InsightsAudience) String() string { func (*InsightsAudience) ProtoMessage() {} func (x *InsightsAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1576,7 +1480,7 @@ func (x *InsightsAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudience.ProtoReflect.Descriptor instead. func (*InsightsAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{19} } func (x *InsightsAudience) GetCountryLocations() []*common.LocationInfo { @@ -1656,7 +1560,7 @@ type InsightsAudienceAttributeGroup struct { func (x *InsightsAudienceAttributeGroup) Reset() { *x = InsightsAudienceAttributeGroup{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1668,7 +1572,7 @@ func (x *InsightsAudienceAttributeGroup) String() string { func (*InsightsAudienceAttributeGroup) ProtoMessage() {} func (x *InsightsAudienceAttributeGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1681,7 +1585,7 @@ func (x *InsightsAudienceAttributeGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use InsightsAudienceAttributeGroup.ProtoReflect.Descriptor instead. func (*InsightsAudienceAttributeGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{20} } func (x *InsightsAudienceAttributeGroup) GetAttributes() []*common.AudienceInsightsAttribute { @@ -1696,7 +1600,7 @@ func (x *InsightsAudienceAttributeGroup) GetAttributes() []*common.AudienceInsig type AudienceCompositionSection struct { state protoimpl.MessageState `protogen:"open.v1"` // The type of the attributes in this section. - Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension" json:"dimension,omitempty"` + Dimension enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension `protobuf:"varint,1,opt,name=dimension,proto3,enum=google.ads.googleads.v22.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"` @@ -1709,7 +1613,7 @@ type AudienceCompositionSection struct { func (x *AudienceCompositionSection) Reset() { *x = AudienceCompositionSection{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1721,7 +1625,7 @@ func (x *AudienceCompositionSection) String() string { func (*AudienceCompositionSection) ProtoMessage() {} func (x *AudienceCompositionSection) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1734,7 +1638,7 @@ func (x *AudienceCompositionSection) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionSection.ProtoReflect.Descriptor instead. func (*AudienceCompositionSection) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{21} } func (x *AudienceCompositionSection) GetDimension() enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension { @@ -1777,7 +1681,7 @@ type AudienceCompositionAttributeCluster struct { func (x *AudienceCompositionAttributeCluster) Reset() { *x = AudienceCompositionAttributeCluster{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1789,7 +1693,7 @@ func (x *AudienceCompositionAttributeCluster) String() string { func (*AudienceCompositionAttributeCluster) ProtoMessage() {} func (x *AudienceCompositionAttributeCluster) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1802,7 +1706,7 @@ func (x *AudienceCompositionAttributeCluster) ProtoReflect() protoreflect.Messag // Deprecated: Use AudienceCompositionAttributeCluster.ProtoReflect.Descriptor instead. func (*AudienceCompositionAttributeCluster) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{22} } func (x *AudienceCompositionAttributeCluster) GetClusterDisplayName() string { @@ -1847,7 +1751,7 @@ type AudienceCompositionMetrics struct { func (x *AudienceCompositionMetrics) Reset() { *x = AudienceCompositionMetrics{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1859,7 +1763,7 @@ func (x *AudienceCompositionMetrics) String() string { func (*AudienceCompositionMetrics) ProtoMessage() {} func (x *AudienceCompositionMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1872,7 +1776,7 @@ func (x *AudienceCompositionMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionMetrics.ProtoReflect.Descriptor instead. func (*AudienceCompositionMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{23} } func (x *AudienceCompositionMetrics) GetBaselineAudienceShare() float64 { @@ -1916,7 +1820,7 @@ type AudienceCompositionAttribute struct { func (x *AudienceCompositionAttribute) Reset() { *x = AudienceCompositionAttribute{} - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1928,7 +1832,7 @@ func (x *AudienceCompositionAttribute) String() string { func (*AudienceCompositionAttribute) ProtoMessage() {} func (x *AudienceCompositionAttribute) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1941,7 +1845,7 @@ func (x *AudienceCompositionAttribute) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceCompositionAttribute.ProtoReflect.Descriptor instead. func (*AudienceCompositionAttribute) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP(), []int{24} } func (x *AudienceCompositionAttribute) GetAttributeMetadata() *common.AudienceInsightsAttributeMetadata { @@ -1958,36 +1862,36 @@ func (x *AudienceCompositionAttribute) GetMetrics() *AudienceCompositionMetrics return nil } -var File_google_ads_googleads_v21_services_audience_insights_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_audience_insights_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, + 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x72, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x64, 0x61, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x76, 0x32, 0x32, 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, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x75, 0x64, 0x69, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, @@ -1996,847 +1900,804 @@ var file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDe 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, 0x22, - 0xd8, 0x03, 0x0a, 0x23, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x73, 0x69, + 0xce, 0x03, 0x0a, 0x23, 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, 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, 0x6a, 0x0a, + 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x65, 0x0a, 0x11, 0x62, 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, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x6e, 0x63, 0x65, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, - 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, - 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, - 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, - 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x50, 0x0a, 0x24, 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, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x61, 0x76, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x70, 0x6f, - 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x73, 0x61, - 0x76, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, 0x72, 0x6c, 0x22, 0xdc, 0x04, 0x0a, - 0x2a, 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, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x74, - 0x61, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 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, 0x32, 0x31, 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, - 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, - 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, - 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, - 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, - 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, - 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x88, 0x01, 0x0a, 0x2b, - 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, 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, 0x32, 0x31, 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, 0x84, 0x04, 0x0a, 0x29, 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, 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, 0x3b, 0x0a, 0x17, 0x63, 0x75, - 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, - 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, - 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, - 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, - 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, - 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, - 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x70, 0x0a, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, - 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 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, 0x32, 0x31, 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, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x48, 0x00, 0x52, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x66, 0x69, - 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x73, 0x0a, 0x14, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, - 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x42, 0x10, 0x0a, 0x0e, 0x61, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x70, 0x75, 0x74, 0x22, 0x8d, 0x01, - 0x0a, 0x2a, 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, 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, 0x32, 0x31, 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, 0xc9, 0x04, - 0x0a, 0x1a, 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, 0x12, 0x60, 0x0a, 0x09, - 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x5c, 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, 0x32, 0x31, 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, - 0x6e, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, - 0x73, 0x18, 0x0b, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x12, - 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, - 0x01, 0x52, 0x08, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, - 0x6e, 0x64, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, - 0x78, 0x12, 0x36, 0x0a, 0x17, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x79, - 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x07, 0x20, 0x01, - 0x28, 0x03, 0x52, 0x15, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x59, 0x6f, 0x75, - 0x74, 0x75, 0x62, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x22, 0xf2, 0x04, 0x0a, 0x25, 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, 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, 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, 0x32, 0x31, 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x64, 0x69, 0x6d, - 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, 0x0a, 0x71, 0x75, 0x65, 0x72, 0x79, - 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, - 0x52, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x54, 0x65, 0x78, 0x74, 0x12, 0x36, 0x0a, 0x17, 0x63, + 0x76, 0x32, 0x32, 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, 0x10, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x12, 0x65, 0x0a, 0x11, 0x73, 0x70, 0x65, 0x63, 0x69, 0x66, 0x69, 0x63, + 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x32, 0x32, 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, 0x10, 0x73, 0x70, 0x65, 0x63, 0x69, + 0x66, 0x69, 0x63, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, - 0x18, 0x07, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, - 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, 0x32, 0x31, 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, 0x12, 0x63, 0x0a, 0x16, 0x79, 0x6f, 0x75, - 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x2d, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x22, 0x50, 0x0a, 0x24, 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, 0x12, 0x28, 0x0a, 0x10, 0x73, 0x61, 0x76, 0x65, + 0x64, 0x5f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x0e, 0x73, 0x61, 0x76, 0x65, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x55, + 0x72, 0x6c, 0x22, 0xdc, 0x04, 0x0a, 0x2a, 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, 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, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x14, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, - 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8c, - 0x01, 0x0a, 0x26, 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, 0x12, 0x62, 0x0a, 0x0a, 0x61, 0x74, 0x74, - 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x9f, 0x01, - 0x0a, 0x20, 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, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, - 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, - 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, - 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, - 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, - 0x9a, 0x01, 0x0a, 0x21, 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, 0x12, 0x1f, 0x0a, 0x0b, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6d, 0x6f, - 0x6e, 0x74, 0x68, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x64, 0x61, 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, 0x32, 0x31, 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, 0xce, 0x04, 0x0a, - 0x26, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x5d, 0x0a, - 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 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, - 0x32, 0x31, 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, 0x6c, 0x0a, 0x11, - 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, - 0x65, 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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x10, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, - 0x79, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x64, 0x69, - 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, - 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, - 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, - 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, - 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, - 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, - 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, - 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x94, 0x02, - 0x0a, 0x27, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, - 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x80, 0x01, 0x0a, 0x1a, 0x70, 0x72, - 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, - 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, 0x18, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x41, 0x74, 0x74, 0x72, 0x69, - 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x66, 0x0a, 0x11, - 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x6d, 0x65, - 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x52, 0x65, 0x73, 0x75, - 0x6c, 0x74, 0x52, 0x10, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, - 0x75, 0x6c, 0x74, 0x73, 0x22, 0xdd, 0x01, 0x0a, 0x16, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, - 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, - 0x75, 0x0a, 0x09, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x01, 0x20, 0x01, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x74, 0x61, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x09, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x4c, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 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, 0x32, 0x31, - 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, - 0x74, 0x65, 0x6d, 0x73, 0x22, 0xd9, 0x01, 0x0a, 0x13, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x74, 0x65, 0x6d, 0x12, 0x71, 0x0a, 0x12, - 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, - 0x4f, 0x0a, 0x24, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x79, 0x6f, 0x75, - 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x21, 0x70, - 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, - 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 0x22, 0xe3, 0x02, 0x0a, 0x29, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 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, 0x56, 0x0a, 0x09, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, - 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, - 0x32, 0x31, 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, 0x09, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x17, + 0x74, 0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, 0x41, 0x02, + 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, - 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, - 0x41, 0x01, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, + 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x15, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, + 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, + 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, + 0x6f, 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, + 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, + 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, + 0x6f, 0x22, 0x88, 0x01, 0x0a, 0x2b, 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, 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, 0x32, 0x32, 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, 0x84, 0x04, 0x0a, + 0x29, 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, 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, 0x3b, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, + 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, + 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, + 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, + 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x70, 0x0a, 0x13, 0x61, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x18, 0x06, 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, + 0x32, 0x32, 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, 0x44, 0x65, 0x66, 0x69, + 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, + 0x63, 0x65, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x73, 0x0a, 0x14, + 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 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, 0x44, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x48, 0x00, 0x52, 0x13, 0x61, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, + 0x6e, 0x42, 0x10, 0x0a, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, + 0x70, 0x75, 0x74, 0x22, 0x8d, 0x01, 0x0a, 0x2a, 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, 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, + 0x32, 0x32, 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, 0xc9, 0x04, 0x0a, 0x1a, 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, 0x12, 0x60, 0x0a, 0x09, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, + 0x09, 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, 0x32, 0x32, + 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x5c, 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, 0x32, 0x32, 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, 0x6e, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, + 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x18, 0x0b, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x52, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, + 0x72, 0x65, 0x73, 0x74, 0x73, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, + 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x01, 0x52, 0x08, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x61, 0x67, + 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, + 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x12, 0x36, 0x0a, 0x17, 0x70, 0x6f, 0x74, 0x65, 0x6e, + 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, + 0x63, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x15, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, + 0x69, 0x61, 0x6c, 0x59, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x22, + 0xf2, 0x04, 0x0a, 0x25, 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, 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, + 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, 0x32, 0x32, 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, 0x42, 0x03, 0xe0, 0x41, + 0x02, 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x22, 0x0a, + 0x0a, 0x71, 0x75, 0x65, 0x72, 0x79, 0x5f, 0x74, 0x65, 0x78, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, + 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x09, 0x71, 0x75, 0x65, 0x72, 0x79, 0x54, 0x65, 0x78, + 0x74, 0x12, 0x36, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, + 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x09, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, 0x2e, 0x67, + 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x8d, 0x01, 0x0a, 0x2a, 0x47, 0x65, 0x6e, 0x65, 0x72, - 0x61, 0x74, 0x65, 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, 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, 0x32, 0x31, 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, 0x96, 0x04, 0x0a, 0x15, 0x42, 0x61, 0x73, 0x69, 0x63, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x4e, 0x0a, 0x06, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x18, 0x07, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 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, - 0xfd, 0x01, 0x0a, 0x1a, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x54, - 0x0a, 0x08, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, - 0x61, 0x74, 0x61, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, - 0x03, 0xe0, 0x41, 0x01, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x22, - 0xd8, 0x02, 0x0a, 0x1b, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x36, 0x0a, 0x14, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x02, 0x52, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, - 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9f, 0x01, 0x0a, 0x13, 0x6d, 0x61, 0x72, - 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x18, 0x03, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, - 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, - 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, - 0x65, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x12, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, - 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x22, 0xc1, 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, 0x32, 0x31, 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, + 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 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, 0x32, 0x32, 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, 0x12, + 0x63, 0x0a, 0x16, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, + 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x06, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x6e, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x14, + 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x4c, 0x6f, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x8c, 0x01, 0x0a, 0x26, 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, 0x12, + 0x62, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, + 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x9f, 0x01, 0x0a, 0x20, 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, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, + 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 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, 0x51, 0x0a, 0x07, 0x6c, - 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x18, 0x0a, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, - 0x69, 0x6e, 0x65, 0x75, 0x70, 0x52, 0x07, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x12, 0x4a, - 0x0a, 0x09, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, - 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, - 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x81, 0x01, 0x0a, 0x1b, 0x74, - 0x6f, 0x70, 0x69, 0x63, 0x5f, 0x61, 0x75, 0x64, 0x69, 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, 0x32, 0x31, 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, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x81, - 0x01, 0x0a, 0x1e, 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, 0x12, 0x5f, 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 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, 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, 0x32, 0x31, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, + 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, + 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x9a, 0x01, 0x0a, 0x21, 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, 0x12, 0x1f, 0x0a, 0x0b, 0x64, + 0x61, 0x74, 0x61, 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, + 0x52, 0x0a, 0x64, 0x61, 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, 0x32, + 0x32, 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, 0xce, 0x04, 0x0a, 0x26, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, + 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x5d, 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, + 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 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, 0x6c, 0x0a, 0x11, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x10, + 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 0x67, 0x68, 0x74, 0x73, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x42, 0x03, 0xe0, + 0x41, 0x02, 0x52, 0x0a, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, + 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, + 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, + 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, + 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, + 0x6e, 0x66, 0x6f, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, + 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, + 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x6e, 0x66, 0x6f, 0x22, 0x94, 0x02, 0x0a, 0x27, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, + 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, + 0x80, 0x01, 0x0a, 0x1a, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x18, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, + 0x79, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, + 0x74, 0x61, 0x12, 0x66, 0x0a, 0x11, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x73, 0x2e, 0x44, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x6c, + 0x61, 0x70, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x10, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0xdd, 0x01, 0x0a, 0x16, 0x44, + 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x52, + 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x32, 0x32, 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, 0x4c, 0x0a, 0x05, + 0x69, 0x74, 0x65, 0x6d, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, + 0x74, 0x65, 0x6d, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x22, 0xd9, 0x01, 0x0a, 0x13, 0x41, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x74, + 0x65, 0x6d, 0x12, 0x71, 0x0a, 0x12, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 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, 0x75, 0x74, 0x65, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x23, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 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, 0x4f, 0x0a, 0x24, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, + 0x61, 0x6c, 0x5f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, + 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x73, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, + 0x01, 0x28, 0x03, 0x52, 0x21, 0x70, 0x6f, 0x74, 0x65, 0x6e, 0x74, 0x69, 0x61, 0x6c, 0x59, 0x6f, + 0x75, 0x74, 0x75, 0x62, 0x65, 0x52, 0x65, 0x61, 0x63, 0x68, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x73, + 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xe3, 0x02, 0x0a, 0x29, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 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, 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, 0x56, 0x0a, 0x09, 0x61, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x32, 0x32, 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, 0x09, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x73, 0x12, 0x3b, 0x0a, 0x17, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x15, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x12, + 0x7b, 0x0a, 0x19, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, + 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, + 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, + 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x8d, 0x01, 0x0a, + 0x2a, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 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, 0x32, 0x32, 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, 0xfd, 0x01, 0x0a, + 0x1a, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x44, 0x65, 0x66, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x54, 0x0a, 0x08, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x61, 0x74, 0x61, + 0x5f, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, + 0x01, 0x52, 0x09, 0x64, 0x61, 0x74, 0x61, 0x4d, 0x6f, 0x6e, 0x74, 0x68, 0x22, 0xd8, 0x02, 0x0a, + 0x1b, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 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, + 0x32, 0x32, 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, 0x36, 0x0a, + 0x14, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, + 0x52, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, + 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x9f, 0x01, 0x0a, 0x13, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, + 0x69, 0x6e, 0x67, 0x5f, 0x6f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x18, 0x03, 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, 0x32, 0x32, 0x2e, 0x65, + 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, + 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4d, 0x61, 0x72, 0x6b, + 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x42, 0x03, + 0xe0, 0x41, 0x01, 0x52, 0x12, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x4f, 0x62, + 0x6a, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x22, 0xc1, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x51, 0x0a, 0x07, 0x6c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x73, 0x18, 0x0a, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x4c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x52, 0x07, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x73, 0x12, 0x4a, 0x0a, 0x09, 0x75, + 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x0b, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x08, 0x75, + 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x81, 0x01, 0x0a, 0x1b, 0x74, 0x6f, 0x70, 0x69, + 0x63, 0x5f, 0x61, 0x75, 0x64, 0x69, 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, 0x32, 0x32, 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, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x81, 0x01, 0x0a, 0x1e, + 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, 0x12, 0x5f, + 0x0a, 0x0a, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 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, 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x64, - 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x12, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, - 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x66, 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, + 0x74, 0x65, 0x72, 0x52, 0x13, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x65, 0x64, 0x41, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0xa0, 0x02, 0x0a, 0x23, 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, + 0x12, 0x30, 0x0a, 0x14, 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x5f, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, + 0x63, 0x6c, 0x75, 0x73, 0x74, 0x65, 0x72, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, + 0x6d, 0x65, 0x12, 0x66, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, - 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x36, 0x0a, - 0x17, 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x15, - 0x62, 0x61, 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, - 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x61, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x14, 0x0a, 0x05, - 0x69, 0x6e, 0x64, 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x69, 0x6e, 0x64, - 0x65, 0x78, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, - 0x01, 0x52, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xea, 0x01, 0x0a, 0x1c, 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, 0x12, 0x71, 0x0a, 0x12, 0x61, 0x74, 0x74, - 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0xd0, 0x10, 0x0a, 0x17, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, - 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x12, 0xa9, 0x02, 0x0a, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0xda, 0x41, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x5f, 0x69, 0x64, 0x2c, 0x62, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x65, 0x6e, 0x63, 0x65, 0x43, 0x6f, 0x6d, 0x70, 0x6f, 0x73, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x36, 0x0a, 0x17, 0x62, 0x61, + 0x73, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, + 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x01, 0x52, 0x15, 0x62, 0x61, 0x73, + 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x68, 0x61, + 0x72, 0x65, 0x12, 0x25, 0x0a, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, + 0x68, 0x61, 0x72, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x6e, 0x64, + 0x65, 0x78, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x12, + 0x14, 0x0a, 0x05, 0x73, 0x63, 0x6f, 0x72, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x01, 0x52, 0x05, + 0x73, 0x63, 0x6f, 0x72, 0x65, 0x22, 0xea, 0x01, 0x0a, 0x1c, 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, 0x12, 0x71, 0x0a, 0x12, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, + 0x75, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, - 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, - 0x74, 0x73, 0x12, 0x8f, 0x02, 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, 0x32, 0x31, 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, + 0x6f, 0x6e, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x07, 0x6d, 0x65, 0x74, 0x72, 0x69, + 0x63, 0x73, 0x32, 0xd0, 0x10, 0x0a, 0x17, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xa9, + 0x02, 0x0a, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x4c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, - 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x32, 0x32, 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, 0xda, 0x41, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, + 0x2c, 0x62, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x73, 0x69, - 0x67, 0x68, 0x74, 0x73, 0x12, 0xc0, 0x02, 0x0a, 0x1f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x32, 0x31, 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, 0x4f, 0x76, 0x65, - 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x32, 0x31, 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, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, - 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x85, 0x01, 0xda, 0x41, 0x39, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, - 0x2c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x2c, 0x70, 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x2c, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x32, 0x31, 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, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, - 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 0xa7, 0x02, 0x0a, 0x22, 0x47, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 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, 0x12, 0x4c, + 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, - 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0xda, 0x41, 0x15, - 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x61, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, - 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, + 0x8f, 0x02, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x4c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, + 0x2f, 0x76, 0x32, 0x32, 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, 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, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 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, 0xc0, 0x02, 0x0a, 0x1f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 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, 0x32, 0x32, + 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, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, + 0x70, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 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, 0x32, 0x32, 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, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, 0x69, + 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x85, 0x01, 0xda, + 0x41, 0x39, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x2c, 0x70, + 0x72, 0x69, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x2c, 0x64, 0x69, 0x6d, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, + 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x32, 0x32, 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, 0x4f, 0x76, 0x65, 0x72, 0x6c, 0x61, 0x70, 0x49, 0x6e, 0x73, 0x69, + 0x67, 0x68, 0x74, 0x73, 0x12, 0xa7, 0x02, 0x0a, 0x22, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, + 0x65, 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, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 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, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0xda, 0x41, 0x15, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x46, 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x32, + 0x32, 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, 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, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 26) -var file_google_ads_googleads_v21_services_audience_insights_service_proto_goTypes = []any{ - (*GenerateInsightsFinderReportRequest)(nil), // 0: google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest - (*GenerateInsightsFinderReportResponse)(nil), // 1: google.ads.googleads.v21.services.GenerateInsightsFinderReportResponse - (*GenerateAudienceCompositionInsightsRequest)(nil), // 2: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest - (*GenerateAudienceCompositionInsightsResponse)(nil), // 3: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsResponse - (*GenerateSuggestedTargetingInsightsRequest)(nil), // 4: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest - (*GenerateSuggestedTargetingInsightsResponse)(nil), // 5: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsResponse - (*TargetingSuggestionMetrics)(nil), // 6: google.ads.googleads.v21.services.TargetingSuggestionMetrics - (*ListAudienceInsightsAttributesRequest)(nil), // 7: google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest - (*ListAudienceInsightsAttributesResponse)(nil), // 8: google.ads.googleads.v21.services.ListAudienceInsightsAttributesResponse - (*ListInsightsEligibleDatesRequest)(nil), // 9: google.ads.googleads.v21.services.ListInsightsEligibleDatesRequest - (*ListInsightsEligibleDatesResponse)(nil), // 10: google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse - (*GenerateAudienceOverlapInsightsRequest)(nil), // 11: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest - (*GenerateAudienceOverlapInsightsResponse)(nil), // 12: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse - (*DimensionOverlapResult)(nil), // 13: google.ads.googleads.v21.services.DimensionOverlapResult - (*AudienceOverlapItem)(nil), // 14: google.ads.googleads.v21.services.AudienceOverlapItem - (*GenerateTargetingSuggestionMetricsRequest)(nil), // 15: google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest - (*GenerateTargetingSuggestionMetricsResponse)(nil), // 16: google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsResponse - (*BasicInsightsAudience)(nil), // 17: google.ads.googleads.v21.services.BasicInsightsAudience - (*InsightsAudienceDefinition)(nil), // 18: google.ads.googleads.v21.services.InsightsAudienceDefinition - (*InsightsAudienceDescription)(nil), // 19: google.ads.googleads.v21.services.InsightsAudienceDescription - (*InsightsAudience)(nil), // 20: google.ads.googleads.v21.services.InsightsAudience - (*InsightsAudienceAttributeGroup)(nil), // 21: google.ads.googleads.v21.services.InsightsAudienceAttributeGroup - (*AudienceCompositionSection)(nil), // 22: google.ads.googleads.v21.services.AudienceCompositionSection - (*AudienceCompositionAttributeCluster)(nil), // 23: google.ads.googleads.v21.services.AudienceCompositionAttributeCluster - (*AudienceCompositionMetrics)(nil), // 24: google.ads.googleads.v21.services.AudienceCompositionMetrics - (*AudienceCompositionAttribute)(nil), // 25: google.ads.googleads.v21.services.AudienceCompositionAttribute - (*common.AdditionalApplicationInfo)(nil), // 26: google.ads.googleads.v21.common.AdditionalApplicationInfo - (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 27: google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - (*common.AudienceInsightsAttributeMetadata)(nil), // 28: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - (*common.AgeRangeInfo)(nil), // 29: google.ads.googleads.v21.common.AgeRangeInfo - (*common.GenderInfo)(nil), // 30: google.ads.googleads.v21.common.GenderInfo - (*common.ParentalStatusInfo)(nil), // 31: google.ads.googleads.v21.common.ParentalStatusInfo - (*common.AudienceInsightsAttributeMetadataGroup)(nil), // 32: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataGroup - (*common.LocationInfo)(nil), // 33: google.ads.googleads.v21.common.LocationInfo - (*common.DateRange)(nil), // 34: google.ads.googleads.v21.common.DateRange - (*common.AudienceInsightsAttribute)(nil), // 35: google.ads.googleads.v21.common.AudienceInsightsAttribute - (*common.UserInterestInfo)(nil), // 36: google.ads.googleads.v21.common.UserInterestInfo - (*common.AudienceInsightsTopic)(nil), // 37: google.ads.googleads.v21.common.AudienceInsightsTopic - (enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective)(0), // 38: google.ads.googleads.v21.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective - (*common.IncomeRangeInfo)(nil), // 39: google.ads.googleads.v21.common.IncomeRangeInfo - (*common.AudienceInsightsLineup)(nil), // 40: google.ads.googleads.v21.common.AudienceInsightsLineup - (*common.UserListInfo)(nil), // 41: google.ads.googleads.v21.common.UserListInfo -} -var file_google_ads_googleads_v21_services_audience_insights_service_proto_depIdxs = []int32{ - 17, // 0: google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest.baseline_audience:type_name -> google.ads.googleads.v21.services.BasicInsightsAudience - 17, // 1: google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest.specific_audience:type_name -> google.ads.googleads.v21.services.BasicInsightsAudience - 26, // 2: google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 20, // 3: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest.audience:type_name -> google.ads.googleads.v21.services.InsightsAudience - 20, // 4: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v21.services.InsightsAudience - 27, // 5: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest.dimensions:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 26, // 6: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 22, // 7: google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsResponse.sections:type_name -> google.ads.googleads.v21.services.AudienceCompositionSection - 26, // 8: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 18, // 9: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest.audience_definition:type_name -> google.ads.googleads.v21.services.InsightsAudienceDefinition - 19, // 10: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest.audience_description:type_name -> google.ads.googleads.v21.services.InsightsAudienceDescription - 6, // 11: google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsResponse.suggestions:type_name -> google.ads.googleads.v21.services.TargetingSuggestionMetrics - 28, // 12: google.ads.googleads.v21.services.TargetingSuggestionMetrics.locations:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 29, // 13: google.ads.googleads.v21.services.TargetingSuggestionMetrics.age_ranges:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 30, // 14: google.ads.googleads.v21.services.TargetingSuggestionMetrics.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 31, // 15: google.ads.googleads.v21.services.TargetingSuggestionMetrics.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusInfo - 32, // 16: google.ads.googleads.v21.services.TargetingSuggestionMetrics.user_interests:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadataGroup - 27, // 17: google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest.dimensions:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 26, // 18: google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 33, // 19: google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest.location_country_filters:type_name -> google.ads.googleads.v21.common.LocationInfo - 33, // 20: google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest.youtube_reach_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 28, // 21: google.ads.googleads.v21.services.ListAudienceInsightsAttributesResponse.attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 26, // 22: google.ads.googleads.v21.services.ListInsightsEligibleDatesRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 34, // 23: google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse.last_thirty_days:type_name -> google.ads.googleads.v21.common.DateRange - 33, // 24: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest.country_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 35, // 25: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest.primary_attribute:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 27, // 26: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest.dimensions:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 26, // 27: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 28, // 28: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse.primary_attribute_metadata:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 13, // 29: google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse.dimension_results:type_name -> google.ads.googleads.v21.services.DimensionOverlapResult - 27, // 30: google.ads.googleads.v21.services.DimensionOverlapResult.dimension:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 14, // 31: google.ads.googleads.v21.services.DimensionOverlapResult.items:type_name -> google.ads.googleads.v21.services.AudienceOverlapItem - 28, // 32: google.ads.googleads.v21.services.AudienceOverlapItem.attribute_metadata:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 20, // 33: google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.audiences:type_name -> google.ads.googleads.v21.services.InsightsAudience - 26, // 34: google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 6, // 35: google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsResponse.suggestions:type_name -> google.ads.googleads.v21.services.TargetingSuggestionMetrics - 33, // 36: google.ads.googleads.v21.services.BasicInsightsAudience.country_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 33, // 37: google.ads.googleads.v21.services.BasicInsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 30, // 38: google.ads.googleads.v21.services.BasicInsightsAudience.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 29, // 39: google.ads.googleads.v21.services.BasicInsightsAudience.age_ranges:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 36, // 40: google.ads.googleads.v21.services.BasicInsightsAudience.user_interests:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 37, // 41: google.ads.googleads.v21.services.BasicInsightsAudience.topics:type_name -> google.ads.googleads.v21.common.AudienceInsightsTopic - 20, // 42: google.ads.googleads.v21.services.InsightsAudienceDefinition.audience:type_name -> google.ads.googleads.v21.services.InsightsAudience - 20, // 43: google.ads.googleads.v21.services.InsightsAudienceDefinition.baseline_audience:type_name -> google.ads.googleads.v21.services.InsightsAudience - 33, // 44: google.ads.googleads.v21.services.InsightsAudienceDescription.country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 38, // 45: google.ads.googleads.v21.services.InsightsAudienceDescription.marketing_objective:type_name -> google.ads.googleads.v21.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective - 33, // 46: google.ads.googleads.v21.services.InsightsAudience.country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 33, // 47: google.ads.googleads.v21.services.InsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 30, // 48: google.ads.googleads.v21.services.InsightsAudience.gender:type_name -> google.ads.googleads.v21.common.GenderInfo - 29, // 49: google.ads.googleads.v21.services.InsightsAudience.age_ranges:type_name -> google.ads.googleads.v21.common.AgeRangeInfo - 31, // 50: google.ads.googleads.v21.services.InsightsAudience.parental_status:type_name -> google.ads.googleads.v21.common.ParentalStatusInfo - 39, // 51: google.ads.googleads.v21.services.InsightsAudience.income_ranges:type_name -> google.ads.googleads.v21.common.IncomeRangeInfo - 40, // 52: google.ads.googleads.v21.services.InsightsAudience.lineups:type_name -> google.ads.googleads.v21.common.AudienceInsightsLineup - 41, // 53: google.ads.googleads.v21.services.InsightsAudience.user_list:type_name -> google.ads.googleads.v21.common.UserListInfo - 21, // 54: google.ads.googleads.v21.services.InsightsAudience.topic_audience_combinations:type_name -> google.ads.googleads.v21.services.InsightsAudienceAttributeGroup - 35, // 55: google.ads.googleads.v21.services.InsightsAudienceAttributeGroup.attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 27, // 56: google.ads.googleads.v21.services.AudienceCompositionSection.dimension:type_name -> google.ads.googleads.v21.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension - 25, // 57: google.ads.googleads.v21.services.AudienceCompositionSection.top_attributes:type_name -> google.ads.googleads.v21.services.AudienceCompositionAttribute - 23, // 58: google.ads.googleads.v21.services.AudienceCompositionSection.clustered_attributes:type_name -> google.ads.googleads.v21.services.AudienceCompositionAttributeCluster - 24, // 59: google.ads.googleads.v21.services.AudienceCompositionAttributeCluster.cluster_metrics:type_name -> google.ads.googleads.v21.services.AudienceCompositionMetrics - 25, // 60: google.ads.googleads.v21.services.AudienceCompositionAttributeCluster.attributes:type_name -> google.ads.googleads.v21.services.AudienceCompositionAttribute - 28, // 61: google.ads.googleads.v21.services.AudienceCompositionAttribute.attribute_metadata:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 24, // 62: google.ads.googleads.v21.services.AudienceCompositionAttribute.metrics:type_name -> google.ads.googleads.v21.services.AudienceCompositionMetrics - 0, // 63: google.ads.googleads.v21.services.AudienceInsightsService.GenerateInsightsFinderReport:input_type -> google.ads.googleads.v21.services.GenerateInsightsFinderReportRequest - 7, // 64: google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes:input_type -> google.ads.googleads.v21.services.ListAudienceInsightsAttributesRequest - 9, // 65: google.ads.googleads.v21.services.AudienceInsightsService.ListInsightsEligibleDates:input_type -> google.ads.googleads.v21.services.ListInsightsEligibleDatesRequest - 2, // 66: google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceCompositionInsights:input_type -> google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsRequest - 4, // 67: google.ads.googleads.v21.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:input_type -> google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsRequest - 11, // 68: google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceOverlapInsights:input_type -> google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsRequest - 15, // 69: google.ads.googleads.v21.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics:input_type -> google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsRequest - 1, // 70: google.ads.googleads.v21.services.AudienceInsightsService.GenerateInsightsFinderReport:output_type -> google.ads.googleads.v21.services.GenerateInsightsFinderReportResponse - 8, // 71: google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes:output_type -> google.ads.googleads.v21.services.ListAudienceInsightsAttributesResponse - 10, // 72: google.ads.googleads.v21.services.AudienceInsightsService.ListInsightsEligibleDates:output_type -> google.ads.googleads.v21.services.ListInsightsEligibleDatesResponse - 3, // 73: google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceCompositionInsights:output_type -> google.ads.googleads.v21.services.GenerateAudienceCompositionInsightsResponse - 5, // 74: google.ads.googleads.v21.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:output_type -> google.ads.googleads.v21.services.GenerateSuggestedTargetingInsightsResponse - 12, // 75: google.ads.googleads.v21.services.AudienceInsightsService.GenerateAudienceOverlapInsights:output_type -> google.ads.googleads.v21.services.GenerateAudienceOverlapInsightsResponse - 16, // 76: google.ads.googleads.v21.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics:output_type -> google.ads.googleads.v21.services.GenerateTargetingSuggestionMetricsResponse - 70, // [70:77] is the sub-list for method output_type - 63, // [63:70] is the sub-list for method input_type - 63, // [63:63] is the sub-list for extension type_name - 63, // [63:63] is the sub-list for extension extendee - 0, // [0:63] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_services_audience_insights_service_proto_init() } -func file_google_ads_googleads_v21_services_audience_insights_service_proto_init() { - if File_google_ads_googleads_v21_services_audience_insights_service_proto != nil { + return file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) +var file_google_ads_googleads_v22_services_audience_insights_service_proto_goTypes = []any{ + (*GenerateInsightsFinderReportRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest + (*GenerateInsightsFinderReportResponse)(nil), // 1: google.ads.googleads.v22.services.GenerateInsightsFinderReportResponse + (*GenerateAudienceCompositionInsightsRequest)(nil), // 2: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest + (*GenerateAudienceCompositionInsightsResponse)(nil), // 3: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsResponse + (*GenerateSuggestedTargetingInsightsRequest)(nil), // 4: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest + (*GenerateSuggestedTargetingInsightsResponse)(nil), // 5: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsResponse + (*TargetingSuggestionMetrics)(nil), // 6: google.ads.googleads.v22.services.TargetingSuggestionMetrics + (*ListAudienceInsightsAttributesRequest)(nil), // 7: google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest + (*ListAudienceInsightsAttributesResponse)(nil), // 8: google.ads.googleads.v22.services.ListAudienceInsightsAttributesResponse + (*ListInsightsEligibleDatesRequest)(nil), // 9: google.ads.googleads.v22.services.ListInsightsEligibleDatesRequest + (*ListInsightsEligibleDatesResponse)(nil), // 10: google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse + (*GenerateAudienceOverlapInsightsRequest)(nil), // 11: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest + (*GenerateAudienceOverlapInsightsResponse)(nil), // 12: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse + (*DimensionOverlapResult)(nil), // 13: google.ads.googleads.v22.services.DimensionOverlapResult + (*AudienceOverlapItem)(nil), // 14: google.ads.googleads.v22.services.AudienceOverlapItem + (*GenerateTargetingSuggestionMetricsRequest)(nil), // 15: google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest + (*GenerateTargetingSuggestionMetricsResponse)(nil), // 16: google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsResponse + (*InsightsAudienceDefinition)(nil), // 17: google.ads.googleads.v22.services.InsightsAudienceDefinition + (*InsightsAudienceDescription)(nil), // 18: google.ads.googleads.v22.services.InsightsAudienceDescription + (*InsightsAudience)(nil), // 19: google.ads.googleads.v22.services.InsightsAudience + (*InsightsAudienceAttributeGroup)(nil), // 20: google.ads.googleads.v22.services.InsightsAudienceAttributeGroup + (*AudienceCompositionSection)(nil), // 21: google.ads.googleads.v22.services.AudienceCompositionSection + (*AudienceCompositionAttributeCluster)(nil), // 22: google.ads.googleads.v22.services.AudienceCompositionAttributeCluster + (*AudienceCompositionMetrics)(nil), // 23: google.ads.googleads.v22.services.AudienceCompositionMetrics + (*AudienceCompositionAttribute)(nil), // 24: google.ads.googleads.v22.services.AudienceCompositionAttribute + (*common.AdditionalApplicationInfo)(nil), // 25: google.ads.googleads.v22.common.AdditionalApplicationInfo + (enums.AudienceInsightsDimensionEnum_AudienceInsightsDimension)(0), // 26: google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + (*common.AudienceInsightsAttributeMetadata)(nil), // 27: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + (*common.AgeRangeInfo)(nil), // 28: google.ads.googleads.v22.common.AgeRangeInfo + (*common.GenderInfo)(nil), // 29: google.ads.googleads.v22.common.GenderInfo + (*common.ParentalStatusInfo)(nil), // 30: google.ads.googleads.v22.common.ParentalStatusInfo + (*common.AudienceInsightsAttributeMetadataGroup)(nil), // 31: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataGroup + (*common.LocationInfo)(nil), // 32: google.ads.googleads.v22.common.LocationInfo + (*common.DateRange)(nil), // 33: google.ads.googleads.v22.common.DateRange + (*common.AudienceInsightsAttribute)(nil), // 34: google.ads.googleads.v22.common.AudienceInsightsAttribute + (enums.AudienceInsightsMarketingObjectiveEnum_AudienceInsightsMarketingObjective)(0), // 35: google.ads.googleads.v22.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective + (*common.IncomeRangeInfo)(nil), // 36: google.ads.googleads.v22.common.IncomeRangeInfo + (*common.AudienceInsightsLineup)(nil), // 37: google.ads.googleads.v22.common.AudienceInsightsLineup + (*common.UserListInfo)(nil), // 38: google.ads.googleads.v22.common.UserListInfo +} +var file_google_ads_googleads_v22_services_audience_insights_service_proto_depIdxs = []int32{ + 19, // 0: google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest.baseline_audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 19, // 1: google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest.specific_audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 25, // 2: google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 19, // 3: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest.audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 19, // 4: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest.baseline_audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 26, // 5: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest.dimensions:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 25, // 6: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 21, // 7: google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsResponse.sections:type_name -> google.ads.googleads.v22.services.AudienceCompositionSection + 25, // 8: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 17, // 9: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest.audience_definition:type_name -> google.ads.googleads.v22.services.InsightsAudienceDefinition + 18, // 10: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest.audience_description:type_name -> google.ads.googleads.v22.services.InsightsAudienceDescription + 6, // 11: google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsResponse.suggestions:type_name -> google.ads.googleads.v22.services.TargetingSuggestionMetrics + 27, // 12: google.ads.googleads.v22.services.TargetingSuggestionMetrics.locations:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 28, // 13: google.ads.googleads.v22.services.TargetingSuggestionMetrics.age_ranges:type_name -> google.ads.googleads.v22.common.AgeRangeInfo + 29, // 14: google.ads.googleads.v22.services.TargetingSuggestionMetrics.gender:type_name -> google.ads.googleads.v22.common.GenderInfo + 30, // 15: google.ads.googleads.v22.services.TargetingSuggestionMetrics.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusInfo + 31, // 16: google.ads.googleads.v22.services.TargetingSuggestionMetrics.user_interests:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadataGroup + 26, // 17: google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest.dimensions:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 25, // 18: google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 32, // 19: google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest.location_country_filters:type_name -> google.ads.googleads.v22.common.LocationInfo + 32, // 20: google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest.youtube_reach_location:type_name -> google.ads.googleads.v22.common.LocationInfo + 27, // 21: google.ads.googleads.v22.services.ListAudienceInsightsAttributesResponse.attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 25, // 22: google.ads.googleads.v22.services.ListInsightsEligibleDatesRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 33, // 23: google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse.last_thirty_days:type_name -> google.ads.googleads.v22.common.DateRange + 32, // 24: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest.country_location:type_name -> google.ads.googleads.v22.common.LocationInfo + 34, // 25: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest.primary_attribute:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 26, // 26: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest.dimensions:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 25, // 27: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 27, // 28: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse.primary_attribute_metadata:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 13, // 29: google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse.dimension_results:type_name -> google.ads.googleads.v22.services.DimensionOverlapResult + 26, // 30: google.ads.googleads.v22.services.DimensionOverlapResult.dimension:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 14, // 31: google.ads.googleads.v22.services.DimensionOverlapResult.items:type_name -> google.ads.googleads.v22.services.AudienceOverlapItem + 27, // 32: google.ads.googleads.v22.services.AudienceOverlapItem.attribute_metadata:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 19, // 33: google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.audiences:type_name -> google.ads.googleads.v22.services.InsightsAudience + 25, // 34: google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 6, // 35: google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsResponse.suggestions:type_name -> google.ads.googleads.v22.services.TargetingSuggestionMetrics + 19, // 36: google.ads.googleads.v22.services.InsightsAudienceDefinition.audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 19, // 37: google.ads.googleads.v22.services.InsightsAudienceDefinition.baseline_audience:type_name -> google.ads.googleads.v22.services.InsightsAudience + 32, // 38: google.ads.googleads.v22.services.InsightsAudienceDescription.country_locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 35, // 39: google.ads.googleads.v22.services.InsightsAudienceDescription.marketing_objective:type_name -> google.ads.googleads.v22.enums.AudienceInsightsMarketingObjectiveEnum.AudienceInsightsMarketingObjective + 32, // 40: google.ads.googleads.v22.services.InsightsAudience.country_locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 32, // 41: google.ads.googleads.v22.services.InsightsAudience.sub_country_locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 29, // 42: google.ads.googleads.v22.services.InsightsAudience.gender:type_name -> google.ads.googleads.v22.common.GenderInfo + 28, // 43: google.ads.googleads.v22.services.InsightsAudience.age_ranges:type_name -> google.ads.googleads.v22.common.AgeRangeInfo + 30, // 44: google.ads.googleads.v22.services.InsightsAudience.parental_status:type_name -> google.ads.googleads.v22.common.ParentalStatusInfo + 36, // 45: google.ads.googleads.v22.services.InsightsAudience.income_ranges:type_name -> google.ads.googleads.v22.common.IncomeRangeInfo + 37, // 46: google.ads.googleads.v22.services.InsightsAudience.lineups:type_name -> google.ads.googleads.v22.common.AudienceInsightsLineup + 38, // 47: google.ads.googleads.v22.services.InsightsAudience.user_list:type_name -> google.ads.googleads.v22.common.UserListInfo + 20, // 48: google.ads.googleads.v22.services.InsightsAudience.topic_audience_combinations:type_name -> google.ads.googleads.v22.services.InsightsAudienceAttributeGroup + 34, // 49: google.ads.googleads.v22.services.InsightsAudienceAttributeGroup.attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 26, // 50: google.ads.googleads.v22.services.AudienceCompositionSection.dimension:type_name -> google.ads.googleads.v22.enums.AudienceInsightsDimensionEnum.AudienceInsightsDimension + 24, // 51: google.ads.googleads.v22.services.AudienceCompositionSection.top_attributes:type_name -> google.ads.googleads.v22.services.AudienceCompositionAttribute + 22, // 52: google.ads.googleads.v22.services.AudienceCompositionSection.clustered_attributes:type_name -> google.ads.googleads.v22.services.AudienceCompositionAttributeCluster + 23, // 53: google.ads.googleads.v22.services.AudienceCompositionAttributeCluster.cluster_metrics:type_name -> google.ads.googleads.v22.services.AudienceCompositionMetrics + 24, // 54: google.ads.googleads.v22.services.AudienceCompositionAttributeCluster.attributes:type_name -> google.ads.googleads.v22.services.AudienceCompositionAttribute + 27, // 55: google.ads.googleads.v22.services.AudienceCompositionAttribute.attribute_metadata:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 23, // 56: google.ads.googleads.v22.services.AudienceCompositionAttribute.metrics:type_name -> google.ads.googleads.v22.services.AudienceCompositionMetrics + 0, // 57: google.ads.googleads.v22.services.AudienceInsightsService.GenerateInsightsFinderReport:input_type -> google.ads.googleads.v22.services.GenerateInsightsFinderReportRequest + 7, // 58: google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes:input_type -> google.ads.googleads.v22.services.ListAudienceInsightsAttributesRequest + 9, // 59: google.ads.googleads.v22.services.AudienceInsightsService.ListInsightsEligibleDates:input_type -> google.ads.googleads.v22.services.ListInsightsEligibleDatesRequest + 2, // 60: google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceCompositionInsights:input_type -> google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsRequest + 4, // 61: google.ads.googleads.v22.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:input_type -> google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsRequest + 11, // 62: google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceOverlapInsights:input_type -> google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsRequest + 15, // 63: google.ads.googleads.v22.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics:input_type -> google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsRequest + 1, // 64: google.ads.googleads.v22.services.AudienceInsightsService.GenerateInsightsFinderReport:output_type -> google.ads.googleads.v22.services.GenerateInsightsFinderReportResponse + 8, // 65: google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes:output_type -> google.ads.googleads.v22.services.ListAudienceInsightsAttributesResponse + 10, // 66: google.ads.googleads.v22.services.AudienceInsightsService.ListInsightsEligibleDates:output_type -> google.ads.googleads.v22.services.ListInsightsEligibleDatesResponse + 3, // 67: google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceCompositionInsights:output_type -> google.ads.googleads.v22.services.GenerateAudienceCompositionInsightsResponse + 5, // 68: google.ads.googleads.v22.services.AudienceInsightsService.GenerateSuggestedTargetingInsights:output_type -> google.ads.googleads.v22.services.GenerateSuggestedTargetingInsightsResponse + 12, // 69: google.ads.googleads.v22.services.AudienceInsightsService.GenerateAudienceOverlapInsights:output_type -> google.ads.googleads.v22.services.GenerateAudienceOverlapInsightsResponse + 16, // 70: google.ads.googleads.v22.services.AudienceInsightsService.GenerateTargetingSuggestionMetrics:output_type -> google.ads.googleads.v22.services.GenerateTargetingSuggestionMetricsResponse + 64, // [64:71] is the sub-list for method output_type + 57, // [57:64] is the sub-list for method input_type + 57, // [57:57] is the sub-list for extension type_name + 57, // [57:57] is the sub-list for extension extendee + 0, // [0:57] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_audience_insights_service_proto_init() } +func file_google_ads_googleads_v22_services_audience_insights_service_proto_init() { + if File_google_ads_googleads_v22_services_audience_insights_service_proto != nil { return } - file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes[4].OneofWrappers = []any{ (*GenerateSuggestedTargetingInsightsRequest_AudienceDefinition)(nil), (*GenerateSuggestedTargetingInsightsRequest_AudienceDescription)(nil), } @@ -2844,17 +2705,17 @@ func file_google_ads_googleads_v21_services_audience_insights_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_audience_insights_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_audience_insights_service_proto_rawDesc)), NumEnums: 0, - NumMessages: 26, + NumMessages: 25, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_audience_insights_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_audience_insights_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_audience_insights_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_audience_insights_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_audience_insights_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_audience_insights_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_audience_insights_service_proto = out.File - file_google_ads_googleads_v21_services_audience_insights_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_audience_insights_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_audience_insights_service_proto = out.File + file_google_ads_googleads_v22_services_audience_insights_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 f6804627..d28dbb41 100644 --- a/services/audience_insights_service_grpc.pb.go +++ b/services/audience_insights_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/audience_insights_service.proto +// source: google/ads/googleads/v22/services/audience_insights_service.proto package services @@ -33,13 +33,13 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/GenerateInsightsFinderReport" - AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/ListAudienceInsightsAttributes" - AudienceInsightsService_ListInsightsEligibleDates_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/ListInsightsEligibleDates" - AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/GenerateAudienceCompositionInsights" - AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/GenerateSuggestedTargetingInsights" - AudienceInsightsService_GenerateAudienceOverlapInsights_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/GenerateAudienceOverlapInsights" - AudienceInsightsService_GenerateTargetingSuggestionMetrics_FullMethodName = "/google.ads.googleads.v21.services.AudienceInsightsService/GenerateTargetingSuggestionMetrics" + AudienceInsightsService_GenerateInsightsFinderReport_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/GenerateInsightsFinderReport" + AudienceInsightsService_ListAudienceInsightsAttributes_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/ListAudienceInsightsAttributes" + AudienceInsightsService_ListInsightsEligibleDates_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/ListInsightsEligibleDates" + AudienceInsightsService_GenerateAudienceCompositionInsights_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/GenerateAudienceCompositionInsights" + AudienceInsightsService_GenerateSuggestedTargetingInsights_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/GenerateSuggestedTargetingInsights" + AudienceInsightsService_GenerateAudienceOverlapInsights_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/GenerateAudienceOverlapInsights" + AudienceInsightsService_GenerateTargetingSuggestionMetrics_FullMethodName = "/google.ads.googleads.v22.services.AudienceInsightsService/GenerateTargetingSuggestionMetrics" ) // AudienceInsightsServiceClient is the client API for AudienceInsightsService service. @@ -527,7 +527,7 @@ func _AudienceInsightsService_GenerateTargetingSuggestionMetrics_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.v21.services.AudienceInsightsService", + ServiceName: "google.ads.googleads.v22.services.AudienceInsightsService", HandlerType: (*AudienceInsightsServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -560,5 +560,5 @@ var AudienceInsightsService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/audience_insights_service.proto", + Metadata: "google/ads/googleads/v22/services/audience_insights_service.proto", } diff --git a/services/audience_service.pb.go b/services/audience_service.pb.go index a1f4b0a6..870fda59 100644 --- a/services/audience_service.pb.go +++ b/services/audience_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/audience_service.proto +// source: google/ads/googleads/v22/services/audience_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [AudienceService.MutateAudiences][google.ads.googleads.v21.services.AudienceService.MutateAudiences]. +// [AudienceService.MutateAudiences][google.ads.googleads.v22.services.AudienceService.MutateAudiences]. type MutateAudiencesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose audiences are being modified. @@ -57,14 +57,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateAudiencesRequest) Reset() { *x = MutateAudiencesRequest{} - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateAudiencesRequest) String() string { func (*MutateAudiencesRequest) ProtoMessage() {} func (x *MutateAudiencesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *MutateAudiencesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudiencesRequest.ProtoReflect.Descriptor instead. func (*MutateAudiencesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_audience_service_proto_rawDescGZIP(), []int{0} } func (x *MutateAudiencesRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type MutateAudiencesResponse struct { func (x *MutateAudiencesResponse) Reset() { *x = MutateAudiencesResponse{} - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *MutateAudiencesResponse) String() string { func (*MutateAudiencesResponse) ProtoMessage() {} func (x *MutateAudiencesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *MutateAudiencesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudiencesResponse.ProtoReflect.Descriptor instead. func (*MutateAudiencesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_audience_service_proto_rawDescGZIP(), []int{1} } func (x *MutateAudiencesResponse) GetResults() []*MutateAudienceResult { @@ -203,7 +203,7 @@ type AudienceOperation struct { func (x *AudienceOperation) Reset() { *x = AudienceOperation{} - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -215,7 +215,7 @@ func (x *AudienceOperation) String() string { func (*AudienceOperation) ProtoMessage() {} func (x *AudienceOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -228,7 +228,7 @@ func (x *AudienceOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceOperation.ProtoReflect.Descriptor instead. func (*AudienceOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_audience_service_proto_rawDescGZIP(), []int{2} } func (x *AudienceOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -297,7 +297,7 @@ type MutateAudienceResult struct { func (x *MutateAudienceResult) Reset() { *x = MutateAudienceResult{} - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -309,7 +309,7 @@ func (x *MutateAudienceResult) String() string { func (*MutateAudienceResult) ProtoMessage() {} func (x *MutateAudienceResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -322,7 +322,7 @@ func (x *MutateAudienceResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateAudienceResult.ProtoReflect.Descriptor instead. func (*MutateAudienceResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_audience_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_audience_service_proto_rawDescGZIP(), []int{3} } func (x *MutateAudienceResult) GetResourceName() string { @@ -339,21 +339,21 @@ func (x *MutateAudienceResult) GetAudience() *resources.Audience { return nil } -var File_google_ads_googleads_v21_services_audience_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_audience_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_audience_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, + 0x76, 0x32, 0x32, 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, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -383,7 +383,7 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -392,7 +392,7 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -407,12 +407,12 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x75, 0x64, + 0x32, 0x32, 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, @@ -423,22 +423,22 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -447,58 +447,58 @@ var file_google_ads_googleads_v21_services_audience_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_audience_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_audience_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_audience_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_audience_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_audience_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_audience_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_audience_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_audience_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_audience_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_audience_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_audience_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_audience_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_audience_service_proto_rawDescData + return file_google_ads_googleads_v22_services_audience_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_audience_service_proto_goTypes = []any{ - (*MutateAudiencesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateAudiencesRequest - (*MutateAudiencesResponse)(nil), // 1: google.ads.googleads.v21.services.MutateAudiencesResponse - (*AudienceOperation)(nil), // 2: google.ads.googleads.v21.services.AudienceOperation - (*MutateAudienceResult)(nil), // 3: google.ads.googleads.v21.services.MutateAudienceResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_audience_service_proto_goTypes = []any{ + (*MutateAudiencesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateAudiencesRequest + (*MutateAudiencesResponse)(nil), // 1: google.ads.googleads.v22.services.MutateAudiencesResponse + (*AudienceOperation)(nil), // 2: google.ads.googleads.v22.services.AudienceOperation + (*MutateAudienceResult)(nil), // 3: google.ads.googleads.v22.services.MutateAudienceResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*status.Status)(nil), // 5: google.rpc.Status (*fieldmaskpb.FieldMask)(nil), // 6: google.protobuf.FieldMask - (*resources.Audience)(nil), // 7: google.ads.googleads.v21.resources.Audience -} -var file_google_ads_googleads_v21_services_audience_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.MutateAudiencesRequest.operations:type_name -> google.ads.googleads.v21.services.AudienceOperation - 4, // 1: google.ads.googleads.v21.services.MutateAudiencesRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 3, // 2: google.ads.googleads.v21.services.MutateAudiencesResponse.results:type_name -> google.ads.googleads.v21.services.MutateAudienceResult - 5, // 3: google.ads.googleads.v21.services.MutateAudiencesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 4: google.ads.googleads.v21.services.AudienceOperation.update_mask:type_name -> google.protobuf.FieldMask - 7, // 5: google.ads.googleads.v21.services.AudienceOperation.create:type_name -> google.ads.googleads.v21.resources.Audience - 7, // 6: google.ads.googleads.v21.services.AudienceOperation.update:type_name -> google.ads.googleads.v21.resources.Audience - 7, // 7: google.ads.googleads.v21.services.MutateAudienceResult.audience:type_name -> google.ads.googleads.v21.resources.Audience - 0, // 8: google.ads.googleads.v21.services.AudienceService.MutateAudiences:input_type -> google.ads.googleads.v21.services.MutateAudiencesRequest - 1, // 9: google.ads.googleads.v21.services.AudienceService.MutateAudiences:output_type -> google.ads.googleads.v21.services.MutateAudiencesResponse + (*resources.Audience)(nil), // 7: google.ads.googleads.v22.resources.Audience +} +var file_google_ads_googleads_v22_services_audience_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.MutateAudiencesRequest.operations:type_name -> google.ads.googleads.v22.services.AudienceOperation + 4, // 1: google.ads.googleads.v22.services.MutateAudiencesRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 3, // 2: google.ads.googleads.v22.services.MutateAudiencesResponse.results:type_name -> google.ads.googleads.v22.services.MutateAudienceResult + 5, // 3: google.ads.googleads.v22.services.MutateAudiencesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 4: google.ads.googleads.v22.services.AudienceOperation.update_mask:type_name -> google.protobuf.FieldMask + 7, // 5: google.ads.googleads.v22.services.AudienceOperation.create:type_name -> google.ads.googleads.v22.resources.Audience + 7, // 6: google.ads.googleads.v22.services.AudienceOperation.update:type_name -> google.ads.googleads.v22.resources.Audience + 7, // 7: google.ads.googleads.v22.services.MutateAudienceResult.audience:type_name -> google.ads.googleads.v22.resources.Audience + 0, // 8: google.ads.googleads.v22.services.AudienceService.MutateAudiences:input_type -> google.ads.googleads.v22.services.MutateAudiencesRequest + 1, // 9: google.ads.googleads.v22.services.AudienceService.MutateAudiences:output_type -> google.ads.googleads.v22.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 @@ -506,12 +506,12 @@ var file_google_ads_googleads_v21_services_audience_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_audience_service_proto_init() } -func file_google_ads_googleads_v21_services_audience_service_proto_init() { - if File_google_ads_googleads_v21_services_audience_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_audience_service_proto_init() } +func file_google_ads_googleads_v22_services_audience_service_proto_init() { + if File_google_ads_googleads_v22_services_audience_service_proto != nil { return } - file_google_ads_googleads_v21_services_audience_service_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_audience_service_proto_msgTypes[2].OneofWrappers = []any{ (*AudienceOperation_Create)(nil), (*AudienceOperation_Update)(nil), } @@ -519,17 +519,17 @@ func file_google_ads_googleads_v21_services_audience_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_audience_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_audience_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_audience_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_audience_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_audience_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_audience_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_audience_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_audience_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_audience_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_audience_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_audience_service_proto = out.File - file_google_ads_googleads_v21_services_audience_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_audience_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_audience_service_proto = out.File + file_google_ads_googleads_v22_services_audience_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_audience_service_proto_depIdxs = nil } diff --git a/services/audience_service_grpc.pb.go b/services/audience_service_grpc.pb.go index c9955243..90a823da 100644 --- a/services/audience_service_grpc.pb.go +++ b/services/audience_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/audience_service.proto +// source: google/ads/googleads/v22/services/audience_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AudienceService_MutateAudiences_FullMethodName = "/google.ads.googleads.v21.services.AudienceService/MutateAudiences" + AudienceService_MutateAudiences_FullMethodName = "/google.ads.googleads.v22.services.AudienceService/MutateAudiences" ) // AudienceServiceClient is the client API for AudienceService service. @@ -136,7 +136,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.v21.services.AudienceService", + ServiceName: "google.ads.googleads.v22.services.AudienceService", HandlerType: (*AudienceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -145,5 +145,5 @@ var AudienceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/audience_service.proto", + Metadata: "google/ads/googleads/v22/services/audience_service.proto", } diff --git a/services/automatically_created_asset_removal_service.pb.go b/services/automatically_created_asset_removal_service.pb.go index 3fde7500..ed0436cd 100644 --- a/services/automatically_created_asset_removal_service.pb.go +++ b/services/automatically_created_asset_removal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/automatically_created_asset_removal_service.proto +// source: google/ads/googleads/v22/services/automatically_created_asset_removal_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset][google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset]. +// [AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset][google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset]. type RemoveCampaignAutomaticallyCreatedAssetRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose assets are being removed. @@ -56,7 +56,7 @@ type RemoveCampaignAutomaticallyCreatedAssetRequest struct { func (x *RemoveCampaignAutomaticallyCreatedAssetRequest) Reset() { *x = RemoveCampaignAutomaticallyCreatedAssetRequest{} - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetRequest) String() string { func (*RemoveCampaignAutomaticallyCreatedAssetRequest) ProtoMessage() {} func (x *RemoveCampaignAutomaticallyCreatedAssetRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetRequest) ProtoReflect() protoref // Deprecated: Use RemoveCampaignAutomaticallyCreatedAssetRequest.ProtoReflect.Descriptor instead. func (*RemoveCampaignAutomaticallyCreatedAssetRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{0} } func (x *RemoveCampaignAutomaticallyCreatedAssetRequest) GetCustomerId() string { @@ -113,14 +113,14 @@ type RemoveCampaignAutomaticallyCreatedAssetOperation struct { // Required. The resource name of the asset to remove. Asset string `protobuf:"bytes,2,opt,name=asset,proto3" json:"asset,omitempty"` // Required. The field type of the asset to remove. - FieldType enums.AssetFieldTypeEnum_AssetFieldType `protobuf:"varint,3,opt,name=field_type,json=fieldType,proto3,enum=google.ads.googleads.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) Reset() { *x = RemoveCampaignAutomaticallyCreatedAssetOperation{} - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -132,7 +132,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) String() string { func (*RemoveCampaignAutomaticallyCreatedAssetOperation) ProtoMessage() {} func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -145,7 +145,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) ProtoReflect() protor // Deprecated: Use RemoveCampaignAutomaticallyCreatedAssetOperation.ProtoReflect.Descriptor instead. func (*RemoveCampaignAutomaticallyCreatedAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{1} } func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) GetCampaign() string { @@ -170,7 +170,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetOperation) GetFieldType() enums. } // Response message for -// [AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset][google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset]. +// [AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset][google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset]. type RemoveCampaignAutomaticallyCreatedAssetResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to AutomaticallyCreatedAssetRemoval failures in the @@ -186,7 +186,7 @@ type RemoveCampaignAutomaticallyCreatedAssetResponse struct { func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) Reset() { *x = RemoveCampaignAutomaticallyCreatedAssetResponse{} - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -198,7 +198,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) String() string { func (*RemoveCampaignAutomaticallyCreatedAssetResponse) ProtoMessage() {} func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -211,7 +211,7 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) ProtoReflect() protore // Deprecated: Use RemoveCampaignAutomaticallyCreatedAssetResponse.ProtoReflect.Descriptor instead. func (*RemoveCampaignAutomaticallyCreatedAssetResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescGZIP(), []int{2} } func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) GetPartialFailureError() *status.Status { @@ -221,19 +221,19 @@ func (x *RemoveCampaignAutomaticallyCreatedAssetResponse) GetPartialFailureError return nil } -var File_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x6d, 0x6f, 0x76, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x66, + 0x32, 0x32, 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, 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, @@ -250,7 +250,7 @@ var file_google_ads_googleads_v21_services_automatically_created_asset_removal_s 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x78, 0x0a, 0x0a, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x02, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x4f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, @@ -268,7 +268,7 @@ var file_google_ads_googleads_v21_services_automatically_created_asset_removal_s 0x65, 0x74, 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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, + 0x32, 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, 0x02, 0x52, 0x09, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x54, 0x79, 0x70, 0x65, 0x22, 0x79, 0x0a, 0x2f, 0x52, 0x65, 0x6d, @@ -286,19 +286,19 @@ var file_google_ads_googleads_v21_services_automatically_created_asset_removal_s 0x69, 0x67, 0x6e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x12, 0x51, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x52, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x7a, 0xda, 0x41, 0x26, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 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, 0x4b, 0x3a, 0x01, 0x2a, 0x22, 0x46, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x4b, 0x3a, 0x01, 0x2a, 0x22, 0x46, 0x2f, 0x76, 0x32, 0x32, 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, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, @@ -309,51 +309,51 @@ var file_google_ads_googleads_v21_services_automatically_created_asset_removal_s 0x65, 0x61, 0x70, 0x69, 0x73, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x61, 0x75, 0x74, 0x68, 0x2f, 0x61, 0x64, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x42, 0x98, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x2c, 0x41, 0x75, 0x74, 0x6f, 0x6d, 0x61, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x6c, 0x79, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x52, 0x65, 0x6d, 0x6f, 0x76, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_goTypes = []any{ - (*RemoveCampaignAutomaticallyCreatedAssetRequest)(nil), // 0: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetRequest - (*RemoveCampaignAutomaticallyCreatedAssetOperation)(nil), // 1: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetOperation - (*RemoveCampaignAutomaticallyCreatedAssetResponse)(nil), // 2: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetResponse - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 3: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType +var file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_goTypes = []any{ + (*RemoveCampaignAutomaticallyCreatedAssetRequest)(nil), // 0: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetRequest + (*RemoveCampaignAutomaticallyCreatedAssetOperation)(nil), // 1: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetOperation + (*RemoveCampaignAutomaticallyCreatedAssetResponse)(nil), // 2: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetResponse + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 3: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType (*status.Status)(nil), // 4: google.rpc.Status } -var file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetRequest.operations:type_name -> google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetOperation - 3, // 1: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetOperation.field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 4, // 2: google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetResponse.partial_failure_error:type_name -> google.rpc.Status - 0, // 3: google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset:input_type -> google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetRequest - 2, // 4: google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset:output_type -> google.ads.googleads.v21.services.RemoveCampaignAutomaticallyCreatedAssetResponse +var file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetRequest.operations:type_name -> google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetOperation + 3, // 1: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetOperation.field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 4, // 2: google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetResponse.partial_failure_error:type_name -> google.rpc.Status + 0, // 3: google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset:input_type -> google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetRequest + 2, // 4: google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService.RemoveCampaignAutomaticallyCreatedAsset:output_type -> google.ads.googleads.v22.services.RemoveCampaignAutomaticallyCreatedAssetResponse 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 @@ -362,27 +362,27 @@ var file_google_ads_googleads_v21_services_automatically_created_asset_removal_s } func init() { - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_init() + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_init() } -func file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_init() { - if File_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto != nil { +func file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_init() { + if File_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto = out.File - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_automatically_created_asset_removal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto = out.File + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_automatically_created_asset_removal_service_proto_depIdxs = nil } diff --git a/services/automatically_created_asset_removal_service_grpc.pb.go b/services/automatically_created_asset_removal_service_grpc.pb.go index 7d298ee0..5d96681a 100644 --- a/services/automatically_created_asset_removal_service_grpc.pb.go +++ b/services/automatically_created_asset_removal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/automatically_created_asset_removal_service.proto +// source: google/ads/googleads/v22/services/automatically_created_asset_removal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - AutomaticallyCreatedAssetRemovalService_RemoveCampaignAutomaticallyCreatedAsset_FullMethodName = "/google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService/RemoveCampaignAutomaticallyCreatedAsset" + AutomaticallyCreatedAssetRemovalService_RemoveCampaignAutomaticallyCreatedAsset_FullMethodName = "/google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService/RemoveCampaignAutomaticallyCreatedAsset" ) // AutomaticallyCreatedAssetRemovalServiceClient is the client API for AutomaticallyCreatedAssetRemovalService service. @@ -153,7 +153,7 @@ func _AutomaticallyCreatedAssetRemovalService_RemoveCampaignAutomaticallyCreated // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var AutomaticallyCreatedAssetRemovalService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.AutomaticallyCreatedAssetRemovalService", + ServiceName: "google.ads.googleads.v22.services.AutomaticallyCreatedAssetRemovalService", HandlerType: (*AutomaticallyCreatedAssetRemovalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -162,5 +162,5 @@ var AutomaticallyCreatedAssetRemovalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/automatically_created_asset_removal_service.proto", + Metadata: "google/ads/googleads/v22/services/automatically_created_asset_removal_service.proto", } diff --git a/services/batch_job_service.pb.go b/services/batch_job_service.pb.go index 3480559d..b80d813a 100644 --- a/services/batch_job_service.pb.go +++ b/services/batch_job_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/batch_job_service.proto +// source: google/ads/googleads/v22/services/batch_job_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [BatchJobService.MutateBatchJob][google.ads.googleads.v21.services.BatchJobService.MutateBatchJob]. +// [BatchJobService.MutateBatchJob][google.ads.googleads.v22.services.BatchJobService.MutateBatchJob]. type MutateBatchJobRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which to create a batch job. @@ -55,7 +55,7 @@ type MutateBatchJobRequest struct { func (x *MutateBatchJobRequest) Reset() { *x = MutateBatchJobRequest{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *MutateBatchJobRequest) String() string { func (*MutateBatchJobRequest) ProtoMessage() {} func (x *MutateBatchJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *MutateBatchJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobRequest.ProtoReflect.Descriptor instead. func (*MutateBatchJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBatchJobRequest) GetCustomerId() string { @@ -113,7 +113,7 @@ type BatchJobOperation struct { func (x *BatchJobOperation) Reset() { *x = BatchJobOperation{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -125,7 +125,7 @@ func (x *BatchJobOperation) String() string { func (*BatchJobOperation) ProtoMessage() {} func (x *BatchJobOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -138,7 +138,7 @@ func (x *BatchJobOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobOperation.ProtoReflect.Descriptor instead. func (*BatchJobOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{1} } func (x *BatchJobOperation) GetOperation() isBatchJobOperation_Operation { @@ -188,7 +188,7 @@ func (*BatchJobOperation_Create) isBatchJobOperation_Operation() {} func (*BatchJobOperation_Remove) isBatchJobOperation_Operation() {} // Response message for -// [BatchJobService.MutateBatchJob][google.ads.googleads.v21.services.BatchJobService.MutateBatchJob]. +// [BatchJobService.MutateBatchJob][google.ads.googleads.v22.services.BatchJobService.MutateBatchJob]. type MutateBatchJobResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The result for the mutate. @@ -199,7 +199,7 @@ type MutateBatchJobResponse struct { func (x *MutateBatchJobResponse) Reset() { *x = MutateBatchJobResponse{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -211,7 +211,7 @@ func (x *MutateBatchJobResponse) String() string { func (*MutateBatchJobResponse) ProtoMessage() {} func (x *MutateBatchJobResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -224,7 +224,7 @@ func (x *MutateBatchJobResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobResponse.ProtoReflect.Descriptor instead. func (*MutateBatchJobResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBatchJobResponse) GetResult() *MutateBatchJobResult { @@ -245,7 +245,7 @@ type MutateBatchJobResult struct { func (x *MutateBatchJobResult) Reset() { *x = MutateBatchJobResult{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -257,7 +257,7 @@ func (x *MutateBatchJobResult) String() string { func (*MutateBatchJobResult) ProtoMessage() {} func (x *MutateBatchJobResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -270,7 +270,7 @@ func (x *MutateBatchJobResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBatchJobResult.ProtoReflect.Descriptor instead. func (*MutateBatchJobResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBatchJobResult) GetResourceName() string { @@ -281,7 +281,7 @@ func (x *MutateBatchJobResult) GetResourceName() string { } // Request message for -// [BatchJobService.RunBatchJob][google.ads.googleads.v21.services.BatchJobService.RunBatchJob]. +// [BatchJobService.RunBatchJob][google.ads.googleads.v22.services.BatchJobService.RunBatchJob]. type RunBatchJobRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the BatchJob to run. @@ -292,7 +292,7 @@ type RunBatchJobRequest struct { func (x *RunBatchJobRequest) Reset() { *x = RunBatchJobRequest{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *RunBatchJobRequest) String() string { func (*RunBatchJobRequest) ProtoMessage() {} func (x *RunBatchJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *RunBatchJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunBatchJobRequest.ProtoReflect.Descriptor instead. func (*RunBatchJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{4} } func (x *RunBatchJobRequest) GetResourceName() string { @@ -328,7 +328,7 @@ func (x *RunBatchJobRequest) GetResourceName() string { } // Request message for -// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v21.services.BatchJobService.AddBatchJobOperations]. +// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v22.services.BatchJobService.AddBatchJobOperations]. type AddBatchJobOperationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the batch job. @@ -356,7 +356,7 @@ type AddBatchJobOperationsRequest struct { func (x *AddBatchJobOperationsRequest) Reset() { *x = AddBatchJobOperationsRequest{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -368,7 +368,7 @@ func (x *AddBatchJobOperationsRequest) String() string { func (*AddBatchJobOperationsRequest) ProtoMessage() {} func (x *AddBatchJobOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -381,7 +381,7 @@ func (x *AddBatchJobOperationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBatchJobOperationsRequest.ProtoReflect.Descriptor instead. func (*AddBatchJobOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{5} } func (x *AddBatchJobOperationsRequest) GetResourceName() string { @@ -406,7 +406,7 @@ func (x *AddBatchJobOperationsRequest) GetMutateOperations() []*MutateOperation } // Response message for -// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v21.services.BatchJobService.AddBatchJobOperations]. +// [BatchJobService.AddBatchJobOperations][google.ads.googleads.v22.services.BatchJobService.AddBatchJobOperations]. type AddBatchJobOperationsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The total number of operations added so far for this batch job. @@ -421,7 +421,7 @@ type AddBatchJobOperationsResponse struct { func (x *AddBatchJobOperationsResponse) Reset() { *x = AddBatchJobOperationsResponse{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -433,7 +433,7 @@ func (x *AddBatchJobOperationsResponse) String() string { func (*AddBatchJobOperationsResponse) ProtoMessage() {} func (x *AddBatchJobOperationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -446,7 +446,7 @@ func (x *AddBatchJobOperationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AddBatchJobOperationsResponse.ProtoReflect.Descriptor instead. func (*AddBatchJobOperationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{6} } func (x *AddBatchJobOperationsResponse) GetTotalOperations() int64 { @@ -464,7 +464,7 @@ func (x *AddBatchJobOperationsResponse) GetNextSequenceToken() string { } // Request message for -// [BatchJobService.ListBatchJobResults][google.ads.googleads.v21.services.BatchJobService.ListBatchJobResults]. +// [BatchJobService.ListBatchJobResults][google.ads.googleads.v22.services.BatchJobService.ListBatchJobResults]. type ListBatchJobResultsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the batch job whose results are being @@ -476,19 +476,21 @@ type ListBatchJobResultsRequest struct { // the next page of results. PageToken string `protobuf:"bytes,2,opt,name=page_token,json=pageToken,proto3" json:"page_token,omitempty"` // Number of elements to retrieve in a single page. - // When a page request is too large, the server may decide to - // further limit the number of returned resources. + // The default and the page_size limit is 1000. + // A value of 0 or an unset page size will be defaulted to 1000. + // A page size less than 0 or greater than 1000 will result in an + // INVALID_PAGE_SIZE error. 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListBatchJobResultsRequest) Reset() { *x = ListBatchJobResultsRequest{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -500,7 +502,7 @@ func (x *ListBatchJobResultsRequest) String() string { func (*ListBatchJobResultsRequest) ProtoMessage() {} func (x *ListBatchJobResultsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -513,7 +515,7 @@ func (x *ListBatchJobResultsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBatchJobResultsRequest.ProtoReflect.Descriptor instead. func (*ListBatchJobResultsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{7} } func (x *ListBatchJobResultsRequest) GetResourceName() string { @@ -545,7 +547,7 @@ func (x *ListBatchJobResultsRequest) GetResponseContentType() enums.ResponseCont } // Response message for -// [BatchJobService.ListBatchJobResults][google.ads.googleads.v21.services.BatchJobService.ListBatchJobResults]. +// [BatchJobService.ListBatchJobResults][google.ads.googleads.v22.services.BatchJobService.ListBatchJobResults]. type ListBatchJobResultsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of rows that matched the query. @@ -561,7 +563,7 @@ type ListBatchJobResultsResponse struct { func (x *ListBatchJobResultsResponse) Reset() { *x = ListBatchJobResultsResponse{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -573,7 +575,7 @@ func (x *ListBatchJobResultsResponse) String() string { func (*ListBatchJobResultsResponse) ProtoMessage() {} func (x *ListBatchJobResultsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -586,7 +588,7 @@ func (x *ListBatchJobResultsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListBatchJobResultsResponse.ProtoReflect.Descriptor instead. func (*ListBatchJobResultsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{8} } func (x *ListBatchJobResultsResponse) GetResults() []*BatchJobResult { @@ -619,7 +621,7 @@ type BatchJobResult struct { func (x *BatchJobResult) Reset() { *x = BatchJobResult{} - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -631,7 +633,7 @@ func (x *BatchJobResult) String() string { func (*BatchJobResult) ProtoMessage() {} func (x *BatchJobResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -644,7 +646,7 @@ func (x *BatchJobResult) ProtoReflect() protoreflect.Message { // Deprecated: Use BatchJobResult.ProtoReflect.Descriptor instead. func (*BatchJobResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP(), []int{9} } func (x *BatchJobResult) GetOperationIndex() int64 { @@ -668,24 +670,24 @@ func (x *BatchJobResult) GetStatus() *status.Status { return nil } -var File_google_ads_googleads_v21_services_batch_job_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_batch_job_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_batch_job_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -707,14 +709,14 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x61, 0x74, + 0x32, 0x32, 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, @@ -725,7 +727,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, @@ -753,7 +755,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, @@ -778,7 +780,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x76, 0x32, 0x32, 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, @@ -787,7 +789,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -799,7 +801,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -810,56 +812,56 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x42, + 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x75, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -868,7 +870,7 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -878,71 +880,71 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x42, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_batch_job_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_batch_job_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_batch_job_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_google_ads_googleads_v21_services_batch_job_service_proto_goTypes = []any{ - (*MutateBatchJobRequest)(nil), // 0: google.ads.googleads.v21.services.MutateBatchJobRequest - (*BatchJobOperation)(nil), // 1: google.ads.googleads.v21.services.BatchJobOperation - (*MutateBatchJobResponse)(nil), // 2: google.ads.googleads.v21.services.MutateBatchJobResponse - (*MutateBatchJobResult)(nil), // 3: google.ads.googleads.v21.services.MutateBatchJobResult - (*RunBatchJobRequest)(nil), // 4: google.ads.googleads.v21.services.RunBatchJobRequest - (*AddBatchJobOperationsRequest)(nil), // 5: google.ads.googleads.v21.services.AddBatchJobOperationsRequest - (*AddBatchJobOperationsResponse)(nil), // 6: google.ads.googleads.v21.services.AddBatchJobOperationsResponse - (*ListBatchJobResultsRequest)(nil), // 7: google.ads.googleads.v21.services.ListBatchJobResultsRequest - (*ListBatchJobResultsResponse)(nil), // 8: google.ads.googleads.v21.services.ListBatchJobResultsResponse - (*BatchJobResult)(nil), // 9: google.ads.googleads.v21.services.BatchJobResult - (*resources.BatchJob)(nil), // 10: google.ads.googleads.v21.resources.BatchJob - (*MutateOperation)(nil), // 11: google.ads.googleads.v21.services.MutateOperation - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 12: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*MutateOperationResponse)(nil), // 13: google.ads.googleads.v21.services.MutateOperationResponse + return file_google_ads_googleads_v22_services_batch_job_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) +var file_google_ads_googleads_v22_services_batch_job_service_proto_goTypes = []any{ + (*MutateBatchJobRequest)(nil), // 0: google.ads.googleads.v22.services.MutateBatchJobRequest + (*BatchJobOperation)(nil), // 1: google.ads.googleads.v22.services.BatchJobOperation + (*MutateBatchJobResponse)(nil), // 2: google.ads.googleads.v22.services.MutateBatchJobResponse + (*MutateBatchJobResult)(nil), // 3: google.ads.googleads.v22.services.MutateBatchJobResult + (*RunBatchJobRequest)(nil), // 4: google.ads.googleads.v22.services.RunBatchJobRequest + (*AddBatchJobOperationsRequest)(nil), // 5: google.ads.googleads.v22.services.AddBatchJobOperationsRequest + (*AddBatchJobOperationsResponse)(nil), // 6: google.ads.googleads.v22.services.AddBatchJobOperationsResponse + (*ListBatchJobResultsRequest)(nil), // 7: google.ads.googleads.v22.services.ListBatchJobResultsRequest + (*ListBatchJobResultsResponse)(nil), // 8: google.ads.googleads.v22.services.ListBatchJobResultsResponse + (*BatchJobResult)(nil), // 9: google.ads.googleads.v22.services.BatchJobResult + (*resources.BatchJob)(nil), // 10: google.ads.googleads.v22.resources.BatchJob + (*MutateOperation)(nil), // 11: google.ads.googleads.v22.services.MutateOperation + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 12: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*MutateOperationResponse)(nil), // 13: google.ads.googleads.v22.services.MutateOperationResponse (*status.Status)(nil), // 14: google.rpc.Status (*longrunningpb.Operation)(nil), // 15: google.longrunning.Operation } -var file_google_ads_googleads_v21_services_batch_job_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateBatchJobRequest.operation:type_name -> google.ads.googleads.v21.services.BatchJobOperation - 10, // 1: google.ads.googleads.v21.services.BatchJobOperation.create:type_name -> google.ads.googleads.v21.resources.BatchJob - 3, // 2: google.ads.googleads.v21.services.MutateBatchJobResponse.result:type_name -> google.ads.googleads.v21.services.MutateBatchJobResult - 11, // 3: google.ads.googleads.v21.services.AddBatchJobOperationsRequest.mutate_operations:type_name -> google.ads.googleads.v21.services.MutateOperation - 12, // 4: google.ads.googleads.v21.services.ListBatchJobResultsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 9, // 5: google.ads.googleads.v21.services.ListBatchJobResultsResponse.results:type_name -> google.ads.googleads.v21.services.BatchJobResult - 13, // 6: google.ads.googleads.v21.services.BatchJobResult.mutate_operation_response:type_name -> google.ads.googleads.v21.services.MutateOperationResponse - 14, // 7: google.ads.googleads.v21.services.BatchJobResult.status:type_name -> google.rpc.Status - 0, // 8: google.ads.googleads.v21.services.BatchJobService.MutateBatchJob:input_type -> google.ads.googleads.v21.services.MutateBatchJobRequest - 7, // 9: google.ads.googleads.v21.services.BatchJobService.ListBatchJobResults:input_type -> google.ads.googleads.v21.services.ListBatchJobResultsRequest - 4, // 10: google.ads.googleads.v21.services.BatchJobService.RunBatchJob:input_type -> google.ads.googleads.v21.services.RunBatchJobRequest - 5, // 11: google.ads.googleads.v21.services.BatchJobService.AddBatchJobOperations:input_type -> google.ads.googleads.v21.services.AddBatchJobOperationsRequest - 2, // 12: google.ads.googleads.v21.services.BatchJobService.MutateBatchJob:output_type -> google.ads.googleads.v21.services.MutateBatchJobResponse - 8, // 13: google.ads.googleads.v21.services.BatchJobService.ListBatchJobResults:output_type -> google.ads.googleads.v21.services.ListBatchJobResultsResponse - 15, // 14: google.ads.googleads.v21.services.BatchJobService.RunBatchJob:output_type -> google.longrunning.Operation - 6, // 15: google.ads.googleads.v21.services.BatchJobService.AddBatchJobOperations:output_type -> google.ads.googleads.v21.services.AddBatchJobOperationsResponse +var file_google_ads_googleads_v22_services_batch_job_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateBatchJobRequest.operation:type_name -> google.ads.googleads.v22.services.BatchJobOperation + 10, // 1: google.ads.googleads.v22.services.BatchJobOperation.create:type_name -> google.ads.googleads.v22.resources.BatchJob + 3, // 2: google.ads.googleads.v22.services.MutateBatchJobResponse.result:type_name -> google.ads.googleads.v22.services.MutateBatchJobResult + 11, // 3: google.ads.googleads.v22.services.AddBatchJobOperationsRequest.mutate_operations:type_name -> google.ads.googleads.v22.services.MutateOperation + 12, // 4: google.ads.googleads.v22.services.ListBatchJobResultsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 9, // 5: google.ads.googleads.v22.services.ListBatchJobResultsResponse.results:type_name -> google.ads.googleads.v22.services.BatchJobResult + 13, // 6: google.ads.googleads.v22.services.BatchJobResult.mutate_operation_response:type_name -> google.ads.googleads.v22.services.MutateOperationResponse + 14, // 7: google.ads.googleads.v22.services.BatchJobResult.status:type_name -> google.rpc.Status + 0, // 8: google.ads.googleads.v22.services.BatchJobService.MutateBatchJob:input_type -> google.ads.googleads.v22.services.MutateBatchJobRequest + 7, // 9: google.ads.googleads.v22.services.BatchJobService.ListBatchJobResults:input_type -> google.ads.googleads.v22.services.ListBatchJobResultsRequest + 4, // 10: google.ads.googleads.v22.services.BatchJobService.RunBatchJob:input_type -> google.ads.googleads.v22.services.RunBatchJobRequest + 5, // 11: google.ads.googleads.v22.services.BatchJobService.AddBatchJobOperations:input_type -> google.ads.googleads.v22.services.AddBatchJobOperationsRequest + 2, // 12: google.ads.googleads.v22.services.BatchJobService.MutateBatchJob:output_type -> google.ads.googleads.v22.services.MutateBatchJobResponse + 8, // 13: google.ads.googleads.v22.services.BatchJobService.ListBatchJobResults:output_type -> google.ads.googleads.v22.services.ListBatchJobResultsResponse + 15, // 14: google.ads.googleads.v22.services.BatchJobService.RunBatchJob:output_type -> google.longrunning.Operation + 6, // 15: google.ads.googleads.v22.services.BatchJobService.AddBatchJobOperations:output_type -> google.ads.googleads.v22.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 @@ -950,13 +952,13 @@ var file_google_ads_googleads_v21_services_batch_job_service_proto_depIdxs = []i 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_batch_job_service_proto_init() } -func file_google_ads_googleads_v21_services_batch_job_service_proto_init() { - if File_google_ads_googleads_v21_services_batch_job_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_batch_job_service_proto_init() } +func file_google_ads_googleads_v22_services_batch_job_service_proto_init() { + if File_google_ads_googleads_v22_services_batch_job_service_proto != nil { return } - file_google_ads_googleads_v21_services_google_ads_service_proto_init() - file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_google_ads_service_proto_init() + file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes[1].OneofWrappers = []any{ (*BatchJobOperation_Create)(nil), (*BatchJobOperation_Remove)(nil), } @@ -964,17 +966,17 @@ func file_google_ads_googleads_v21_services_batch_job_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_batch_job_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_batch_job_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_batch_job_service_proto_rawDesc)), NumEnums: 0, NumMessages: 10, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_batch_job_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_batch_job_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_batch_job_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_batch_job_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_batch_job_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_batch_job_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_batch_job_service_proto = out.File - file_google_ads_googleads_v21_services_batch_job_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_batch_job_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_batch_job_service_proto = out.File + file_google_ads_googleads_v22_services_batch_job_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 49bea92f..1a7ab73c 100644 --- a/services/batch_job_service_grpc.pb.go +++ b/services/batch_job_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/batch_job_service.proto +// source: google/ads/googleads/v22/services/batch_job_service.proto package services @@ -34,10 +34,10 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BatchJobService_MutateBatchJob_FullMethodName = "/google.ads.googleads.v21.services.BatchJobService/MutateBatchJob" - BatchJobService_ListBatchJobResults_FullMethodName = "/google.ads.googleads.v21.services.BatchJobService/ListBatchJobResults" - BatchJobService_RunBatchJob_FullMethodName = "/google.ads.googleads.v21.services.BatchJobService/RunBatchJob" - BatchJobService_AddBatchJobOperations_FullMethodName = "/google.ads.googleads.v21.services.BatchJobService/AddBatchJobOperations" + BatchJobService_MutateBatchJob_FullMethodName = "/google.ads.googleads.v22.services.BatchJobService/MutateBatchJob" + BatchJobService_ListBatchJobResults_FullMethodName = "/google.ads.googleads.v22.services.BatchJobService/ListBatchJobResults" + BatchJobService_RunBatchJob_FullMethodName = "/google.ads.googleads.v22.services.BatchJobService/RunBatchJob" + BatchJobService_AddBatchJobOperations_FullMethodName = "/google.ads.googleads.v22.services.BatchJobService/AddBatchJobOperations" ) // BatchJobServiceClient is the client API for BatchJobService service. @@ -329,7 +329,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.v21.services.BatchJobService", + ServiceName: "google.ads.googleads.v22.services.BatchJobService", HandlerType: (*BatchJobServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -350,5 +350,5 @@ var BatchJobService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/batch_job_service.proto", + Metadata: "google/ads/googleads/v22/services/batch_job_service.proto", } diff --git a/services/bidding_data_exclusion_service.pb.go b/services/bidding_data_exclusion_service.pb.go index ec65c96a..6662618e 100644 --- a/services/bidding_data_exclusion_service.pb.go +++ b/services/bidding_data_exclusion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_data_exclusion_service.proto +// source: google/ads/googleads/v22/services/bidding_data_exclusion_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [BiddingDataExclusionService.MutateBiddingDataExclusions][google.ads.googleads.v21.services.BiddingDataExclusionService.MutateBiddingDataExclusions]. +// [BiddingDataExclusionService.MutateBiddingDataExclusions][google.ads.googleads.v22.services.BiddingDataExclusionService.MutateBiddingDataExclusions]. type MutateBiddingDataExclusionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose data exclusions are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateBiddingDataExclusionsRequest) Reset() { *x = MutateBiddingDataExclusionsRequest{} - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateBiddingDataExclusionsRequest) String() string { func (*MutateBiddingDataExclusionsRequest) ProtoMessage() {} func (x *MutateBiddingDataExclusionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateBiddingDataExclusionsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateBiddingDataExclusionsRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingDataExclusionsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type BiddingDataExclusionOperation struct { func (x *BiddingDataExclusionOperation) Reset() { *x = BiddingDataExclusionOperation{} - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *BiddingDataExclusionOperation) String() string { func (*BiddingDataExclusionOperation) ProtoMessage() {} func (x *BiddingDataExclusionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *BiddingDataExclusionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingDataExclusionOperation.ProtoReflect.Descriptor instead. func (*BiddingDataExclusionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingDataExclusionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateBiddingDataExclusionsResponse struct { func (x *MutateBiddingDataExclusionsResponse) Reset() { *x = MutateBiddingDataExclusionsResponse{} - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateBiddingDataExclusionsResponse) String() string { func (*MutateBiddingDataExclusionsResponse) ProtoMessage() {} func (x *MutateBiddingDataExclusionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateBiddingDataExclusionsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateBiddingDataExclusionsResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingDataExclusionsResponse) GetPartialFailureError() *status.Status { @@ -319,7 +319,7 @@ type MutateBiddingDataExclusionsResult struct { func (x *MutateBiddingDataExclusionsResult) Reset() { *x = MutateBiddingDataExclusionsResult{} - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateBiddingDataExclusionsResult) String() string { func (*MutateBiddingDataExclusionsResult) ProtoMessage() {} func (x *MutateBiddingDataExclusionsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateBiddingDataExclusionsResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateBiddingDataExclusionsResult.ProtoReflect.Descriptor instead. func (*MutateBiddingDataExclusionsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingDataExclusionsResult) GetResourceName() string { @@ -361,22 +361,22 @@ func (x *MutateBiddingDataExclusionsResult) GetBiddingDataExclusion() *resources return nil } -var File_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, + 0x32, 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, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x32, 0x32, 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, @@ -409,7 +409,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -422,12 +422,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -445,7 +445,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -460,7 +460,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -469,17 +469,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -489,58 +489,58 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x42, 0x69, 0x64, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_goTypes = []any{ - (*MutateBiddingDataExclusionsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest - (*BiddingDataExclusionOperation)(nil), // 1: google.ads.googleads.v21.services.BiddingDataExclusionOperation - (*MutateBiddingDataExclusionsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse - (*MutateBiddingDataExclusionsResult)(nil), // 3: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_goTypes = []any{ + (*MutateBiddingDataExclusionsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest + (*BiddingDataExclusionOperation)(nil), // 1: google.ads.googleads.v22.services.BiddingDataExclusionOperation + (*MutateBiddingDataExclusionsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResponse + (*MutateBiddingDataExclusionsResult)(nil), // 3: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingDataExclusion)(nil), // 6: google.ads.googleads.v21.resources.BiddingDataExclusion + (*resources.BiddingDataExclusion)(nil), // 6: google.ads.googleads.v22.resources.BiddingDataExclusion (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest.operations:type_name -> google.ads.googleads.v21.services.BiddingDataExclusionOperation - 4, // 1: google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.BiddingDataExclusionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.BiddingDataExclusionOperation.create:type_name -> google.ads.googleads.v21.resources.BiddingDataExclusion - 6, // 4: google.ads.googleads.v21.services.BiddingDataExclusionOperation.update:type_name -> google.ads.googleads.v21.resources.BiddingDataExclusion - 7, // 5: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse.results:type_name -> google.ads.googleads.v21.services.MutateBiddingDataExclusionsResult - 6, // 7: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResult.bidding_data_exclusion:type_name -> google.ads.googleads.v21.resources.BiddingDataExclusion - 0, // 8: google.ads.googleads.v21.services.BiddingDataExclusionService.MutateBiddingDataExclusions:input_type -> google.ads.googleads.v21.services.MutateBiddingDataExclusionsRequest - 2, // 9: google.ads.googleads.v21.services.BiddingDataExclusionService.MutateBiddingDataExclusions:output_type -> google.ads.googleads.v21.services.MutateBiddingDataExclusionsResponse +var file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest.operations:type_name -> google.ads.googleads.v22.services.BiddingDataExclusionOperation + 4, // 1: google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.BiddingDataExclusionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.BiddingDataExclusionOperation.create:type_name -> google.ads.googleads.v22.resources.BiddingDataExclusion + 6, // 4: google.ads.googleads.v22.services.BiddingDataExclusionOperation.update:type_name -> google.ads.googleads.v22.resources.BiddingDataExclusion + 7, // 5: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResponse.results:type_name -> google.ads.googleads.v22.services.MutateBiddingDataExclusionsResult + 6, // 7: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResult.bidding_data_exclusion:type_name -> google.ads.googleads.v22.resources.BiddingDataExclusion + 0, // 8: google.ads.googleads.v22.services.BiddingDataExclusionService.MutateBiddingDataExclusions:input_type -> google.ads.googleads.v22.services.MutateBiddingDataExclusionsRequest + 2, // 9: google.ads.googleads.v22.services.BiddingDataExclusionService.MutateBiddingDataExclusions:output_type -> google.ads.googleads.v22.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 @@ -548,12 +548,12 @@ var file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_ 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_init() } -func file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_init() { - if File_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_init() } +func file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_init() { + if File_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto != nil { return } - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes[1].OneofWrappers = []any{ (*BiddingDataExclusionOperation_Create)(nil), (*BiddingDataExclusionOperation_Update)(nil), (*BiddingDataExclusionOperation_Remove)(nil), @@ -562,17 +562,17 @@ func file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto = out.File - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto = out.File + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 68cae25a..3b4ff09e 100644 --- a/services/bidding_data_exclusion_service_grpc.pb.go +++ b/services/bidding_data_exclusion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_data_exclusion_service.proto +// source: google/ads/googleads/v22/services/bidding_data_exclusion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName = "/google.ads.googleads.v21.services.BiddingDataExclusionService/MutateBiddingDataExclusions" + BiddingDataExclusionService_MutateBiddingDataExclusions_FullMethodName = "/google.ads.googleads.v22.services.BiddingDataExclusionService/MutateBiddingDataExclusions" ) // BiddingDataExclusionServiceClient is the client API for BiddingDataExclusionService service. @@ -131,7 +131,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.v21.services.BiddingDataExclusionService", + ServiceName: "google.ads.googleads.v22.services.BiddingDataExclusionService", HandlerType: (*BiddingDataExclusionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var BiddingDataExclusionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/bidding_data_exclusion_service.proto", + Metadata: "google/ads/googleads/v22/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 ddda1b60..6a5d3c1d 100644 --- a/services/bidding_seasonality_adjustment_service.pb.go +++ b/services/bidding_seasonality_adjustment_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_seasonality_adjustment_service.proto +// source: google/ads/googleads/v22/services/bidding_seasonality_adjustment_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments][google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments]. +// [BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments][google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments]. type MutateBiddingSeasonalityAdjustmentsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose seasonality adjustments are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateBiddingSeasonalityAdjustmentsRequest) Reset() { *x = MutateBiddingSeasonalityAdjustmentsRequest{} - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsRequest) String() string { func (*MutateBiddingSeasonalityAdjustmentsRequest) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsRequest) ProtoReflect() protoreflect // Deprecated: Use MutateBiddingSeasonalityAdjustmentsRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingSeasonalityAdjustmentsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type BiddingSeasonalityAdjustmentOperation struct { func (x *BiddingSeasonalityAdjustmentOperation) Reset() { *x = BiddingSeasonalityAdjustmentOperation{} - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *BiddingSeasonalityAdjustmentOperation) String() string { func (*BiddingSeasonalityAdjustmentOperation) ProtoMessage() {} func (x *BiddingSeasonalityAdjustmentOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *BiddingSeasonalityAdjustmentOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use BiddingSeasonalityAdjustmentOperation.ProtoReflect.Descriptor instead. func (*BiddingSeasonalityAdjustmentOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingSeasonalityAdjustmentOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -267,7 +267,7 @@ type MutateBiddingSeasonalityAdjustmentsResponse struct { func (x *MutateBiddingSeasonalityAdjustmentsResponse) Reset() { *x = MutateBiddingSeasonalityAdjustmentsResponse{} - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -279,7 +279,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResponse) String() string { func (*MutateBiddingSeasonalityAdjustmentsResponse) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -292,7 +292,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResponse) ProtoReflect() protoreflec // Deprecated: Use MutateBiddingSeasonalityAdjustmentsResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingSeasonalityAdjustmentsResponse) GetPartialFailureError() *status.Status { @@ -324,7 +324,7 @@ type MutateBiddingSeasonalityAdjustmentsResult struct { func (x *MutateBiddingSeasonalityAdjustmentsResult) Reset() { *x = MutateBiddingSeasonalityAdjustmentsResult{} - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -336,7 +336,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) String() string { func (*MutateBiddingSeasonalityAdjustmentsResult) ProtoMessage() {} func (x *MutateBiddingSeasonalityAdjustmentsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -349,7 +349,7 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) ProtoReflect() protoreflect. // Deprecated: Use MutateBiddingSeasonalityAdjustmentsResult.ProtoReflect.Descriptor instead. func (*MutateBiddingSeasonalityAdjustmentsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingSeasonalityAdjustmentsResult) GetResourceName() string { @@ -366,22 +366,22 @@ func (x *MutateBiddingSeasonalityAdjustmentsResult) GetBiddingSeasonalityAdjustm return nil } -var File_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -416,7 +416,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -429,13 +429,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,7 +454,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -471,7 +471,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -482,18 +482,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x48, 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x32, 0x32, 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, @@ -504,59 +504,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x28, 0x42, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDescData + return file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_goTypes = []any{ - (*MutateBiddingSeasonalityAdjustmentsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest - (*BiddingSeasonalityAdjustmentOperation)(nil), // 1: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation - (*MutateBiddingSeasonalityAdjustmentsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse - (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 3: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_goTypes = []any{ + (*MutateBiddingSeasonalityAdjustmentsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest + (*BiddingSeasonalityAdjustmentOperation)(nil), // 1: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation + (*MutateBiddingSeasonalityAdjustmentsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResponse + (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 3: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingSeasonalityAdjustment)(nil), // 6: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment + (*resources.BiddingSeasonalityAdjustment)(nil), // 6: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest.operations:type_name -> google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation - 4, // 1: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation.create:type_name -> google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - 6, // 4: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation.update:type_name -> google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - 7, // 5: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse.results:type_name -> google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResult - 6, // 7: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResult.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - 0, // 8: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:input_type -> google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsRequest - 2, // 9: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:output_type -> google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResponse +var file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest.operations:type_name -> google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation + 4, // 1: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation.create:type_name -> google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + 6, // 4: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation.update:type_name -> google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + 7, // 5: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResponse.results:type_name -> google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResult + 6, // 7: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResult.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + 0, // 8: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:input_type -> google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsRequest + 2, // 9: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentService.MutateBiddingSeasonalityAdjustments:output_type -> google.ads.googleads.v22.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 @@ -565,13 +565,13 @@ var file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_servic } func init() { - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_init() + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_init() } -func file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_init() { - if File_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto != nil { +func file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_init() { + if File_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto != nil { return } - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes[1].OneofWrappers = []any{ (*BiddingSeasonalityAdjustmentOperation_Create)(nil), (*BiddingSeasonalityAdjustmentOperation_Update)(nil), (*BiddingSeasonalityAdjustmentOperation_Remove)(nil), @@ -580,17 +580,17 @@ func file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_servi out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto = out.File - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto = out.File + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 a78d672c..8b82fa9c 100644 --- a/services/bidding_seasonality_adjustment_service_grpc.pb.go +++ b/services/bidding_seasonality_adjustment_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_seasonality_adjustment_service.proto +// source: google/ads/googleads/v22/services/bidding_seasonality_adjustment_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName = "/google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentService/MutateBiddingSeasonalityAdjustments" + BiddingSeasonalityAdjustmentService_MutateBiddingSeasonalityAdjustments_FullMethodName = "/google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentService/MutateBiddingSeasonalityAdjustments" ) // BiddingSeasonalityAdjustmentServiceClient is the client API for BiddingSeasonalityAdjustmentService service. @@ -131,7 +131,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.v21.services.BiddingSeasonalityAdjustmentService", + ServiceName: "google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentService", HandlerType: (*BiddingSeasonalityAdjustmentServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var BiddingSeasonalityAdjustmentService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/bidding_seasonality_adjustment_service.proto", + Metadata: "google/ads/googleads/v22/services/bidding_seasonality_adjustment_service.proto", } diff --git a/services/bidding_strategy_service.pb.go b/services/bidding_strategy_service.pb.go index 5df184ce..de076c7b 100644 --- a/services/bidding_strategy_service.pb.go +++ b/services/bidding_strategy_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_strategy_service.proto +// source: google/ads/googleads/v22/services/bidding_strategy_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [BiddingStrategyService.MutateBiddingStrategies][google.ads.googleads.v21.services.BiddingStrategyService.MutateBiddingStrategies]. +// [BiddingStrategyService.MutateBiddingStrategies][google.ads.googleads.v22.services.BiddingStrategyService.MutateBiddingStrategies]. type MutateBiddingStrategiesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose bidding strategies are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateBiddingStrategiesRequest) Reset() { *x = MutateBiddingStrategiesRequest{} - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateBiddingStrategiesRequest) String() string { func (*MutateBiddingStrategiesRequest) ProtoMessage() {} func (x *MutateBiddingStrategiesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateBiddingStrategiesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategiesRequest.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategiesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBiddingStrategiesRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type BiddingStrategyOperation struct { func (x *BiddingStrategyOperation) Reset() { *x = BiddingStrategyOperation{} - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *BiddingStrategyOperation) String() string { func (*BiddingStrategyOperation) ProtoMessage() {} func (x *BiddingStrategyOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *BiddingStrategyOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddingStrategyOperation.ProtoReflect.Descriptor instead. func (*BiddingStrategyOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescGZIP(), []int{1} } func (x *BiddingStrategyOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -264,7 +264,7 @@ type MutateBiddingStrategiesResponse struct { func (x *MutateBiddingStrategiesResponse) Reset() { *x = MutateBiddingStrategiesResponse{} - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateBiddingStrategiesResponse) String() string { func (*MutateBiddingStrategiesResponse) ProtoMessage() {} func (x *MutateBiddingStrategiesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateBiddingStrategiesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategiesResponse.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategiesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBiddingStrategiesResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateBiddingStrategyResult struct { func (x *MutateBiddingStrategyResult) Reset() { *x = MutateBiddingStrategyResult{} - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateBiddingStrategyResult) String() string { func (*MutateBiddingStrategyResult) ProtoMessage() {} func (x *MutateBiddingStrategyResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateBiddingStrategyResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBiddingStrategyResult.ProtoReflect.Descriptor instead. func (*MutateBiddingStrategyResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBiddingStrategyResult) GetResourceName() string { @@ -363,21 +363,21 @@ func (x *MutateBiddingStrategyResult) GetBiddingStrategy() *resources.BiddingStr return nil } -var File_google_ads_googleads_v21_services_bidding_strategy_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_bidding_strategy_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x32, 0x32, 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, @@ -409,7 +409,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -422,12 +422,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -444,7 +444,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -458,24 +458,24 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, 0x64, 0x64, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -484,58 +484,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDescData + return file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_bidding_strategy_service_proto_goTypes = []any{ - (*MutateBiddingStrategiesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateBiddingStrategiesRequest - (*BiddingStrategyOperation)(nil), // 1: google.ads.googleads.v21.services.BiddingStrategyOperation - (*MutateBiddingStrategiesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateBiddingStrategiesResponse - (*MutateBiddingStrategyResult)(nil), // 3: google.ads.googleads.v21.services.MutateBiddingStrategyResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_bidding_strategy_service_proto_goTypes = []any{ + (*MutateBiddingStrategiesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateBiddingStrategiesRequest + (*BiddingStrategyOperation)(nil), // 1: google.ads.googleads.v22.services.BiddingStrategyOperation + (*MutateBiddingStrategiesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateBiddingStrategiesResponse + (*MutateBiddingStrategyResult)(nil), // 3: google.ads.googleads.v22.services.MutateBiddingStrategyResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.BiddingStrategy)(nil), // 6: google.ads.googleads.v21.resources.BiddingStrategy + (*resources.BiddingStrategy)(nil), // 6: google.ads.googleads.v22.resources.BiddingStrategy (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_bidding_strategy_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateBiddingStrategiesRequest.operations:type_name -> google.ads.googleads.v21.services.BiddingStrategyOperation - 4, // 1: google.ads.googleads.v21.services.MutateBiddingStrategiesRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.BiddingStrategyOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.BiddingStrategyOperation.create:type_name -> google.ads.googleads.v21.resources.BiddingStrategy - 6, // 4: google.ads.googleads.v21.services.BiddingStrategyOperation.update:type_name -> google.ads.googleads.v21.resources.BiddingStrategy - 7, // 5: google.ads.googleads.v21.services.MutateBiddingStrategiesResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateBiddingStrategiesResponse.results:type_name -> google.ads.googleads.v21.services.MutateBiddingStrategyResult - 6, // 7: google.ads.googleads.v21.services.MutateBiddingStrategyResult.bidding_strategy:type_name -> google.ads.googleads.v21.resources.BiddingStrategy - 0, // 8: google.ads.googleads.v21.services.BiddingStrategyService.MutateBiddingStrategies:input_type -> google.ads.googleads.v21.services.MutateBiddingStrategiesRequest - 2, // 9: google.ads.googleads.v21.services.BiddingStrategyService.MutateBiddingStrategies:output_type -> google.ads.googleads.v21.services.MutateBiddingStrategiesResponse +var file_google_ads_googleads_v22_services_bidding_strategy_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateBiddingStrategiesRequest.operations:type_name -> google.ads.googleads.v22.services.BiddingStrategyOperation + 4, // 1: google.ads.googleads.v22.services.MutateBiddingStrategiesRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.BiddingStrategyOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.BiddingStrategyOperation.create:type_name -> google.ads.googleads.v22.resources.BiddingStrategy + 6, // 4: google.ads.googleads.v22.services.BiddingStrategyOperation.update:type_name -> google.ads.googleads.v22.resources.BiddingStrategy + 7, // 5: google.ads.googleads.v22.services.MutateBiddingStrategiesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateBiddingStrategiesResponse.results:type_name -> google.ads.googleads.v22.services.MutateBiddingStrategyResult + 6, // 7: google.ads.googleads.v22.services.MutateBiddingStrategyResult.bidding_strategy:type_name -> google.ads.googleads.v22.resources.BiddingStrategy + 0, // 8: google.ads.googleads.v22.services.BiddingStrategyService.MutateBiddingStrategies:input_type -> google.ads.googleads.v22.services.MutateBiddingStrategiesRequest + 2, // 9: google.ads.googleads.v22.services.BiddingStrategyService.MutateBiddingStrategies:output_type -> google.ads.googleads.v22.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 @@ -543,12 +543,12 @@ var file_google_ads_googleads_v21_services_bidding_strategy_service_proto_depIdx 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_bidding_strategy_service_proto_init() } -func file_google_ads_googleads_v21_services_bidding_strategy_service_proto_init() { - if File_google_ads_googleads_v21_services_bidding_strategy_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_bidding_strategy_service_proto_init() } +func file_google_ads_googleads_v22_services_bidding_strategy_service_proto_init() { + if File_google_ads_googleads_v22_services_bidding_strategy_service_proto != nil { return } - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes[1].OneofWrappers = []any{ (*BiddingStrategyOperation_Create)(nil), (*BiddingStrategyOperation_Update)(nil), (*BiddingStrategyOperation_Remove)(nil), @@ -557,17 +557,17 @@ func file_google_ads_googleads_v21_services_bidding_strategy_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_bidding_strategy_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_bidding_strategy_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_bidding_strategy_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_bidding_strategy_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_bidding_strategy_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_bidding_strategy_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_bidding_strategy_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_bidding_strategy_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_bidding_strategy_service_proto = out.File - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_bidding_strategy_service_proto = out.File + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 e21066e6..53267b50 100644 --- a/services/bidding_strategy_service_grpc.pb.go +++ b/services/bidding_strategy_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/bidding_strategy_service.proto +// source: google/ads/googleads/v22/services/bidding_strategy_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BiddingStrategyService_MutateBiddingStrategies_FullMethodName = "/google.ads.googleads.v21.services.BiddingStrategyService/MutateBiddingStrategies" + BiddingStrategyService_MutateBiddingStrategies_FullMethodName = "/google.ads.googleads.v22.services.BiddingStrategyService/MutateBiddingStrategies" ) // BiddingStrategyServiceClient is the client API for BiddingStrategyService service. @@ -189,7 +189,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.v21.services.BiddingStrategyService", + ServiceName: "google.ads.googleads.v22.services.BiddingStrategyService", HandlerType: (*BiddingStrategyServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -198,5 +198,5 @@ var BiddingStrategyService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/bidding_strategy_service.proto", + Metadata: "google/ads/googleads/v22/services/bidding_strategy_service.proto", } diff --git a/services/billing_setup_service.pb.go b/services/billing_setup_service.pb.go index 320366dd..773235fd 100644 --- a/services/billing_setup_service.pb.go +++ b/services/billing_setup_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/billing_setup_service.proto +// source: google/ads/googleads/v22/services/billing_setup_service.proto package services @@ -51,7 +51,7 @@ type MutateBillingSetupRequest struct { func (x *MutateBillingSetupRequest) Reset() { *x = MutateBillingSetupRequest{} - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *MutateBillingSetupRequest) String() string { func (*MutateBillingSetupRequest) ProtoMessage() {} func (x *MutateBillingSetupRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *MutateBillingSetupRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupRequest.ProtoReflect.Descriptor instead. func (*MutateBillingSetupRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescGZIP(), []int{0} } func (x *MutateBillingSetupRequest) GetCustomerId() string { @@ -111,7 +111,7 @@ type BillingSetupOperation struct { func (x *BillingSetupOperation) Reset() { *x = BillingSetupOperation{} - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -123,7 +123,7 @@ func (x *BillingSetupOperation) String() string { func (*BillingSetupOperation) ProtoMessage() {} func (x *BillingSetupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -136,7 +136,7 @@ func (x *BillingSetupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use BillingSetupOperation.ProtoReflect.Descriptor instead. func (*BillingSetupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescGZIP(), []int{1} } func (x *BillingSetupOperation) GetOperation() isBillingSetupOperation_Operation { @@ -197,7 +197,7 @@ type MutateBillingSetupResponse struct { func (x *MutateBillingSetupResponse) Reset() { *x = MutateBillingSetupResponse{} - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *MutateBillingSetupResponse) String() string { func (*MutateBillingSetupResponse) ProtoMessage() {} func (x *MutateBillingSetupResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *MutateBillingSetupResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupResponse.ProtoReflect.Descriptor instead. func (*MutateBillingSetupResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescGZIP(), []int{2} } func (x *MutateBillingSetupResponse) GetResult() *MutateBillingSetupResult { @@ -243,7 +243,7 @@ type MutateBillingSetupResult struct { func (x *MutateBillingSetupResult) Reset() { *x = MutateBillingSetupResult{} - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -255,7 +255,7 @@ func (x *MutateBillingSetupResult) String() string { func (*MutateBillingSetupResult) ProtoMessage() {} func (x *MutateBillingSetupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -268,7 +268,7 @@ func (x *MutateBillingSetupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateBillingSetupResult.ProtoReflect.Descriptor instead. func (*MutateBillingSetupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescGZIP(), []int{3} } func (x *MutateBillingSetupResult) GetResourceName() string { @@ -278,17 +278,17 @@ func (x *MutateBillingSetupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_billing_setup_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_billing_setup_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -304,7 +304,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -312,7 +312,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x69, + 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -338,15 +338,15 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, @@ -356,50 +356,50 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x18, 0x42, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_billing_setup_service_proto_goTypes = []any{ - (*MutateBillingSetupRequest)(nil), // 0: google.ads.googleads.v21.services.MutateBillingSetupRequest - (*BillingSetupOperation)(nil), // 1: google.ads.googleads.v21.services.BillingSetupOperation - (*MutateBillingSetupResponse)(nil), // 2: google.ads.googleads.v21.services.MutateBillingSetupResponse - (*MutateBillingSetupResult)(nil), // 3: google.ads.googleads.v21.services.MutateBillingSetupResult - (*resources.BillingSetup)(nil), // 4: google.ads.googleads.v21.resources.BillingSetup -} -var file_google_ads_googleads_v21_services_billing_setup_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateBillingSetupRequest.operation:type_name -> google.ads.googleads.v21.services.BillingSetupOperation - 4, // 1: google.ads.googleads.v21.services.BillingSetupOperation.create:type_name -> google.ads.googleads.v21.resources.BillingSetup - 3, // 2: google.ads.googleads.v21.services.MutateBillingSetupResponse.result:type_name -> google.ads.googleads.v21.services.MutateBillingSetupResult - 0, // 3: google.ads.googleads.v21.services.BillingSetupService.MutateBillingSetup:input_type -> google.ads.googleads.v21.services.MutateBillingSetupRequest - 2, // 4: google.ads.googleads.v21.services.BillingSetupService.MutateBillingSetup:output_type -> google.ads.googleads.v21.services.MutateBillingSetupResponse + return file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_billing_setup_service_proto_goTypes = []any{ + (*MutateBillingSetupRequest)(nil), // 0: google.ads.googleads.v22.services.MutateBillingSetupRequest + (*BillingSetupOperation)(nil), // 1: google.ads.googleads.v22.services.BillingSetupOperation + (*MutateBillingSetupResponse)(nil), // 2: google.ads.googleads.v22.services.MutateBillingSetupResponse + (*MutateBillingSetupResult)(nil), // 3: google.ads.googleads.v22.services.MutateBillingSetupResult + (*resources.BillingSetup)(nil), // 4: google.ads.googleads.v22.resources.BillingSetup +} +var file_google_ads_googleads_v22_services_billing_setup_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateBillingSetupRequest.operation:type_name -> google.ads.googleads.v22.services.BillingSetupOperation + 4, // 1: google.ads.googleads.v22.services.BillingSetupOperation.create:type_name -> google.ads.googleads.v22.resources.BillingSetup + 3, // 2: google.ads.googleads.v22.services.MutateBillingSetupResponse.result:type_name -> google.ads.googleads.v22.services.MutateBillingSetupResult + 0, // 3: google.ads.googleads.v22.services.BillingSetupService.MutateBillingSetup:input_type -> google.ads.googleads.v22.services.MutateBillingSetupRequest + 2, // 4: google.ads.googleads.v22.services.BillingSetupService.MutateBillingSetup:output_type -> google.ads.googleads.v22.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 @@ -407,12 +407,12 @@ var file_google_ads_googleads_v21_services_billing_setup_service_proto_depIdxs = 0, // [0:3] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_billing_setup_service_proto_init() } -func file_google_ads_googleads_v21_services_billing_setup_service_proto_init() { - if File_google_ads_googleads_v21_services_billing_setup_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_billing_setup_service_proto_init() } +func file_google_ads_googleads_v22_services_billing_setup_service_proto_init() { + if File_google_ads_googleads_v22_services_billing_setup_service_proto != nil { return } - file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes[1].OneofWrappers = []any{ (*BillingSetupOperation_Create)(nil), (*BillingSetupOperation_Remove)(nil), } @@ -420,17 +420,17 @@ func file_google_ads_googleads_v21_services_billing_setup_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_billing_setup_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_billing_setup_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_billing_setup_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_billing_setup_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_billing_setup_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_billing_setup_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_billing_setup_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_billing_setup_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_billing_setup_service_proto = out.File - file_google_ads_googleads_v21_services_billing_setup_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_billing_setup_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_billing_setup_service_proto = out.File + file_google_ads_googleads_v22_services_billing_setup_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 568ffaad..148faad4 100644 --- a/services/billing_setup_service_grpc.pb.go +++ b/services/billing_setup_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/billing_setup_service.proto +// source: google/ads/googleads/v22/services/billing_setup_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BillingSetupService_MutateBillingSetup_FullMethodName = "/google.ads.googleads.v21.services.BillingSetupService/MutateBillingSetup" + BillingSetupService_MutateBillingSetup_FullMethodName = "/google.ads.googleads.v22.services.BillingSetupService/MutateBillingSetup" ) // BillingSetupServiceClient is the client API for BillingSetupService service. @@ -170,7 +170,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.v21.services.BillingSetupService", + ServiceName: "google.ads.googleads.v22.services.BillingSetupService", HandlerType: (*BillingSetupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -179,5 +179,5 @@ var BillingSetupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/billing_setup_service.proto", + Metadata: "google/ads/googleads/v22/services/billing_setup_service.proto", } diff --git a/services/brand_suggestion_service.pb.go b/services/brand_suggestion_service.pb.go index 7bc0350f..62ba7842 100644 --- a/services/brand_suggestion_service.pb.go +++ b/services/brand_suggestion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/brand_suggestion_service.proto +// source: google/ads/googleads/v22/services/brand_suggestion_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v21.services.BrandSuggestionService.SuggestBrands]. +// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v22.services.BrandSuggestionService.SuggestBrands]. type SuggestBrandsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer onto which to apply the brand suggestion @@ -55,7 +55,7 @@ type SuggestBrandsRequest struct { func (x *SuggestBrandsRequest) Reset() { *x = SuggestBrandsRequest{} - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *SuggestBrandsRequest) String() string { func (*SuggestBrandsRequest) ProtoMessage() {} func (x *SuggestBrandsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *SuggestBrandsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestBrandsRequest.ProtoReflect.Descriptor instead. func (*SuggestBrandsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestBrandsRequest) GetCustomerId() string { @@ -105,7 +105,7 @@ func (x *SuggestBrandsRequest) GetSelectedBrands() []string { } // Response message for -// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v21.services.BrandSuggestionService.SuggestBrands]. +// [BrandSuggestionService.SuggestBrands][google.ads.googleads.v22.services.BrandSuggestionService.SuggestBrands]. type SuggestBrandsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Generated brand suggestions of verified brands for the given prefix. @@ -116,7 +116,7 @@ type SuggestBrandsResponse struct { func (x *SuggestBrandsResponse) Reset() { *x = SuggestBrandsResponse{} - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -128,7 +128,7 @@ func (x *SuggestBrandsResponse) String() string { func (*SuggestBrandsResponse) ProtoMessage() {} func (x *SuggestBrandsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -141,7 +141,7 @@ func (x *SuggestBrandsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestBrandsResponse.ProtoReflect.Descriptor instead. func (*SuggestBrandsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestBrandsResponse) GetBrands() []*BrandSuggestion { @@ -161,14 +161,14 @@ 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.v21.enums.BrandStateEnum_BrandState" json:"state,omitempty"` + State enums.BrandStateEnum_BrandState `protobuf:"varint,4,opt,name=state,proto3,enum=google.ads.googleads.v22.enums.BrandStateEnum_BrandState" json:"state,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *BrandSuggestion) Reset() { *x = BrandSuggestion{} - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -180,7 +180,7 @@ func (x *BrandSuggestion) String() string { func (*BrandSuggestion) ProtoMessage() {} func (x *BrandSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -193,7 +193,7 @@ func (x *BrandSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandSuggestion.ProtoReflect.Descriptor instead. func (*BrandSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescGZIP(), []int{2} } func (x *BrandSuggestion) GetId() string { @@ -224,17 +224,17 @@ func (x *BrandSuggestion) GetState() enums.BrandStateEnum_BrandState { return enums.BrandStateEnum_BrandState(0) } -var File_google_ads_googleads_v21_services_brand_suggestion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_brand_suggestion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -256,7 +256,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -266,22 +266,22 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x32, 0x32, 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, @@ -290,48 +290,48 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_services_brand_suggestion_service_proto_goTypes = []any{ - (*SuggestBrandsRequest)(nil), // 0: google.ads.googleads.v21.services.SuggestBrandsRequest - (*SuggestBrandsResponse)(nil), // 1: google.ads.googleads.v21.services.SuggestBrandsResponse - (*BrandSuggestion)(nil), // 2: google.ads.googleads.v21.services.BrandSuggestion - (enums.BrandStateEnum_BrandState)(0), // 3: google.ads.googleads.v21.enums.BrandStateEnum.BrandState +var file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_services_brand_suggestion_service_proto_goTypes = []any{ + (*SuggestBrandsRequest)(nil), // 0: google.ads.googleads.v22.services.SuggestBrandsRequest + (*SuggestBrandsResponse)(nil), // 1: google.ads.googleads.v22.services.SuggestBrandsResponse + (*BrandSuggestion)(nil), // 2: google.ads.googleads.v22.services.BrandSuggestion + (enums.BrandStateEnum_BrandState)(0), // 3: google.ads.googleads.v22.enums.BrandStateEnum.BrandState } -var file_google_ads_googleads_v21_services_brand_suggestion_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.SuggestBrandsResponse.brands:type_name -> google.ads.googleads.v21.services.BrandSuggestion - 3, // 1: google.ads.googleads.v21.services.BrandSuggestion.state:type_name -> google.ads.googleads.v21.enums.BrandStateEnum.BrandState - 0, // 2: google.ads.googleads.v21.services.BrandSuggestionService.SuggestBrands:input_type -> google.ads.googleads.v21.services.SuggestBrandsRequest - 1, // 3: google.ads.googleads.v21.services.BrandSuggestionService.SuggestBrands:output_type -> google.ads.googleads.v21.services.SuggestBrandsResponse +var file_google_ads_googleads_v22_services_brand_suggestion_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.SuggestBrandsResponse.brands:type_name -> google.ads.googleads.v22.services.BrandSuggestion + 3, // 1: google.ads.googleads.v22.services.BrandSuggestion.state:type_name -> google.ads.googleads.v22.enums.BrandStateEnum.BrandState + 0, // 2: google.ads.googleads.v22.services.BrandSuggestionService.SuggestBrands:input_type -> google.ads.googleads.v22.services.SuggestBrandsRequest + 1, // 3: google.ads.googleads.v22.services.BrandSuggestionService.SuggestBrands:output_type -> google.ads.googleads.v22.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 @@ -339,27 +339,27 @@ var file_google_ads_googleads_v21_services_brand_suggestion_service_proto_depIdx 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_brand_suggestion_service_proto_init() } -func file_google_ads_googleads_v21_services_brand_suggestion_service_proto_init() { - if File_google_ads_googleads_v21_services_brand_suggestion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_brand_suggestion_service_proto_init() } +func file_google_ads_googleads_v22_services_brand_suggestion_service_proto_init() { + if File_google_ads_googleads_v22_services_brand_suggestion_service_proto != nil { return } - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes[0].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_brand_suggestion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_brand_suggestion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_brand_suggestion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_brand_suggestion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_brand_suggestion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_brand_suggestion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_brand_suggestion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_brand_suggestion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_brand_suggestion_service_proto = out.File - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_brand_suggestion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_brand_suggestion_service_proto = out.File + file_google_ads_googleads_v22_services_brand_suggestion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 2cadc5a9..862dec63 100644 --- a/services/brand_suggestion_service_grpc.pb.go +++ b/services/brand_suggestion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/brand_suggestion_service.proto +// source: google/ads/googleads/v22/services/brand_suggestion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - BrandSuggestionService_SuggestBrands_FullMethodName = "/google.ads.googleads.v21.services.BrandSuggestionService/SuggestBrands" + BrandSuggestionService_SuggestBrands_FullMethodName = "/google.ads.googleads.v22.services.BrandSuggestionService/SuggestBrands" ) // BrandSuggestionServiceClient is the client API for BrandSuggestionService service. @@ -131,7 +131,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.v21.services.BrandSuggestionService", + ServiceName: "google.ads.googleads.v22.services.BrandSuggestionService", HandlerType: (*BrandSuggestionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var BrandSuggestionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/brand_suggestion_service.proto", + Metadata: "google/ads/googleads/v22/services/brand_suggestion_service.proto", } diff --git a/services/campaign_asset_service.pb.go b/services/campaign_asset_service.pb.go index 611a1319..3e039601 100644 --- a/services/campaign_asset_service.pb.go +++ b/services/campaign_asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_asset_service.proto +// source: google/ads/googleads/v22/services/campaign_asset_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignAssetService.MutateCampaignAssets][google.ads.googleads.v21.services.CampaignAssetService.MutateCampaignAssets]. +// [CampaignAssetService.MutateCampaignAssets][google.ads.googleads.v22.services.CampaignAssetService.MutateCampaignAssets]. type MutateCampaignAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign assets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignAssetsRequest) Reset() { *x = MutateCampaignAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCampaignAssetsRequest) String() string { func (*MutateCampaignAssetsRequest) ProtoMessage() {} func (x *MutateCampaignAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCampaignAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignAssetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CampaignAssetOperation struct { func (x *CampaignAssetOperation) Reset() { *x = CampaignAssetOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CampaignAssetOperation) String() string { func (*CampaignAssetOperation) ProtoMessage() {} func (x *CampaignAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CampaignAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetOperation.ProtoReflect.Descriptor instead. func (*CampaignAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignAssetsResponse struct { func (x *MutateCampaignAssetsResponse) Reset() { *x = MutateCampaignAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateCampaignAssetsResponse) String() string { func (*MutateCampaignAssetsResponse) ProtoMessage() {} func (x *MutateCampaignAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateCampaignAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignAssetsResponse) GetPartialFailureError() *status.Status { @@ -319,7 +319,7 @@ type MutateCampaignAssetResult struct { func (x *MutateCampaignAssetResult) Reset() { *x = MutateCampaignAssetResult{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateCampaignAssetResult) String() string { func (*MutateCampaignAssetResult) ProtoMessage() {} func (x *MutateCampaignAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateCampaignAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignAssetResult) GetResourceName() string { @@ -361,21 +361,21 @@ func (x *MutateCampaignAssetResult) GetCampaignAsset() *resources.CampaignAsset return nil } -var File_google_ads_googleads_v21_services_campaign_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,23 +454,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -480,57 +480,57 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_asset_service_proto_goTypes = []any{ - (*MutateCampaignAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignAssetsRequest - (*CampaignAssetOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignAssetOperation - (*MutateCampaignAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignAssetsResponse - (*MutateCampaignAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_asset_service_proto_goTypes = []any{ + (*MutateCampaignAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignAssetsRequest + (*CampaignAssetOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignAssetOperation + (*MutateCampaignAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignAssetsResponse + (*MutateCampaignAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignAsset)(nil), // 6: google.ads.googleads.v21.resources.CampaignAsset + (*resources.CampaignAsset)(nil), // 6: google.ads.googleads.v22.resources.CampaignAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignAssetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignAssetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CampaignAssetOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignAsset - 6, // 4: google.ads.googleads.v21.services.CampaignAssetOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignAsset - 7, // 5: google.ads.googleads.v21.services.MutateCampaignAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCampaignAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignAssetResult - 6, // 7: google.ads.googleads.v21.services.MutateCampaignAssetResult.campaign_asset:type_name -> google.ads.googleads.v21.resources.CampaignAsset - 0, // 8: google.ads.googleads.v21.services.CampaignAssetService.MutateCampaignAssets:input_type -> google.ads.googleads.v21.services.MutateCampaignAssetsRequest - 2, // 9: google.ads.googleads.v21.services.CampaignAssetService.MutateCampaignAssets:output_type -> google.ads.googleads.v21.services.MutateCampaignAssetsResponse +var file_google_ads_googleads_v22_services_campaign_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignAssetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignAssetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CampaignAssetOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignAsset + 6, // 4: google.ads.googleads.v22.services.CampaignAssetOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignAsset + 7, // 5: google.ads.googleads.v22.services.MutateCampaignAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCampaignAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignAssetResult + 6, // 7: google.ads.googleads.v22.services.MutateCampaignAssetResult.campaign_asset:type_name -> google.ads.googleads.v22.resources.CampaignAsset + 0, // 8: google.ads.googleads.v22.services.CampaignAssetService.MutateCampaignAssets:input_type -> google.ads.googleads.v22.services.MutateCampaignAssetsRequest + 2, // 9: google.ads.googleads.v22.services.CampaignAssetService.MutateCampaignAssets:output_type -> google.ads.googleads.v22.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 @@ -538,12 +538,12 @@ var file_google_ads_googleads_v21_services_campaign_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignAssetOperation_Create)(nil), (*CampaignAssetOperation_Update)(nil), (*CampaignAssetOperation_Remove)(nil), @@ -552,17 +552,17 @@ func file_google_ads_googleads_v21_services_campaign_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_asset_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_asset_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 7f424062..13959ec8 100644 --- a/services/campaign_asset_service_grpc.pb.go +++ b/services/campaign_asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_asset_service.proto +// source: google/ads/googleads/v22/services/campaign_asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignAssetService_MutateCampaignAssets_FullMethodName = "/google.ads.googleads.v21.services.CampaignAssetService/MutateCampaignAssets" + CampaignAssetService_MutateCampaignAssets_FullMethodName = "/google.ads.googleads.v22.services.CampaignAssetService/MutateCampaignAssets" ) // CampaignAssetServiceClient is the client API for CampaignAssetService service. @@ -160,7 +160,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.v21.services.CampaignAssetService", + ServiceName: "google.ads.googleads.v22.services.CampaignAssetService", HandlerType: (*CampaignAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -169,5 +169,5 @@ var CampaignAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_asset_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_asset_service.proto", } diff --git a/services/campaign_asset_set_service.pb.go b/services/campaign_asset_set_service.pb.go index 7eae3cd4..167c25ad 100644 --- a/services/campaign_asset_set_service.pb.go +++ b/services/campaign_asset_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_asset_set_service.proto +// source: google/ads/googleads/v22/services/campaign_asset_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignAssetSetService.MutateCampaignAssetSets][google.ads.googleads.v21.services.CampaignAssetSetService.MutateCampaignAssetSets]. +// [CampaignAssetSetService.MutateCampaignAssetSets][google.ads.googleads.v22.services.CampaignAssetSetService.MutateCampaignAssetSets]. type MutateCampaignAssetSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign asset sets are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignAssetSetsRequest) Reset() { *x = MutateCampaignAssetSetsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCampaignAssetSetsRequest) String() string { func (*MutateCampaignAssetSetsRequest) ProtoMessage() {} func (x *MutateCampaignAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateCampaignAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignAssetSetsRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type CampaignAssetSetOperation struct { func (x *CampaignAssetSetOperation) Reset() { *x = CampaignAssetSetOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CampaignAssetSetOperation) String() string { func (*CampaignAssetSetOperation) ProtoMessage() {} func (x *CampaignAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CampaignAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignAssetSetOperation.ProtoReflect.Descriptor instead. func (*CampaignAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignAssetSetOperation) GetOperation() isCampaignAssetSetOperation_Operation { @@ -235,7 +235,7 @@ type MutateCampaignAssetSetsResponse struct { func (x *MutateCampaignAssetSetsResponse) Reset() { *x = MutateCampaignAssetSetsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateCampaignAssetSetsResponse) String() string { func (*MutateCampaignAssetSetsResponse) ProtoMessage() {} func (x *MutateCampaignAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateCampaignAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignAssetSetsResponse) GetResults() []*MutateCampaignAssetSetResult { @@ -292,7 +292,7 @@ type MutateCampaignAssetSetResult struct { func (x *MutateCampaignAssetSetResult) Reset() { *x = MutateCampaignAssetSetResult{} - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateCampaignAssetSetResult) String() string { func (*MutateCampaignAssetSetResult) ProtoMessage() {} func (x *MutateCampaignAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateCampaignAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignAssetSetResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateCampaignAssetSetResult) GetCampaignAssetSet() *resources.Campaign return nil } -var File_google_ads_googleads_v21_services_campaign_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -378,7 +378,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,17 +426,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x37, 0x2f, 0x76, 0x32, 0x32, 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, @@ -446,55 +446,55 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_goTypes = []any{ - (*MutateCampaignAssetSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest - (*CampaignAssetSetOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignAssetSetOperation - (*MutateCampaignAssetSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse - (*MutateCampaignAssetSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignAssetSet)(nil), // 5: google.ads.googleads.v21.resources.CampaignAssetSet +var file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_goTypes = []any{ + (*MutateCampaignAssetSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest + (*CampaignAssetSetOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignAssetSetOperation + (*MutateCampaignAssetSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignAssetSetsResponse + (*MutateCampaignAssetSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignAssetSet)(nil), // 5: google.ads.googleads.v22.resources.CampaignAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignAssetSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignAssetSetOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignAssetSet - 3, // 3: google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignAssetSetResult - 6, // 4: google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateCampaignAssetSetResult.campaign_asset_set:type_name -> google.ads.googleads.v21.resources.CampaignAssetSet - 0, // 6: google.ads.googleads.v21.services.CampaignAssetSetService.MutateCampaignAssetSets:input_type -> google.ads.googleads.v21.services.MutateCampaignAssetSetsRequest - 2, // 7: google.ads.googleads.v21.services.CampaignAssetSetService.MutateCampaignAssetSets:output_type -> google.ads.googleads.v21.services.MutateCampaignAssetSetsResponse +var file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignAssetSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignAssetSetOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignAssetSet + 3, // 3: google.ads.googleads.v22.services.MutateCampaignAssetSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignAssetSetResult + 6, // 4: google.ads.googleads.v22.services.MutateCampaignAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateCampaignAssetSetResult.campaign_asset_set:type_name -> google.ads.googleads.v22.resources.CampaignAssetSet + 0, // 6: google.ads.googleads.v22.services.CampaignAssetSetService.MutateCampaignAssetSets:input_type -> google.ads.googleads.v22.services.MutateCampaignAssetSetsRequest + 2, // 7: google.ads.googleads.v22.services.CampaignAssetSetService.MutateCampaignAssetSets:output_type -> google.ads.googleads.v22.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 @@ -502,12 +502,12 @@ var file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_asset_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignAssetSetOperation_Create)(nil), (*CampaignAssetSetOperation_Remove)(nil), } @@ -515,17 +515,17 @@ func file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_asset_set_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_asset_set_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 edb70faf..5dff9e86 100644 --- a/services/campaign_asset_set_service_grpc.pb.go +++ b/services/campaign_asset_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_asset_set_service.proto +// source: google/ads/googleads/v22/services/campaign_asset_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName = "/google.ads.googleads.v21.services.CampaignAssetSetService/MutateCampaignAssetSets" + CampaignAssetSetService_MutateCampaignAssetSets_FullMethodName = "/google.ads.googleads.v22.services.CampaignAssetSetService/MutateCampaignAssetSets" ) // CampaignAssetSetServiceClient is the client API for CampaignAssetSetService service. @@ -131,7 +131,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.v21.services.CampaignAssetSetService", + ServiceName: "google.ads.googleads.v22.services.CampaignAssetSetService", HandlerType: (*CampaignAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CampaignAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_asset_set_service.proto", + Metadata: "google/ads/googleads/v22/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 681b31ad..b4e273cb 100644 --- a/services/campaign_bid_modifier_service.pb.go +++ b/services/campaign_bid_modifier_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_bid_modifier_service.proto +// source: google/ads/googleads/v22/services/campaign_bid_modifier_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignBidModifierService.MutateCampaignBidModifiers][google.ads.googleads.v21.services.CampaignBidModifierService.MutateCampaignBidModifiers]. +// [CampaignBidModifierService.MutateCampaignBidModifiers][google.ads.googleads.v22.services.CampaignBidModifierService.MutateCampaignBidModifiers]. type MutateCampaignBidModifiersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose campaign bid modifiers are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignBidModifiersRequest) Reset() { *x = MutateCampaignBidModifiersRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignBidModifiersRequest) String() string { func (*MutateCampaignBidModifiersRequest) ProtoMessage() {} func (x *MutateCampaignBidModifiersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignBidModifiersRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignBidModifiersRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifiersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignBidModifiersRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type CampaignBidModifierOperation struct { func (x *CampaignBidModifierOperation) Reset() { *x = CampaignBidModifierOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *CampaignBidModifierOperation) String() string { func (*CampaignBidModifierOperation) ProtoMessage() {} func (x *CampaignBidModifierOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *CampaignBidModifierOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBidModifierOperation.ProtoReflect.Descriptor instead. func (*CampaignBidModifierOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignBidModifierOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -264,7 +264,7 @@ type MutateCampaignBidModifiersResponse struct { func (x *MutateCampaignBidModifiersResponse) Reset() { *x = MutateCampaignBidModifiersResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -276,7 +276,7 @@ func (x *MutateCampaignBidModifiersResponse) String() string { func (*MutateCampaignBidModifiersResponse) ProtoMessage() {} func (x *MutateCampaignBidModifiersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -289,7 +289,7 @@ func (x *MutateCampaignBidModifiersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignBidModifiersResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifiersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignBidModifiersResponse) GetPartialFailureError() *status.Status { @@ -321,7 +321,7 @@ type MutateCampaignBidModifierResult struct { func (x *MutateCampaignBidModifierResult) Reset() { *x = MutateCampaignBidModifierResult{} - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateCampaignBidModifierResult) String() string { func (*MutateCampaignBidModifierResult) ProtoMessage() {} func (x *MutateCampaignBidModifierResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateCampaignBidModifierResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBidModifierResult.ProtoReflect.Descriptor instead. func (*MutateCampaignBidModifierResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignBidModifierResult) GetResourceName() string { @@ -363,21 +363,21 @@ func (x *MutateCampaignBidModifierResult) GetCampaignBidModifier() *resources.Ca return nil } -var File_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -398,7 +398,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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,13 +423,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -461,7 +461,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -470,16 +470,16 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -489,59 +489,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_goTypes = []any{ - (*MutateCampaignBidModifiersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest - (*CampaignBidModifierOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignBidModifierOperation - (*MutateCampaignBidModifiersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse - (*MutateCampaignBidModifierResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignBidModifierResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_goTypes = []any{ + (*MutateCampaignBidModifiersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest + (*CampaignBidModifierOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignBidModifierOperation + (*MutateCampaignBidModifiersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignBidModifiersResponse + (*MutateCampaignBidModifierResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignBidModifierResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignBidModifier)(nil), // 6: google.ads.googleads.v21.resources.CampaignBidModifier + (*resources.CampaignBidModifier)(nil), // 6: google.ads.googleads.v22.resources.CampaignBidModifier (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignBidModifierOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CampaignBidModifierOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignBidModifier - 6, // 4: google.ads.googleads.v21.services.CampaignBidModifierOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignBidModifier - 7, // 5: google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignBidModifierResult - 6, // 7: google.ads.googleads.v21.services.MutateCampaignBidModifierResult.campaign_bid_modifier:type_name -> google.ads.googleads.v21.resources.CampaignBidModifier - 0, // 8: google.ads.googleads.v21.services.CampaignBidModifierService.MutateCampaignBidModifiers:input_type -> google.ads.googleads.v21.services.MutateCampaignBidModifiersRequest - 2, // 9: google.ads.googleads.v21.services.CampaignBidModifierService.MutateCampaignBidModifiers:output_type -> google.ads.googleads.v21.services.MutateCampaignBidModifiersResponse +var file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignBidModifierOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignBidModifierOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CampaignBidModifierOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignBidModifier + 6, // 4: google.ads.googleads.v22.services.CampaignBidModifierOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignBidModifier + 7, // 5: google.ads.googleads.v22.services.MutateCampaignBidModifiersResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCampaignBidModifiersResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignBidModifierResult + 6, // 7: google.ads.googleads.v22.services.MutateCampaignBidModifierResult.campaign_bid_modifier:type_name -> google.ads.googleads.v22.resources.CampaignBidModifier + 0, // 8: google.ads.googleads.v22.services.CampaignBidModifierService.MutateCampaignBidModifiers:input_type -> google.ads.googleads.v22.services.MutateCampaignBidModifiersRequest + 2, // 9: google.ads.googleads.v22.services.CampaignBidModifierService.MutateCampaignBidModifiers:output_type -> google.ads.googleads.v22.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 @@ -549,12 +549,12 @@ var file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_d 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignBidModifierOperation_Create)(nil), (*CampaignBidModifierOperation_Update)(nil), (*CampaignBidModifierOperation_Remove)(nil), @@ -563,17 +563,17 @@ func file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 1c522f06..0cd084e2 100644 --- a/services/campaign_bid_modifier_service_grpc.pb.go +++ b/services/campaign_bid_modifier_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_bid_modifier_service.proto +// source: google/ads/googleads/v22/services/campaign_bid_modifier_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName = "/google.ads.googleads.v21.services.CampaignBidModifierService/MutateCampaignBidModifiers" + CampaignBidModifierService_MutateCampaignBidModifiers_FullMethodName = "/google.ads.googleads.v22.services.CampaignBidModifierService/MutateCampaignBidModifiers" ) // CampaignBidModifierServiceClient is the client API for CampaignBidModifierService service. @@ -181,7 +181,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.v21.services.CampaignBidModifierService", + ServiceName: "google.ads.googleads.v22.services.CampaignBidModifierService", HandlerType: (*CampaignBidModifierServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -190,5 +190,5 @@ var CampaignBidModifierService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_bid_modifier_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_bid_modifier_service.proto", } diff --git a/services/campaign_budget_service.pb.go b/services/campaign_budget_service.pb.go index 681f58a5..042d2dfe 100644 --- a/services/campaign_budget_service.pb.go +++ b/services/campaign_budget_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_budget_service.proto +// source: google/ads/googleads/v22/services/campaign_budget_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignBudgetService.MutateCampaignBudgets][google.ads.googleads.v21.services.CampaignBudgetService.MutateCampaignBudgets]. +// [CampaignBudgetService.MutateCampaignBudgets][google.ads.googleads.v22.services.CampaignBudgetService.MutateCampaignBudgets]. type MutateCampaignBudgetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign budgets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignBudgetsRequest) Reset() { *x = MutateCampaignBudgetsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCampaignBudgetsRequest) String() string { func (*MutateCampaignBudgetsRequest) ProtoMessage() {} func (x *MutateCampaignBudgetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCampaignBudgetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignBudgetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CampaignBudgetOperation struct { func (x *CampaignBudgetOperation) Reset() { *x = CampaignBudgetOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CampaignBudgetOperation) String() string { func (*CampaignBudgetOperation) ProtoMessage() {} func (x *CampaignBudgetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CampaignBudgetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudgetOperation.ProtoReflect.Descriptor instead. func (*CampaignBudgetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignBudgetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateCampaignBudgetsResponse struct { func (x *MutateCampaignBudgetsResponse) Reset() { *x = MutateCampaignBudgetsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *MutateCampaignBudgetsResponse) String() string { func (*MutateCampaignBudgetsResponse) ProtoMessage() {} func (x *MutateCampaignBudgetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *MutateCampaignBudgetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignBudgetsResponse) GetPartialFailureError() *status.Status { @@ -318,7 +318,7 @@ type MutateCampaignBudgetResult struct { func (x *MutateCampaignBudgetResult) Reset() { *x = MutateCampaignBudgetResult{} - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *MutateCampaignBudgetResult) String() string { func (*MutateCampaignBudgetResult) ProtoMessage() {} func (x *MutateCampaignBudgetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *MutateCampaignBudgetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignBudgetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignBudgetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignBudgetResult) GetResourceName() string { @@ -360,21 +360,21 @@ func (x *MutateCampaignBudgetResult) GetCampaignBudget() *resources.CampaignBudg return nil } -var File_google_ads_googleads_v21_services_campaign_budget_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_budget_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, @@ -440,7 +440,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,23 +454,23 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, @@ -480,58 +480,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_budget_service_proto_goTypes = []any{ - (*MutateCampaignBudgetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignBudgetsRequest - (*CampaignBudgetOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignBudgetOperation - (*MutateCampaignBudgetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignBudgetsResponse - (*MutateCampaignBudgetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignBudgetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_budget_service_proto_goTypes = []any{ + (*MutateCampaignBudgetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignBudgetsRequest + (*CampaignBudgetOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignBudgetOperation + (*MutateCampaignBudgetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignBudgetsResponse + (*MutateCampaignBudgetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignBudgetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignBudget)(nil), // 6: google.ads.googleads.v21.resources.CampaignBudget + (*resources.CampaignBudget)(nil), // 6: google.ads.googleads.v22.resources.CampaignBudget (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_budget_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignBudgetsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignBudgetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignBudgetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignBudgetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CampaignBudgetOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignBudget - 6, // 4: google.ads.googleads.v21.services.CampaignBudgetOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignBudget - 7, // 5: google.ads.googleads.v21.services.MutateCampaignBudgetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCampaignBudgetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignBudgetResult - 6, // 7: google.ads.googleads.v21.services.MutateCampaignBudgetResult.campaign_budget:type_name -> google.ads.googleads.v21.resources.CampaignBudget - 0, // 8: google.ads.googleads.v21.services.CampaignBudgetService.MutateCampaignBudgets:input_type -> google.ads.googleads.v21.services.MutateCampaignBudgetsRequest - 2, // 9: google.ads.googleads.v21.services.CampaignBudgetService.MutateCampaignBudgets:output_type -> google.ads.googleads.v21.services.MutateCampaignBudgetsResponse +var file_google_ads_googleads_v22_services_campaign_budget_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignBudgetsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignBudgetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignBudgetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignBudgetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CampaignBudgetOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignBudget + 6, // 4: google.ads.googleads.v22.services.CampaignBudgetOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignBudget + 7, // 5: google.ads.googleads.v22.services.MutateCampaignBudgetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCampaignBudgetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignBudgetResult + 6, // 7: google.ads.googleads.v22.services.MutateCampaignBudgetResult.campaign_budget:type_name -> google.ads.googleads.v22.resources.CampaignBudget + 0, // 8: google.ads.googleads.v22.services.CampaignBudgetService.MutateCampaignBudgets:input_type -> google.ads.googleads.v22.services.MutateCampaignBudgetsRequest + 2, // 9: google.ads.googleads.v22.services.CampaignBudgetService.MutateCampaignBudgets:output_type -> google.ads.googleads.v22.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 @@ -539,12 +539,12 @@ var file_google_ads_googleads_v21_services_campaign_budget_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_budget_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_budget_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_budget_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_budget_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_budget_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_budget_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignBudgetOperation_Create)(nil), (*CampaignBudgetOperation_Update)(nil), (*CampaignBudgetOperation_Remove)(nil), @@ -553,17 +553,17 @@ func file_google_ads_googleads_v21_services_campaign_budget_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_budget_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_budget_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_budget_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_budget_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_budget_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_budget_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_budget_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_budget_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_budget_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_budget_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_budget_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_budget_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_budget_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 754db1a7..d29f8e0d 100644 --- a/services/campaign_budget_service_grpc.pb.go +++ b/services/campaign_budget_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_budget_service.proto +// source: google/ads/googleads/v22/services/campaign_budget_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignBudgetService_MutateCampaignBudgets_FullMethodName = "/google.ads.googleads.v21.services.CampaignBudgetService/MutateCampaignBudgets" + CampaignBudgetService_MutateCampaignBudgets_FullMethodName = "/google.ads.googleads.v22.services.CampaignBudgetService/MutateCampaignBudgets" ) // CampaignBudgetServiceClient is the client API for CampaignBudgetService service. @@ -170,7 +170,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.v21.services.CampaignBudgetService", + ServiceName: "google.ads.googleads.v22.services.CampaignBudgetService", HandlerType: (*CampaignBudgetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -179,5 +179,5 @@ var CampaignBudgetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_budget_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_budget_service.proto", } diff --git a/services/campaign_conversion_goal_service.pb.go b/services/campaign_conversion_goal_service.pb.go index 8d062ffb..5fbe0a4c 100644 --- a/services/campaign_conversion_goal_service.pb.go +++ b/services/campaign_conversion_goal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/campaign_conversion_goal_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CampaignConversionGoalService.MutateCampaignConversionGoals][google.ads.googleads.v21.services.CampaignConversionGoalService.MutateCampaignConversionGoals]. +// [CampaignConversionGoalService.MutateCampaignConversionGoals][google.ads.googleads.v22.services.CampaignConversionGoalService.MutateCampaignConversionGoals]. type MutateCampaignConversionGoalsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign conversion goals are being @@ -57,7 +57,7 @@ type MutateCampaignConversionGoalsRequest struct { func (x *MutateCampaignConversionGoalsRequest) Reset() { *x = MutateCampaignConversionGoalsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCampaignConversionGoalsRequest) String() string { func (*MutateCampaignConversionGoalsRequest) ProtoMessage() {} func (x *MutateCampaignConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *MutateCampaignConversionGoalsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCampaignConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignConversionGoalsRequest) GetCustomerId() string { @@ -123,7 +123,7 @@ type CampaignConversionGoalOperation struct { func (x *CampaignConversionGoalOperation) Reset() { *x = CampaignConversionGoalOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *CampaignConversionGoalOperation) String() string { func (*CampaignConversionGoalOperation) ProtoMessage() {} func (x *CampaignConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *CampaignConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CampaignConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -197,7 +197,7 @@ type MutateCampaignConversionGoalsResponse struct { func (x *MutateCampaignConversionGoalsResponse) Reset() { *x = MutateCampaignConversionGoalsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *MutateCampaignConversionGoalsResponse) String() string { func (*MutateCampaignConversionGoalsResponse) ProtoMessage() {} func (x *MutateCampaignConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *MutateCampaignConversionGoalsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCampaignConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignConversionGoalsResponse) GetResults() []*MutateCampaignConversionGoalResult { @@ -243,7 +243,7 @@ type MutateCampaignConversionGoalResult struct { func (x *MutateCampaignConversionGoalResult) Reset() { *x = MutateCampaignConversionGoalResult{} - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -255,7 +255,7 @@ func (x *MutateCampaignConversionGoalResult) String() string { func (*MutateCampaignConversionGoalResult) ProtoMessage() {} func (x *MutateCampaignConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -268,7 +268,7 @@ func (x *MutateCampaignConversionGoalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCampaignConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignConversionGoalResult) GetResourceName() string { @@ -278,18 +278,18 @@ func (x *MutateCampaignConversionGoalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -309,7 +309,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -350,17 +350,17 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -370,52 +370,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_goTypes = []any{ - (*MutateCampaignConversionGoalsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignConversionGoalsRequest - (*CampaignConversionGoalOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignConversionGoalOperation - (*MutateCampaignConversionGoalsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignConversionGoalsResponse - (*MutateCampaignConversionGoalResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignConversionGoalResult +var file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_goTypes = []any{ + (*MutateCampaignConversionGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignConversionGoalsRequest + (*CampaignConversionGoalOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignConversionGoalOperation + (*MutateCampaignConversionGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignConversionGoalsResponse + (*MutateCampaignConversionGoalResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignConversionGoalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CampaignConversionGoal)(nil), // 5: google.ads.googleads.v21.resources.CampaignConversionGoal -} -var file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignConversionGoalsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignConversionGoalOperation - 4, // 1: google.ads.googleads.v21.services.CampaignConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CampaignConversionGoalOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignConversionGoal - 3, // 3: google.ads.googleads.v21.services.MutateCampaignConversionGoalsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignConversionGoalResult - 0, // 4: google.ads.googleads.v21.services.CampaignConversionGoalService.MutateCampaignConversionGoals:input_type -> google.ads.googleads.v21.services.MutateCampaignConversionGoalsRequest - 2, // 5: google.ads.googleads.v21.services.CampaignConversionGoalService.MutateCampaignConversionGoals:output_type -> google.ads.googleads.v21.services.MutateCampaignConversionGoalsResponse + (*resources.CampaignConversionGoal)(nil), // 5: google.ads.googleads.v22.resources.CampaignConversionGoal +} +var file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignConversionGoalsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignConversionGoalOperation + 4, // 1: google.ads.googleads.v22.services.CampaignConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CampaignConversionGoalOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignConversionGoal + 3, // 3: google.ads.googleads.v22.services.MutateCampaignConversionGoalsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignConversionGoalResult + 0, // 4: google.ads.googleads.v22.services.CampaignConversionGoalService.MutateCampaignConversionGoals:input_type -> google.ads.googleads.v22.services.MutateCampaignConversionGoalsRequest + 2, // 5: google.ads.googleads.v22.services.CampaignConversionGoalService.MutateCampaignConversionGoals:output_type -> google.ads.googleads.v22.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 @@ -423,29 +423,29 @@ var file_google_ads_googleads_v21_services_campaign_conversion_goal_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignConversionGoalOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 fffd033c..35c02fe1 100644 --- a/services/campaign_conversion_goal_service_grpc.pb.go +++ b/services/campaign_conversion_goal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/campaign_conversion_goal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName = "/google.ads.googleads.v21.services.CampaignConversionGoalService/MutateCampaignConversionGoals" + CampaignConversionGoalService_MutateCampaignConversionGoals_FullMethodName = "/google.ads.googleads.v22.services.CampaignConversionGoalService/MutateCampaignConversionGoals" ) // CampaignConversionGoalServiceClient is the client API for CampaignConversionGoalService service. @@ -131,7 +131,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.v21.services.CampaignConversionGoalService", + ServiceName: "google.ads.googleads.v22.services.CampaignConversionGoalService", HandlerType: (*CampaignConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CampaignConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_conversion_goal_service.proto", } diff --git a/services/campaign_criterion_service.pb.go b/services/campaign_criterion_service.pb.go index 17f9b8f6..e1124dc9 100644 --- a/services/campaign_criterion_service.pb.go +++ b/services/campaign_criterion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_criterion_service.proto +// source: google/ads/googleads/v22/services/campaign_criterion_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignCriterionService.MutateCampaignCriteria][google.ads.googleads.v21.services.CampaignCriterionService.MutateCampaignCriteria]. +// [CampaignCriterionService.MutateCampaignCriteria][google.ads.googleads.v22.services.CampaignCriterionService.MutateCampaignCriteria]. type MutateCampaignCriteriaRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose criteria are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignCriteriaRequest) Reset() { *x = MutateCampaignCriteriaRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCampaignCriteriaRequest) String() string { func (*MutateCampaignCriteriaRequest) ProtoMessage() {} func (x *MutateCampaignCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCampaignCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignCriteriaRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CampaignCriterionOperation struct { func (x *CampaignCriterionOperation) Reset() { *x = CampaignCriterionOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CampaignCriterionOperation) String() string { func (*CampaignCriterionOperation) ProtoMessage() {} func (x *CampaignCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CampaignCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCriterionOperation.ProtoReflect.Descriptor instead. func (*CampaignCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateCampaignCriteriaResponse) String() string { func (*MutateCampaignCriteriaResponse) ProtoMessage() {} func (x *MutateCampaignCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateCampaignCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignCriteriaResponse) GetPartialFailureError() *status.Status { @@ -319,7 +319,7 @@ type MutateCampaignCriterionResult struct { func (x *MutateCampaignCriterionResult) Reset() { *x = MutateCampaignCriterionResult{} - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateCampaignCriterionResult) String() string { func (*MutateCampaignCriterionResult) ProtoMessage() {} func (x *MutateCampaignCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateCampaignCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCriterionResult.ProtoReflect.Descriptor instead. func (*MutateCampaignCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignCriterionResult) GetResourceName() string { @@ -361,21 +361,21 @@ func (x *MutateCampaignCriterionResult) GetCampaignCriterion() *resources.Campai return nil } -var File_google_ads_googleads_v21_services_campaign_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -396,7 +396,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -408,7 +408,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -420,13 +420,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, @@ -443,7 +443,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -457,7 +457,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -465,16 +465,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x32, 0x32, 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, @@ -484,58 +484,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_criterion_service_proto_goTypes = []any{ - (*MutateCampaignCriteriaRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignCriteriaRequest - (*CampaignCriterionOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignCriterionOperation - (*MutateCampaignCriteriaResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignCriteriaResponse - (*MutateCampaignCriterionResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_criterion_service_proto_goTypes = []any{ + (*MutateCampaignCriteriaRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignCriteriaRequest + (*CampaignCriterionOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignCriterionOperation + (*MutateCampaignCriteriaResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignCriteriaResponse + (*MutateCampaignCriterionResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignCriterion)(nil), // 6: google.ads.googleads.v21.resources.CampaignCriterion + (*resources.CampaignCriterion)(nil), // 6: google.ads.googleads.v22.resources.CampaignCriterion (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignCriteriaRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignCriterionOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CampaignCriterionOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignCriterion - 6, // 4: google.ads.googleads.v21.services.CampaignCriterionOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignCriterion - 7, // 5: google.ads.googleads.v21.services.MutateCampaignCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCampaignCriteriaResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignCriterionResult - 6, // 7: google.ads.googleads.v21.services.MutateCampaignCriterionResult.campaign_criterion:type_name -> google.ads.googleads.v21.resources.CampaignCriterion - 0, // 8: google.ads.googleads.v21.services.CampaignCriterionService.MutateCampaignCriteria:input_type -> google.ads.googleads.v21.services.MutateCampaignCriteriaRequest - 2, // 9: google.ads.googleads.v21.services.CampaignCriterionService.MutateCampaignCriteria:output_type -> google.ads.googleads.v21.services.MutateCampaignCriteriaResponse +var file_google_ads_googleads_v22_services_campaign_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignCriteriaRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignCriterionOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignCriterionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CampaignCriterionOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignCriterion + 6, // 4: google.ads.googleads.v22.services.CampaignCriterionOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignCriterion + 7, // 5: google.ads.googleads.v22.services.MutateCampaignCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCampaignCriteriaResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignCriterionResult + 6, // 7: google.ads.googleads.v22.services.MutateCampaignCriterionResult.campaign_criterion:type_name -> google.ads.googleads.v22.resources.CampaignCriterion + 0, // 8: google.ads.googleads.v22.services.CampaignCriterionService.MutateCampaignCriteria:input_type -> google.ads.googleads.v22.services.MutateCampaignCriteriaRequest + 2, // 9: google.ads.googleads.v22.services.CampaignCriterionService.MutateCampaignCriteria:output_type -> google.ads.googleads.v22.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 @@ -543,12 +543,12 @@ var file_google_ads_googleads_v21_services_campaign_criterion_service_proto_depI 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_criterion_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_criterion_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_criterion_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_criterion_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_criterion_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignCriterionOperation_Create)(nil), (*CampaignCriterionOperation_Update)(nil), (*CampaignCriterionOperation_Remove)(nil), @@ -557,17 +557,17 @@ func file_google_ads_googleads_v21_services_campaign_criterion_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_criterion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_criterion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_criterion_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_criterion_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ed2d8ab6..b7a2f84c 100644 --- a/services/campaign_criterion_service_grpc.pb.go +++ b/services/campaign_criterion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_criterion_service.proto +// source: google/ads/googleads/v22/services/campaign_criterion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignCriterionService_MutateCampaignCriteria_FullMethodName = "/google.ads.googleads.v21.services.CampaignCriterionService/MutateCampaignCriteria" + CampaignCriterionService_MutateCampaignCriteria_FullMethodName = "/google.ads.googleads.v22.services.CampaignCriterionService/MutateCampaignCriteria" ) // CampaignCriterionServiceClient is the client API for CampaignCriterionService service. @@ -193,7 +193,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.v21.services.CampaignCriterionService", + ServiceName: "google.ads.googleads.v22.services.CampaignCriterionService", HandlerType: (*CampaignCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -202,5 +202,5 @@ var CampaignCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_criterion_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_criterion_service.proto", } diff --git a/services/campaign_customizer_service.pb.go b/services/campaign_customizer_service.pb.go index 265f078c..5e39ae5b 100644 --- a/services/campaign_customizer_service.pb.go +++ b/services/campaign_customizer_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_customizer_service.proto +// source: google/ads/googleads/v22/services/campaign_customizer_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignCustomizerService.MutateCampaignCustomizers][google.ads.googleads.v21.services.CampaignCustomizerService.MutateCampaignCustomizers]. +// [CampaignCustomizerService.MutateCampaignCustomizers][google.ads.googleads.v22.services.CampaignCustomizerService.MutateCampaignCustomizers]. type MutateCampaignCustomizersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign customizers are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignCustomizersRequest) Reset() { *x = MutateCampaignCustomizersRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCampaignCustomizersRequest) String() string { func (*MutateCampaignCustomizersRequest) ProtoMessage() {} func (x *MutateCampaignCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateCampaignCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignCustomizersRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type CampaignCustomizerOperation struct { func (x *CampaignCustomizerOperation) Reset() { *x = CampaignCustomizerOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CampaignCustomizerOperation) String() string { func (*CampaignCustomizerOperation) ProtoMessage() {} func (x *CampaignCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CampaignCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignCustomizerOperation.ProtoReflect.Descriptor instead. func (*CampaignCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignCustomizerOperation) GetOperation() isCampaignCustomizerOperation_Operation { @@ -235,7 +235,7 @@ type MutateCampaignCustomizersResponse struct { func (x *MutateCampaignCustomizersResponse) Reset() { *x = MutateCampaignCustomizersResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateCampaignCustomizersResponse) String() string { func (*MutateCampaignCustomizersResponse) ProtoMessage() {} func (x *MutateCampaignCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateCampaignCustomizersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCampaignCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignCustomizersResponse) GetResults() []*MutateCampaignCustomizerResult { @@ -292,7 +292,7 @@ type MutateCampaignCustomizerResult struct { func (x *MutateCampaignCustomizerResult) Reset() { *x = MutateCampaignCustomizerResult{} - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateCampaignCustomizerResult) String() string { func (*MutateCampaignCustomizerResult) ProtoMessage() {} func (x *MutateCampaignCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateCampaignCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateCampaignCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignCustomizerResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateCampaignCustomizerResult) GetCampaignCustomizer() *resources.Camp return nil } -var File_google_ads_googleads_v21_services_campaign_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -388,7 +388,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -401,7 +401,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -420,7 +420,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -428,17 +428,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x32, 0x32, 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, @@ -448,55 +448,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_customizer_service_proto_goTypes = []any{ - (*MutateCampaignCustomizersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignCustomizersRequest - (*CampaignCustomizerOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignCustomizerOperation - (*MutateCampaignCustomizersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignCustomizersResponse - (*MutateCampaignCustomizerResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignCustomizer)(nil), // 5: google.ads.googleads.v21.resources.CampaignCustomizer +var file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_customizer_service_proto_goTypes = []any{ + (*MutateCampaignCustomizersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignCustomizersRequest + (*CampaignCustomizerOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignCustomizerOperation + (*MutateCampaignCustomizersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignCustomizersResponse + (*MutateCampaignCustomizerResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignCustomizer)(nil), // 5: google.ads.googleads.v22.resources.CampaignCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignCustomizersRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignCustomizerOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignCustomizerOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignCustomizer - 3, // 3: google.ads.googleads.v21.services.MutateCampaignCustomizersResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignCustomizerResult - 6, // 4: google.ads.googleads.v21.services.MutateCampaignCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateCampaignCustomizerResult.campaign_customizer:type_name -> google.ads.googleads.v21.resources.CampaignCustomizer - 0, // 6: google.ads.googleads.v21.services.CampaignCustomizerService.MutateCampaignCustomizers:input_type -> google.ads.googleads.v21.services.MutateCampaignCustomizersRequest - 2, // 7: google.ads.googleads.v21.services.CampaignCustomizerService.MutateCampaignCustomizers:output_type -> google.ads.googleads.v21.services.MutateCampaignCustomizersResponse +var file_google_ads_googleads_v22_services_campaign_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignCustomizersRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignCustomizerOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignCustomizerOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignCustomizer + 3, // 3: google.ads.googleads.v22.services.MutateCampaignCustomizersResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignCustomizerResult + 6, // 4: google.ads.googleads.v22.services.MutateCampaignCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateCampaignCustomizerResult.campaign_customizer:type_name -> google.ads.googleads.v22.resources.CampaignCustomizer + 0, // 6: google.ads.googleads.v22.services.CampaignCustomizerService.MutateCampaignCustomizers:input_type -> google.ads.googleads.v22.services.MutateCampaignCustomizersRequest + 2, // 7: google.ads.googleads.v22.services.CampaignCustomizerService.MutateCampaignCustomizers:output_type -> google.ads.googleads.v22.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 @@ -504,12 +504,12 @@ var file_google_ads_googleads_v21_services_campaign_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_customizer_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_customizer_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_customizer_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_customizer_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_customizer_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignCustomizerOperation_Create)(nil), (*CampaignCustomizerOperation_Remove)(nil), } @@ -517,17 +517,17 @@ func file_google_ads_googleads_v21_services_campaign_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_customizer_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_customizer_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_customizer_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_customizer_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 6c94d982..f9aa4512 100644 --- a/services/campaign_customizer_service_grpc.pb.go +++ b/services/campaign_customizer_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_customizer_service.proto +// source: google/ads/googleads/v22/services/campaign_customizer_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName = "/google.ads.googleads.v21.services.CampaignCustomizerService/MutateCampaignCustomizers" + CampaignCustomizerService_MutateCampaignCustomizers_FullMethodName = "/google.ads.googleads.v22.services.CampaignCustomizerService/MutateCampaignCustomizers" ) // CampaignCustomizerServiceClient is the client API for CampaignCustomizerService service. @@ -131,7 +131,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.v21.services.CampaignCustomizerService", + ServiceName: "google.ads.googleads.v22.services.CampaignCustomizerService", HandlerType: (*CampaignCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CampaignCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_customizer_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_customizer_service.proto", } diff --git a/services/campaign_draft_service.pb.go b/services/campaign_draft_service.pb.go index b9b23bfc..274f8ff7 100644 --- a/services/campaign_draft_service.pb.go +++ b/services/campaign_draft_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_draft_service.proto +// source: google/ads/googleads/v22/services/campaign_draft_service.proto package services @@ -43,7 +43,7 @@ const ( ) // Request message for -// [CampaignDraftService.MutateCampaignDrafts][google.ads.googleads.v21.services.CampaignDraftService.MutateCampaignDrafts]. +// [CampaignDraftService.MutateCampaignDrafts][google.ads.googleads.v22.services.CampaignDraftService.MutateCampaignDrafts]. type MutateCampaignDraftsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign drafts are being modified. @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignDraftsRequest) Reset() { *x = MutateCampaignDraftsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCampaignDraftsRequest) String() string { func (*MutateCampaignDraftsRequest) ProtoMessage() {} func (x *MutateCampaignDraftsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCampaignDraftsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignDraftsRequest) GetCustomerId() string { @@ -131,7 +131,7 @@ func (x *MutateCampaignDraftsRequest) GetResponseContentType() enums.ResponseCon } // Request message for -// [CampaignDraftService.PromoteCampaignDraft][google.ads.googleads.v21.services.CampaignDraftService.PromoteCampaignDraft]. +// [CampaignDraftService.PromoteCampaignDraft][google.ads.googleads.v22.services.CampaignDraftService.PromoteCampaignDraft]. type PromoteCampaignDraftRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the campaign draft to promote. @@ -145,7 +145,7 @@ type PromoteCampaignDraftRequest struct { func (x *PromoteCampaignDraftRequest) Reset() { *x = PromoteCampaignDraftRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *PromoteCampaignDraftRequest) String() string { func (*PromoteCampaignDraftRequest) ProtoMessage() {} func (x *PromoteCampaignDraftRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *PromoteCampaignDraftRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteCampaignDraftRequest.ProtoReflect.Descriptor instead. func (*PromoteCampaignDraftRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{1} } func (x *PromoteCampaignDraftRequest) GetCampaignDraft() string { @@ -206,7 +206,7 @@ type CampaignDraftOperation struct { func (x *CampaignDraftOperation) Reset() { *x = CampaignDraftOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -218,7 +218,7 @@ func (x *CampaignDraftOperation) String() string { func (*CampaignDraftOperation) ProtoMessage() {} func (x *CampaignDraftOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -231,7 +231,7 @@ func (x *CampaignDraftOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDraftOperation.ProtoReflect.Descriptor instead. func (*CampaignDraftOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{2} } func (x *CampaignDraftOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -321,7 +321,7 @@ type MutateCampaignDraftsResponse struct { func (x *MutateCampaignDraftsResponse) Reset() { *x = MutateCampaignDraftsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *MutateCampaignDraftsResponse) String() string { func (*MutateCampaignDraftsResponse) ProtoMessage() {} func (x *MutateCampaignDraftsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *MutateCampaignDraftsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignDraftsResponse) GetPartialFailureError() *status.Status { @@ -378,7 +378,7 @@ type MutateCampaignDraftResult struct { func (x *MutateCampaignDraftResult) Reset() { *x = MutateCampaignDraftResult{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -390,7 +390,7 @@ func (x *MutateCampaignDraftResult) String() string { func (*MutateCampaignDraftResult) ProtoMessage() {} func (x *MutateCampaignDraftResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -403,7 +403,7 @@ func (x *MutateCampaignDraftResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignDraftResult.ProtoReflect.Descriptor instead. func (*MutateCampaignDraftResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{4} } func (x *MutateCampaignDraftResult) GetResourceName() string { @@ -421,7 +421,7 @@ func (x *MutateCampaignDraftResult) GetCampaignDraft() *resources.CampaignDraft } // Request message for -// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. +// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. type ListCampaignDraftAsyncErrorsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The name of the campaign draft from which to retrieve the async @@ -442,7 +442,7 @@ type ListCampaignDraftAsyncErrorsRequest struct { func (x *ListCampaignDraftAsyncErrorsRequest) Reset() { *x = ListCampaignDraftAsyncErrorsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -454,7 +454,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) String() string { func (*ListCampaignDraftAsyncErrorsRequest) ProtoMessage() {} func (x *ListCampaignDraftAsyncErrorsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -467,7 +467,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use ListCampaignDraftAsyncErrorsRequest.ProtoReflect.Descriptor instead. func (*ListCampaignDraftAsyncErrorsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{5} } func (x *ListCampaignDraftAsyncErrorsRequest) GetResourceName() string { @@ -492,7 +492,7 @@ func (x *ListCampaignDraftAsyncErrorsRequest) GetPageSize() int32 { } // Response message for -// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. +// [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors]. type ListCampaignDraftAsyncErrorsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Details of the errors when performing the asynchronous operation. @@ -508,7 +508,7 @@ type ListCampaignDraftAsyncErrorsResponse struct { func (x *ListCampaignDraftAsyncErrorsResponse) Reset() { *x = ListCampaignDraftAsyncErrorsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -520,7 +520,7 @@ func (x *ListCampaignDraftAsyncErrorsResponse) String() string { func (*ListCampaignDraftAsyncErrorsResponse) ProtoMessage() {} func (x *ListCampaignDraftAsyncErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -533,7 +533,7 @@ func (x *ListCampaignDraftAsyncErrorsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use ListCampaignDraftAsyncErrorsResponse.ProtoReflect.Descriptor instead. func (*ListCampaignDraftAsyncErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP(), []int{6} } func (x *ListCampaignDraftAsyncErrorsResponse) GetErrors() []*status.Status { @@ -550,21 +550,21 @@ func (x *ListCampaignDraftAsyncErrorsResponse) GetNextPageToken() string { return "" } -var File_google_ads_googleads_v21_services_campaign_draft_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_draft_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -588,7 +588,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -600,7 +600,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -622,12 +622,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -644,7 +644,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -657,7 +657,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x32, 0x32, 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, @@ -683,22 +683,22 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -708,23 +708,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x7b, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, + 0x6d, 0x65, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x43, 0x12, 0x41, 0x2f, 0x76, 0x32, 0x32, 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, @@ -735,67 +735,67 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x61, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) -var file_google_ads_googleads_v21_services_campaign_draft_service_proto_goTypes = []any{ - (*MutateCampaignDraftsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignDraftsRequest - (*PromoteCampaignDraftRequest)(nil), // 1: google.ads.googleads.v21.services.PromoteCampaignDraftRequest - (*CampaignDraftOperation)(nil), // 2: google.ads.googleads.v21.services.CampaignDraftOperation - (*MutateCampaignDraftsResponse)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignDraftsResponse - (*MutateCampaignDraftResult)(nil), // 4: google.ads.googleads.v21.services.MutateCampaignDraftResult - (*ListCampaignDraftAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsRequest - (*ListCampaignDraftAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsResponse - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 7: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType + return file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes = make([]protoimpl.MessageInfo, 7) +var file_google_ads_googleads_v22_services_campaign_draft_service_proto_goTypes = []any{ + (*MutateCampaignDraftsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignDraftsRequest + (*PromoteCampaignDraftRequest)(nil), // 1: google.ads.googleads.v22.services.PromoteCampaignDraftRequest + (*CampaignDraftOperation)(nil), // 2: google.ads.googleads.v22.services.CampaignDraftOperation + (*MutateCampaignDraftsResponse)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignDraftsResponse + (*MutateCampaignDraftResult)(nil), // 4: google.ads.googleads.v22.services.MutateCampaignDraftResult + (*ListCampaignDraftAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsRequest + (*ListCampaignDraftAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsResponse + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 7: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 8: google.protobuf.FieldMask - (*resources.CampaignDraft)(nil), // 9: google.ads.googleads.v21.resources.CampaignDraft + (*resources.CampaignDraft)(nil), // 9: google.ads.googleads.v22.resources.CampaignDraft (*status.Status)(nil), // 10: google.rpc.Status (*longrunningpb.Operation)(nil), // 11: google.longrunning.Operation } -var file_google_ads_googleads_v21_services_campaign_draft_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.MutateCampaignDraftsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignDraftOperation - 7, // 1: google.ads.googleads.v21.services.MutateCampaignDraftsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 8, // 2: google.ads.googleads.v21.services.CampaignDraftOperation.update_mask:type_name -> google.protobuf.FieldMask - 9, // 3: google.ads.googleads.v21.services.CampaignDraftOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignDraft - 9, // 4: google.ads.googleads.v21.services.CampaignDraftOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignDraft - 10, // 5: google.ads.googleads.v21.services.MutateCampaignDraftsResponse.partial_failure_error:type_name -> google.rpc.Status - 4, // 6: google.ads.googleads.v21.services.MutateCampaignDraftsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignDraftResult - 9, // 7: google.ads.googleads.v21.services.MutateCampaignDraftResult.campaign_draft:type_name -> google.ads.googleads.v21.resources.CampaignDraft - 10, // 8: google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsResponse.errors:type_name -> google.rpc.Status - 0, // 9: google.ads.googleads.v21.services.CampaignDraftService.MutateCampaignDrafts:input_type -> google.ads.googleads.v21.services.MutateCampaignDraftsRequest - 1, // 10: google.ads.googleads.v21.services.CampaignDraftService.PromoteCampaignDraft:input_type -> google.ads.googleads.v21.services.PromoteCampaignDraftRequest - 5, // 11: google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors:input_type -> google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsRequest - 3, // 12: google.ads.googleads.v21.services.CampaignDraftService.MutateCampaignDrafts:output_type -> google.ads.googleads.v21.services.MutateCampaignDraftsResponse - 11, // 13: google.ads.googleads.v21.services.CampaignDraftService.PromoteCampaignDraft:output_type -> google.longrunning.Operation - 6, // 14: google.ads.googleads.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors:output_type -> google.ads.googleads.v21.services.ListCampaignDraftAsyncErrorsResponse +var file_google_ads_googleads_v22_services_campaign_draft_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.MutateCampaignDraftsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignDraftOperation + 7, // 1: google.ads.googleads.v22.services.MutateCampaignDraftsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 8, // 2: google.ads.googleads.v22.services.CampaignDraftOperation.update_mask:type_name -> google.protobuf.FieldMask + 9, // 3: google.ads.googleads.v22.services.CampaignDraftOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignDraft + 9, // 4: google.ads.googleads.v22.services.CampaignDraftOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignDraft + 10, // 5: google.ads.googleads.v22.services.MutateCampaignDraftsResponse.partial_failure_error:type_name -> google.rpc.Status + 4, // 6: google.ads.googleads.v22.services.MutateCampaignDraftsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignDraftResult + 9, // 7: google.ads.googleads.v22.services.MutateCampaignDraftResult.campaign_draft:type_name -> google.ads.googleads.v22.resources.CampaignDraft + 10, // 8: google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsResponse.errors:type_name -> google.rpc.Status + 0, // 9: google.ads.googleads.v22.services.CampaignDraftService.MutateCampaignDrafts:input_type -> google.ads.googleads.v22.services.MutateCampaignDraftsRequest + 1, // 10: google.ads.googleads.v22.services.CampaignDraftService.PromoteCampaignDraft:input_type -> google.ads.googleads.v22.services.PromoteCampaignDraftRequest + 5, // 11: google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors:input_type -> google.ads.googleads.v22.services.ListCampaignDraftAsyncErrorsRequest + 3, // 12: google.ads.googleads.v22.services.CampaignDraftService.MutateCampaignDrafts:output_type -> google.ads.googleads.v22.services.MutateCampaignDraftsResponse + 11, // 13: google.ads.googleads.v22.services.CampaignDraftService.PromoteCampaignDraft:output_type -> google.longrunning.Operation + 6, // 14: google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors:output_type -> google.ads.googleads.v22.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 @@ -803,12 +803,12 @@ var file_google_ads_googleads_v21_services_campaign_draft_service_proto_depIdxs 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_draft_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_draft_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_draft_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_draft_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_draft_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_draft_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes[2].OneofWrappers = []any{ (*CampaignDraftOperation_Create)(nil), (*CampaignDraftOperation_Update)(nil), (*CampaignDraftOperation_Remove)(nil), @@ -817,17 +817,17 @@ func file_google_ads_googleads_v21_services_campaign_draft_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_draft_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_draft_service_proto_rawDesc)), NumEnums: 0, NumMessages: 7, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_draft_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_draft_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_draft_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_draft_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_draft_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_draft_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_draft_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_draft_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_draft_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_draft_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_draft_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 fa6c9b8c..5cd4b0ac 100644 --- a/services/campaign_draft_service_grpc.pb.go +++ b/services/campaign_draft_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_draft_service.proto +// source: google/ads/googleads/v22/services/campaign_draft_service.proto package services @@ -34,9 +34,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignDraftService_MutateCampaignDrafts_FullMethodName = "/google.ads.googleads.v21.services.CampaignDraftService/MutateCampaignDrafts" - CampaignDraftService_PromoteCampaignDraft_FullMethodName = "/google.ads.googleads.v21.services.CampaignDraftService/PromoteCampaignDraft" - CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName = "/google.ads.googleads.v21.services.CampaignDraftService/ListCampaignDraftAsyncErrors" + CampaignDraftService_MutateCampaignDrafts_FullMethodName = "/google.ads.googleads.v22.services.CampaignDraftService/MutateCampaignDrafts" + CampaignDraftService_PromoteCampaignDraft_FullMethodName = "/google.ads.googleads.v22.services.CampaignDraftService/PromoteCampaignDraft" + CampaignDraftService_ListCampaignDraftAsyncErrors_FullMethodName = "/google.ads.googleads.v22.services.CampaignDraftService/ListCampaignDraftAsyncErrors" ) // CampaignDraftServiceClient is the client API for CampaignDraftService service. @@ -68,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.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] + // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] // to view the list of error reasons. // // List of thrown errors: @@ -163,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.v21.services.CampaignDraftService.ListCampaignDraftAsyncErrors] + // [CampaignDraftService.ListCampaignDraftAsyncErrors][google.ads.googleads.v22.services.CampaignDraftService.ListCampaignDraftAsyncErrors] // to view the list of error reasons. // // List of thrown errors: @@ -287,7 +287,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.v21.services.CampaignDraftService", + ServiceName: "google.ads.googleads.v22.services.CampaignDraftService", HandlerType: (*CampaignDraftServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -304,5 +304,5 @@ var CampaignDraftService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_draft_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_draft_service.proto", } diff --git a/services/campaign_goal_config_service.pb.go b/services/campaign_goal_config_service.pb.go new file mode 100644 index 00000000..89fc3912 --- /dev/null +++ b/services/campaign_goal_config_service.pb.go @@ -0,0 +1,525 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/services/campaign_goal_config_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" + fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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 +// [CampaignGoalConfigService.MutateCampaignGoalConfigs][google.ads.googleads.v22.services.CampaignGoalConfigService.MutateCampaignGoalConfigs]. +type MutateCampaignGoalConfigsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. The ID of the customer whose campaign goal configs 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 campaign goal configs. + Operations []*CampaignGoalConfigOperation `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"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateCampaignGoalConfigsRequest) Reset() { + *x = MutateCampaignGoalConfigsRequest{} + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateCampaignGoalConfigsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateCampaignGoalConfigsRequest) ProtoMessage() {} + +func (x *MutateCampaignGoalConfigsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateCampaignGoalConfigsRequest.ProtoReflect.Descriptor instead. +func (*MutateCampaignGoalConfigsRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescGZIP(), []int{0} +} + +func (x *MutateCampaignGoalConfigsRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *MutateCampaignGoalConfigsRequest) GetOperations() []*CampaignGoalConfigOperation { + if x != nil { + return x.Operations + } + return nil +} + +func (x *MutateCampaignGoalConfigsRequest) GetPartialFailure() bool { + if x != nil { + return x.PartialFailure + } + return false +} + +func (x *MutateCampaignGoalConfigsRequest) GetValidateOnly() bool { + if x != nil { + return x.ValidateOnly + } + return false +} + +// A single mutate operation on the campaign goal config. +type CampaignGoalConfigOperation struct { + state protoimpl.MessageState `protogen:"open.v1"` + // FieldMask that determines which fields are modified in an update. + UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,4,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` + // The mutate operation. + // + // Types that are valid to be assigned to Operation: + // + // *CampaignGoalConfigOperation_Create + // *CampaignGoalConfigOperation_Update + // *CampaignGoalConfigOperation_Remove + Operation isCampaignGoalConfigOperation_Operation `protobuf_oneof:"operation"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *CampaignGoalConfigOperation) Reset() { + *x = CampaignGoalConfigOperation{} + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *CampaignGoalConfigOperation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*CampaignGoalConfigOperation) ProtoMessage() {} + +func (x *CampaignGoalConfigOperation) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use CampaignGoalConfigOperation.ProtoReflect.Descriptor instead. +func (*CampaignGoalConfigOperation) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescGZIP(), []int{1} +} + +func (x *CampaignGoalConfigOperation) GetUpdateMask() *fieldmaskpb.FieldMask { + if x != nil { + return x.UpdateMask + } + return nil +} + +func (x *CampaignGoalConfigOperation) GetOperation() isCampaignGoalConfigOperation_Operation { + if x != nil { + return x.Operation + } + return nil +} + +func (x *CampaignGoalConfigOperation) GetCreate() *resources.CampaignGoalConfig { + if x != nil { + if x, ok := x.Operation.(*CampaignGoalConfigOperation_Create); ok { + return x.Create + } + } + return nil +} + +func (x *CampaignGoalConfigOperation) GetUpdate() *resources.CampaignGoalConfig { + if x != nil { + if x, ok := x.Operation.(*CampaignGoalConfigOperation_Update); ok { + return x.Update + } + } + return nil +} + +func (x *CampaignGoalConfigOperation) GetRemove() string { + if x != nil { + if x, ok := x.Operation.(*CampaignGoalConfigOperation_Remove); ok { + return x.Remove + } + } + return "" +} + +type isCampaignGoalConfigOperation_Operation interface { + isCampaignGoalConfigOperation_Operation() +} + +type CampaignGoalConfigOperation_Create struct { + // Create a new campaign goal config. + Create *resources.CampaignGoalConfig `protobuf:"bytes,1,opt,name=create,proto3,oneof"` +} + +type CampaignGoalConfigOperation_Update struct { + // Update an existing campaign goal config. + Update *resources.CampaignGoalConfig `protobuf:"bytes,3,opt,name=update,proto3,oneof"` +} + +type CampaignGoalConfigOperation_Remove struct { + // Remove an existing campaign goal config. + Remove string `protobuf:"bytes,2,opt,name=remove,proto3,oneof"` +} + +func (*CampaignGoalConfigOperation_Create) isCampaignGoalConfigOperation_Operation() {} + +func (*CampaignGoalConfigOperation_Update) isCampaignGoalConfigOperation_Operation() {} + +func (*CampaignGoalConfigOperation_Remove) isCampaignGoalConfigOperation_Operation() {} + +// Response message for a campaign goal config mutate. +type MutateCampaignGoalConfigsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Errors that pertain to operation failures in the partial failure mode. + 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 []*MutateCampaignGoalConfigResult `protobuf:"bytes,2,rep,name=results,proto3" json:"results,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateCampaignGoalConfigsResponse) Reset() { + *x = MutateCampaignGoalConfigsResponse{} + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateCampaignGoalConfigsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateCampaignGoalConfigsResponse) ProtoMessage() {} + +func (x *MutateCampaignGoalConfigsResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateCampaignGoalConfigsResponse.ProtoReflect.Descriptor instead. +func (*MutateCampaignGoalConfigsResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescGZIP(), []int{2} +} + +func (x *MutateCampaignGoalConfigsResponse) GetPartialFailureError() *status.Status { + if x != nil { + return x.PartialFailureError + } + return nil +} + +func (x *MutateCampaignGoalConfigsResponse) GetResults() []*MutateCampaignGoalConfigResult { + if x != nil { + return x.Results + } + return nil +} + +// The result for the campaign goal config mutate. +type MutateCampaignGoalConfigResult struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Returned for successful operations. + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateCampaignGoalConfigResult) Reset() { + *x = MutateCampaignGoalConfigResult{} + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateCampaignGoalConfigResult) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateCampaignGoalConfigResult) ProtoMessage() {} + +func (x *MutateCampaignGoalConfigResult) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateCampaignGoalConfigResult.ProtoReflect.Descriptor instead. +func (*MutateCampaignGoalConfigResult) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescGZIP(), []int{3} +} + +func (x *MutateCampaignGoalConfigResult) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +var File_google_ads_googleads_v22_services_campaign_goal_config_service_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, + 0x6c, 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, 0x32, 0x32, + 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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, + 0x69, 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, 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, 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, 0x85, 0x02, 0x0a, 0x20, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 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, 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, 0x32, 0x32, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, + 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 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, 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, 0xd7, + 0x02, 0x0a, 0x1b, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x04, 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, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x48, 0x00, 0x52, 0x06, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0x50, 0x0a, + 0x06, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, + 0x67, 0x48, 0x00, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x42, 0x0b, 0x0a, 0x09, 0x6f, + 0x70, 0x65, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0xc8, 0x01, 0x0a, 0x21, 0x4d, 0x75, 0x74, + 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 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, + 0x32, 0x32, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, + 0x6e, 0x66, 0x69, 0x67, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, + 0x6c, 0x74, 0x73, 0x22, 0x77, 0x0a, 0x1e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, + 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, + 0x65, 0x73, 0x75, 0x6c, 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, 0xfa, 0x41, + 0x2d, 0x0a, 0x2b, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x0c, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x32, 0xea, 0x02, 0x0a, + 0x19, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, + 0x66, 0x69, 0x67, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x85, 0x02, 0x0a, 0x19, 0x4d, + 0x75, 0x74, 0x61, 0x74, 0x65, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, + 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x32, 0x32, 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, 0x6f, 0x61, 0x6c, 0x43, + 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x32, 0x32, 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, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x32, 0x32, 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, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, + 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, + 0x6c, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_goTypes = []any{ + (*MutateCampaignGoalConfigsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignGoalConfigsRequest + (*CampaignGoalConfigOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignGoalConfigOperation + (*MutateCampaignGoalConfigsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse + (*MutateCampaignGoalConfigResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignGoalConfigResult + (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask + (*resources.CampaignGoalConfig)(nil), // 5: google.ads.googleads.v22.resources.CampaignGoalConfig + (*status.Status)(nil), // 6: google.rpc.Status +} +var file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignGoalConfigsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignGoalConfigOperation + 4, // 1: google.ads.googleads.v22.services.CampaignGoalConfigOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CampaignGoalConfigOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignGoalConfig + 5, // 3: google.ads.googleads.v22.services.CampaignGoalConfigOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignGoalConfig + 6, // 4: google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignGoalConfigResult + 0, // 6: google.ads.googleads.v22.services.CampaignGoalConfigService.MutateCampaignGoalConfigs:input_type -> google.ads.googleads.v22.services.MutateCampaignGoalConfigsRequest + 2, // 7: google.ads.googleads.v22.services.CampaignGoalConfigService.MutateCampaignGoalConfigs:output_type -> google.ads.googleads.v22.services.MutateCampaignGoalConfigsResponse + 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 + 6, // [6:6] is the sub-list for extension extendee + 0, // [0:6] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_goal_config_service_proto != nil { + return + } + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes[1].OneofWrappers = []any{ + (*CampaignGoalConfigOperation_Create)(nil), + (*CampaignGoalConfigOperation_Update)(nil), + (*CampaignGoalConfigOperation_Remove)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_rawDesc)), + NumEnums: 0, + NumMessages: 4, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_services_campaign_goal_config_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_campaign_goal_config_service_proto_depIdxs = nil +} diff --git a/services/campaign_goal_config_service_grpc.pb.go b/services/campaign_goal_config_service_grpc.pb.go new file mode 100644 index 00000000..fe63fcd9 --- /dev/null +++ b/services/campaign_goal_config_service_grpc.pb.go @@ -0,0 +1,164 @@ +// Copyright 2025 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.5.1 +// - protoc v4.24.4 +// source: google/ads/googleads/v22/services/campaign_goal_config_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.64.0 or later. +const _ = grpc.SupportPackageIsVersion9 + +const ( + CampaignGoalConfigService_MutateCampaignGoalConfigs_FullMethodName = "/google.ads.googleads.v22.services.CampaignGoalConfigService/MutateCampaignGoalConfigs" +) + +// CampaignGoalConfigServiceClient is the client API for CampaignGoalConfigService 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 goal configs. +type CampaignGoalConfigServiceClient interface { + // Create or update campaign goal configs. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + // [CampaignGoalConfigError]() + // [GoalServicesError]() + MutateCampaignGoalConfigs(ctx context.Context, in *MutateCampaignGoalConfigsRequest, opts ...grpc.CallOption) (*MutateCampaignGoalConfigsResponse, error) +} + +type campaignGoalConfigServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewCampaignGoalConfigServiceClient(cc grpc.ClientConnInterface) CampaignGoalConfigServiceClient { + return &campaignGoalConfigServiceClient{cc} +} + +func (c *campaignGoalConfigServiceClient) MutateCampaignGoalConfigs(ctx context.Context, in *MutateCampaignGoalConfigsRequest, opts ...grpc.CallOption) (*MutateCampaignGoalConfigsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(MutateCampaignGoalConfigsResponse) + err := c.cc.Invoke(ctx, CampaignGoalConfigService_MutateCampaignGoalConfigs_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// CampaignGoalConfigServiceServer is the server API for CampaignGoalConfigService service. +// All implementations must embed UnimplementedCampaignGoalConfigServiceServer +// for forward compatibility. +// +// Service to manage campaign goal configs. +type CampaignGoalConfigServiceServer interface { + // Create or update campaign goal configs. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + // [CampaignGoalConfigError]() + // [GoalServicesError]() + MutateCampaignGoalConfigs(context.Context, *MutateCampaignGoalConfigsRequest) (*MutateCampaignGoalConfigsResponse, error) + mustEmbedUnimplementedCampaignGoalConfigServiceServer() +} + +// UnimplementedCampaignGoalConfigServiceServer must be embedded to have +// forward compatible implementations. +// +// NOTE: this should be embedded by value instead of pointer to avoid a nil +// pointer dereference when methods are called. +type UnimplementedCampaignGoalConfigServiceServer struct{} + +func (UnimplementedCampaignGoalConfigServiceServer) MutateCampaignGoalConfigs(context.Context, *MutateCampaignGoalConfigsRequest) (*MutateCampaignGoalConfigsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method MutateCampaignGoalConfigs not implemented") +} +func (UnimplementedCampaignGoalConfigServiceServer) mustEmbedUnimplementedCampaignGoalConfigServiceServer() { +} +func (UnimplementedCampaignGoalConfigServiceServer) testEmbeddedByValue() {} + +// UnsafeCampaignGoalConfigServiceServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to CampaignGoalConfigServiceServer will +// result in compilation errors. +type UnsafeCampaignGoalConfigServiceServer interface { + mustEmbedUnimplementedCampaignGoalConfigServiceServer() +} + +func RegisterCampaignGoalConfigServiceServer(s grpc.ServiceRegistrar, srv CampaignGoalConfigServiceServer) { + // If the following call pancis, it indicates UnimplementedCampaignGoalConfigServiceServer was + // embedded by pointer and is nil. This will cause panics if an + // unimplemented method is ever invoked, so we test this at initialization + // time to prevent it from happening at runtime later due to I/O. + if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { + t.testEmbeddedByValue() + } + s.RegisterService(&CampaignGoalConfigService_ServiceDesc, srv) +} + +func _CampaignGoalConfigService_MutateCampaignGoalConfigs_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MutateCampaignGoalConfigsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(CampaignGoalConfigServiceServer).MutateCampaignGoalConfigs(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: CampaignGoalConfigService_MutateCampaignGoalConfigs_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(CampaignGoalConfigServiceServer).MutateCampaignGoalConfigs(ctx, req.(*MutateCampaignGoalConfigsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// CampaignGoalConfigService_ServiceDesc is the grpc.ServiceDesc for CampaignGoalConfigService service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var CampaignGoalConfigService_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.ads.googleads.v22.services.CampaignGoalConfigService", + HandlerType: (*CampaignGoalConfigServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "MutateCampaignGoalConfigs", + Handler: _CampaignGoalConfigService_MutateCampaignGoalConfigs_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/ads/googleads/v22/services/campaign_goal_config_service.proto", +} diff --git a/services/campaign_group_service.pb.go b/services/campaign_group_service.pb.go index 591de937..ceca0cfe 100644 --- a/services/campaign_group_service.pb.go +++ b/services/campaign_group_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_group_service.proto +// source: google/ads/googleads/v22/services/campaign_group_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignGroupService.MutateCampaignGroups][google.ads.googleads.v21.services.CampaignGroupService.MutateCampaignGroups]. +// [CampaignGroupService.MutateCampaignGroups][google.ads.googleads.v22.services.CampaignGroupService.MutateCampaignGroups]. type MutateCampaignGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign groups are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignGroupsRequest) Reset() { *x = MutateCampaignGroupsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCampaignGroupsRequest) String() string { func (*MutateCampaignGroupsRequest) ProtoMessage() {} func (x *MutateCampaignGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCampaignGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignGroupsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CampaignGroupOperation struct { func (x *CampaignGroupOperation) Reset() { *x = CampaignGroupOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CampaignGroupOperation) String() string { func (*CampaignGroupOperation) ProtoMessage() {} func (x *CampaignGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CampaignGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignGroupOperation.ProtoReflect.Descriptor instead. func (*CampaignGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCampaignGroupsResponse struct { func (x *MutateCampaignGroupsResponse) Reset() { *x = MutateCampaignGroupsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateCampaignGroupsResponse) String() string { func (*MutateCampaignGroupsResponse) ProtoMessage() {} func (x *MutateCampaignGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateCampaignGroupsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignGroupsResponse) GetResults() []*MutateCampaignGroupResult { @@ -319,7 +319,7 @@ type MutateCampaignGroupResult struct { func (x *MutateCampaignGroupResult) Reset() { *x = MutateCampaignGroupResult{} - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateCampaignGroupResult) String() string { func (*MutateCampaignGroupResult) ProtoMessage() {} func (x *MutateCampaignGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateCampaignGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignGroupResult.ProtoReflect.Descriptor instead. func (*MutateCampaignGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignGroupResult) GetResourceName() string { @@ -361,21 +361,21 @@ func (x *MutateCampaignGroupResult) GetCampaignGroup() *resources.CampaignGroup return nil } -var File_google_ads_googleads_v21_services_campaign_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -436,7 +436,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,23 +454,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -480,58 +480,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_group_service_proto_goTypes = []any{ - (*MutateCampaignGroupsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignGroupsRequest - (*CampaignGroupOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignGroupOperation - (*MutateCampaignGroupsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignGroupsResponse - (*MutateCampaignGroupResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignGroupResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_group_service_proto_goTypes = []any{ + (*MutateCampaignGroupsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignGroupsRequest + (*CampaignGroupOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignGroupOperation + (*MutateCampaignGroupsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignGroupsResponse + (*MutateCampaignGroupResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignGroupResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CampaignGroup)(nil), // 6: google.ads.googleads.v21.resources.CampaignGroup + (*resources.CampaignGroup)(nil), // 6: google.ads.googleads.v22.resources.CampaignGroup (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignGroupsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignGroupOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignGroupsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CampaignGroupOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignGroup - 6, // 4: google.ads.googleads.v21.services.CampaignGroupOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignGroup - 3, // 5: google.ads.googleads.v21.services.MutateCampaignGroupsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignGroupResult - 7, // 6: google.ads.googleads.v21.services.MutateCampaignGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v21.services.MutateCampaignGroupResult.campaign_group:type_name -> google.ads.googleads.v21.resources.CampaignGroup - 0, // 8: google.ads.googleads.v21.services.CampaignGroupService.MutateCampaignGroups:input_type -> google.ads.googleads.v21.services.MutateCampaignGroupsRequest - 2, // 9: google.ads.googleads.v21.services.CampaignGroupService.MutateCampaignGroups:output_type -> google.ads.googleads.v21.services.MutateCampaignGroupsResponse +var file_google_ads_googleads_v22_services_campaign_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignGroupsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignGroupOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignGroupsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CampaignGroupOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignGroup + 6, // 4: google.ads.googleads.v22.services.CampaignGroupOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignGroup + 3, // 5: google.ads.googleads.v22.services.MutateCampaignGroupsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignGroupResult + 7, // 6: google.ads.googleads.v22.services.MutateCampaignGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v22.services.MutateCampaignGroupResult.campaign_group:type_name -> google.ads.googleads.v22.resources.CampaignGroup + 0, // 8: google.ads.googleads.v22.services.CampaignGroupService.MutateCampaignGroups:input_type -> google.ads.googleads.v22.services.MutateCampaignGroupsRequest + 2, // 9: google.ads.googleads.v22.services.CampaignGroupService.MutateCampaignGroups:output_type -> google.ads.googleads.v22.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 @@ -539,12 +539,12 @@ var file_google_ads_googleads_v21_services_campaign_group_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_group_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_group_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_group_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_group_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_group_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_group_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignGroupOperation_Create)(nil), (*CampaignGroupOperation_Update)(nil), (*CampaignGroupOperation_Remove)(nil), @@ -553,17 +553,17 @@ func file_google_ads_googleads_v21_services_campaign_group_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_group_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_group_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_group_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_group_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_group_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_group_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_group_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ef525ad1..947b6d86 100644 --- a/services/campaign_group_service_grpc.pb.go +++ b/services/campaign_group_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_group_service.proto +// source: google/ads/googleads/v22/services/campaign_group_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignGroupService_MutateCampaignGroups_FullMethodName = "/google.ads.googleads.v21.services.CampaignGroupService/MutateCampaignGroups" + CampaignGroupService_MutateCampaignGroups_FullMethodName = "/google.ads.googleads.v22.services.CampaignGroupService/MutateCampaignGroups" ) // CampaignGroupServiceClient is the client API for CampaignGroupService service. @@ -130,7 +130,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.v21.services.CampaignGroupService", + ServiceName: "google.ads.googleads.v22.services.CampaignGroupService", HandlerType: (*CampaignGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -139,5 +139,5 @@ var CampaignGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_group_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_group_service.proto", } diff --git a/services/campaign_label_service.pb.go b/services/campaign_label_service.pb.go index 61cf5618..c075a70b 100644 --- a/services/campaign_label_service.pb.go +++ b/services/campaign_label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_label_service.proto +// source: google/ads/googleads/v22/services/campaign_label_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CampaignLabelService.MutateCampaignLabels][google.ads.googleads.v21.services.CampaignLabelService.MutateCampaignLabels]. +// [CampaignLabelService.MutateCampaignLabels][google.ads.googleads.v22.services.CampaignLabelService.MutateCampaignLabels]. type MutateCampaignLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose campaign-label relationships are being @@ -62,7 +62,7 @@ type MutateCampaignLabelsRequest struct { func (x *MutateCampaignLabelsRequest) Reset() { *x = MutateCampaignLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *MutateCampaignLabelsRequest) String() string { func (*MutateCampaignLabelsRequest) ProtoMessage() {} func (x *MutateCampaignLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *MutateCampaignLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignLabelsRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ type CampaignLabelOperation struct { func (x *CampaignLabelOperation) Reset() { *x = CampaignLabelOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *CampaignLabelOperation) String() string { func (*CampaignLabelOperation) ProtoMessage() {} func (x *CampaignLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *CampaignLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLabelOperation.ProtoReflect.Descriptor instead. func (*CampaignLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignLabelOperation) GetOperation() isCampaignLabelOperation_Operation { @@ -225,7 +225,7 @@ type MutateCampaignLabelsResponse struct { func (x *MutateCampaignLabelsResponse) Reset() { *x = MutateCampaignLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -237,7 +237,7 @@ func (x *MutateCampaignLabelsResponse) String() string { func (*MutateCampaignLabelsResponse) ProtoMessage() {} func (x *MutateCampaignLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -250,7 +250,7 @@ func (x *MutateCampaignLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignLabelsResponse) GetPartialFailureError() *status.Status { @@ -278,7 +278,7 @@ type MutateCampaignLabelResult struct { func (x *MutateCampaignLabelResult) Reset() { *x = MutateCampaignLabelResult{} - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -290,7 +290,7 @@ func (x *MutateCampaignLabelResult) String() string { func (*MutateCampaignLabelResult) ProtoMessage() {} func (x *MutateCampaignLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -303,7 +303,7 @@ func (x *MutateCampaignLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignLabelResult.ProtoReflect.Descriptor instead. func (*MutateCampaignLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignLabelResult) GetResourceName() string { @@ -313,17 +313,17 @@ func (x *MutateCampaignLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_campaign_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -354,7 +354,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, + 0x32, 0x32, 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, @@ -370,7 +370,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -385,16 +385,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -403,52 +403,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_label_service_proto_goTypes = []any{ - (*MutateCampaignLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignLabelsRequest - (*CampaignLabelOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignLabelOperation - (*MutateCampaignLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignLabelsResponse - (*MutateCampaignLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignLabelResult - (*resources.CampaignLabel)(nil), // 4: google.ads.googleads.v21.resources.CampaignLabel +var file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_label_service_proto_goTypes = []any{ + (*MutateCampaignLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignLabelsRequest + (*CampaignLabelOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignLabelOperation + (*MutateCampaignLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignLabelsResponse + (*MutateCampaignLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignLabelResult + (*resources.CampaignLabel)(nil), // 4: google.ads.googleads.v22.resources.CampaignLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignLabelOperation - 4, // 1: google.ads.googleads.v21.services.CampaignLabelOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignLabel - 5, // 2: google.ads.googleads.v21.services.MutateCampaignLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateCampaignLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignLabelResult - 0, // 4: google.ads.googleads.v21.services.CampaignLabelService.MutateCampaignLabels:input_type -> google.ads.googleads.v21.services.MutateCampaignLabelsRequest - 2, // 5: google.ads.googleads.v21.services.CampaignLabelService.MutateCampaignLabels:output_type -> google.ads.googleads.v21.services.MutateCampaignLabelsResponse +var file_google_ads_googleads_v22_services_campaign_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignLabelOperation + 4, // 1: google.ads.googleads.v22.services.CampaignLabelOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignLabel + 5, // 2: google.ads.googleads.v22.services.MutateCampaignLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateCampaignLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignLabelResult + 0, // 4: google.ads.googleads.v22.services.CampaignLabelService.MutateCampaignLabels:input_type -> google.ads.googleads.v22.services.MutateCampaignLabelsRequest + 2, // 5: google.ads.googleads.v22.services.CampaignLabelService.MutateCampaignLabels:output_type -> google.ads.googleads.v22.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 @@ -456,12 +456,12 @@ var file_google_ads_googleads_v21_services_campaign_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_label_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_label_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_label_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_label_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignLabelOperation_Create)(nil), (*CampaignLabelOperation_Remove)(nil), } @@ -469,17 +469,17 @@ func file_google_ads_googleads_v21_services_campaign_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_label_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_label_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 c57124e4..ebb64178 100644 --- a/services/campaign_label_service_grpc.pb.go +++ b/services/campaign_label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_label_service.proto +// source: google/ads/googleads/v22/services/campaign_label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignLabelService_MutateCampaignLabels_FullMethodName = "/google.ads.googleads.v21.services.CampaignLabelService/MutateCampaignLabels" + CampaignLabelService_MutateCampaignLabels_FullMethodName = "/google.ads.googleads.v22.services.CampaignLabelService/MutateCampaignLabels" ) // CampaignLabelServiceClient is the client API for CampaignLabelService service. @@ -158,7 +158,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.v21.services.CampaignLabelService", + ServiceName: "google.ads.googleads.v22.services.CampaignLabelService", HandlerType: (*CampaignLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -167,5 +167,5 @@ var CampaignLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_label_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_label_service.proto", } diff --git a/services/campaign_lifecycle_goal_service.pb.go b/services/campaign_lifecycle_goal_service.pb.go index ac2e7bed..9d83edae 100644 --- a/services/campaign_lifecycle_goal_service.pb.go +++ b/services/campaign_lifecycle_goal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_lifecycle_goal_service.proto +// source: google/ads/googleads/v22/services/campaign_lifecycle_goal_service.proto package services @@ -55,7 +55,7 @@ type ConfigureCampaignLifecycleGoalsRequest struct { func (x *ConfigureCampaignLifecycleGoalsRequest) Reset() { *x = ConfigureCampaignLifecycleGoalsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *ConfigureCampaignLifecycleGoalsRequest) String() string { func (*ConfigureCampaignLifecycleGoalsRequest) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *ConfigureCampaignLifecycleGoalsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ConfigureCampaignLifecycleGoalsRequest.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} } func (x *ConfigureCampaignLifecycleGoalsRequest) GetCustomerId() string { @@ -123,7 +123,7 @@ type CampaignLifecycleGoalOperation struct { func (x *CampaignLifecycleGoalOperation) Reset() { *x = CampaignLifecycleGoalOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *CampaignLifecycleGoalOperation) String() string { func (*CampaignLifecycleGoalOperation) ProtoMessage() {} func (x *CampaignLifecycleGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *CampaignLifecycleGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignLifecycleGoalOperation.ProtoReflect.Descriptor instead. func (*CampaignLifecycleGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignLifecycleGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -215,7 +215,7 @@ type ConfigureCampaignLifecycleGoalsResponse struct { func (x *ConfigureCampaignLifecycleGoalsResponse) Reset() { *x = ConfigureCampaignLifecycleGoalsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -227,7 +227,7 @@ func (x *ConfigureCampaignLifecycleGoalsResponse) String() string { func (*ConfigureCampaignLifecycleGoalsResponse) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -240,7 +240,7 @@ func (x *ConfigureCampaignLifecycleGoalsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ConfigureCampaignLifecycleGoalsResponse.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} } func (x *ConfigureCampaignLifecycleGoalsResponse) GetResult() *ConfigureCampaignLifecycleGoalsResult { @@ -261,7 +261,7 @@ type ConfigureCampaignLifecycleGoalsResult struct { func (x *ConfigureCampaignLifecycleGoalsResult) Reset() { *x = ConfigureCampaignLifecycleGoalsResult{} - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *ConfigureCampaignLifecycleGoalsResult) String() string { func (*ConfigureCampaignLifecycleGoalsResult) ProtoMessage() {} func (x *ConfigureCampaignLifecycleGoalsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *ConfigureCampaignLifecycleGoalsResult) ProtoReflect() protoreflect.Mess // Deprecated: Use ConfigureCampaignLifecycleGoalsResult.ProtoReflect.Descriptor instead. func (*ConfigureCampaignLifecycleGoalsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} } func (x *ConfigureCampaignLifecycleGoalsResult) GetResourceName() string { @@ -296,18 +296,18 @@ func (x *ConfigureCampaignLifecycleGoalsResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -327,7 +327,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 0x32, 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, @@ -342,12 +342,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -356,7 +356,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -374,17 +374,17 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x32, 0x32, 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, @@ -395,54 +395,54 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_goTypes = []any{ - (*ConfigureCampaignLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest - (*CampaignLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignLifecycleGoalOperation - (*ConfigureCampaignLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse - (*ConfigureCampaignLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResult +var file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_goTypes = []any{ + (*ConfigureCampaignLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest + (*CampaignLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignLifecycleGoalOperation + (*ConfigureCampaignLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse + (*ConfigureCampaignLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CampaignLifecycleGoal)(nil), // 5: google.ads.googleads.v21.resources.CampaignLifecycleGoal -} -var file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v21.services.CampaignLifecycleGoalOperation - 4, // 1: google.ads.googleads.v21.services.CampaignLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CampaignLifecycleGoalOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignLifecycleGoal - 5, // 3: google.ads.googleads.v21.services.CampaignLifecycleGoalOperation.update:type_name -> google.ads.googleads.v21.resources.CampaignLifecycleGoal - 3, // 4: google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResult - 0, // 5: google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:input_type -> google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsRequest - 2, // 6: google.ads.googleads.v21.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:output_type -> google.ads.googleads.v21.services.ConfigureCampaignLifecycleGoalsResponse + (*resources.CampaignLifecycleGoal)(nil), // 5: google.ads.googleads.v22.resources.CampaignLifecycleGoal +} +var file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v22.services.CampaignLifecycleGoalOperation + 4, // 1: google.ads.googleads.v22.services.CampaignLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CampaignLifecycleGoalOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignLifecycleGoal + 5, // 3: google.ads.googleads.v22.services.CampaignLifecycleGoalOperation.update:type_name -> google.ads.googleads.v22.resources.CampaignLifecycleGoal + 3, // 4: google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsResult + 0, // 5: google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:input_type -> google.ads.googleads.v22.services.ConfigureCampaignLifecycleGoalsRequest + 2, // 6: google.ads.googleads.v22.services.CampaignLifecycleGoalService.ConfigureCampaignLifecycleGoals:output_type -> google.ads.googleads.v22.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 @@ -450,12 +450,12 @@ var file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignLifecycleGoalOperation_Create)(nil), (*CampaignLifecycleGoalOperation_Update)(nil), } @@ -463,17 +463,17 @@ func file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_lifecycle_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_lifecycle_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 380ead00..88a522bc 100644 --- a/services/campaign_lifecycle_goal_service_grpc.pb.go +++ b/services/campaign_lifecycle_goal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_lifecycle_goal_service.proto +// source: google/ads/googleads/v22/services/campaign_lifecycle_goal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName = "/google.ads.googleads.v21.services.CampaignLifecycleGoalService/ConfigureCampaignLifecycleGoals" + CampaignLifecycleGoalService_ConfigureCampaignLifecycleGoals_FullMethodName = "/google.ads.googleads.v22.services.CampaignLifecycleGoalService/ConfigureCampaignLifecycleGoals" ) // CampaignLifecycleGoalServiceClient is the client API for CampaignLifecycleGoalService service. @@ -149,7 +149,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.v21.services.CampaignLifecycleGoalService", + ServiceName: "google.ads.googleads.v22.services.CampaignLifecycleGoalService", HandlerType: (*CampaignLifecycleGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +158,5 @@ var CampaignLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_lifecycle_goal_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_lifecycle_goal_service.proto", } diff --git a/services/campaign_service.pb.go b/services/campaign_service.pb.go index e129be62..39d8ffe6 100644 --- a/services/campaign_service.pb.go +++ b/services/campaign_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_service.proto +// source: google/ads/googleads/v22/services/campaign_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CampaignService.MutateCampaigns][google.ads.googleads.v21.services.CampaignService.MutateCampaigns]. +// [CampaignService.MutateCampaigns][google.ads.googleads.v22.services.CampaignService.MutateCampaigns]. type MutateCampaignsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaigns are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignsRequest) Reset() { *x = MutateCampaignsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCampaignsRequest) String() string { func (*MutateCampaignsRequest) ProtoMessage() {} func (x *MutateCampaignsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCampaignsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CampaignOperation struct { func (x *CampaignOperation) Reset() { *x = CampaignOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CampaignOperation) String() string { func (*CampaignOperation) ProtoMessage() {} func (x *CampaignOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CampaignOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignOperation.ProtoReflect.Descriptor instead. func (*CampaignOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateCampaignsResponse struct { func (x *MutateCampaignsResponse) Reset() { *x = MutateCampaignsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *MutateCampaignsResponse) String() string { func (*MutateCampaignsResponse) ProtoMessage() {} func (x *MutateCampaignsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *MutateCampaignsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignsResponse) GetPartialFailureError() *status.Status { @@ -317,7 +317,7 @@ type MutateCampaignResult struct { func (x *MutateCampaignResult) Reset() { *x = MutateCampaignResult{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -329,7 +329,7 @@ func (x *MutateCampaignResult) String() string { func (*MutateCampaignResult) ProtoMessage() {} func (x *MutateCampaignResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -342,7 +342,7 @@ func (x *MutateCampaignResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignResult.ProtoReflect.Descriptor instead. func (*MutateCampaignResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignResult) GetResourceName() string { @@ -373,7 +373,7 @@ type EnablePMaxBrandGuidelinesRequest struct { func (x *EnablePMaxBrandGuidelinesRequest) Reset() { *x = EnablePMaxBrandGuidelinesRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -385,7 +385,7 @@ func (x *EnablePMaxBrandGuidelinesRequest) String() string { func (*EnablePMaxBrandGuidelinesRequest) ProtoMessage() {} func (x *EnablePMaxBrandGuidelinesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -398,7 +398,7 @@ func (x *EnablePMaxBrandGuidelinesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EnablePMaxBrandGuidelinesRequest.ProtoReflect.Descriptor instead. func (*EnablePMaxBrandGuidelinesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{4} } func (x *EnablePMaxBrandGuidelinesRequest) GetCustomerId() string { @@ -445,7 +445,7 @@ type EnableOperation struct { func (x *EnableOperation) Reset() { *x = EnableOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -457,7 +457,7 @@ func (x *EnableOperation) String() string { func (*EnableOperation) ProtoMessage() {} func (x *EnableOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -470,7 +470,7 @@ func (x *EnableOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use EnableOperation.ProtoReflect.Descriptor instead. func (*EnableOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{5} } func (x *EnableOperation) GetCampaign() string { @@ -538,7 +538,7 @@ type BrandCampaignAssets struct { func (x *BrandCampaignAssets) Reset() { *x = BrandCampaignAssets{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -550,7 +550,7 @@ func (x *BrandCampaignAssets) String() string { func (*BrandCampaignAssets) ProtoMessage() {} func (x *BrandCampaignAssets) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -563,7 +563,7 @@ func (x *BrandCampaignAssets) ProtoReflect() protoreflect.Message { // Deprecated: Use BrandCampaignAssets.ProtoReflect.Descriptor instead. func (*BrandCampaignAssets) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{6} } func (x *BrandCampaignAssets) GetBusinessNameAsset() string { @@ -598,7 +598,7 @@ type EnablePMaxBrandGuidelinesResponse struct { func (x *EnablePMaxBrandGuidelinesResponse) Reset() { *x = EnablePMaxBrandGuidelinesResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -610,7 +610,7 @@ func (x *EnablePMaxBrandGuidelinesResponse) String() string { func (*EnablePMaxBrandGuidelinesResponse) ProtoMessage() {} func (x *EnablePMaxBrandGuidelinesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -623,7 +623,7 @@ func (x *EnablePMaxBrandGuidelinesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use EnablePMaxBrandGuidelinesResponse.ProtoReflect.Descriptor instead. func (*EnablePMaxBrandGuidelinesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{7} } func (x *EnablePMaxBrandGuidelinesResponse) GetResults() []*EnablementResult { @@ -647,7 +647,7 @@ type EnablementResult struct { func (x *EnablementResult) Reset() { *x = EnablementResult{} - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -659,7 +659,7 @@ func (x *EnablementResult) String() string { func (*EnablementResult) ProtoMessage() {} func (x *EnablementResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -672,7 +672,7 @@ func (x *EnablementResult) ProtoReflect() protoreflect.Message { // Deprecated: Use EnablementResult.ProtoReflect.Descriptor instead. func (*EnablementResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP(), []int{8} } func (x *EnablementResult) GetCampaign() string { @@ -689,21 +689,21 @@ func (x *EnablementResult) GetEnablementError() *status.Status { return nil } -var File_google_ads_googleads_v21_services_campaign_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x76, 0x32, 0x32, 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, @@ -722,7 +722,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -733,7 +733,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -746,11 +746,11 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -766,7 +766,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -778,7 +778,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, 0x22, 0xa1, 0x01, 0x0a, 0x20, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x4d, 0x61, 0x78, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x71, 0x75, @@ -787,7 +787,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x57, 0x0a, 0x0a, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 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, 0x22, 0x9b, 0x03, 0x0a, 0x0f, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4f, 0x70, 0x65, @@ -802,7 +802,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 0x6c, 0x61, 0x74, 0x65, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, 0x5e, 0x0a, 0x0c, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x73, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x43, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x0b, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x41, 0x73, 0x73, 0x65, 0x74, 0x73, 0x12, @@ -831,7 +831,7 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x4d, 0x0a, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x95, 0x01, 0x0a, 0x10, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, @@ -847,31 +847,31 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x34, 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, 0x12, 0x8e, 0x02, 0x0a, 0x19, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x4d, 0x61, 0x78, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x4d, 0x61, 0x78, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x4d, 0x61, 0x78, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, 0x75, 0x69, 0x64, 0x65, 0x6c, 0x69, 0x6e, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x66, 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, 0x47, 0x3a, 0x01, 0x2a, 0x22, 0x42, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x47, 0x3a, 0x01, 0x2a, 0x22, 0x42, 0x2f, 0x76, 0x32, 0x32, 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, 0x65, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x4d, 0x61, 0x78, 0x42, 0x72, 0x61, 0x6e, 0x64, 0x47, @@ -882,68 +882,68 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x61, 0x6d, 0x70, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) -var file_google_ads_googleads_v21_services_campaign_service_proto_goTypes = []any{ - (*MutateCampaignsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignsRequest - (*CampaignOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignOperation - (*MutateCampaignsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignsResponse - (*MutateCampaignResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignResult - (*EnablePMaxBrandGuidelinesRequest)(nil), // 4: google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesRequest - (*EnableOperation)(nil), // 5: google.ads.googleads.v21.services.EnableOperation - (*BrandCampaignAssets)(nil), // 6: google.ads.googleads.v21.services.BrandCampaignAssets - (*EnablePMaxBrandGuidelinesResponse)(nil), // 7: google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesResponse - (*EnablementResult)(nil), // 8: google.ads.googleads.v21.services.EnablementResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 9: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType + return file_google_ads_googleads_v22_services_campaign_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 9) +var file_google_ads_googleads_v22_services_campaign_service_proto_goTypes = []any{ + (*MutateCampaignsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignsRequest + (*CampaignOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignOperation + (*MutateCampaignsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignsResponse + (*MutateCampaignResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignResult + (*EnablePMaxBrandGuidelinesRequest)(nil), // 4: google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesRequest + (*EnableOperation)(nil), // 5: google.ads.googleads.v22.services.EnableOperation + (*BrandCampaignAssets)(nil), // 6: google.ads.googleads.v22.services.BrandCampaignAssets + (*EnablePMaxBrandGuidelinesResponse)(nil), // 7: google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesResponse + (*EnablementResult)(nil), // 8: google.ads.googleads.v22.services.EnablementResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 9: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 10: google.protobuf.FieldMask - (*resources.Campaign)(nil), // 11: google.ads.googleads.v21.resources.Campaign + (*resources.Campaign)(nil), // 11: google.ads.googleads.v22.resources.Campaign (*status.Status)(nil), // 12: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignOperation - 9, // 1: google.ads.googleads.v21.services.MutateCampaignsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 10, // 2: google.ads.googleads.v21.services.CampaignOperation.update_mask:type_name -> google.protobuf.FieldMask - 11, // 3: google.ads.googleads.v21.services.CampaignOperation.create:type_name -> google.ads.googleads.v21.resources.Campaign - 11, // 4: google.ads.googleads.v21.services.CampaignOperation.update:type_name -> google.ads.googleads.v21.resources.Campaign - 12, // 5: google.ads.googleads.v21.services.MutateCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCampaignsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignResult - 11, // 7: google.ads.googleads.v21.services.MutateCampaignResult.campaign:type_name -> google.ads.googleads.v21.resources.Campaign - 5, // 8: google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesRequest.operations:type_name -> google.ads.googleads.v21.services.EnableOperation - 6, // 9: google.ads.googleads.v21.services.EnableOperation.brand_assets:type_name -> google.ads.googleads.v21.services.BrandCampaignAssets - 8, // 10: google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesResponse.results:type_name -> google.ads.googleads.v21.services.EnablementResult - 12, // 11: google.ads.googleads.v21.services.EnablementResult.enablement_error:type_name -> google.rpc.Status - 0, // 12: google.ads.googleads.v21.services.CampaignService.MutateCampaigns:input_type -> google.ads.googleads.v21.services.MutateCampaignsRequest - 4, // 13: google.ads.googleads.v21.services.CampaignService.EnablePMaxBrandGuidelines:input_type -> google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesRequest - 2, // 14: google.ads.googleads.v21.services.CampaignService.MutateCampaigns:output_type -> google.ads.googleads.v21.services.MutateCampaignsResponse - 7, // 15: google.ads.googleads.v21.services.CampaignService.EnablePMaxBrandGuidelines:output_type -> google.ads.googleads.v21.services.EnablePMaxBrandGuidelinesResponse +var file_google_ads_googleads_v22_services_campaign_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignOperation + 9, // 1: google.ads.googleads.v22.services.MutateCampaignsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 10, // 2: google.ads.googleads.v22.services.CampaignOperation.update_mask:type_name -> google.protobuf.FieldMask + 11, // 3: google.ads.googleads.v22.services.CampaignOperation.create:type_name -> google.ads.googleads.v22.resources.Campaign + 11, // 4: google.ads.googleads.v22.services.CampaignOperation.update:type_name -> google.ads.googleads.v22.resources.Campaign + 12, // 5: google.ads.googleads.v22.services.MutateCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCampaignsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignResult + 11, // 7: google.ads.googleads.v22.services.MutateCampaignResult.campaign:type_name -> google.ads.googleads.v22.resources.Campaign + 5, // 8: google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesRequest.operations:type_name -> google.ads.googleads.v22.services.EnableOperation + 6, // 9: google.ads.googleads.v22.services.EnableOperation.brand_assets:type_name -> google.ads.googleads.v22.services.BrandCampaignAssets + 8, // 10: google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesResponse.results:type_name -> google.ads.googleads.v22.services.EnablementResult + 12, // 11: google.ads.googleads.v22.services.EnablementResult.enablement_error:type_name -> google.rpc.Status + 0, // 12: google.ads.googleads.v22.services.CampaignService.MutateCampaigns:input_type -> google.ads.googleads.v22.services.MutateCampaignsRequest + 4, // 13: google.ads.googleads.v22.services.CampaignService.EnablePMaxBrandGuidelines:input_type -> google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesRequest + 2, // 14: google.ads.googleads.v22.services.CampaignService.MutateCampaigns:output_type -> google.ads.googleads.v22.services.MutateCampaignsResponse + 7, // 15: google.ads.googleads.v22.services.CampaignService.EnablePMaxBrandGuidelines:output_type -> google.ads.googleads.v22.services.EnablePMaxBrandGuidelinesResponse 14, // [14:16] is the sub-list for method output_type 12, // [12:14] is the sub-list for method input_type 12, // [12:12] is the sub-list for extension type_name @@ -951,12 +951,12 @@ var file_google_ads_googleads_v21_services_campaign_service_proto_depIdxs = []in 0, // [0:12] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignOperation_Create)(nil), (*CampaignOperation_Update)(nil), (*CampaignOperation_Remove)(nil), @@ -965,17 +965,17 @@ func file_google_ads_googleads_v21_services_campaign_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_service_proto_rawDesc)), NumEnums: 0, NumMessages: 9, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_campaign_service_proto_depIdxs = nil } diff --git a/services/campaign_service_grpc.pb.go b/services/campaign_service_grpc.pb.go index 0b6485ed..5babe9d8 100644 --- a/services/campaign_service_grpc.pb.go +++ b/services/campaign_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_service.proto +// source: google/ads/googleads/v22/services/campaign_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignService_MutateCampaigns_FullMethodName = "/google.ads.googleads.v21.services.CampaignService/MutateCampaigns" - CampaignService_EnablePMaxBrandGuidelines_FullMethodName = "/google.ads.googleads.v21.services.CampaignService/EnablePMaxBrandGuidelines" + CampaignService_MutateCampaigns_FullMethodName = "/google.ads.googleads.v22.services.CampaignService/MutateCampaigns" + CampaignService_EnablePMaxBrandGuidelines_FullMethodName = "/google.ads.googleads.v22.services.CampaignService/EnablePMaxBrandGuidelines" ) // CampaignServiceClient is the client API for CampaignService service. @@ -270,7 +270,7 @@ func _CampaignService_EnablePMaxBrandGuidelines_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 CampaignService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.CampaignService", + ServiceName: "google.ads.googleads.v22.services.CampaignService", HandlerType: (*CampaignServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -283,5 +283,5 @@ var CampaignService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_service.proto", } diff --git a/services/campaign_shared_set_service.pb.go b/services/campaign_shared_set_service.pb.go index 9cf48527..2a6e936c 100644 --- a/services/campaign_shared_set_service.pb.go +++ b/services/campaign_shared_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_shared_set_service.proto +// source: google/ads/googleads/v22/services/campaign_shared_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CampaignSharedSetService.MutateCampaignSharedSets][google.ads.googleads.v21.services.CampaignSharedSetService.MutateCampaignSharedSets]. +// [CampaignSharedSetService.MutateCampaignSharedSets][google.ads.googleads.v22.services.CampaignSharedSetService.MutateCampaignSharedSets]. type MutateCampaignSharedSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign shared sets are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCampaignSharedSetsRequest) Reset() { *x = MutateCampaignSharedSetsRequest{} - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCampaignSharedSetsRequest) String() string { func (*MutateCampaignSharedSetsRequest) ProtoMessage() {} func (x *MutateCampaignSharedSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateCampaignSharedSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCampaignSharedSetsRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type CampaignSharedSetOperation struct { func (x *CampaignSharedSetOperation) Reset() { *x = CampaignSharedSetOperation{} - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CampaignSharedSetOperation) String() string { func (*CampaignSharedSetOperation) ProtoMessage() {} func (x *CampaignSharedSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CampaignSharedSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignSharedSetOperation.ProtoReflect.Descriptor instead. func (*CampaignSharedSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{1} } func (x *CampaignSharedSetOperation) GetOperation() isCampaignSharedSetOperation_Operation { @@ -236,7 +236,7 @@ type MutateCampaignSharedSetsResponse struct { func (x *MutateCampaignSharedSetsResponse) Reset() { *x = MutateCampaignSharedSetsResponse{} - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -248,7 +248,7 @@ func (x *MutateCampaignSharedSetsResponse) String() string { func (*MutateCampaignSharedSetsResponse) ProtoMessage() {} func (x *MutateCampaignSharedSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -261,7 +261,7 @@ func (x *MutateCampaignSharedSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCampaignSharedSetsResponse) GetPartialFailureError() *status.Status { @@ -293,7 +293,7 @@ type MutateCampaignSharedSetResult struct { func (x *MutateCampaignSharedSetResult) Reset() { *x = MutateCampaignSharedSetResult{} - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -305,7 +305,7 @@ func (x *MutateCampaignSharedSetResult) String() string { func (*MutateCampaignSharedSetResult) ProtoMessage() {} func (x *MutateCampaignSharedSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -318,7 +318,7 @@ func (x *MutateCampaignSharedSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCampaignSharedSetResult.ProtoReflect.Descriptor instead. func (*MutateCampaignSharedSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCampaignSharedSetResult) GetResourceName() string { @@ -335,21 +335,21 @@ func (x *MutateCampaignSharedSetResult) GetCampaignSharedSet() *resources.Campai return nil } -var File_google_ads_googleads_v21_services_campaign_shared_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_campaign_shared_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -368,7 +368,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -380,7 +380,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -389,7 +389,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -420,7 +420,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -428,17 +428,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x32, 0x32, 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, @@ -448,55 +448,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_goTypes = []any{ - (*MutateCampaignSharedSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest - (*CampaignSharedSetOperation)(nil), // 1: google.ads.googleads.v21.services.CampaignSharedSetOperation - (*MutateCampaignSharedSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse - (*MutateCampaignSharedSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCampaignSharedSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CampaignSharedSet)(nil), // 5: google.ads.googleads.v21.resources.CampaignSharedSet +var file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_goTypes = []any{ + (*MutateCampaignSharedSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest + (*CampaignSharedSetOperation)(nil), // 1: google.ads.googleads.v22.services.CampaignSharedSetOperation + (*MutateCampaignSharedSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCampaignSharedSetsResponse + (*MutateCampaignSharedSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCampaignSharedSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CampaignSharedSet)(nil), // 5: google.ads.googleads.v22.resources.CampaignSharedSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest.operations:type_name -> google.ads.googleads.v21.services.CampaignSharedSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CampaignSharedSetOperation.create:type_name -> google.ads.googleads.v21.resources.CampaignSharedSet - 6, // 3: google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCampaignSharedSetResult - 5, // 5: google.ads.googleads.v21.services.MutateCampaignSharedSetResult.campaign_shared_set:type_name -> google.ads.googleads.v21.resources.CampaignSharedSet - 0, // 6: google.ads.googleads.v21.services.CampaignSharedSetService.MutateCampaignSharedSets:input_type -> google.ads.googleads.v21.services.MutateCampaignSharedSetsRequest - 2, // 7: google.ads.googleads.v21.services.CampaignSharedSetService.MutateCampaignSharedSets:output_type -> google.ads.googleads.v21.services.MutateCampaignSharedSetsResponse +var file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest.operations:type_name -> google.ads.googleads.v22.services.CampaignSharedSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CampaignSharedSetOperation.create:type_name -> google.ads.googleads.v22.resources.CampaignSharedSet + 6, // 3: google.ads.googleads.v22.services.MutateCampaignSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v22.services.MutateCampaignSharedSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCampaignSharedSetResult + 5, // 5: google.ads.googleads.v22.services.MutateCampaignSharedSetResult.campaign_shared_set:type_name -> google.ads.googleads.v22.resources.CampaignSharedSet + 0, // 6: google.ads.googleads.v22.services.CampaignSharedSetService.MutateCampaignSharedSets:input_type -> google.ads.googleads.v22.services.MutateCampaignSharedSetsRequest + 2, // 7: google.ads.googleads.v22.services.CampaignSharedSetService.MutateCampaignSharedSets:output_type -> google.ads.googleads.v22.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 @@ -504,12 +504,12 @@ var file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_init() } -func file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_init() { - if File_google_ads_googleads_v21_services_campaign_shared_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_init() } +func file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_init() { + if File_google_ads_googleads_v22_services_campaign_shared_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*CampaignSharedSetOperation_Create)(nil), (*CampaignSharedSetOperation_Remove)(nil), } @@ -517,17 +517,17 @@ func file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_campaign_shared_set_service_proto = out.File - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_campaign_shared_set_service_proto = out.File + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 724c1336..d03bda11 100644 --- a/services/campaign_shared_set_service_grpc.pb.go +++ b/services/campaign_shared_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/campaign_shared_set_service.proto +// source: google/ads/googleads/v22/services/campaign_shared_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName = "/google.ads.googleads.v21.services.CampaignSharedSetService/MutateCampaignSharedSets" + CampaignSharedSetService_MutateCampaignSharedSets_FullMethodName = "/google.ads.googleads.v22.services.CampaignSharedSetService/MutateCampaignSharedSets" ) // CampaignSharedSetServiceClient is the client API for CampaignSharedSetService service. @@ -179,7 +179,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.v21.services.CampaignSharedSetService", + ServiceName: "google.ads.googleads.v22.services.CampaignSharedSetService", HandlerType: (*CampaignSharedSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -188,5 +188,5 @@ var CampaignSharedSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/campaign_shared_set_service.proto", + Metadata: "google/ads/googleads/v22/services/campaign_shared_set_service.proto", } diff --git a/services/content_creator_insights_service.pb.go b/services/content_creator_insights_service.pb.go index b26b5fce..d19ebad9 100644 --- a/services/content_creator_insights_service.pb.go +++ b/services/content_creator_insights_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/content_creator_insights_service.proto +// source: google/ads/googleads/v22/services/content_creator_insights_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights]. +// [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights]. type GenerateCreatorInsightsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -68,7 +68,7 @@ type GenerateCreatorInsightsRequest struct { func (x *GenerateCreatorInsightsRequest) Reset() { *x = GenerateCreatorInsightsRequest{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -80,7 +80,7 @@ func (x *GenerateCreatorInsightsRequest) String() string { func (*GenerateCreatorInsightsRequest) ProtoMessage() {} func (x *GenerateCreatorInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -93,7 +93,7 @@ func (x *GenerateCreatorInsightsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateCreatorInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateCreatorInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateCreatorInsightsRequest) GetCustomerId() string { @@ -196,7 +196,7 @@ func (*GenerateCreatorInsightsRequest_SearchBrand_) isGenerateCreatorInsightsReq func (*GenerateCreatorInsightsRequest_SearchChannels) isGenerateCreatorInsightsRequest_Criteria() {} // Response message for -// [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights]. +// [ContentCreatorInsightsService.GenerateCreatorInsights][google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights]. type GenerateCreatorInsightsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // A collection of YouTube Creators, each containing a collection of YouTube @@ -208,7 +208,7 @@ type GenerateCreatorInsightsResponse struct { func (x *GenerateCreatorInsightsResponse) Reset() { *x = GenerateCreatorInsightsResponse{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -220,7 +220,7 @@ func (x *GenerateCreatorInsightsResponse) String() string { func (*GenerateCreatorInsightsResponse) ProtoMessage() {} func (x *GenerateCreatorInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -233,7 +233,7 @@ func (x *GenerateCreatorInsightsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateCreatorInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateCreatorInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{1} } func (x *GenerateCreatorInsightsResponse) GetCreatorInsights() []*YouTubeCreatorInsights { @@ -268,7 +268,7 @@ type GenerateTrendingInsightsRequest struct { func (x *GenerateTrendingInsightsRequest) Reset() { *x = GenerateTrendingInsightsRequest{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (x *GenerateTrendingInsightsRequest) String() string { func (*GenerateTrendingInsightsRequest) ProtoMessage() {} func (x *GenerateTrendingInsightsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,7 +293,7 @@ func (x *GenerateTrendingInsightsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateTrendingInsightsRequest.ProtoReflect.Descriptor instead. func (*GenerateTrendingInsightsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{2} } func (x *GenerateTrendingInsightsRequest) GetCustomerId() string { @@ -378,7 +378,7 @@ type GenerateTrendingInsightsResponse struct { func (x *GenerateTrendingInsightsResponse) Reset() { *x = GenerateTrendingInsightsResponse{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -390,7 +390,7 @@ func (x *GenerateTrendingInsightsResponse) String() string { func (*GenerateTrendingInsightsResponse) ProtoMessage() {} func (x *GenerateTrendingInsightsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -403,7 +403,7 @@ func (x *GenerateTrendingInsightsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateTrendingInsightsResponse.ProtoReflect.Descriptor instead. func (*GenerateTrendingInsightsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{3} } func (x *GenerateTrendingInsightsResponse) GetTrendInsights() []*TrendInsight { @@ -426,7 +426,7 @@ type YouTubeCreatorInsights struct { func (x *YouTubeCreatorInsights) Reset() { *x = YouTubeCreatorInsights{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -438,7 +438,7 @@ func (x *YouTubeCreatorInsights) String() string { func (*YouTubeCreatorInsights) ProtoMessage() {} func (x *YouTubeCreatorInsights) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -451,7 +451,7 @@ func (x *YouTubeCreatorInsights) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeCreatorInsights.ProtoReflect.Descriptor instead. func (*YouTubeCreatorInsights) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{4} } func (x *YouTubeCreatorInsights) GetCreatorName() string { @@ -485,7 +485,7 @@ type YouTubeMetrics struct { CommentsCount int64 `protobuf:"varint,7,opt,name=comments_count,json=commentsCount,proto3" json:"comments_count,omitempty"` // The lifetime engagement rate of this channel. The value is computed as the // total number of likes, shares, and comments across all videos divided by - // the total number of videos. + // the total number of video views. EngagementRate float64 `protobuf:"fixed64,8,opt,name=engagement_rate,json=engagementRate,proto3" json:"engagement_rate,omitempty"` // The average number of views per video in the last 28 days. AverageViewsPerVideo float64 `protobuf:"fixed64,9,opt,name=average_views_per_video,json=averageViewsPerVideo,proto3" json:"average_views_per_video,omitempty"` @@ -501,6 +501,8 @@ type YouTubeMetrics struct { ShortsVideoCount int64 `protobuf:"varint,14,opt,name=shorts_video_count,json=shortsVideoCount,proto3" json:"shorts_video_count,omitempty"` // When true, this channel has published a Shorts video in the last 90 days. IsActiveShortsCreator bool `protobuf:"varint,4,opt,name=is_active_shorts_creator,json=isActiveShortsCreator,proto3" json:"is_active_shorts_creator,omitempty"` + // When true, this channel has published a live stream in the last 90 days. + IsActiveLiveStreamCreator bool `protobuf:"varint,16,opt,name=is_active_live_stream_creator,json=isActiveLiveStreamCreator,proto3" json:"is_active_live_stream_creator,omitempty"` // When true, this creator can be partnered with to create original branded // content using the Google Ads creator partnership platform, BrandConnect. // @@ -513,7 +515,7 @@ type YouTubeMetrics struct { func (x *YouTubeMetrics) Reset() { *x = YouTubeMetrics{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -525,7 +527,7 @@ func (x *YouTubeMetrics) String() string { func (*YouTubeMetrics) ProtoMessage() {} func (x *YouTubeMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -538,7 +540,7 @@ func (x *YouTubeMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeMetrics.ProtoReflect.Descriptor instead. func (*YouTubeMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{5} } func (x *YouTubeMetrics) GetSubscriberCount() int64 { @@ -639,6 +641,13 @@ func (x *YouTubeMetrics) GetIsActiveShortsCreator() bool { return false } +func (x *YouTubeMetrics) GetIsActiveLiveStreamCreator() bool { + if x != nil { + return x.IsActiveLiveStreamCreator + } + return false +} + func (x *YouTubeMetrics) GetIsBrandConnectCreator() bool { if x != nil { return x.IsBrandConnectCreator @@ -688,7 +697,7 @@ type YouTubeChannelInsights struct { func (x *YouTubeChannelInsights) Reset() { *x = YouTubeChannelInsights{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -700,7 +709,7 @@ func (x *YouTubeChannelInsights) String() string { func (*YouTubeChannelInsights) ProtoMessage() {} func (x *YouTubeChannelInsights) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -713,7 +722,7 @@ func (x *YouTubeChannelInsights) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeChannelInsights.ProtoReflect.Descriptor instead. func (*YouTubeChannelInsights) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{6} } func (x *YouTubeChannelInsights) GetDisplayName() string { @@ -820,7 +829,7 @@ type SearchAudience struct { func (x *SearchAudience) Reset() { *x = SearchAudience{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -832,7 +841,7 @@ func (x *SearchAudience) String() string { func (*SearchAudience) ProtoMessage() {} func (x *SearchAudience) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -845,7 +854,7 @@ func (x *SearchAudience) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchAudience.ProtoReflect.Descriptor instead. func (*SearchAudience) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{7} } func (x *SearchAudience) GetAudienceAttributes() []*common.AudienceInsightsAttribute { @@ -868,7 +877,7 @@ type SearchTopics struct { func (x *SearchTopics) Reset() { *x = SearchTopics{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -880,7 +889,7 @@ func (x *SearchTopics) String() string { func (*SearchTopics) ProtoMessage() {} func (x *SearchTopics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -893,7 +902,7 @@ func (x *SearchTopics) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchTopics.ProtoReflect.Descriptor instead. func (*SearchTopics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{8} } func (x *SearchTopics) GetEntities() []*common.AudienceInsightsEntity { @@ -911,14 +920,20 @@ type TrendInsight struct { // Metrics associated with this trend. TrendMetrics *TrendInsightMetrics `protobuf:"bytes,2,opt,name=trend_metrics,json=trendMetrics,proto3" json:"trend_metrics,omitempty"` // The direction of trend (such as RISING or DECLINING). - Trend enums.InsightsTrendEnum_InsightsTrend `protobuf:"varint,3,opt,name=trend,proto3,enum=google.ads.googleads.v21.enums.InsightsTrendEnum_InsightsTrend" json:"trend,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + Trend enums.InsightsTrendEnum_InsightsTrend `protobuf:"varint,3,opt,name=trend,proto3,enum=google.ads.googleads.v22.enums.InsightsTrendEnum_InsightsTrend" json:"trend,omitempty"` + // Related videos for this topic. Only populated for trends using + // search_topics. + RelatedVideos []*common.AudienceInsightsAttributeMetadata `protobuf:"bytes,4,rep,name=related_videos,json=relatedVideos,proto3" json:"related_videos,omitempty"` + // Related creators for this topic. Only populated for trends using + // search_topics. + RelatedCreators []*YouTubeCreatorInsights `protobuf:"bytes,5,rep,name=related_creators,json=relatedCreators,proto3" json:"related_creators,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *TrendInsight) Reset() { *x = TrendInsight{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -930,7 +945,7 @@ func (x *TrendInsight) String() string { func (*TrendInsight) ProtoMessage() {} func (x *TrendInsight) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -943,7 +958,7 @@ func (x *TrendInsight) ProtoReflect() protoreflect.Message { // Deprecated: Use TrendInsight.ProtoReflect.Descriptor instead. func (*TrendInsight) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{9} } func (x *TrendInsight) GetTrendAttribute() *common.AudienceInsightsAttributeMetadata { @@ -967,6 +982,20 @@ func (x *TrendInsight) GetTrend() enums.InsightsTrendEnum_InsightsTrend { return enums.InsightsTrendEnum_InsightsTrend(0) } +func (x *TrendInsight) GetRelatedVideos() []*common.AudienceInsightsAttributeMetadata { + if x != nil { + return x.RelatedVideos + } + return nil +} + +func (x *TrendInsight) GetRelatedCreators() []*YouTubeCreatorInsights { + if x != nil { + return x.RelatedCreators + } + return nil +} + // Metrics associated with a trend insight. type TrendInsightMetrics struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -983,7 +1012,7 @@ type TrendInsightMetrics struct { func (x *TrendInsightMetrics) Reset() { *x = TrendInsightMetrics{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -995,7 +1024,7 @@ func (x *TrendInsightMetrics) String() string { func (*TrendInsightMetrics) ProtoMessage() {} func (x *TrendInsightMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1008,7 +1037,7 @@ func (x *TrendInsightMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use TrendInsightMetrics.ProtoReflect.Descriptor instead. func (*TrendInsightMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{10} } func (x *TrendInsightMetrics) GetViewsCount() int64 { @@ -1041,7 +1070,7 @@ type GenerateCreatorInsightsRequest_SearchAttributes struct { // input creator attributes. Only Knowledge Graph Entities tagged with // [InsightsKnowledgeGraphEntityCapabilities.CREATOR_ATTRIBUTE][] are // supported. Use - // [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v21.services.AudienceInsightsService.ListAudienceInsightsAttributes] + // [AudienceInsightsService.ListAudienceInsightsAttributes][google.ads.googleads.v22.services.AudienceInsightsService.ListAudienceInsightsAttributes] // to get the list of supported entities. Other attributes including // location are not supported. CreatorAttributes []*common.AudienceInsightsAttribute `protobuf:"bytes,2,rep,name=creator_attributes,json=creatorAttributes,proto3" json:"creator_attributes,omitempty"` @@ -1051,7 +1080,7 @@ type GenerateCreatorInsightsRequest_SearchAttributes struct { func (x *GenerateCreatorInsightsRequest_SearchAttributes) Reset() { *x = GenerateCreatorInsightsRequest_SearchAttributes{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1063,7 +1092,7 @@ func (x *GenerateCreatorInsightsRequest_SearchAttributes) String() string { func (*GenerateCreatorInsightsRequest_SearchAttributes) ProtoMessage() {} func (x *GenerateCreatorInsightsRequest_SearchAttributes) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1076,7 +1105,7 @@ func (x *GenerateCreatorInsightsRequest_SearchAttributes) ProtoReflect() protore // Deprecated: Use GenerateCreatorInsightsRequest_SearchAttributes.ProtoReflect.Descriptor instead. func (*GenerateCreatorInsightsRequest_SearchAttributes) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 0} } func (x *GenerateCreatorInsightsRequest_SearchAttributes) GetAudienceAttributes() []*common.AudienceInsightsAttribute { @@ -1109,7 +1138,7 @@ type GenerateCreatorInsightsRequest_SearchBrand struct { func (x *GenerateCreatorInsightsRequest_SearchBrand) Reset() { *x = GenerateCreatorInsightsRequest_SearchBrand{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1121,7 +1150,7 @@ func (x *GenerateCreatorInsightsRequest_SearchBrand) String() string { func (*GenerateCreatorInsightsRequest_SearchBrand) ProtoMessage() {} func (x *GenerateCreatorInsightsRequest_SearchBrand) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1134,7 +1163,7 @@ func (x *GenerateCreatorInsightsRequest_SearchBrand) ProtoReflect() protoreflect // Deprecated: Use GenerateCreatorInsightsRequest_SearchBrand.ProtoReflect.Descriptor instead. func (*GenerateCreatorInsightsRequest_SearchBrand) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 1} } func (x *GenerateCreatorInsightsRequest_SearchBrand) GetBrandEntities() []*common.AudienceInsightsAttribute { @@ -1162,7 +1191,7 @@ type GenerateCreatorInsightsRequest_YouTubeChannels struct { func (x *GenerateCreatorInsightsRequest_YouTubeChannels) Reset() { *x = GenerateCreatorInsightsRequest_YouTubeChannels{} - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1174,7 +1203,7 @@ func (x *GenerateCreatorInsightsRequest_YouTubeChannels) String() string { func (*GenerateCreatorInsightsRequest_YouTubeChannels) ProtoMessage() {} func (x *GenerateCreatorInsightsRequest_YouTubeChannels) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1187,7 +1216,7 @@ func (x *GenerateCreatorInsightsRequest_YouTubeChannels) ProtoReflect() protoref // Deprecated: Use GenerateCreatorInsightsRequest_YouTubeChannels.ProtoReflect.Descriptor instead. func (*GenerateCreatorInsightsRequest_YouTubeChannels) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 2} + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP(), []int{0, 2} } func (x *GenerateCreatorInsightsRequest_YouTubeChannels) GetYoutubeChannels() []*common.YouTubeChannelInfo { @@ -1197,29 +1226,29 @@ func (x *GenerateCreatorInsightsRequest_YouTubeChannels) GetYoutubeChannels() [] return nil } -var File_google_ads_googleads_v21_services_content_creator_insights_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_content_creator_insights_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x74, 0x72, 0x65, 0x6e, 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, @@ -1239,26 +1268,26 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5f, 0x0a, 0x11, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x81, 0x01, 0x0a, 0x11, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x74, 0x74, @@ -1266,7 +1295,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x68, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x72, 0x0a, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x62, 0x72, 0x61, 0x6e, 0x64, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x42, 0x72, 0x61, 0x6e, 0x64, @@ -1274,7 +1303,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x7c, 0x0a, 0x0f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x48, 0x00, 0x52, 0x0e, 0x73, @@ -1283,14 +1312,14 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x65, 0x73, 0x12, 0x70, 0x0a, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x01, 0x52, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x6e, 0x0a, 0x12, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x01, 0x52, 0x11, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, @@ -1298,7 +1327,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x72, 0x61, 0x6e, 0x64, 0x12, 0x66, 0x0a, 0x0e, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x01, 0x52, 0x0d, 0x62, 0x72, 0x61, 0x6e, 0x64, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, 0x73, 0x12, 0x39, 0x0a, 0x16, @@ -1309,7 +1338,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x12, 0x63, 0x0a, 0x10, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x01, 0x52, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x42, @@ -1319,7 +1348,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x64, 0x0a, 0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0xa2, 0x04, 0x0a, 0x1f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, @@ -1334,26 +1363,26 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x17, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x5d, 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x5c, 0x0a, 0x0f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x48, 0x00, 0x52, 0x0e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x56, 0x0a, 0x0d, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x6f, 0x70, 0x69, 0x63, 0x73, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x48, 0x00, 0x52, 0x0c, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x42, 0x0a, 0x0a, 0x08, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x61, 0x22, 0x7a, 0x0a, 0x20, 0x47, 0x65, @@ -1362,7 +1391,7 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x0a, 0x0e, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x5f, 0x69, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x65, 0x6e, 0x64, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x52, 0x0d, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x22, 0xa1, 0x01, 0x0a, 0x16, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, @@ -1371,10 +1400,10 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x64, 0x0a, 0x10, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x0f, 0x63, 0x72, 0x65, 0x61, 0x74, - 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x22, 0xc3, 0x05, 0x0a, 0x0e, 0x59, + 0x6f, 0x72, 0x43, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x73, 0x22, 0x85, 0x06, 0x0a, 0x0e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x29, 0x0a, 0x10, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x72, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0f, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, @@ -1415,249 +1444,268 @@ var file_google_ads_googleads_v21_services_content_creator_insights_service_prot 0x0a, 0x18, 0x69, 0x73, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x68, 0x6f, 0x72, 0x74, 0x73, 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x04, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x69, 0x73, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x53, 0x68, 0x6f, 0x72, 0x74, 0x73, - 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x37, 0x0a, 0x18, 0x69, 0x73, 0x5f, 0x62, 0x72, - 0x61, 0x6e, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x72, 0x65, 0x61, - 0x74, 0x6f, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x69, 0x73, 0x42, 0x72, 0x61, - 0x6e, 0x64, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, - 0x22, 0xff, 0x06, 0x0a, 0x16, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x64, - 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x5c, - 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, - 0x6c, 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, - 0x32, 0x31, 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, 0x1f, 0x0a, 0x0b, - 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x09, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x2f, 0x0a, - 0x13, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, - 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, - 0x0a, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, - 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, - 0x61, 0x69, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x74, - 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, 0x0c, 0x70, - 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x44, 0x61, 0x74, 0x65, 0x12, 0x58, - 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x18, 0x0e, 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, 0x32, 0x31, 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, 0x12, 0x5a, 0x0a, 0x0f, 0x63, 0x68, 0x61, 0x6e, - 0x6e, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x52, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, 0x65, 0x74, - 0x72, 0x69, 0x63, 0x73, 0x12, 0x82, 0x01, 0x0a, 0x1b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, - 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, - 0x75, 0x74, 0x65, 0x73, 0x18, 0x07, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x42, 0x2e, 0x67, 0x6f, 0x6f, + 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x40, 0x0a, 0x1d, 0x69, 0x73, 0x5f, 0x61, 0x63, + 0x74, 0x69, 0x76, 0x65, 0x5f, 0x6c, 0x69, 0x76, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x65, 0x61, 0x6d, + 0x5f, 0x63, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x10, 0x20, 0x01, 0x28, 0x08, 0x52, 0x19, + 0x69, 0x73, 0x41, 0x63, 0x74, 0x69, 0x76, 0x65, 0x4c, 0x69, 0x76, 0x65, 0x53, 0x74, 0x72, 0x65, + 0x61, 0x6d, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x12, 0x37, 0x0a, 0x18, 0x69, 0x73, 0x5f, + 0x62, 0x72, 0x61, 0x6e, 0x64, 0x5f, 0x63, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x5f, 0x63, 0x72, + 0x65, 0x61, 0x74, 0x6f, 0x72, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x69, 0x73, 0x42, + 0x72, 0x61, 0x6e, 0x64, 0x43, 0x6f, 0x6e, 0x6e, 0x65, 0x63, 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x6f, 0x72, 0x22, 0xff, 0x06, 0x0a, 0x16, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x68, + 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 0x21, 0x0a, + 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, + 0x12, 0x5c, 0x0a, 0x0f, 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, + 0x6e, 0x65, 0x6c, 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, 0x32, 0x32, 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, 0x1f, + 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x09, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x55, 0x72, 0x6c, 0x12, + 0x2f, 0x0a, 0x13, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x63, 0x68, + 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x44, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, + 0x52, 0x06, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x12, 0x23, 0x0a, 0x0d, 0x74, 0x68, 0x75, 0x6d, + 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, + 0x0c, 0x74, 0x68, 0x75, 0x6d, 0x62, 0x6e, 0x61, 0x69, 0x6c, 0x55, 0x72, 0x6c, 0x12, 0x21, 0x0a, + 0x0c, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x0d, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x44, 0x61, 0x74, 0x65, + 0x12, 0x58, 0x0a, 0x10, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x6c, 0x6f, 0x63, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0e, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x19, - 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x41, - 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x71, 0x0a, 0x12, 0x63, 0x68, 0x61, - 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, - 0x05, 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, 0x32, 0x31, - 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x63, 0x68, 0x61, 0x6e, 0x6e, - 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x61, 0x0a, 0x0a, - 0x74, 0x6f, 0x70, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x08, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, - 0x6f, 0x6e, 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, 0x74, 0x6f, 0x70, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x12, - 0x21, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x54, 0x79, - 0x70, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, 0x75, 0x64, - 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x12, 0x5a, 0x0a, 0x0f, 0x63, 0x68, + 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 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, 0x32, 0x32, 0x2e, 0x73, + 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x4d, + 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x0e, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x4d, + 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x82, 0x01, 0x0a, 0x1b, 0x63, 0x68, 0x61, 0x6e, 0x6e, + 0x65, 0x6c, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, + 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x18, 0x07, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x19, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, + 0x65, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x71, 0x0a, 0x12, 0x63, + 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, + 0x73, 0x18, 0x05, 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, + 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x63, 0x68, 0x61, + 0x6e, 0x6e, 0x65, 0x6c, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x12, 0x61, + 0x0a, 0x0a, 0x74, 0x6f, 0x70, 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x08, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x41, 0x74, 0x74, - 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x68, 0x0a, 0x0c, 0x53, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x12, 0x58, 0x0a, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, - 0x69, 0x65, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6e, 0x74, 0x69, - 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, 0x69, 0x65, - 0x73, 0x22, 0xaf, 0x02, 0x0a, 0x0c, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x69, 0x67, - 0x68, 0x74, 0x12, 0x6b, 0x0a, 0x0f, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, 0x74, 0x72, - 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, - 0x0e, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x12, - 0x5b, 0x0a, 0x0d, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, - 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x65, 0x6e, 0x64, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x52, 0x0c, - 0x74, 0x72, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x55, 0x0a, 0x05, - 0x74, 0x72, 0x65, 0x6e, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x3f, 0x2e, 0x67, 0x6f, + 0x69, 0x67, 0x68, 0x74, 0x73, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4d, 0x65, + 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x52, 0x09, 0x74, 0x6f, 0x70, 0x56, 0x69, 0x64, 0x65, 0x6f, + 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, + 0x54, 0x79, 0x70, 0x65, 0x22, 0x82, 0x01, 0x0a, 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x41, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x12, 0x70, 0x0a, 0x13, 0x61, 0x75, 0x64, 0x69, 0x65, + 0x6e, 0x63, 0x65, 0x5f, 0x61, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 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, 0x32, 0x32, 0x2e, + 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x12, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x41, + 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x22, 0x68, 0x0a, 0x0c, 0x53, 0x65, 0x61, + 0x72, 0x63, 0x68, 0x54, 0x6f, 0x70, 0x69, 0x63, 0x73, 0x12, 0x58, 0x0a, 0x08, 0x65, 0x6e, 0x74, + 0x69, 0x74, 0x69, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x6e, 0x73, - 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x49, - 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x52, 0x05, 0x74, 0x72, - 0x65, 0x6e, 0x64, 0x22, 0x5d, 0x0a, 0x13, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x69, - 0x67, 0x68, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x76, 0x69, - 0x65, 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x0a, 0x76, 0x69, 0x65, 0x77, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, 0x0a, 0x0e, 0x61, - 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x18, 0x02, 0x20, - 0x01, 0x28, 0x01, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x68, 0x61, - 0x72, 0x65, 0x32, 0xb6, 0x04, 0x0a, 0x1d, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x53, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x12, 0xe3, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, - 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, - 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, - 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, 0x31, 0x2e, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x75, + 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x45, 0x6e, + 0x74, 0x69, 0x74, 0x79, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x65, 0x6e, 0x74, 0x69, 0x74, + 0x69, 0x65, 0x73, 0x22, 0x80, 0x04, 0x0a, 0x0c, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x49, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 0x12, 0x6b, 0x0a, 0x0f, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x5f, 0x61, 0x74, + 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x18, 0x01, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x0e, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, + 0x65, 0x12, 0x5b, 0x0a, 0x0d, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x5f, 0x6d, 0x65, 0x74, 0x72, 0x69, + 0x63, 0x73, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x72, 0x65, + 0x6e, 0x64, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, + 0x52, 0x0c, 0x74, 0x72, 0x65, 0x6e, 0x64, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x55, + 0x0a, 0x05, 0x74, 0x72, 0x65, 0x6e, 0x64, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x45, 0x6e, 0x75, 0x6d, + 0x2e, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x52, 0x05, + 0x74, 0x72, 0x65, 0x6e, 0x64, 0x12, 0x69, 0x0a, 0x0e, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, + 0x5f, 0x76, 0x69, 0x64, 0x65, 0x6f, 0x73, 0x18, 0x04, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 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, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x56, 0x69, 0x64, 0x65, 0x6f, 0x73, + 0x12, 0x64, 0x0a, 0x10, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x5f, 0x63, 0x72, 0x65, 0x61, + 0x74, 0x6f, 0x72, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x59, + 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, + 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x0f, 0x72, 0x65, 0x6c, 0x61, 0x74, 0x65, 0x64, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x6f, 0x72, 0x73, 0x22, 0x5d, 0x0a, 0x13, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x1f, 0x0a, + 0x0b, 0x76, 0x69, 0x65, 0x77, 0x73, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, + 0x28, 0x03, 0x52, 0x0a, 0x76, 0x69, 0x65, 0x77, 0x73, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x25, + 0x0a, 0x0e, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0d, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, + 0x53, 0x68, 0x61, 0x72, 0x65, 0x32, 0xb6, 0x04, 0x0a, 0x1d, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, + 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xe3, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x6e, 0x65, + 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, + 0x68, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, - 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3b, 0x3a, - 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x32, 0x31, 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, 0x43, 0x72, 0x65, 0x61, 0x74, - 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 0xe7, 0x01, 0x0a, 0x18, 0x47, + 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, 0x32, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x61, 0x74, 0x65, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, + 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x41, 0x82, 0xd3, 0xe4, 0x93, + 0x02, 0x3b, 0x3a, 0x01, 0x2a, 0x22, 0x36, 0x2f, 0x76, 0x32, 0x32, 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, 0x43, 0x72, + 0x65, 0x61, 0x74, 0x6f, 0x72, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x12, 0xe7, 0x01, + 0x0a, 0x18, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, + 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x49, - 0x6e, 0x73, 0x69, 0x67, 0x68, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, - 0x67, 0x68, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, - 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, - 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, - 0x22, 0x42, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, 0x2f, 0x76, 0x32, - 0x31, 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, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, - 0x67, 0x68, 0x74, 0x73, 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, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, - 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, - 0x65, 0x61, 0x74, 0x6f, 0x72, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, - 0x6f, 0x74, 0x6f, 0x33, + 0x6e, 0x73, 0x69, 0x67, 0x68, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x54, 0x72, 0x65, 0x6e, 0x64, + 0x69, 0x6e, 0x67, 0x49, 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x22, 0x42, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3c, 0x3a, 0x01, 0x2a, 0x22, 0x37, + 0x2f, 0x76, 0x32, 0x32, 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, 0x54, 0x72, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x49, + 0x6e, 0x73, 0x69, 0x67, 0x68, 0x74, 0x73, 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, 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, 0x32, 0x32, 0x2e, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, + 0x74, 0x43, 0x72, 0x65, 0x61, 0x74, 0x6f, 0x72, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 14) -var file_google_ads_googleads_v21_services_content_creator_insights_service_proto_goTypes = []any{ - (*GenerateCreatorInsightsRequest)(nil), // 0: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest - (*GenerateCreatorInsightsResponse)(nil), // 1: google.ads.googleads.v21.services.GenerateCreatorInsightsResponse - (*GenerateTrendingInsightsRequest)(nil), // 2: google.ads.googleads.v21.services.GenerateTrendingInsightsRequest - (*GenerateTrendingInsightsResponse)(nil), // 3: google.ads.googleads.v21.services.GenerateTrendingInsightsResponse - (*YouTubeCreatorInsights)(nil), // 4: google.ads.googleads.v21.services.YouTubeCreatorInsights - (*YouTubeMetrics)(nil), // 5: google.ads.googleads.v21.services.YouTubeMetrics - (*YouTubeChannelInsights)(nil), // 6: google.ads.googleads.v21.services.YouTubeChannelInsights - (*SearchAudience)(nil), // 7: google.ads.googleads.v21.services.SearchAudience - (*SearchTopics)(nil), // 8: google.ads.googleads.v21.services.SearchTopics - (*TrendInsight)(nil), // 9: google.ads.googleads.v21.services.TrendInsight - (*TrendInsightMetrics)(nil), // 10: google.ads.googleads.v21.services.TrendInsightMetrics - (*GenerateCreatorInsightsRequest_SearchAttributes)(nil), // 11: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes - (*GenerateCreatorInsightsRequest_SearchBrand)(nil), // 12: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand - (*GenerateCreatorInsightsRequest_YouTubeChannels)(nil), // 13: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels - (*common.AdditionalApplicationInfo)(nil), // 14: google.ads.googleads.v21.common.AdditionalApplicationInfo - (*common.LocationInfo)(nil), // 15: google.ads.googleads.v21.common.LocationInfo - (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v21.common.YouTubeChannelInfo - (*common.AudienceInsightsAttributeMetadata)(nil), // 17: google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - (*common.AudienceInsightsAttribute)(nil), // 18: google.ads.googleads.v21.common.AudienceInsightsAttribute - (*common.AudienceInsightsEntity)(nil), // 19: google.ads.googleads.v21.common.AudienceInsightsEntity - (enums.InsightsTrendEnum_InsightsTrend)(0), // 20: google.ads.googleads.v21.enums.InsightsTrendEnum.InsightsTrend -} -var file_google_ads_googleads_v21_services_content_creator_insights_service_proto_depIdxs = []int32{ - 14, // 0: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 15, // 1: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 15, // 2: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.sub_country_locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 11, // 3: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.search_attributes:type_name -> google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes - 12, // 4: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.search_brand:type_name -> google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand - 13, // 5: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.search_channels:type_name -> google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels - 4, // 6: google.ads.googleads.v21.services.GenerateCreatorInsightsResponse.creator_insights:type_name -> google.ads.googleads.v21.services.YouTubeCreatorInsights - 14, // 7: google.ads.googleads.v21.services.GenerateTrendingInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 15, // 8: google.ads.googleads.v21.services.GenerateTrendingInsightsRequest.country_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 7, // 9: google.ads.googleads.v21.services.GenerateTrendingInsightsRequest.search_audience:type_name -> google.ads.googleads.v21.services.SearchAudience - 8, // 10: google.ads.googleads.v21.services.GenerateTrendingInsightsRequest.search_topics:type_name -> google.ads.googleads.v21.services.SearchTopics - 9, // 11: google.ads.googleads.v21.services.GenerateTrendingInsightsResponse.trend_insights:type_name -> google.ads.googleads.v21.services.TrendInsight - 6, // 12: google.ads.googleads.v21.services.YouTubeCreatorInsights.creator_channels:type_name -> google.ads.googleads.v21.services.YouTubeChannelInsights - 16, // 13: google.ads.googleads.v21.services.YouTubeChannelInsights.youtube_channel:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 15, // 14: google.ads.googleads.v21.services.YouTubeChannelInsights.country_location:type_name -> google.ads.googleads.v21.common.LocationInfo - 5, // 15: google.ads.googleads.v21.services.YouTubeChannelInsights.channel_metrics:type_name -> google.ads.googleads.v21.services.YouTubeMetrics - 17, // 16: google.ads.googleads.v21.services.YouTubeChannelInsights.channel_audience_attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 17, // 17: google.ads.googleads.v21.services.YouTubeChannelInsights.channel_attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 17, // 18: google.ads.googleads.v21.services.YouTubeChannelInsights.top_videos:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 18, // 19: google.ads.googleads.v21.services.SearchAudience.audience_attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 19, // 20: google.ads.googleads.v21.services.SearchTopics.entities:type_name -> google.ads.googleads.v21.common.AudienceInsightsEntity - 17, // 21: google.ads.googleads.v21.services.TrendInsight.trend_attribute:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttributeMetadata - 10, // 22: google.ads.googleads.v21.services.TrendInsight.trend_metrics:type_name -> google.ads.googleads.v21.services.TrendInsightMetrics - 20, // 23: google.ads.googleads.v21.services.TrendInsight.trend:type_name -> google.ads.googleads.v21.enums.InsightsTrendEnum.InsightsTrend - 18, // 24: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes.audience_attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 18, // 25: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchAttributes.creator_attributes:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 18, // 26: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities:type_name -> google.ads.googleads.v21.common.AudienceInsightsAttribute - 16, // 27: google.ads.googleads.v21.services.GenerateCreatorInsightsRequest.YouTubeChannels.youtube_channels:type_name -> google.ads.googleads.v21.common.YouTubeChannelInfo - 0, // 28: google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights:input_type -> google.ads.googleads.v21.services.GenerateCreatorInsightsRequest - 2, // 29: google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights:input_type -> google.ads.googleads.v21.services.GenerateTrendingInsightsRequest - 1, // 30: google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateCreatorInsights:output_type -> google.ads.googleads.v21.services.GenerateCreatorInsightsResponse - 3, // 31: google.ads.googleads.v21.services.ContentCreatorInsightsService.GenerateTrendingInsights:output_type -> google.ads.googleads.v21.services.GenerateTrendingInsightsResponse - 30, // [30:32] is the sub-list for method output_type - 28, // [28:30] is the sub-list for method input_type - 28, // [28:28] is the sub-list for extension type_name - 28, // [28:28] is the sub-list for extension extendee - 0, // [0:28] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_services_content_creator_insights_service_proto_init() } -func file_google_ads_googleads_v21_services_content_creator_insights_service_proto_init() { - if File_google_ads_googleads_v21_services_content_creator_insights_service_proto != nil { + return file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes = make([]protoimpl.MessageInfo, 14) +var file_google_ads_googleads_v22_services_content_creator_insights_service_proto_goTypes = []any{ + (*GenerateCreatorInsightsRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest + (*GenerateCreatorInsightsResponse)(nil), // 1: google.ads.googleads.v22.services.GenerateCreatorInsightsResponse + (*GenerateTrendingInsightsRequest)(nil), // 2: google.ads.googleads.v22.services.GenerateTrendingInsightsRequest + (*GenerateTrendingInsightsResponse)(nil), // 3: google.ads.googleads.v22.services.GenerateTrendingInsightsResponse + (*YouTubeCreatorInsights)(nil), // 4: google.ads.googleads.v22.services.YouTubeCreatorInsights + (*YouTubeMetrics)(nil), // 5: google.ads.googleads.v22.services.YouTubeMetrics + (*YouTubeChannelInsights)(nil), // 6: google.ads.googleads.v22.services.YouTubeChannelInsights + (*SearchAudience)(nil), // 7: google.ads.googleads.v22.services.SearchAudience + (*SearchTopics)(nil), // 8: google.ads.googleads.v22.services.SearchTopics + (*TrendInsight)(nil), // 9: google.ads.googleads.v22.services.TrendInsight + (*TrendInsightMetrics)(nil), // 10: google.ads.googleads.v22.services.TrendInsightMetrics + (*GenerateCreatorInsightsRequest_SearchAttributes)(nil), // 11: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes + (*GenerateCreatorInsightsRequest_SearchBrand)(nil), // 12: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand + (*GenerateCreatorInsightsRequest_YouTubeChannels)(nil), // 13: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels + (*common.AdditionalApplicationInfo)(nil), // 14: google.ads.googleads.v22.common.AdditionalApplicationInfo + (*common.LocationInfo)(nil), // 15: google.ads.googleads.v22.common.LocationInfo + (*common.YouTubeChannelInfo)(nil), // 16: google.ads.googleads.v22.common.YouTubeChannelInfo + (*common.AudienceInsightsAttributeMetadata)(nil), // 17: google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + (*common.AudienceInsightsAttribute)(nil), // 18: google.ads.googleads.v22.common.AudienceInsightsAttribute + (*common.AudienceInsightsEntity)(nil), // 19: google.ads.googleads.v22.common.AudienceInsightsEntity + (enums.InsightsTrendEnum_InsightsTrend)(0), // 20: google.ads.googleads.v22.enums.InsightsTrendEnum.InsightsTrend +} +var file_google_ads_googleads_v22_services_content_creator_insights_service_proto_depIdxs = []int32{ + 14, // 0: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 15, // 1: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.country_locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 15, // 2: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.sub_country_locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 11, // 3: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.search_attributes:type_name -> google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes + 12, // 4: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.search_brand:type_name -> google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand + 13, // 5: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.search_channels:type_name -> google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels + 4, // 6: google.ads.googleads.v22.services.GenerateCreatorInsightsResponse.creator_insights:type_name -> google.ads.googleads.v22.services.YouTubeCreatorInsights + 14, // 7: google.ads.googleads.v22.services.GenerateTrendingInsightsRequest.insights_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 15, // 8: google.ads.googleads.v22.services.GenerateTrendingInsightsRequest.country_location:type_name -> google.ads.googleads.v22.common.LocationInfo + 7, // 9: google.ads.googleads.v22.services.GenerateTrendingInsightsRequest.search_audience:type_name -> google.ads.googleads.v22.services.SearchAudience + 8, // 10: google.ads.googleads.v22.services.GenerateTrendingInsightsRequest.search_topics:type_name -> google.ads.googleads.v22.services.SearchTopics + 9, // 11: google.ads.googleads.v22.services.GenerateTrendingInsightsResponse.trend_insights:type_name -> google.ads.googleads.v22.services.TrendInsight + 6, // 12: google.ads.googleads.v22.services.YouTubeCreatorInsights.creator_channels:type_name -> google.ads.googleads.v22.services.YouTubeChannelInsights + 16, // 13: google.ads.googleads.v22.services.YouTubeChannelInsights.youtube_channel:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 15, // 14: google.ads.googleads.v22.services.YouTubeChannelInsights.country_location:type_name -> google.ads.googleads.v22.common.LocationInfo + 5, // 15: google.ads.googleads.v22.services.YouTubeChannelInsights.channel_metrics:type_name -> google.ads.googleads.v22.services.YouTubeMetrics + 17, // 16: google.ads.googleads.v22.services.YouTubeChannelInsights.channel_audience_attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 17, // 17: google.ads.googleads.v22.services.YouTubeChannelInsights.channel_attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 17, // 18: google.ads.googleads.v22.services.YouTubeChannelInsights.top_videos:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 18, // 19: google.ads.googleads.v22.services.SearchAudience.audience_attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 19, // 20: google.ads.googleads.v22.services.SearchTopics.entities:type_name -> google.ads.googleads.v22.common.AudienceInsightsEntity + 17, // 21: google.ads.googleads.v22.services.TrendInsight.trend_attribute:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 10, // 22: google.ads.googleads.v22.services.TrendInsight.trend_metrics:type_name -> google.ads.googleads.v22.services.TrendInsightMetrics + 20, // 23: google.ads.googleads.v22.services.TrendInsight.trend:type_name -> google.ads.googleads.v22.enums.InsightsTrendEnum.InsightsTrend + 17, // 24: google.ads.googleads.v22.services.TrendInsight.related_videos:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttributeMetadata + 4, // 25: google.ads.googleads.v22.services.TrendInsight.related_creators:type_name -> google.ads.googleads.v22.services.YouTubeCreatorInsights + 18, // 26: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes.audience_attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 18, // 27: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchAttributes.creator_attributes:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 18, // 28: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.SearchBrand.brand_entities:type_name -> google.ads.googleads.v22.common.AudienceInsightsAttribute + 16, // 29: google.ads.googleads.v22.services.GenerateCreatorInsightsRequest.YouTubeChannels.youtube_channels:type_name -> google.ads.googleads.v22.common.YouTubeChannelInfo + 0, // 30: google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights:input_type -> google.ads.googleads.v22.services.GenerateCreatorInsightsRequest + 2, // 31: google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights:input_type -> google.ads.googleads.v22.services.GenerateTrendingInsightsRequest + 1, // 32: google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateCreatorInsights:output_type -> google.ads.googleads.v22.services.GenerateCreatorInsightsResponse + 3, // 33: google.ads.googleads.v22.services.ContentCreatorInsightsService.GenerateTrendingInsights:output_type -> google.ads.googleads.v22.services.GenerateTrendingInsightsResponse + 32, // [32:34] is the sub-list for method output_type + 30, // [30:32] is the sub-list for method input_type + 30, // [30:30] is the sub-list for extension type_name + 30, // [30:30] is the sub-list for extension extendee + 0, // [0:30] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_content_creator_insights_service_proto_init() } +func file_google_ads_googleads_v22_services_content_creator_insights_service_proto_init() { + if File_google_ads_googleads_v22_services_content_creator_insights_service_proto != nil { return } - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[0].OneofWrappers = []any{ (*GenerateCreatorInsightsRequest_SearchAttributes_)(nil), (*GenerateCreatorInsightsRequest_SearchBrand_)(nil), (*GenerateCreatorInsightsRequest_SearchChannels)(nil), } - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes[2].OneofWrappers = []any{ (*GenerateTrendingInsightsRequest_SearchAudience)(nil), (*GenerateTrendingInsightsRequest_SearchTopics)(nil), } @@ -1665,17 +1713,17 @@ func file_google_ads_googleads_v21_services_content_creator_insights_service_pro out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_content_creator_insights_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_content_creator_insights_service_proto_rawDesc)), NumEnums: 0, NumMessages: 14, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_content_creator_insights_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_content_creator_insights_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_content_creator_insights_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_content_creator_insights_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_content_creator_insights_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_content_creator_insights_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_content_creator_insights_service_proto = out.File - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_content_creator_insights_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_content_creator_insights_service_proto = out.File + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_content_creator_insights_service_proto_depIdxs = nil } diff --git a/services/content_creator_insights_service_grpc.pb.go b/services/content_creator_insights_service_grpc.pb.go index f8812d91..93a6ff56 100644 --- a/services/content_creator_insights_service_grpc.pb.go +++ b/services/content_creator_insights_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/content_creator_insights_service.proto +// source: google/ads/googleads/v22/services/content_creator_insights_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ContentCreatorInsightsService_GenerateCreatorInsights_FullMethodName = "/google.ads.googleads.v21.services.ContentCreatorInsightsService/GenerateCreatorInsights" - ContentCreatorInsightsService_GenerateTrendingInsights_FullMethodName = "/google.ads.googleads.v21.services.ContentCreatorInsightsService/GenerateTrendingInsights" + ContentCreatorInsightsService_GenerateCreatorInsights_FullMethodName = "/google.ads.googleads.v22.services.ContentCreatorInsightsService/GenerateCreatorInsights" + ContentCreatorInsightsService_GenerateTrendingInsights_FullMethodName = "/google.ads.googleads.v22.services.ContentCreatorInsightsService/GenerateTrendingInsights" ) // ContentCreatorInsightsServiceClient is the client API for ContentCreatorInsightsService service. @@ -213,7 +213,7 @@ func _ContentCreatorInsightsService_GenerateTrendingInsights_Handler(srv interfa // It's only intended for direct use with grpc.RegisterService, // and not to be introspected or modified (even as a copy) var ContentCreatorInsightsService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.ContentCreatorInsightsService", + ServiceName: "google.ads.googleads.v22.services.ContentCreatorInsightsService", HandlerType: (*ContentCreatorInsightsServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -226,5 +226,5 @@ var ContentCreatorInsightsService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/content_creator_insights_service.proto", + Metadata: "google/ads/googleads/v22/services/content_creator_insights_service.proto", } diff --git a/services/conversion_action_service.pb.go b/services/conversion_action_service.pb.go index 29cd2f52..d33437e1 100644 --- a/services/conversion_action_service.pb.go +++ b/services/conversion_action_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_action_service.proto +// source: google/ads/googleads/v22/services/conversion_action_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ConversionActionService.MutateConversionActions][google.ads.googleads.v21.services.ConversionActionService.MutateConversionActions]. +// [ConversionActionService.MutateConversionActions][google.ads.googleads.v22.services.ConversionActionService.MutateConversionActions]. type MutateConversionActionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose conversion actions are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateConversionActionsRequest) Reset() { *x = MutateConversionActionsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateConversionActionsRequest) String() string { func (*MutateConversionActionsRequest) ProtoMessage() {} func (x *MutateConversionActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateConversionActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionActionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionActionsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type ConversionActionOperation struct { func (x *ConversionActionOperation) Reset() { *x = ConversionActionOperation{} - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *ConversionActionOperation) String() string { func (*ConversionActionOperation) ProtoMessage() {} func (x *ConversionActionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *ConversionActionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionActionOperation.ProtoReflect.Descriptor instead. func (*ConversionActionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionActionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -249,7 +249,7 @@ func (*ConversionActionOperation_Update) isConversionActionOperation_Operation() func (*ConversionActionOperation_Remove) isConversionActionOperation_Operation() {} // Response message for -// [ConversionActionService.MutateConversionActions][google.ads.googleads.v21.services.ConversionActionService.MutateConversionActions]. +// [ConversionActionService.MutateConversionActions][google.ads.googleads.v22.services.ConversionActionService.MutateConversionActions]. type MutateConversionActionsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to operation failures in the partial failure mode. @@ -265,7 +265,7 @@ type MutateConversionActionsResponse struct { func (x *MutateConversionActionsResponse) Reset() { *x = MutateConversionActionsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -277,7 +277,7 @@ func (x *MutateConversionActionsResponse) String() string { func (*MutateConversionActionsResponse) ProtoMessage() {} func (x *MutateConversionActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -290,7 +290,7 @@ func (x *MutateConversionActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionActionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionActionsResponse) GetPartialFailureError() *status.Status { @@ -322,7 +322,7 @@ type MutateConversionActionResult struct { func (x *MutateConversionActionResult) Reset() { *x = MutateConversionActionResult{} - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateConversionActionResult) String() string { func (*MutateConversionActionResult) ProtoMessage() {} func (x *MutateConversionActionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateConversionActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionActionResult.ProtoReflect.Descriptor instead. func (*MutateConversionActionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionActionResult) GetResourceName() string { @@ -364,21 +364,21 @@ func (x *MutateConversionActionResult) GetConversionAction() *resources.Conversi return nil } -var File_google_ads_googleads_v21_services_conversion_action_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_action_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -459,7 +459,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -467,17 +467,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x32, 0x32, 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, @@ -486,58 +486,58 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_conversion_action_service_proto_goTypes = []any{ - (*MutateConversionActionsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateConversionActionsRequest - (*ConversionActionOperation)(nil), // 1: google.ads.googleads.v21.services.ConversionActionOperation - (*MutateConversionActionsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateConversionActionsResponse - (*MutateConversionActionResult)(nil), // 3: google.ads.googleads.v21.services.MutateConversionActionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_conversion_action_service_proto_goTypes = []any{ + (*MutateConversionActionsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateConversionActionsRequest + (*ConversionActionOperation)(nil), // 1: google.ads.googleads.v22.services.ConversionActionOperation + (*MutateConversionActionsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateConversionActionsResponse + (*MutateConversionActionResult)(nil), // 3: google.ads.googleads.v22.services.MutateConversionActionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionAction)(nil), // 6: google.ads.googleads.v21.resources.ConversionAction + (*resources.ConversionAction)(nil), // 6: google.ads.googleads.v22.resources.ConversionAction (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_conversion_action_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateConversionActionsRequest.operations:type_name -> google.ads.googleads.v21.services.ConversionActionOperation - 4, // 1: google.ads.googleads.v21.services.MutateConversionActionsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ConversionActionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ConversionActionOperation.create:type_name -> google.ads.googleads.v21.resources.ConversionAction - 6, // 4: google.ads.googleads.v21.services.ConversionActionOperation.update:type_name -> google.ads.googleads.v21.resources.ConversionAction - 7, // 5: google.ads.googleads.v21.services.MutateConversionActionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateConversionActionsResponse.results:type_name -> google.ads.googleads.v21.services.MutateConversionActionResult - 6, // 7: google.ads.googleads.v21.services.MutateConversionActionResult.conversion_action:type_name -> google.ads.googleads.v21.resources.ConversionAction - 0, // 8: google.ads.googleads.v21.services.ConversionActionService.MutateConversionActions:input_type -> google.ads.googleads.v21.services.MutateConversionActionsRequest - 2, // 9: google.ads.googleads.v21.services.ConversionActionService.MutateConversionActions:output_type -> google.ads.googleads.v21.services.MutateConversionActionsResponse +var file_google_ads_googleads_v22_services_conversion_action_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateConversionActionsRequest.operations:type_name -> google.ads.googleads.v22.services.ConversionActionOperation + 4, // 1: google.ads.googleads.v22.services.MutateConversionActionsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ConversionActionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ConversionActionOperation.create:type_name -> google.ads.googleads.v22.resources.ConversionAction + 6, // 4: google.ads.googleads.v22.services.ConversionActionOperation.update:type_name -> google.ads.googleads.v22.resources.ConversionAction + 7, // 5: google.ads.googleads.v22.services.MutateConversionActionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateConversionActionsResponse.results:type_name -> google.ads.googleads.v22.services.MutateConversionActionResult + 6, // 7: google.ads.googleads.v22.services.MutateConversionActionResult.conversion_action:type_name -> google.ads.googleads.v22.resources.ConversionAction + 0, // 8: google.ads.googleads.v22.services.ConversionActionService.MutateConversionActions:input_type -> google.ads.googleads.v22.services.MutateConversionActionsRequest + 2, // 9: google.ads.googleads.v22.services.ConversionActionService.MutateConversionActions:output_type -> google.ads.googleads.v22.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 @@ -545,12 +545,12 @@ var file_google_ads_googleads_v21_services_conversion_action_service_proto_depId 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_action_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_action_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_action_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_action_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_action_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_action_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes[1].OneofWrappers = []any{ (*ConversionActionOperation_Create)(nil), (*ConversionActionOperation_Update)(nil), (*ConversionActionOperation_Remove)(nil), @@ -559,17 +559,17 @@ func file_google_ads_googleads_v21_services_conversion_action_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_action_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_action_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_action_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_action_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_action_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_action_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_action_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_action_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_action_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_action_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_action_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_action_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_action_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 29b162b7..1b891e68 100644 --- a/services/conversion_action_service_grpc.pb.go +++ b/services/conversion_action_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_action_service.proto +// source: google/ads/googleads/v22/services/conversion_action_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionActionService_MutateConversionActions_FullMethodName = "/google.ads.googleads.v21.services.ConversionActionService/MutateConversionActions" + ConversionActionService_MutateConversionActions_FullMethodName = "/google.ads.googleads.v22.services.ConversionActionService/MutateConversionActions" ) // ConversionActionServiceClient is the client API for ConversionActionService service. @@ -169,7 +169,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.v21.services.ConversionActionService", + ServiceName: "google.ads.googleads.v22.services.ConversionActionService", HandlerType: (*ConversionActionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -178,5 +178,5 @@ var ConversionActionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_action_service.proto", + Metadata: "google/ads/googleads/v22/services/conversion_action_service.proto", } diff --git a/services/conversion_adjustment_upload_service.pb.go b/services/conversion_adjustment_upload_service.pb.go index e9568cb1..24fa055f 100644 --- a/services/conversion_adjustment_upload_service.pb.go +++ b/services/conversion_adjustment_upload_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_adjustment_upload_service.proto +// source: google/ads/googleads/v22/services/conversion_adjustment_upload_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v21.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. +// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v22.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. type UploadConversionAdjustmentsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer performing the upload. @@ -70,7 +70,7 @@ type UploadConversionAdjustmentsRequest struct { func (x *UploadConversionAdjustmentsRequest) Reset() { *x = UploadConversionAdjustmentsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82,7 +82,7 @@ func (x *UploadConversionAdjustmentsRequest) String() string { func (*UploadConversionAdjustmentsRequest) ProtoMessage() {} func (x *UploadConversionAdjustmentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95,7 +95,7 @@ func (x *UploadConversionAdjustmentsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UploadConversionAdjustmentsRequest.ProtoReflect.Descriptor instead. func (*UploadConversionAdjustmentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{0} } func (x *UploadConversionAdjustmentsRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ func (x *UploadConversionAdjustmentsRequest) GetJobId() int32 { } // Response message for -// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v21.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. +// [ConversionAdjustmentUploadService.UploadConversionAdjustments][google.ads.googleads.v22.services.ConversionAdjustmentUploadService.UploadConversionAdjustments]. type UploadConversionAdjustmentsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to conversion adjustment failures in the partial @@ -156,7 +156,7 @@ type UploadConversionAdjustmentsResponse struct { func (x *UploadConversionAdjustmentsResponse) Reset() { *x = UploadConversionAdjustmentsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *UploadConversionAdjustmentsResponse) String() string { func (*UploadConversionAdjustmentsResponse) ProtoMessage() {} func (x *UploadConversionAdjustmentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *UploadConversionAdjustmentsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use UploadConversionAdjustmentsResponse.ProtoReflect.Descriptor instead. func (*UploadConversionAdjustmentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{1} } func (x *UploadConversionAdjustmentsResponse) GetPartialFailureError() *status.Status { @@ -226,7 +226,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.v21.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.v22.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. @@ -254,7 +254,7 @@ type ConversionAdjustment struct { func (x *ConversionAdjustment) Reset() { *x = ConversionAdjustment{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -266,7 +266,7 @@ func (x *ConversionAdjustment) String() string { func (*ConversionAdjustment) ProtoMessage() {} func (x *ConversionAdjustment) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -279,7 +279,7 @@ func (x *ConversionAdjustment) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAdjustment.ProtoReflect.Descriptor instead. func (*ConversionAdjustment) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{2} } func (x *ConversionAdjustment) GetGclidDateTimePair() *GclidDateTimePair { @@ -360,7 +360,7 @@ type RestatementValue struct { func (x *RestatementValue) Reset() { *x = RestatementValue{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -372,7 +372,7 @@ func (x *RestatementValue) String() string { func (*RestatementValue) ProtoMessage() {} func (x *RestatementValue) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -385,7 +385,7 @@ func (x *RestatementValue) ProtoReflect() protoreflect.Message { // Deprecated: Use RestatementValue.ProtoReflect.Descriptor instead. func (*RestatementValue) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{3} } func (x *RestatementValue) GetAdjustedValue() float64 { @@ -419,7 +419,7 @@ type GclidDateTimePair struct { func (x *GclidDateTimePair) Reset() { *x = GclidDateTimePair{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -431,7 +431,7 @@ func (x *GclidDateTimePair) String() string { func (*GclidDateTimePair) ProtoMessage() {} func (x *GclidDateTimePair) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -444,7 +444,7 @@ func (x *GclidDateTimePair) ProtoReflect() protoreflect.Message { // Deprecated: Use GclidDateTimePair.ProtoReflect.Descriptor instead. func (*GclidDateTimePair) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{4} } func (x *GclidDateTimePair) GetGclid() string { @@ -475,14 +475,14 @@ 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.v21.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.v22.enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType" json:"adjustment_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ConversionAdjustmentResult) Reset() { *x = ConversionAdjustmentResult{} - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -494,7 +494,7 @@ func (x *ConversionAdjustmentResult) String() string { func (*ConversionAdjustmentResult) ProtoMessage() {} func (x *ConversionAdjustmentResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -507,7 +507,7 @@ func (x *ConversionAdjustmentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionAdjustmentResult.ProtoReflect.Descriptor instead. func (*ConversionAdjustmentResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP(), []int{5} } func (x *ConversionAdjustmentResult) GetGclidDateTimePair() *GclidDateTimePair { @@ -545,22 +545,22 @@ func (x *ConversionAdjustmentResult) GetAdjustmentType() enums.ConversionAdjustm return enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType(0) } -var File_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -578,7 +578,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -599,7 +599,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -608,7 +608,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -623,7 +623,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -631,13 +631,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -670,7 +670,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -684,7 +684,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -698,11 +698,11 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -710,7 +710,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x32, 0x32, 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, @@ -719,61 +719,61 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_goTypes = []any{ - (*UploadConversionAdjustmentsRequest)(nil), // 0: google.ads.googleads.v21.services.UploadConversionAdjustmentsRequest - (*UploadConversionAdjustmentsResponse)(nil), // 1: google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse - (*ConversionAdjustment)(nil), // 2: google.ads.googleads.v21.services.ConversionAdjustment - (*RestatementValue)(nil), // 3: google.ads.googleads.v21.services.RestatementValue - (*GclidDateTimePair)(nil), // 4: google.ads.googleads.v21.services.GclidDateTimePair - (*ConversionAdjustmentResult)(nil), // 5: google.ads.googleads.v21.services.ConversionAdjustmentResult +var file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_goTypes = []any{ + (*UploadConversionAdjustmentsRequest)(nil), // 0: google.ads.googleads.v22.services.UploadConversionAdjustmentsRequest + (*UploadConversionAdjustmentsResponse)(nil), // 1: google.ads.googleads.v22.services.UploadConversionAdjustmentsResponse + (*ConversionAdjustment)(nil), // 2: google.ads.googleads.v22.services.ConversionAdjustment + (*RestatementValue)(nil), // 3: google.ads.googleads.v22.services.RestatementValue + (*GclidDateTimePair)(nil), // 4: google.ads.googleads.v22.services.GclidDateTimePair + (*ConversionAdjustmentResult)(nil), // 5: google.ads.googleads.v22.services.ConversionAdjustmentResult (*status.Status)(nil), // 6: google.rpc.Status - (enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 7: google.ads.googleads.v21.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - (*common.UserIdentifier)(nil), // 8: google.ads.googleads.v21.common.UserIdentifier -} -var file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.UploadConversionAdjustmentsRequest.conversion_adjustments:type_name -> google.ads.googleads.v21.services.ConversionAdjustment - 6, // 1: google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 2: google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse.results:type_name -> google.ads.googleads.v21.services.ConversionAdjustmentResult - 4, // 3: google.ads.googleads.v21.services.ConversionAdjustment.gclid_date_time_pair:type_name -> google.ads.googleads.v21.services.GclidDateTimePair - 7, // 4: google.ads.googleads.v21.services.ConversionAdjustment.adjustment_type:type_name -> google.ads.googleads.v21.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - 3, // 5: google.ads.googleads.v21.services.ConversionAdjustment.restatement_value:type_name -> google.ads.googleads.v21.services.RestatementValue - 8, // 6: google.ads.googleads.v21.services.ConversionAdjustment.user_identifiers:type_name -> google.ads.googleads.v21.common.UserIdentifier - 4, // 7: google.ads.googleads.v21.services.ConversionAdjustmentResult.gclid_date_time_pair:type_name -> google.ads.googleads.v21.services.GclidDateTimePair - 7, // 8: google.ads.googleads.v21.services.ConversionAdjustmentResult.adjustment_type:type_name -> google.ads.googleads.v21.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType - 0, // 9: google.ads.googleads.v21.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:input_type -> google.ads.googleads.v21.services.UploadConversionAdjustmentsRequest - 1, // 10: google.ads.googleads.v21.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:output_type -> google.ads.googleads.v21.services.UploadConversionAdjustmentsResponse + (enums.ConversionAdjustmentTypeEnum_ConversionAdjustmentType)(0), // 7: google.ads.googleads.v22.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + (*common.UserIdentifier)(nil), // 8: google.ads.googleads.v22.common.UserIdentifier +} +var file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.UploadConversionAdjustmentsRequest.conversion_adjustments:type_name -> google.ads.googleads.v22.services.ConversionAdjustment + 6, // 1: google.ads.googleads.v22.services.UploadConversionAdjustmentsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 2: google.ads.googleads.v22.services.UploadConversionAdjustmentsResponse.results:type_name -> google.ads.googleads.v22.services.ConversionAdjustmentResult + 4, // 3: google.ads.googleads.v22.services.ConversionAdjustment.gclid_date_time_pair:type_name -> google.ads.googleads.v22.services.GclidDateTimePair + 7, // 4: google.ads.googleads.v22.services.ConversionAdjustment.adjustment_type:type_name -> google.ads.googleads.v22.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + 3, // 5: google.ads.googleads.v22.services.ConversionAdjustment.restatement_value:type_name -> google.ads.googleads.v22.services.RestatementValue + 8, // 6: google.ads.googleads.v22.services.ConversionAdjustment.user_identifiers:type_name -> google.ads.googleads.v22.common.UserIdentifier + 4, // 7: google.ads.googleads.v22.services.ConversionAdjustmentResult.gclid_date_time_pair:type_name -> google.ads.googleads.v22.services.GclidDateTimePair + 7, // 8: google.ads.googleads.v22.services.ConversionAdjustmentResult.adjustment_type:type_name -> google.ads.googleads.v22.enums.ConversionAdjustmentTypeEnum.ConversionAdjustmentType + 0, // 9: google.ads.googleads.v22.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:input_type -> google.ads.googleads.v22.services.UploadConversionAdjustmentsRequest + 1, // 10: google.ads.googleads.v22.services.ConversionAdjustmentUploadService.UploadConversionAdjustments:output_type -> google.ads.googleads.v22.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 @@ -781,31 +781,31 @@ var file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_ 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes[5].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_adjustment_upload_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_adjustment_upload_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 f193997c..367441b8 100644 --- a/services/conversion_adjustment_upload_service_grpc.pb.go +++ b/services/conversion_adjustment_upload_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_adjustment_upload_service.proto +// source: google/ads/googleads/v22/services/conversion_adjustment_upload_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName = "/google.ads.googleads.v21.services.ConversionAdjustmentUploadService/UploadConversionAdjustments" + ConversionAdjustmentUploadService_UploadConversionAdjustments_FullMethodName = "/google.ads.googleads.v22.services.ConversionAdjustmentUploadService/UploadConversionAdjustments" ) // ConversionAdjustmentUploadServiceClient is the client API for ConversionAdjustmentUploadService service. @@ -149,7 +149,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.v21.services.ConversionAdjustmentUploadService", + ServiceName: "google.ads.googleads.v22.services.ConversionAdjustmentUploadService", HandlerType: (*ConversionAdjustmentUploadServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +158,5 @@ var ConversionAdjustmentUploadService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_adjustment_upload_service.proto", + Metadata: "google/ads/googleads/v22/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 7b16ecb9..c71c32a2 100644 --- a/services/conversion_custom_variable_service.pb.go +++ b/services/conversion_custom_variable_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_custom_variable_service.proto +// source: google/ads/googleads/v22/services/conversion_custom_variable_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v21.services.ConversionCustomVariableService.MutateConversionCustomVariables]. +// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v22.services.ConversionCustomVariableService.MutateConversionCustomVariables]. type MutateConversionCustomVariablesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose conversion custom variables are @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateConversionCustomVariablesRequest) Reset() { *x = MutateConversionCustomVariablesRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateConversionCustomVariablesRequest) String() string { func (*MutateConversionCustomVariablesRequest) ProtoMessage() {} func (x *MutateConversionCustomVariablesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateConversionCustomVariablesRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateConversionCustomVariablesRequest.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariablesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionCustomVariablesRequest) GetCustomerId() string { @@ -148,7 +148,7 @@ type ConversionCustomVariableOperation struct { func (x *ConversionCustomVariableOperation) Reset() { *x = ConversionCustomVariableOperation{} - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *ConversionCustomVariableOperation) String() string { func (*ConversionCustomVariableOperation) ProtoMessage() {} func (x *ConversionCustomVariableOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *ConversionCustomVariableOperation) ProtoReflect() protoreflect.Message // Deprecated: Use ConversionCustomVariableOperation.ProtoReflect.Descriptor instead. func (*ConversionCustomVariableOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionCustomVariableOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -229,7 +229,7 @@ func (*ConversionCustomVariableOperation_Create) isConversionCustomVariableOpera func (*ConversionCustomVariableOperation_Update) isConversionCustomVariableOperation_Operation() {} // Response message for -// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v21.services.ConversionCustomVariableService.MutateConversionCustomVariables]. +// [ConversionCustomVariableService.MutateConversionCustomVariables][google.ads.googleads.v22.services.ConversionCustomVariableService.MutateConversionCustomVariables]. type MutateConversionCustomVariablesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to operation failures in the partial failure mode. @@ -245,7 +245,7 @@ type MutateConversionCustomVariablesResponse struct { func (x *MutateConversionCustomVariablesResponse) Reset() { *x = MutateConversionCustomVariablesResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -257,7 +257,7 @@ func (x *MutateConversionCustomVariablesResponse) String() string { func (*MutateConversionCustomVariablesResponse) ProtoMessage() {} func (x *MutateConversionCustomVariablesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -270,7 +270,7 @@ func (x *MutateConversionCustomVariablesResponse) ProtoReflect() protoreflect.Me // Deprecated: Use MutateConversionCustomVariablesResponse.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariablesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionCustomVariablesResponse) GetPartialFailureError() *status.Status { @@ -302,7 +302,7 @@ type MutateConversionCustomVariableResult struct { func (x *MutateConversionCustomVariableResult) Reset() { *x = MutateConversionCustomVariableResult{} - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *MutateConversionCustomVariableResult) String() string { func (*MutateConversionCustomVariableResult) ProtoMessage() {} func (x *MutateConversionCustomVariableResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *MutateConversionCustomVariableResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateConversionCustomVariableResult.ProtoReflect.Descriptor instead. func (*MutateConversionCustomVariableResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionCustomVariableResult) GetResourceName() string { @@ -344,22 +344,22 @@ func (x *MutateConversionCustomVariableResult) GetConversionCustomVariable() *re return nil } -var File_google_ads_googleads_v21_services_conversion_custom_variable_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_custom_variable_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -380,7 +380,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -393,7 +393,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -406,12 +406,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -425,7 +425,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -451,17 +451,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x44, 0x3a, 0x01, 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -471,59 +471,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_goTypes = []any{ - (*MutateConversionCustomVariablesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest - (*ConversionCustomVariableOperation)(nil), // 1: google.ads.googleads.v21.services.ConversionCustomVariableOperation - (*MutateConversionCustomVariablesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse - (*MutateConversionCustomVariableResult)(nil), // 3: google.ads.googleads.v21.services.MutateConversionCustomVariableResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_goTypes = []any{ + (*MutateConversionCustomVariablesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest + (*ConversionCustomVariableOperation)(nil), // 1: google.ads.googleads.v22.services.ConversionCustomVariableOperation + (*MutateConversionCustomVariablesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateConversionCustomVariablesResponse + (*MutateConversionCustomVariableResult)(nil), // 3: google.ads.googleads.v22.services.MutateConversionCustomVariableResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionCustomVariable)(nil), // 6: google.ads.googleads.v21.resources.ConversionCustomVariable + (*resources.ConversionCustomVariable)(nil), // 6: google.ads.googleads.v22.resources.ConversionCustomVariable (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest.operations:type_name -> google.ads.googleads.v21.services.ConversionCustomVariableOperation - 4, // 1: google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ConversionCustomVariableOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ConversionCustomVariableOperation.create:type_name -> google.ads.googleads.v21.resources.ConversionCustomVariable - 6, // 4: google.ads.googleads.v21.services.ConversionCustomVariableOperation.update:type_name -> google.ads.googleads.v21.resources.ConversionCustomVariable - 7, // 5: google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse.results:type_name -> google.ads.googleads.v21.services.MutateConversionCustomVariableResult - 6, // 7: google.ads.googleads.v21.services.MutateConversionCustomVariableResult.conversion_custom_variable:type_name -> google.ads.googleads.v21.resources.ConversionCustomVariable - 0, // 8: google.ads.googleads.v21.services.ConversionCustomVariableService.MutateConversionCustomVariables:input_type -> google.ads.googleads.v21.services.MutateConversionCustomVariablesRequest - 2, // 9: google.ads.googleads.v21.services.ConversionCustomVariableService.MutateConversionCustomVariables:output_type -> google.ads.googleads.v21.services.MutateConversionCustomVariablesResponse +var file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest.operations:type_name -> google.ads.googleads.v22.services.ConversionCustomVariableOperation + 4, // 1: google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ConversionCustomVariableOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ConversionCustomVariableOperation.create:type_name -> google.ads.googleads.v22.resources.ConversionCustomVariable + 6, // 4: google.ads.googleads.v22.services.ConversionCustomVariableOperation.update:type_name -> google.ads.googleads.v22.resources.ConversionCustomVariable + 7, // 5: google.ads.googleads.v22.services.MutateConversionCustomVariablesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateConversionCustomVariablesResponse.results:type_name -> google.ads.googleads.v22.services.MutateConversionCustomVariableResult + 6, // 7: google.ads.googleads.v22.services.MutateConversionCustomVariableResult.conversion_custom_variable:type_name -> google.ads.googleads.v22.resources.ConversionCustomVariable + 0, // 8: google.ads.googleads.v22.services.ConversionCustomVariableService.MutateConversionCustomVariables:input_type -> google.ads.googleads.v22.services.MutateConversionCustomVariablesRequest + 2, // 9: google.ads.googleads.v22.services.ConversionCustomVariableService.MutateConversionCustomVariables:output_type -> google.ads.googleads.v22.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 @@ -531,12 +531,12 @@ var file_google_ads_googleads_v21_services_conversion_custom_variable_service_pr 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_custom_variable_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_custom_variable_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes[1].OneofWrappers = []any{ (*ConversionCustomVariableOperation_Create)(nil), (*ConversionCustomVariableOperation_Update)(nil), } @@ -544,17 +544,17 @@ func file_google_ads_googleads_v21_services_conversion_custom_variable_service_p out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_custom_variable_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_custom_variable_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 e600b862..40933db9 100644 --- a/services/conversion_custom_variable_service_grpc.pb.go +++ b/services/conversion_custom_variable_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_custom_variable_service.proto +// source: google/ads/googleads/v22/services/conversion_custom_variable_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName = "/google.ads.googleads.v21.services.ConversionCustomVariableService/MutateConversionCustomVariables" + ConversionCustomVariableService_MutateConversionCustomVariables_FullMethodName = "/google.ads.googleads.v22.services.ConversionCustomVariableService/MutateConversionCustomVariables" ) // ConversionCustomVariableServiceClient is the client API for ConversionCustomVariableService service. @@ -153,7 +153,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.v21.services.ConversionCustomVariableService", + ServiceName: "google.ads.googleads.v22.services.ConversionCustomVariableService", HandlerType: (*ConversionCustomVariableServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -162,5 +162,5 @@ var ConversionCustomVariableService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_custom_variable_service.proto", + Metadata: "google/ads/googleads/v22/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 24a70416..e69f1c9d 100644 --- a/services/conversion_goal_campaign_config_service.pb.go +++ b/services/conversion_goal_campaign_config_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_goal_campaign_config_service.proto +// source: google/ads/googleads/v22/services/conversion_goal_campaign_config_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs][google.ads.googleads.v21.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs]. +// [ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs][google.ads.googleads.v22.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs]. type MutateConversionGoalCampaignConfigsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose custom conversion goals are being @@ -54,14 +54,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateConversionGoalCampaignConfigsRequest) Reset() { *x = MutateConversionGoalCampaignConfigsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateConversionGoalCampaignConfigsRequest) String() string { func (*MutateConversionGoalCampaignConfigsRequest) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MutateConversionGoalCampaignConfigsRequest) ProtoReflect() protoreflect // Deprecated: Use MutateConversionGoalCampaignConfigsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionGoalCampaignConfigsRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ type ConversionGoalCampaignConfigOperation struct { func (x *ConversionGoalCampaignConfigOperation) Reset() { *x = ConversionGoalCampaignConfigOperation{} - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *ConversionGoalCampaignConfigOperation) String() string { func (*ConversionGoalCampaignConfigOperation) ProtoMessage() {} func (x *ConversionGoalCampaignConfigOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *ConversionGoalCampaignConfigOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use ConversionGoalCampaignConfigOperation.ProtoReflect.Descriptor instead. func (*ConversionGoalCampaignConfigOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionGoalCampaignConfigOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -209,7 +209,7 @@ type MutateConversionGoalCampaignConfigsResponse struct { func (x *MutateConversionGoalCampaignConfigsResponse) Reset() { *x = MutateConversionGoalCampaignConfigsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -221,7 +221,7 @@ func (x *MutateConversionGoalCampaignConfigsResponse) String() string { func (*MutateConversionGoalCampaignConfigsResponse) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -234,7 +234,7 @@ func (x *MutateConversionGoalCampaignConfigsResponse) ProtoReflect() protoreflec // Deprecated: Use MutateConversionGoalCampaignConfigsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionGoalCampaignConfigsResponse) GetResults() []*MutateConversionGoalCampaignConfigResult { @@ -259,7 +259,7 @@ type MutateConversionGoalCampaignConfigResult struct { func (x *MutateConversionGoalCampaignConfigResult) Reset() { *x = MutateConversionGoalCampaignConfigResult{} - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -271,7 +271,7 @@ func (x *MutateConversionGoalCampaignConfigResult) String() string { func (*MutateConversionGoalCampaignConfigResult) ProtoMessage() {} func (x *MutateConversionGoalCampaignConfigResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -284,7 +284,7 @@ func (x *MutateConversionGoalCampaignConfigResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateConversionGoalCampaignConfigResult.ProtoReflect.Descriptor instead. func (*MutateConversionGoalCampaignConfigResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionGoalCampaignConfigResult) GetResourceName() string { @@ -301,22 +301,22 @@ func (x *MutateConversionGoalCampaignConfigResult) GetConversionGoalCampaignConf return nil } -var File_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -337,7 +337,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, + 0x76, 0x32, 0x32, 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, @@ -347,7 +347,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -360,7 +360,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -370,7 +370,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x76, 0x32, 0x32, 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, @@ -398,18 +398,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, @@ -419,56 +419,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_goTypes = []any{ - (*MutateConversionGoalCampaignConfigsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest - (*ConversionGoalCampaignConfigOperation)(nil), // 1: google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation - (*MutateConversionGoalCampaignConfigsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsResponse - (*MutateConversionGoalCampaignConfigResult)(nil), // 3: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_goTypes = []any{ + (*MutateConversionGoalCampaignConfigsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest + (*ConversionGoalCampaignConfigOperation)(nil), // 1: google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation + (*MutateConversionGoalCampaignConfigsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsResponse + (*MutateConversionGoalCampaignConfigResult)(nil), // 3: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionGoalCampaignConfig)(nil), // 6: google.ads.googleads.v21.resources.ConversionGoalCampaignConfig -} -var file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest.operations:type_name -> google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation - 4, // 1: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation.update:type_name -> google.ads.googleads.v21.resources.ConversionGoalCampaignConfig - 3, // 4: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsResponse.results:type_name -> google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigResult - 6, // 5: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigResult.conversion_goal_campaign_config:type_name -> google.ads.googleads.v21.resources.ConversionGoalCampaignConfig - 0, // 6: google.ads.googleads.v21.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:input_type -> google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsRequest - 2, // 7: google.ads.googleads.v21.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:output_type -> google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigsResponse + (*resources.ConversionGoalCampaignConfig)(nil), // 6: google.ads.googleads.v22.resources.ConversionGoalCampaignConfig +} +var file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest.operations:type_name -> google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation + 4, // 1: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation.update:type_name -> google.ads.googleads.v22.resources.ConversionGoalCampaignConfig + 3, // 4: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsResponse.results:type_name -> google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigResult + 6, // 5: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigResult.conversion_goal_campaign_config:type_name -> google.ads.googleads.v22.resources.ConversionGoalCampaignConfig + 0, // 6: google.ads.googleads.v22.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:input_type -> google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigsRequest + 2, // 7: google.ads.googleads.v22.services.ConversionGoalCampaignConfigService.MutateConversionGoalCampaignConfigs:output_type -> google.ads.googleads.v22.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 @@ -477,30 +477,30 @@ var file_google_ads_googleads_v21_services_conversion_goal_campaign_config_servi } func init() { - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_init() + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto != nil { +func file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes[1].OneofWrappers = []any{ (*ConversionGoalCampaignConfigOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 75db8b8b..13de9fc6 100644 --- a/services/conversion_goal_campaign_config_service_grpc.pb.go +++ b/services/conversion_goal_campaign_config_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_goal_campaign_config_service.proto +// source: google/ads/googleads/v22/services/conversion_goal_campaign_config_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName = "/google.ads.googleads.v21.services.ConversionGoalCampaignConfigService/MutateConversionGoalCampaignConfigs" + ConversionGoalCampaignConfigService_MutateConversionGoalCampaignConfigs_FullMethodName = "/google.ads.googleads.v22.services.ConversionGoalCampaignConfigService/MutateConversionGoalCampaignConfigs" ) // ConversionGoalCampaignConfigServiceClient is the client API for ConversionGoalCampaignConfigService service. @@ -131,7 +131,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.v21.services.ConversionGoalCampaignConfigService", + ServiceName: "google.ads.googleads.v22.services.ConversionGoalCampaignConfigService", HandlerType: (*ConversionGoalCampaignConfigServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var ConversionGoalCampaignConfigService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_goal_campaign_config_service.proto", + Metadata: "google/ads/googleads/v22/services/conversion_goal_campaign_config_service.proto", } diff --git a/services/conversion_upload_service.pb.go b/services/conversion_upload_service.pb.go index 05901fb0..aeaad835 100644 --- a/services/conversion_upload_service.pb.go +++ b/services/conversion_upload_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_upload_service.proto +// source: google/ads/googleads/v22/services/conversion_upload_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v21.services.ConversionUploadService.UploadClickConversions]. +// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v22.services.ConversionUploadService.UploadClickConversions]. type UploadClickConversionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer performing the upload. @@ -70,7 +70,7 @@ type UploadClickConversionsRequest struct { func (x *UploadClickConversionsRequest) Reset() { *x = UploadClickConversionsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -82,7 +82,7 @@ func (x *UploadClickConversionsRequest) String() string { func (*UploadClickConversionsRequest) ProtoMessage() {} func (x *UploadClickConversionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -95,7 +95,7 @@ func (x *UploadClickConversionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadClickConversionsRequest.ProtoReflect.Descriptor instead. func (*UploadClickConversionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{0} } func (x *UploadClickConversionsRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ func (x *UploadClickConversionsRequest) GetJobId() int32 { } // Response message for -// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v21.services.ConversionUploadService.UploadClickConversions]. +// [ConversionUploadService.UploadClickConversions][google.ads.googleads.v22.services.ConversionUploadService.UploadClickConversions]. type UploadClickConversionsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to conversion failures in the partial failure mode. @@ -156,7 +156,7 @@ type UploadClickConversionsResponse struct { func (x *UploadClickConversionsResponse) Reset() { *x = UploadClickConversionsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *UploadClickConversionsResponse) String() string { func (*UploadClickConversionsResponse) ProtoMessage() {} func (x *UploadClickConversionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *UploadClickConversionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadClickConversionsResponse.ProtoReflect.Descriptor instead. func (*UploadClickConversionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{1} } func (x *UploadClickConversionsResponse) GetPartialFailureError() *status.Status { @@ -206,7 +206,7 @@ func (x *UploadClickConversionsResponse) GetJobId() int64 { } // Request message for -// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v21.services.ConversionUploadService.UploadCallConversions]. +// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v22.services.ConversionUploadService.UploadCallConversions]. type UploadCallConversionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer performing the upload. @@ -230,7 +230,7 @@ type UploadCallConversionsRequest struct { func (x *UploadCallConversionsRequest) Reset() { *x = UploadCallConversionsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *UploadCallConversionsRequest) String() string { func (*UploadCallConversionsRequest) ProtoMessage() {} func (x *UploadCallConversionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *UploadCallConversionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadCallConversionsRequest.ProtoReflect.Descriptor instead. func (*UploadCallConversionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{2} } func (x *UploadCallConversionsRequest) GetCustomerId() string { @@ -287,7 +287,7 @@ func (x *UploadCallConversionsRequest) GetValidateOnly() bool { } // Response message for -// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v21.services.ConversionUploadService.UploadCallConversions]. +// [ConversionUploadService.UploadCallConversions][google.ads.googleads.v22.services.ConversionUploadService.UploadCallConversions]. type UploadCallConversionsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to conversion failures in the partial failure mode. @@ -307,7 +307,7 @@ type UploadCallConversionsResponse struct { func (x *UploadCallConversionsResponse) Reset() { *x = UploadCallConversionsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -319,7 +319,7 @@ func (x *UploadCallConversionsResponse) String() string { func (*UploadCallConversionsResponse) ProtoMessage() {} func (x *UploadCallConversionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -332,7 +332,7 @@ func (x *UploadCallConversionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadCallConversionsResponse.ProtoReflect.Descriptor instead. func (*UploadCallConversionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{3} } func (x *UploadCallConversionsResponse) GetPartialFailureError() *status.Status { @@ -390,12 +390,12 @@ 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.v21.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.v22.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"` // Type of the customer associated with the conversion (new or returning). // Accessible only to customers on the allow-list. - CustomerType enums.ConversionCustomerTypeEnum_ConversionCustomerType `protobuf:"varint,26,opt,name=customer_type,json=customerType,proto3,enum=google.ads.googleads.v21.enums.ConversionCustomerTypeEnum_ConversionCustomerType" json:"customer_type,omitempty"` + CustomerType enums.ConversionCustomerTypeEnum_ConversionCustomerType `protobuf:"varint,26,opt,name=customer_type,json=customerType,proto3,enum=google.ads.googleads.v22.enums.ConversionCustomerTypeEnum_ConversionCustomerType" json:"customer_type,omitempty"` // The IP address of the customer when they arrived on the landing page after // an ad click but before a conversion event. This is the IP address of the // customer's device, not the advertiser's server. Google Ads does not support @@ -420,7 +420,7 @@ type ClickConversion struct { func (x *ClickConversion) Reset() { *x = ClickConversion{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -432,7 +432,7 @@ func (x *ClickConversion) String() string { func (*ClickConversion) ProtoMessage() {} func (x *ClickConversion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -445,7 +445,7 @@ func (x *ClickConversion) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickConversion.ProtoReflect.Descriptor instead. func (*ClickConversion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{4} } func (x *ClickConversion) GetGclid() string { @@ -640,7 +640,7 @@ type CallConversion struct { func (x *CallConversion) Reset() { *x = CallConversion{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -652,7 +652,7 @@ func (x *CallConversion) String() string { func (*CallConversion) ProtoMessage() {} func (x *CallConversion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -665,7 +665,7 @@ func (x *CallConversion) ProtoReflect() protoreflect.Message { // Deprecated: Use CallConversion.ProtoReflect.Descriptor instead. func (*CallConversion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{5} } func (x *CallConversion) GetCallerId() string { @@ -738,7 +738,7 @@ type ExternalAttributionData struct { func (x *ExternalAttributionData) Reset() { *x = ExternalAttributionData{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -750,7 +750,7 @@ func (x *ExternalAttributionData) String() string { func (*ExternalAttributionData) ProtoMessage() {} func (x *ExternalAttributionData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -763,7 +763,7 @@ func (x *ExternalAttributionData) ProtoReflect() protoreflect.Message { // Deprecated: Use ExternalAttributionData.ProtoReflect.Descriptor instead. func (*ExternalAttributionData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{6} } func (x *ExternalAttributionData) GetExternalAttributionCredit() float64 { @@ -806,7 +806,7 @@ type ClickConversionResult struct { func (x *ClickConversionResult) Reset() { *x = ClickConversionResult{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -818,7 +818,7 @@ func (x *ClickConversionResult) String() string { func (*ClickConversionResult) ProtoMessage() {} func (x *ClickConversionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -831,7 +831,7 @@ func (x *ClickConversionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ClickConversionResult.ProtoReflect.Descriptor instead. func (*ClickConversionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{7} } func (x *ClickConversionResult) GetGclid() string { @@ -896,7 +896,7 @@ type CallConversionResult struct { func (x *CallConversionResult) Reset() { *x = CallConversionResult{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -908,7 +908,7 @@ func (x *CallConversionResult) String() string { func (*CallConversionResult) ProtoMessage() {} func (x *CallConversionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -921,7 +921,7 @@ func (x *CallConversionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use CallConversionResult.ProtoReflect.Descriptor instead. func (*CallConversionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{8} } func (x *CallConversionResult) GetCallerId() string { @@ -971,7 +971,7 @@ type CustomVariable struct { func (x *CustomVariable) Reset() { *x = CustomVariable{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -983,7 +983,7 @@ func (x *CustomVariable) String() string { func (*CustomVariable) ProtoMessage() {} func (x *CustomVariable) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -996,7 +996,7 @@ func (x *CustomVariable) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomVariable.ProtoReflect.Descriptor instead. func (*CustomVariable) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{9} } func (x *CustomVariable) GetConversionCustomVariable() string { @@ -1034,7 +1034,7 @@ type CartData struct { func (x *CartData) Reset() { *x = CartData{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1046,7 +1046,7 @@ func (x *CartData) String() string { func (*CartData) ProtoMessage() {} func (x *CartData) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1059,7 +1059,7 @@ func (x *CartData) ProtoReflect() protoreflect.Message { // Deprecated: Use CartData.ProtoReflect.Descriptor instead. func (*CartData) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{10} } func (x *CartData) GetMerchantId() int64 { @@ -1110,7 +1110,7 @@ type SessionAttributeKeyValuePair struct { func (x *SessionAttributeKeyValuePair) Reset() { *x = SessionAttributeKeyValuePair{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1122,7 +1122,7 @@ func (x *SessionAttributeKeyValuePair) String() string { func (*SessionAttributeKeyValuePair) ProtoMessage() {} func (x *SessionAttributeKeyValuePair) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1135,7 +1135,7 @@ func (x *SessionAttributeKeyValuePair) ProtoReflect() protoreflect.Message { // Deprecated: Use SessionAttributeKeyValuePair.ProtoReflect.Descriptor instead. func (*SessionAttributeKeyValuePair) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{11} } func (x *SessionAttributeKeyValuePair) GetSessionAttributeKey() string { @@ -1164,7 +1164,7 @@ type SessionAttributesKeyValuePairs struct { func (x *SessionAttributesKeyValuePairs) Reset() { *x = SessionAttributesKeyValuePairs{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1176,7 +1176,7 @@ func (x *SessionAttributesKeyValuePairs) String() string { func (*SessionAttributesKeyValuePairs) ProtoMessage() {} func (x *SessionAttributesKeyValuePairs) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1189,7 +1189,7 @@ func (x *SessionAttributesKeyValuePairs) ProtoReflect() protoreflect.Message { // Deprecated: Use SessionAttributesKeyValuePairs.ProtoReflect.Descriptor instead. func (*SessionAttributesKeyValuePairs) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{12} } func (x *SessionAttributesKeyValuePairs) GetKeyValuePairs() []*SessionAttributeKeyValuePair { @@ -1217,7 +1217,7 @@ type CartData_Item struct { func (x *CartData_Item) Reset() { *x = CartData_Item{} - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1229,7 +1229,7 @@ func (x *CartData_Item) String() string { func (*CartData_Item) ProtoMessage() {} func (x *CartData_Item) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1242,7 +1242,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_v21_services_conversion_upload_service_proto_rawDescGZIP(), []int{10, 0} + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP(), []int{10, 0} } func (x *CartData_Item) GetProductId() string { @@ -1266,28 +1266,28 @@ func (x *CartData_Item) GetUnitPrice() float64 { return 0 } -var File_google_ads_googleads_v21_services_conversion_upload_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_upload_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x3d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x63, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x6f, @@ -1307,7 +1307,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1328,7 +1328,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6c, 0x69, 0x63, 0x6b, + 0x32, 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, 0x28, 0x03, 0x52, 0x05, 0x6a, 0x6f, 0x62, 0x49, 0x64, @@ -1339,7 +1339,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x72, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x66, 0x61, 0x69, @@ -1356,7 +1356,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0xa0, 0x0b, 0x0a, 0x0f, 0x43, 0x6c, 0x69, 0x63, 0x6b, 0x43, 0x6f, 0x6e, 0x76, 0x65, @@ -1383,30 +1383,30 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x74, 0x65, 0x72, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1414,11 +1414,11 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x73, + 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x52, 0x07, 0x63, 0x6f, 0x6e, 0x73, 0x65, 0x6e, 0x74, 0x12, 0x76, 0x0a, 0x0d, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x1a, 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, @@ -1435,7 +1435,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x65, 0x73, 0x5f, 0x6b, 0x65, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x61, 0x69, 0x72, 0x73, 0x18, 0x19, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, + 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, 0x69, 0x72, 0x73, 0x48, 0x00, 0x52, 0x1e, 0x73, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, @@ -1471,12 +1471,12 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x01, 0x01, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1516,7 +1516,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x01, 0x01, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1565,7 +1565,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x6c, 0x6f, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1588,7 +1588,7 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 0x6c, 0x75, 0x65, 0x50, 0x61, 0x69, 0x72, 0x73, 0x12, 0x6c, 0x0a, 0x0f, 0x6b, 0x65, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x5f, 0x70, 0x61, 0x69, 0x72, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x74, 0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x4b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x50, 0x61, 0x69, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0d, 0x6b, 0x65, 0x79, 0x56, 0x61, 0x6c, 0x75, @@ -1597,34 +1597,34 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x6c, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, @@ -1633,82 +1633,82 @@ var file_google_ads_googleads_v21_services_conversion_upload_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 14) -var file_google_ads_googleads_v21_services_conversion_upload_service_proto_goTypes = []any{ - (*UploadClickConversionsRequest)(nil), // 0: google.ads.googleads.v21.services.UploadClickConversionsRequest - (*UploadClickConversionsResponse)(nil), // 1: google.ads.googleads.v21.services.UploadClickConversionsResponse - (*UploadCallConversionsRequest)(nil), // 2: google.ads.googleads.v21.services.UploadCallConversionsRequest - (*UploadCallConversionsResponse)(nil), // 3: google.ads.googleads.v21.services.UploadCallConversionsResponse - (*ClickConversion)(nil), // 4: google.ads.googleads.v21.services.ClickConversion - (*CallConversion)(nil), // 5: google.ads.googleads.v21.services.CallConversion - (*ExternalAttributionData)(nil), // 6: google.ads.googleads.v21.services.ExternalAttributionData - (*ClickConversionResult)(nil), // 7: google.ads.googleads.v21.services.ClickConversionResult - (*CallConversionResult)(nil), // 8: google.ads.googleads.v21.services.CallConversionResult - (*CustomVariable)(nil), // 9: google.ads.googleads.v21.services.CustomVariable - (*CartData)(nil), // 10: google.ads.googleads.v21.services.CartData - (*SessionAttributeKeyValuePair)(nil), // 11: google.ads.googleads.v21.services.SessionAttributeKeyValuePair - (*SessionAttributesKeyValuePairs)(nil), // 12: google.ads.googleads.v21.services.SessionAttributesKeyValuePairs - (*CartData_Item)(nil), // 13: google.ads.googleads.v21.services.CartData.Item + return file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes = make([]protoimpl.MessageInfo, 14) +var file_google_ads_googleads_v22_services_conversion_upload_service_proto_goTypes = []any{ + (*UploadClickConversionsRequest)(nil), // 0: google.ads.googleads.v22.services.UploadClickConversionsRequest + (*UploadClickConversionsResponse)(nil), // 1: google.ads.googleads.v22.services.UploadClickConversionsResponse + (*UploadCallConversionsRequest)(nil), // 2: google.ads.googleads.v22.services.UploadCallConversionsRequest + (*UploadCallConversionsResponse)(nil), // 3: google.ads.googleads.v22.services.UploadCallConversionsResponse + (*ClickConversion)(nil), // 4: google.ads.googleads.v22.services.ClickConversion + (*CallConversion)(nil), // 5: google.ads.googleads.v22.services.CallConversion + (*ExternalAttributionData)(nil), // 6: google.ads.googleads.v22.services.ExternalAttributionData + (*ClickConversionResult)(nil), // 7: google.ads.googleads.v22.services.ClickConversionResult + (*CallConversionResult)(nil), // 8: google.ads.googleads.v22.services.CallConversionResult + (*CustomVariable)(nil), // 9: google.ads.googleads.v22.services.CustomVariable + (*CartData)(nil), // 10: google.ads.googleads.v22.services.CartData + (*SessionAttributeKeyValuePair)(nil), // 11: google.ads.googleads.v22.services.SessionAttributeKeyValuePair + (*SessionAttributesKeyValuePairs)(nil), // 12: google.ads.googleads.v22.services.SessionAttributesKeyValuePairs + (*CartData_Item)(nil), // 13: google.ads.googleads.v22.services.CartData.Item (*status.Status)(nil), // 14: google.rpc.Status - (*common.UserIdentifier)(nil), // 15: google.ads.googleads.v21.common.UserIdentifier - (enums.ConversionEnvironmentEnum_ConversionEnvironment)(0), // 16: google.ads.googleads.v21.enums.ConversionEnvironmentEnum.ConversionEnvironment - (*common.Consent)(nil), // 17: google.ads.googleads.v21.common.Consent - (enums.ConversionCustomerTypeEnum_ConversionCustomerType)(0), // 18: google.ads.googleads.v21.enums.ConversionCustomerTypeEnum.ConversionCustomerType -} -var file_google_ads_googleads_v21_services_conversion_upload_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.services.UploadClickConversionsRequest.conversions:type_name -> google.ads.googleads.v21.services.ClickConversion - 14, // 1: google.ads.googleads.v21.services.UploadClickConversionsResponse.partial_failure_error:type_name -> google.rpc.Status - 7, // 2: google.ads.googleads.v21.services.UploadClickConversionsResponse.results:type_name -> google.ads.googleads.v21.services.ClickConversionResult - 5, // 3: google.ads.googleads.v21.services.UploadCallConversionsRequest.conversions:type_name -> google.ads.googleads.v21.services.CallConversion - 14, // 4: google.ads.googleads.v21.services.UploadCallConversionsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 5: google.ads.googleads.v21.services.UploadCallConversionsResponse.results:type_name -> google.ads.googleads.v21.services.CallConversionResult - 6, // 6: google.ads.googleads.v21.services.ClickConversion.external_attribution_data:type_name -> google.ads.googleads.v21.services.ExternalAttributionData - 9, // 7: google.ads.googleads.v21.services.ClickConversion.custom_variables:type_name -> google.ads.googleads.v21.services.CustomVariable - 10, // 8: google.ads.googleads.v21.services.ClickConversion.cart_data:type_name -> google.ads.googleads.v21.services.CartData - 15, // 9: google.ads.googleads.v21.services.ClickConversion.user_identifiers:type_name -> google.ads.googleads.v21.common.UserIdentifier - 16, // 10: google.ads.googleads.v21.services.ClickConversion.conversion_environment:type_name -> google.ads.googleads.v21.enums.ConversionEnvironmentEnum.ConversionEnvironment - 17, // 11: google.ads.googleads.v21.services.ClickConversion.consent:type_name -> google.ads.googleads.v21.common.Consent - 18, // 12: google.ads.googleads.v21.services.ClickConversion.customer_type:type_name -> google.ads.googleads.v21.enums.ConversionCustomerTypeEnum.ConversionCustomerType - 12, // 13: google.ads.googleads.v21.services.ClickConversion.session_attributes_key_value_pairs:type_name -> google.ads.googleads.v21.services.SessionAttributesKeyValuePairs - 9, // 14: google.ads.googleads.v21.services.CallConversion.custom_variables:type_name -> google.ads.googleads.v21.services.CustomVariable - 17, // 15: google.ads.googleads.v21.services.CallConversion.consent:type_name -> google.ads.googleads.v21.common.Consent - 15, // 16: google.ads.googleads.v21.services.ClickConversionResult.user_identifiers:type_name -> google.ads.googleads.v21.common.UserIdentifier - 13, // 17: google.ads.googleads.v21.services.CartData.items:type_name -> google.ads.googleads.v21.services.CartData.Item - 11, // 18: google.ads.googleads.v21.services.SessionAttributesKeyValuePairs.key_value_pairs:type_name -> google.ads.googleads.v21.services.SessionAttributeKeyValuePair - 0, // 19: google.ads.googleads.v21.services.ConversionUploadService.UploadClickConversions:input_type -> google.ads.googleads.v21.services.UploadClickConversionsRequest - 2, // 20: google.ads.googleads.v21.services.ConversionUploadService.UploadCallConversions:input_type -> google.ads.googleads.v21.services.UploadCallConversionsRequest - 1, // 21: google.ads.googleads.v21.services.ConversionUploadService.UploadClickConversions:output_type -> google.ads.googleads.v21.services.UploadClickConversionsResponse - 3, // 22: google.ads.googleads.v21.services.ConversionUploadService.UploadCallConversions:output_type -> google.ads.googleads.v21.services.UploadCallConversionsResponse + (*common.UserIdentifier)(nil), // 15: google.ads.googleads.v22.common.UserIdentifier + (enums.ConversionEnvironmentEnum_ConversionEnvironment)(0), // 16: google.ads.googleads.v22.enums.ConversionEnvironmentEnum.ConversionEnvironment + (*common.Consent)(nil), // 17: google.ads.googleads.v22.common.Consent + (enums.ConversionCustomerTypeEnum_ConversionCustomerType)(0), // 18: google.ads.googleads.v22.enums.ConversionCustomerTypeEnum.ConversionCustomerType +} +var file_google_ads_googleads_v22_services_conversion_upload_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.services.UploadClickConversionsRequest.conversions:type_name -> google.ads.googleads.v22.services.ClickConversion + 14, // 1: google.ads.googleads.v22.services.UploadClickConversionsResponse.partial_failure_error:type_name -> google.rpc.Status + 7, // 2: google.ads.googleads.v22.services.UploadClickConversionsResponse.results:type_name -> google.ads.googleads.v22.services.ClickConversionResult + 5, // 3: google.ads.googleads.v22.services.UploadCallConversionsRequest.conversions:type_name -> google.ads.googleads.v22.services.CallConversion + 14, // 4: google.ads.googleads.v22.services.UploadCallConversionsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 5: google.ads.googleads.v22.services.UploadCallConversionsResponse.results:type_name -> google.ads.googleads.v22.services.CallConversionResult + 6, // 6: google.ads.googleads.v22.services.ClickConversion.external_attribution_data:type_name -> google.ads.googleads.v22.services.ExternalAttributionData + 9, // 7: google.ads.googleads.v22.services.ClickConversion.custom_variables:type_name -> google.ads.googleads.v22.services.CustomVariable + 10, // 8: google.ads.googleads.v22.services.ClickConversion.cart_data:type_name -> google.ads.googleads.v22.services.CartData + 15, // 9: google.ads.googleads.v22.services.ClickConversion.user_identifiers:type_name -> google.ads.googleads.v22.common.UserIdentifier + 16, // 10: google.ads.googleads.v22.services.ClickConversion.conversion_environment:type_name -> google.ads.googleads.v22.enums.ConversionEnvironmentEnum.ConversionEnvironment + 17, // 11: google.ads.googleads.v22.services.ClickConversion.consent:type_name -> google.ads.googleads.v22.common.Consent + 18, // 12: google.ads.googleads.v22.services.ClickConversion.customer_type:type_name -> google.ads.googleads.v22.enums.ConversionCustomerTypeEnum.ConversionCustomerType + 12, // 13: google.ads.googleads.v22.services.ClickConversion.session_attributes_key_value_pairs:type_name -> google.ads.googleads.v22.services.SessionAttributesKeyValuePairs + 9, // 14: google.ads.googleads.v22.services.CallConversion.custom_variables:type_name -> google.ads.googleads.v22.services.CustomVariable + 17, // 15: google.ads.googleads.v22.services.CallConversion.consent:type_name -> google.ads.googleads.v22.common.Consent + 15, // 16: google.ads.googleads.v22.services.ClickConversionResult.user_identifiers:type_name -> google.ads.googleads.v22.common.UserIdentifier + 13, // 17: google.ads.googleads.v22.services.CartData.items:type_name -> google.ads.googleads.v22.services.CartData.Item + 11, // 18: google.ads.googleads.v22.services.SessionAttributesKeyValuePairs.key_value_pairs:type_name -> google.ads.googleads.v22.services.SessionAttributeKeyValuePair + 0, // 19: google.ads.googleads.v22.services.ConversionUploadService.UploadClickConversions:input_type -> google.ads.googleads.v22.services.UploadClickConversionsRequest + 2, // 20: google.ads.googleads.v22.services.ConversionUploadService.UploadCallConversions:input_type -> google.ads.googleads.v22.services.UploadCallConversionsRequest + 1, // 21: google.ads.googleads.v22.services.ConversionUploadService.UploadClickConversions:output_type -> google.ads.googleads.v22.services.UploadClickConversionsResponse + 3, // 22: google.ads.googleads.v22.services.ConversionUploadService.UploadCallConversions:output_type -> google.ads.googleads.v22.services.UploadCallConversionsResponse 21, // [21:23] is the sub-list for method output_type 19, // [19:21] is the sub-list for method input_type 19, // [19:19] is the sub-list for extension type_name @@ -1716,35 +1716,35 @@ var file_google_ads_googleads_v21_services_conversion_upload_service_proto_depId 0, // [0:19] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_upload_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_upload_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_upload_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_upload_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_upload_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_upload_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[4].OneofWrappers = []any{ (*ClickConversion_SessionAttributesEncoded)(nil), (*ClickConversion_SessionAttributesKeyValuePairs)(nil), } - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes[8].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_upload_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_upload_service_proto_rawDesc)), NumEnums: 0, NumMessages: 14, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_upload_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_upload_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_upload_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_upload_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_upload_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_upload_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_upload_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_upload_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_upload_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_upload_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_upload_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 48210f63..b16c28e6 100644 --- a/services/conversion_upload_service_grpc.pb.go +++ b/services/conversion_upload_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_upload_service.proto +// source: google/ads/googleads/v22/services/conversion_upload_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionUploadService_UploadClickConversions_FullMethodName = "/google.ads.googleads.v21.services.ConversionUploadService/UploadClickConversions" - ConversionUploadService_UploadCallConversions_FullMethodName = "/google.ads.googleads.v21.services.ConversionUploadService/UploadCallConversions" + ConversionUploadService_UploadClickConversions_FullMethodName = "/google.ads.googleads.v22.services.ConversionUploadService/UploadClickConversions" + ConversionUploadService_UploadCallConversions_FullMethodName = "/google.ads.googleads.v22.services.ConversionUploadService/UploadCallConversions" ) // ConversionUploadServiceClient is the client API for ConversionUploadService service. @@ -207,7 +207,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.v21.services.ConversionUploadService", + ServiceName: "google.ads.googleads.v22.services.ConversionUploadService", HandlerType: (*ConversionUploadServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -220,5 +220,5 @@ var ConversionUploadService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_upload_service.proto", + Metadata: "google/ads/googleads/v22/services/conversion_upload_service.proto", } diff --git a/services/conversion_value_rule_service.pb.go b/services/conversion_value_rule_service.pb.go index 713c1a5c..70319344 100644 --- a/services/conversion_value_rule_service.pb.go +++ b/services/conversion_value_rule_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_value_rule_service.proto +// source: google/ads/googleads/v22/services/conversion_value_rule_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v21.services.ConversionValueRuleService.MutateConversionValueRules]. +// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v22.services.ConversionValueRuleService.MutateConversionValueRules]. type MutateConversionValueRulesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose conversion value rules are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateConversionValueRulesRequest) Reset() { *x = MutateConversionValueRulesRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateConversionValueRulesRequest) String() string { func (*MutateConversionValueRulesRequest) ProtoMessage() {} func (x *MutateConversionValueRulesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateConversionValueRulesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRulesRequest.ProtoReflect.Descriptor instead. func (*MutateConversionValueRulesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionValueRulesRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type ConversionValueRuleOperation struct { func (x *ConversionValueRuleOperation) Reset() { *x = ConversionValueRuleOperation{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *ConversionValueRuleOperation) String() string { func (*ConversionValueRuleOperation) ProtoMessage() {} func (x *ConversionValueRuleOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *ConversionValueRuleOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleOperation.ProtoReflect.Descriptor instead. func (*ConversionValueRuleOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionValueRuleOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -249,7 +249,7 @@ func (*ConversionValueRuleOperation_Update) isConversionValueRuleOperation_Opera func (*ConversionValueRuleOperation_Remove) isConversionValueRuleOperation_Operation() {} // Response message for -// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v21.services.ConversionValueRuleService.MutateConversionValueRules]. +// [ConversionValueRuleService.MutateConversionValueRules][google.ads.googleads.v22.services.ConversionValueRuleService.MutateConversionValueRules]. type MutateConversionValueRulesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // All results for the mutate. @@ -265,7 +265,7 @@ type MutateConversionValueRulesResponse struct { func (x *MutateConversionValueRulesResponse) Reset() { *x = MutateConversionValueRulesResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -277,7 +277,7 @@ func (x *MutateConversionValueRulesResponse) String() string { func (*MutateConversionValueRulesResponse) ProtoMessage() {} func (x *MutateConversionValueRulesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -290,7 +290,7 @@ func (x *MutateConversionValueRulesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRulesResponse.ProtoReflect.Descriptor instead. func (*MutateConversionValueRulesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionValueRulesResponse) GetResults() []*MutateConversionValueRuleResult { @@ -322,7 +322,7 @@ type MutateConversionValueRuleResult struct { func (x *MutateConversionValueRuleResult) Reset() { *x = MutateConversionValueRuleResult{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateConversionValueRuleResult) String() string { func (*MutateConversionValueRuleResult) ProtoMessage() {} func (x *MutateConversionValueRuleResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateConversionValueRuleResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateConversionValueRuleResult.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionValueRuleResult) GetResourceName() string { @@ -364,21 +364,21 @@ func (x *MutateConversionValueRuleResult) GetConversionValueRule() *resources.Co return nil } -var File_google_ads_googleads_v21_services_conversion_value_rule_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_value_rule_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -399,7 +399,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -411,7 +411,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -424,13 +424,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, + 0x32, 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, @@ -443,7 +443,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -462,7 +462,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -471,16 +471,16 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -490,59 +490,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_goTypes = []any{ - (*MutateConversionValueRulesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateConversionValueRulesRequest - (*ConversionValueRuleOperation)(nil), // 1: google.ads.googleads.v21.services.ConversionValueRuleOperation - (*MutateConversionValueRulesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateConversionValueRulesResponse - (*MutateConversionValueRuleResult)(nil), // 3: google.ads.googleads.v21.services.MutateConversionValueRuleResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_goTypes = []any{ + (*MutateConversionValueRulesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateConversionValueRulesRequest + (*ConversionValueRuleOperation)(nil), // 1: google.ads.googleads.v22.services.ConversionValueRuleOperation + (*MutateConversionValueRulesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateConversionValueRulesResponse + (*MutateConversionValueRuleResult)(nil), // 3: google.ads.googleads.v22.services.MutateConversionValueRuleResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionValueRule)(nil), // 6: google.ads.googleads.v21.resources.ConversionValueRule + (*resources.ConversionValueRule)(nil), // 6: google.ads.googleads.v22.resources.ConversionValueRule (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateConversionValueRulesRequest.operations:type_name -> google.ads.googleads.v21.services.ConversionValueRuleOperation - 4, // 1: google.ads.googleads.v21.services.MutateConversionValueRulesRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ConversionValueRuleOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ConversionValueRuleOperation.create:type_name -> google.ads.googleads.v21.resources.ConversionValueRule - 6, // 4: google.ads.googleads.v21.services.ConversionValueRuleOperation.update:type_name -> google.ads.googleads.v21.resources.ConversionValueRule - 3, // 5: google.ads.googleads.v21.services.MutateConversionValueRulesResponse.results:type_name -> google.ads.googleads.v21.services.MutateConversionValueRuleResult - 7, // 6: google.ads.googleads.v21.services.MutateConversionValueRulesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v21.services.MutateConversionValueRuleResult.conversion_value_rule:type_name -> google.ads.googleads.v21.resources.ConversionValueRule - 0, // 8: google.ads.googleads.v21.services.ConversionValueRuleService.MutateConversionValueRules:input_type -> google.ads.googleads.v21.services.MutateConversionValueRulesRequest - 2, // 9: google.ads.googleads.v21.services.ConversionValueRuleService.MutateConversionValueRules:output_type -> google.ads.googleads.v21.services.MutateConversionValueRulesResponse +var file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateConversionValueRulesRequest.operations:type_name -> google.ads.googleads.v22.services.ConversionValueRuleOperation + 4, // 1: google.ads.googleads.v22.services.MutateConversionValueRulesRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ConversionValueRuleOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ConversionValueRuleOperation.create:type_name -> google.ads.googleads.v22.resources.ConversionValueRule + 6, // 4: google.ads.googleads.v22.services.ConversionValueRuleOperation.update:type_name -> google.ads.googleads.v22.resources.ConversionValueRule + 3, // 5: google.ads.googleads.v22.services.MutateConversionValueRulesResponse.results:type_name -> google.ads.googleads.v22.services.MutateConversionValueRuleResult + 7, // 6: google.ads.googleads.v22.services.MutateConversionValueRulesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v22.services.MutateConversionValueRuleResult.conversion_value_rule:type_name -> google.ads.googleads.v22.resources.ConversionValueRule + 0, // 8: google.ads.googleads.v22.services.ConversionValueRuleService.MutateConversionValueRules:input_type -> google.ads.googleads.v22.services.MutateConversionValueRulesRequest + 2, // 9: google.ads.googleads.v22.services.ConversionValueRuleService.MutateConversionValueRules:output_type -> google.ads.googleads.v22.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 @@ -550,12 +550,12 @@ var file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_d 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_value_rule_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_value_rule_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes[1].OneofWrappers = []any{ (*ConversionValueRuleOperation_Create)(nil), (*ConversionValueRuleOperation_Update)(nil), (*ConversionValueRuleOperation_Remove)(nil), @@ -564,17 +564,17 @@ func file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_value_rule_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_value_rule_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 3b5dafaf..dc53ee44 100644 --- a/services/conversion_value_rule_service_grpc.pb.go +++ b/services/conversion_value_rule_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_value_rule_service.proto +// source: google/ads/googleads/v22/services/conversion_value_rule_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionValueRuleService_MutateConversionValueRules_FullMethodName = "/google.ads.googleads.v21.services.ConversionValueRuleService/MutateConversionValueRules" + ConversionValueRuleService_MutateConversionValueRules_FullMethodName = "/google.ads.googleads.v22.services.ConversionValueRuleService/MutateConversionValueRules" ) // ConversionValueRuleServiceClient is the client API for ConversionValueRuleService service. @@ -131,7 +131,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.v21.services.ConversionValueRuleService", + ServiceName: "google.ads.googleads.v22.services.ConversionValueRuleService", HandlerType: (*ConversionValueRuleServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var ConversionValueRuleService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_value_rule_service.proto", + Metadata: "google/ads/googleads/v22/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 19c8a429..8635b4e1 100644 --- a/services/conversion_value_rule_set_service.pb.go +++ b/services/conversion_value_rule_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_value_rule_set_service.proto +// source: google/ads/googleads/v22/services/conversion_value_rule_set_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v21.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. +// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v22.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. type MutateConversionValueRuleSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose conversion value rule sets are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateConversionValueRuleSetsRequest) Reset() { *x = MutateConversionValueRuleSetsRequest{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateConversionValueRuleSetsRequest) String() string { func (*MutateConversionValueRuleSetsRequest) ProtoMessage() {} func (x *MutateConversionValueRuleSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateConversionValueRuleSetsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateConversionValueRuleSetsRequest.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateConversionValueRuleSetsRequest) GetCustomerId() string { @@ -149,7 +149,7 @@ type ConversionValueRuleSetOperation struct { func (x *ConversionValueRuleSetOperation) Reset() { *x = ConversionValueRuleSetOperation{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -161,7 +161,7 @@ func (x *ConversionValueRuleSetOperation) String() string { func (*ConversionValueRuleSetOperation) ProtoMessage() {} func (x *ConversionValueRuleSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -174,7 +174,7 @@ func (x *ConversionValueRuleSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionValueRuleSetOperation.ProtoReflect.Descriptor instead. func (*ConversionValueRuleSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{1} } func (x *ConversionValueRuleSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -249,7 +249,7 @@ func (*ConversionValueRuleSetOperation_Update) isConversionValueRuleSetOperation func (*ConversionValueRuleSetOperation_Remove) isConversionValueRuleSetOperation_Operation() {} // Response message for -// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v21.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. +// [ConversionValueRuleSetService.MutateConversionValueRuleSets][google.ads.googleads.v22.services.ConversionValueRuleSetService.MutateConversionValueRuleSets]. type MutateConversionValueRuleSetsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // All results for the mutate. @@ -265,7 +265,7 @@ type MutateConversionValueRuleSetsResponse struct { func (x *MutateConversionValueRuleSetsResponse) Reset() { *x = MutateConversionValueRuleSetsResponse{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -277,7 +277,7 @@ func (x *MutateConversionValueRuleSetsResponse) String() string { func (*MutateConversionValueRuleSetsResponse) ProtoMessage() {} func (x *MutateConversionValueRuleSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -290,7 +290,7 @@ func (x *MutateConversionValueRuleSetsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateConversionValueRuleSetsResponse.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateConversionValueRuleSetsResponse) GetResults() []*MutateConversionValueRuleSetResult { @@ -322,7 +322,7 @@ type MutateConversionValueRuleSetResult struct { func (x *MutateConversionValueRuleSetResult) Reset() { *x = MutateConversionValueRuleSetResult{} - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *MutateConversionValueRuleSetResult) String() string { func (*MutateConversionValueRuleSetResult) ProtoMessage() {} func (x *MutateConversionValueRuleSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *MutateConversionValueRuleSetResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateConversionValueRuleSetResult.ProtoReflect.Descriptor instead. func (*MutateConversionValueRuleSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateConversionValueRuleSetResult) GetResourceName() string { @@ -364,22 +364,22 @@ func (x *MutateConversionValueRuleSetResult) GetConversionValueRuleSet() *resour return nil } -var File_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -412,7 +412,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -425,13 +425,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -445,7 +445,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, @@ -464,7 +464,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -474,17 +474,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x42, 0x3a, 0x01, 0x2a, 0x22, 0x3d, 0x2f, 0x76, 0x32, 0x32, 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, @@ -494,59 +494,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_goTypes = []any{ - (*MutateConversionValueRuleSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest - (*ConversionValueRuleSetOperation)(nil), // 1: google.ads.googleads.v21.services.ConversionValueRuleSetOperation - (*MutateConversionValueRuleSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse - (*MutateConversionValueRuleSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateConversionValueRuleSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_goTypes = []any{ + (*MutateConversionValueRuleSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest + (*ConversionValueRuleSetOperation)(nil), // 1: google.ads.googleads.v22.services.ConversionValueRuleSetOperation + (*MutateConversionValueRuleSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateConversionValueRuleSetsResponse + (*MutateConversionValueRuleSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateConversionValueRuleSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ConversionValueRuleSet)(nil), // 6: google.ads.googleads.v21.resources.ConversionValueRuleSet + (*resources.ConversionValueRuleSet)(nil), // 6: google.ads.googleads.v22.resources.ConversionValueRuleSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest.operations:type_name -> google.ads.googleads.v21.services.ConversionValueRuleSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ConversionValueRuleSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ConversionValueRuleSetOperation.create:type_name -> google.ads.googleads.v21.resources.ConversionValueRuleSet - 6, // 4: google.ads.googleads.v21.services.ConversionValueRuleSetOperation.update:type_name -> google.ads.googleads.v21.resources.ConversionValueRuleSet - 3, // 5: google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateConversionValueRuleSetResult - 7, // 6: google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v21.services.MutateConversionValueRuleSetResult.conversion_value_rule_set:type_name -> google.ads.googleads.v21.resources.ConversionValueRuleSet - 0, // 8: google.ads.googleads.v21.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:input_type -> google.ads.googleads.v21.services.MutateConversionValueRuleSetsRequest - 2, // 9: google.ads.googleads.v21.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:output_type -> google.ads.googleads.v21.services.MutateConversionValueRuleSetsResponse +var file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest.operations:type_name -> google.ads.googleads.v22.services.ConversionValueRuleSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ConversionValueRuleSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ConversionValueRuleSetOperation.create:type_name -> google.ads.googleads.v22.resources.ConversionValueRuleSet + 6, // 4: google.ads.googleads.v22.services.ConversionValueRuleSetOperation.update:type_name -> google.ads.googleads.v22.resources.ConversionValueRuleSet + 3, // 5: google.ads.googleads.v22.services.MutateConversionValueRuleSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateConversionValueRuleSetResult + 7, // 6: google.ads.googleads.v22.services.MutateConversionValueRuleSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v22.services.MutateConversionValueRuleSetResult.conversion_value_rule_set:type_name -> google.ads.googleads.v22.resources.ConversionValueRuleSet + 0, // 8: google.ads.googleads.v22.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:input_type -> google.ads.googleads.v22.services.MutateConversionValueRuleSetsRequest + 2, // 9: google.ads.googleads.v22.services.ConversionValueRuleSetService.MutateConversionValueRuleSets:output_type -> google.ads.googleads.v22.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 @@ -554,12 +554,12 @@ var file_google_ads_googleads_v21_services_conversion_value_rule_set_service_pro 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_init() } -func file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_init() { - if File_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_init() } +func file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_init() { + if File_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*ConversionValueRuleSetOperation_Create)(nil), (*ConversionValueRuleSetOperation_Update)(nil), (*ConversionValueRuleSetOperation_Remove)(nil), @@ -568,17 +568,17 @@ func file_google_ads_googleads_v21_services_conversion_value_rule_set_service_pr out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto = out.File - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto = out.File + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 5313caa4..db3d2afc 100644 --- a/services/conversion_value_rule_set_service_grpc.pb.go +++ b/services/conversion_value_rule_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/conversion_value_rule_set_service.proto +// source: google/ads/googleads/v22/services/conversion_value_rule_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName = "/google.ads.googleads.v21.services.ConversionValueRuleSetService/MutateConversionValueRuleSets" + ConversionValueRuleSetService_MutateConversionValueRuleSets_FullMethodName = "/google.ads.googleads.v22.services.ConversionValueRuleSetService/MutateConversionValueRuleSets" ) // ConversionValueRuleSetServiceClient is the client API for ConversionValueRuleSetService service. @@ -131,7 +131,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.v21.services.ConversionValueRuleSetService", + ServiceName: "google.ads.googleads.v22.services.ConversionValueRuleSetService", HandlerType: (*ConversionValueRuleSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var ConversionValueRuleSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/conversion_value_rule_set_service.proto", + Metadata: "google/ads/googleads/v22/services/conversion_value_rule_set_service.proto", } diff --git a/services/custom_audience_service.pb.go b/services/custom_audience_service.pb.go index 3a624518..65a6c2cb 100644 --- a/services/custom_audience_service.pb.go +++ b/services/custom_audience_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_audience_service.proto +// source: google/ads/googleads/v22/services/custom_audience_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomAudienceService.MutateCustomAudiences][google.ads.googleads.v21.services.CustomAudienceService.MutateCustomAudiences]. +// [CustomAudienceService.MutateCustomAudiences][google.ads.googleads.v22.services.CustomAudienceService.MutateCustomAudiences]. type MutateCustomAudiencesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose custom audiences are being modified. @@ -55,7 +55,7 @@ type MutateCustomAudiencesRequest struct { func (x *MutateCustomAudiencesRequest) Reset() { *x = MutateCustomAudiencesRequest{} - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *MutateCustomAudiencesRequest) String() string { func (*MutateCustomAudiencesRequest) ProtoMessage() {} func (x *MutateCustomAudiencesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *MutateCustomAudiencesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudiencesRequest.ProtoReflect.Descriptor instead. func (*MutateCustomAudiencesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomAudiencesRequest) GetCustomerId() string { @@ -123,7 +123,7 @@ type CustomAudienceOperation struct { func (x *CustomAudienceOperation) Reset() { *x = CustomAudienceOperation{} - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *CustomAudienceOperation) String() string { func (*CustomAudienceOperation) ProtoMessage() {} func (x *CustomAudienceOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *CustomAudienceOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomAudienceOperation.ProtoReflect.Descriptor instead. func (*CustomAudienceOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescGZIP(), []int{1} } func (x *CustomAudienceOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -233,7 +233,7 @@ type MutateCustomAudiencesResponse struct { func (x *MutateCustomAudiencesResponse) Reset() { *x = MutateCustomAudiencesResponse{} - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -245,7 +245,7 @@ func (x *MutateCustomAudiencesResponse) String() string { func (*MutateCustomAudiencesResponse) ProtoMessage() {} func (x *MutateCustomAudiencesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -258,7 +258,7 @@ func (x *MutateCustomAudiencesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudiencesResponse.ProtoReflect.Descriptor instead. func (*MutateCustomAudiencesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomAudiencesResponse) GetResults() []*MutateCustomAudienceResult { @@ -279,7 +279,7 @@ type MutateCustomAudienceResult struct { func (x *MutateCustomAudienceResult) Reset() { *x = MutateCustomAudienceResult{} - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *MutateCustomAudienceResult) String() string { func (*MutateCustomAudienceResult) ProtoMessage() {} func (x *MutateCustomAudienceResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *MutateCustomAudienceResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomAudienceResult.ProtoReflect.Descriptor instead. func (*MutateCustomAudienceResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomAudienceResult) GetResourceName() string { @@ -314,17 +314,17 @@ func (x *MutateCustomAudienceResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_custom_audience_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_custom_audience_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -343,7 +343,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -357,12 +357,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -389,16 +389,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, @@ -407,53 +407,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDescData + return file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_custom_audience_service_proto_goTypes = []any{ - (*MutateCustomAudiencesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomAudiencesRequest - (*CustomAudienceOperation)(nil), // 1: google.ads.googleads.v21.services.CustomAudienceOperation - (*MutateCustomAudiencesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomAudiencesResponse - (*MutateCustomAudienceResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomAudienceResult +var file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_custom_audience_service_proto_goTypes = []any{ + (*MutateCustomAudiencesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomAudiencesRequest + (*CustomAudienceOperation)(nil), // 1: google.ads.googleads.v22.services.CustomAudienceOperation + (*MutateCustomAudiencesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomAudiencesResponse + (*MutateCustomAudienceResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomAudienceResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomAudience)(nil), // 5: google.ads.googleads.v21.resources.CustomAudience -} -var file_google_ads_googleads_v21_services_custom_audience_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomAudiencesRequest.operations:type_name -> google.ads.googleads.v21.services.CustomAudienceOperation - 4, // 1: google.ads.googleads.v21.services.CustomAudienceOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomAudienceOperation.create:type_name -> google.ads.googleads.v21.resources.CustomAudience - 5, // 3: google.ads.googleads.v21.services.CustomAudienceOperation.update:type_name -> google.ads.googleads.v21.resources.CustomAudience - 3, // 4: google.ads.googleads.v21.services.MutateCustomAudiencesResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomAudienceResult - 0, // 5: google.ads.googleads.v21.services.CustomAudienceService.MutateCustomAudiences:input_type -> google.ads.googleads.v21.services.MutateCustomAudiencesRequest - 2, // 6: google.ads.googleads.v21.services.CustomAudienceService.MutateCustomAudiences:output_type -> google.ads.googleads.v21.services.MutateCustomAudiencesResponse + (*resources.CustomAudience)(nil), // 5: google.ads.googleads.v22.resources.CustomAudience +} +var file_google_ads_googleads_v22_services_custom_audience_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomAudiencesRequest.operations:type_name -> google.ads.googleads.v22.services.CustomAudienceOperation + 4, // 1: google.ads.googleads.v22.services.CustomAudienceOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomAudienceOperation.create:type_name -> google.ads.googleads.v22.resources.CustomAudience + 5, // 3: google.ads.googleads.v22.services.CustomAudienceOperation.update:type_name -> google.ads.googleads.v22.resources.CustomAudience + 3, // 4: google.ads.googleads.v22.services.MutateCustomAudiencesResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomAudienceResult + 0, // 5: google.ads.googleads.v22.services.CustomAudienceService.MutateCustomAudiences:input_type -> google.ads.googleads.v22.services.MutateCustomAudiencesRequest + 2, // 6: google.ads.googleads.v22.services.CustomAudienceService.MutateCustomAudiences:output_type -> google.ads.googleads.v22.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 @@ -461,12 +461,12 @@ var file_google_ads_googleads_v21_services_custom_audience_service_proto_depIdxs 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_custom_audience_service_proto_init() } -func file_google_ads_googleads_v21_services_custom_audience_service_proto_init() { - if File_google_ads_googleads_v21_services_custom_audience_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_custom_audience_service_proto_init() } +func file_google_ads_googleads_v22_services_custom_audience_service_proto_init() { + if File_google_ads_googleads_v22_services_custom_audience_service_proto != nil { return } - file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomAudienceOperation_Create)(nil), (*CustomAudienceOperation_Update)(nil), (*CustomAudienceOperation_Remove)(nil), @@ -475,17 +475,17 @@ func file_google_ads_googleads_v21_services_custom_audience_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_audience_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_audience_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_custom_audience_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_custom_audience_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_custom_audience_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_custom_audience_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_custom_audience_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_custom_audience_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_custom_audience_service_proto = out.File - file_google_ads_googleads_v21_services_custom_audience_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_custom_audience_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_custom_audience_service_proto = out.File + file_google_ads_googleads_v22_services_custom_audience_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 e7c81a71..5a4d2090 100644 --- a/services/custom_audience_service_grpc.pb.go +++ b/services/custom_audience_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_audience_service.proto +// source: google/ads/googleads/v22/services/custom_audience_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomAudienceService_MutateCustomAudiences_FullMethodName = "/google.ads.googleads.v21.services.CustomAudienceService/MutateCustomAudiences" + CustomAudienceService_MutateCustomAudiences_FullMethodName = "/google.ads.googleads.v22.services.CustomAudienceService/MutateCustomAudiences" ) // CustomAudienceServiceClient is the client API for CustomAudienceService service. @@ -160,7 +160,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.v21.services.CustomAudienceService", + ServiceName: "google.ads.googleads.v22.services.CustomAudienceService", HandlerType: (*CustomAudienceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -169,5 +169,5 @@ var CustomAudienceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/custom_audience_service.proto", + Metadata: "google/ads/googleads/v22/services/custom_audience_service.proto", } diff --git a/services/custom_conversion_goal_service.pb.go b/services/custom_conversion_goal_service.pb.go index d8bc288b..1954a11a 100644 --- a/services/custom_conversion_goal_service.pb.go +++ b/services/custom_conversion_goal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/custom_conversion_goal_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomConversionGoalService.MutateCustomConversionGoals][google.ads.googleads.v21.services.CustomConversionGoalService.MutateCustomConversionGoals]. +// [CustomConversionGoalService.MutateCustomConversionGoals][google.ads.googleads.v22.services.CustomConversionGoalService.MutateCustomConversionGoals]. type MutateCustomConversionGoalsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose custom conversion goals are being @@ -54,14 +54,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomConversionGoalsRequest) Reset() { *x = MutateCustomConversionGoalsRequest{} - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateCustomConversionGoalsRequest) String() string { func (*MutateCustomConversionGoalsRequest) ProtoMessage() {} func (x *MutateCustomConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MutateCustomConversionGoalsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomConversionGoalsRequest) GetCustomerId() string { @@ -136,7 +136,7 @@ type CustomConversionGoalOperation struct { func (x *CustomConversionGoalOperation) Reset() { *x = CustomConversionGoalOperation{} - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148,7 +148,7 @@ func (x *CustomConversionGoalOperation) String() string { func (*CustomConversionGoalOperation) ProtoMessage() {} func (x *CustomConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161,7 +161,7 @@ func (x *CustomConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CustomConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -246,7 +246,7 @@ type MutateCustomConversionGoalsResponse struct { func (x *MutateCustomConversionGoalsResponse) Reset() { *x = MutateCustomConversionGoalsResponse{} - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -258,7 +258,7 @@ func (x *MutateCustomConversionGoalsResponse) String() string { func (*MutateCustomConversionGoalsResponse) ProtoMessage() {} func (x *MutateCustomConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -271,7 +271,7 @@ func (x *MutateCustomConversionGoalsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateCustomConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomConversionGoalsResponse) GetResults() []*MutateCustomConversionGoalResult { @@ -296,7 +296,7 @@ type MutateCustomConversionGoalResult struct { func (x *MutateCustomConversionGoalResult) Reset() { *x = MutateCustomConversionGoalResult{} - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -308,7 +308,7 @@ func (x *MutateCustomConversionGoalResult) String() string { func (*MutateCustomConversionGoalResult) ProtoMessage() {} func (x *MutateCustomConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -321,7 +321,7 @@ func (x *MutateCustomConversionGoalResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCustomConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomConversionGoalResult) GetResourceName() string { @@ -338,22 +338,22 @@ func (x *MutateCustomConversionGoalResult) GetCustomConversionGoal() *resources. return nil } -var File_google_ads_googleads_v21_services_custom_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_custom_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x32, 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, @@ -372,7 +372,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -381,7 +381,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -395,12 +395,12 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -413,7 +413,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -428,7 +428,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -437,17 +437,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x32, 0x32, 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, @@ -457,56 +457,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_goTypes = []any{ - (*MutateCustomConversionGoalsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest - (*CustomConversionGoalOperation)(nil), // 1: google.ads.googleads.v21.services.CustomConversionGoalOperation - (*MutateCustomConversionGoalsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomConversionGoalsResponse - (*MutateCustomConversionGoalResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomConversionGoalResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_goTypes = []any{ + (*MutateCustomConversionGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest + (*CustomConversionGoalOperation)(nil), // 1: google.ads.googleads.v22.services.CustomConversionGoalOperation + (*MutateCustomConversionGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomConversionGoalsResponse + (*MutateCustomConversionGoalResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomConversionGoalResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomConversionGoal)(nil), // 6: google.ads.googleads.v21.resources.CustomConversionGoal -} -var file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomConversionGoalOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CustomConversionGoalOperation.create:type_name -> google.ads.googleads.v21.resources.CustomConversionGoal - 6, // 4: google.ads.googleads.v21.services.CustomConversionGoalOperation.update:type_name -> google.ads.googleads.v21.resources.CustomConversionGoal - 3, // 5: google.ads.googleads.v21.services.MutateCustomConversionGoalsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomConversionGoalResult - 6, // 6: google.ads.googleads.v21.services.MutateCustomConversionGoalResult.custom_conversion_goal:type_name -> google.ads.googleads.v21.resources.CustomConversionGoal - 0, // 7: google.ads.googleads.v21.services.CustomConversionGoalService.MutateCustomConversionGoals:input_type -> google.ads.googleads.v21.services.MutateCustomConversionGoalsRequest - 2, // 8: google.ads.googleads.v21.services.CustomConversionGoalService.MutateCustomConversionGoals:output_type -> google.ads.googleads.v21.services.MutateCustomConversionGoalsResponse + (*resources.CustomConversionGoal)(nil), // 6: google.ads.googleads.v22.resources.CustomConversionGoal +} +var file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomConversionGoalOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CustomConversionGoalOperation.create:type_name -> google.ads.googleads.v22.resources.CustomConversionGoal + 6, // 4: google.ads.googleads.v22.services.CustomConversionGoalOperation.update:type_name -> google.ads.googleads.v22.resources.CustomConversionGoal + 3, // 5: google.ads.googleads.v22.services.MutateCustomConversionGoalsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomConversionGoalResult + 6, // 6: google.ads.googleads.v22.services.MutateCustomConversionGoalResult.custom_conversion_goal:type_name -> google.ads.googleads.v22.resources.CustomConversionGoal + 0, // 7: google.ads.googleads.v22.services.CustomConversionGoalService.MutateCustomConversionGoals:input_type -> google.ads.googleads.v22.services.MutateCustomConversionGoalsRequest + 2, // 8: google.ads.googleads.v22.services.CustomConversionGoalService.MutateCustomConversionGoals:output_type -> google.ads.googleads.v22.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 @@ -514,12 +514,12 @@ var file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_ 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v21_services_custom_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_custom_conversion_goal_service_proto != nil { return } - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomConversionGoalOperation_Create)(nil), (*CustomConversionGoalOperation_Update)(nil), (*CustomConversionGoalOperation_Remove)(nil), @@ -528,17 +528,17 @@ func file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_custom_conversion_goal_service_proto = out.File - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_custom_conversion_goal_service_proto = out.File + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 74bdb71c..9b0cd574 100644 --- a/services/custom_conversion_goal_service_grpc.pb.go +++ b/services/custom_conversion_goal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/custom_conversion_goal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName = "/google.ads.googleads.v21.services.CustomConversionGoalService/MutateCustomConversionGoals" + CustomConversionGoalService_MutateCustomConversionGoals_FullMethodName = "/google.ads.googleads.v22.services.CustomConversionGoalService/MutateCustomConversionGoals" ) // CustomConversionGoalServiceClient is the client API for CustomConversionGoalService service. @@ -131,7 +131,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.v21.services.CustomConversionGoalService", + ServiceName: "google.ads.googleads.v22.services.CustomConversionGoalService", HandlerType: (*CustomConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CustomConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/custom_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v22/services/custom_conversion_goal_service.proto", } diff --git a/services/custom_interest_service.pb.go b/services/custom_interest_service.pb.go index 6df65ff6..2a6af673 100644 --- a/services/custom_interest_service.pb.go +++ b/services/custom_interest_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_interest_service.proto +// source: google/ads/googleads/v22/services/custom_interest_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomInterestService.MutateCustomInterests][google.ads.googleads.v21.services.CustomInterestService.MutateCustomInterests]. +// [CustomInterestService.MutateCustomInterests][google.ads.googleads.v22.services.CustomInterestService.MutateCustomInterests]. type MutateCustomInterestsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose custom interests are being modified. @@ -55,7 +55,7 @@ type MutateCustomInterestsRequest struct { func (x *MutateCustomInterestsRequest) Reset() { *x = MutateCustomInterestsRequest{} - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *MutateCustomInterestsRequest) String() string { func (*MutateCustomInterestsRequest) ProtoMessage() {} func (x *MutateCustomInterestsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *MutateCustomInterestsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomInterestsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomInterestsRequest) GetCustomerId() string { @@ -122,7 +122,7 @@ type CustomInterestOperation struct { func (x *CustomInterestOperation) Reset() { *x = CustomInterestOperation{} - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *CustomInterestOperation) String() string { func (*CustomInterestOperation) ProtoMessage() {} func (x *CustomInterestOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,7 +147,7 @@ func (x *CustomInterestOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomInterestOperation.ProtoReflect.Descriptor instead. func (*CustomInterestOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescGZIP(), []int{1} } func (x *CustomInterestOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -213,7 +213,7 @@ type MutateCustomInterestsResponse struct { func (x *MutateCustomInterestsResponse) Reset() { *x = MutateCustomInterestsResponse{} - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *MutateCustomInterestsResponse) String() string { func (*MutateCustomInterestsResponse) ProtoMessage() {} func (x *MutateCustomInterestsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,7 +238,7 @@ func (x *MutateCustomInterestsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomInterestsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomInterestsResponse) GetResults() []*MutateCustomInterestResult { @@ -259,7 +259,7 @@ type MutateCustomInterestResult struct { func (x *MutateCustomInterestResult) Reset() { *x = MutateCustomInterestResult{} - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -271,7 +271,7 @@ func (x *MutateCustomInterestResult) String() string { func (*MutateCustomInterestResult) ProtoMessage() {} func (x *MutateCustomInterestResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -284,7 +284,7 @@ func (x *MutateCustomInterestResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomInterestResult.ProtoReflect.Descriptor instead. func (*MutateCustomInterestResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomInterestResult) GetResourceName() string { @@ -294,17 +294,17 @@ func (x *MutateCustomInterestResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_custom_interest_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_custom_interest_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -337,19 +337,19 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -364,16 +364,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, 0x76, 0x32, 0x32, 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, @@ -383,53 +383,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDescData + return file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_custom_interest_service_proto_goTypes = []any{ - (*MutateCustomInterestsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomInterestsRequest - (*CustomInterestOperation)(nil), // 1: google.ads.googleads.v21.services.CustomInterestOperation - (*MutateCustomInterestsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomInterestsResponse - (*MutateCustomInterestResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomInterestResult +var file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_custom_interest_service_proto_goTypes = []any{ + (*MutateCustomInterestsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomInterestsRequest + (*CustomInterestOperation)(nil), // 1: google.ads.googleads.v22.services.CustomInterestOperation + (*MutateCustomInterestsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomInterestsResponse + (*MutateCustomInterestResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomInterestResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomInterest)(nil), // 5: google.ads.googleads.v21.resources.CustomInterest -} -var file_google_ads_googleads_v21_services_custom_interest_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomInterestsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomInterestOperation - 4, // 1: google.ads.googleads.v21.services.CustomInterestOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomInterestOperation.create:type_name -> google.ads.googleads.v21.resources.CustomInterest - 5, // 3: google.ads.googleads.v21.services.CustomInterestOperation.update:type_name -> google.ads.googleads.v21.resources.CustomInterest - 3, // 4: google.ads.googleads.v21.services.MutateCustomInterestsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomInterestResult - 0, // 5: google.ads.googleads.v21.services.CustomInterestService.MutateCustomInterests:input_type -> google.ads.googleads.v21.services.MutateCustomInterestsRequest - 2, // 6: google.ads.googleads.v21.services.CustomInterestService.MutateCustomInterests:output_type -> google.ads.googleads.v21.services.MutateCustomInterestsResponse + (*resources.CustomInterest)(nil), // 5: google.ads.googleads.v22.resources.CustomInterest +} +var file_google_ads_googleads_v22_services_custom_interest_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomInterestsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomInterestOperation + 4, // 1: google.ads.googleads.v22.services.CustomInterestOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomInterestOperation.create:type_name -> google.ads.googleads.v22.resources.CustomInterest + 5, // 3: google.ads.googleads.v22.services.CustomInterestOperation.update:type_name -> google.ads.googleads.v22.resources.CustomInterest + 3, // 4: google.ads.googleads.v22.services.MutateCustomInterestsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomInterestResult + 0, // 5: google.ads.googleads.v22.services.CustomInterestService.MutateCustomInterests:input_type -> google.ads.googleads.v22.services.MutateCustomInterestsRequest + 2, // 6: google.ads.googleads.v22.services.CustomInterestService.MutateCustomInterests:output_type -> google.ads.googleads.v22.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 @@ -437,12 +437,12 @@ var file_google_ads_googleads_v21_services_custom_interest_service_proto_depIdxs 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_custom_interest_service_proto_init() } -func file_google_ads_googleads_v21_services_custom_interest_service_proto_init() { - if File_google_ads_googleads_v21_services_custom_interest_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_custom_interest_service_proto_init() } +func file_google_ads_googleads_v22_services_custom_interest_service_proto_init() { + if File_google_ads_googleads_v22_services_custom_interest_service_proto != nil { return } - file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomInterestOperation_Create)(nil), (*CustomInterestOperation_Update)(nil), } @@ -450,17 +450,17 @@ func file_google_ads_googleads_v21_services_custom_interest_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_custom_interest_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_custom_interest_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_custom_interest_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_custom_interest_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_custom_interest_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_custom_interest_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_custom_interest_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_custom_interest_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_custom_interest_service_proto = out.File - file_google_ads_googleads_v21_services_custom_interest_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_custom_interest_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_custom_interest_service_proto = out.File + file_google_ads_googleads_v22_services_custom_interest_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 e2413132..25447ae8 100644 --- a/services/custom_interest_service_grpc.pb.go +++ b/services/custom_interest_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/custom_interest_service.proto +// source: google/ads/googleads/v22/services/custom_interest_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomInterestService_MutateCustomInterests_FullMethodName = "/google.ads.googleads.v21.services.CustomInterestService/MutateCustomInterests" + CustomInterestService_MutateCustomInterests_FullMethodName = "/google.ads.googleads.v22.services.CustomInterestService/MutateCustomInterests" ) // CustomInterestServiceClient is the client API for CustomInterestService service. @@ -156,7 +156,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.v21.services.CustomInterestService", + ServiceName: "google.ads.googleads.v22.services.CustomInterestService", HandlerType: (*CustomInterestServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -165,5 +165,5 @@ var CustomInterestService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/custom_interest_service.proto", + Metadata: "google/ads/googleads/v22/services/custom_interest_service.proto", } diff --git a/services/customer_asset_service.pb.go b/services/customer_asset_service.pb.go index adea68a1..f92816b3 100644 --- a/services/customer_asset_service.pb.go +++ b/services/customer_asset_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_asset_service.proto +// source: google/ads/googleads/v22/services/customer_asset_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CustomerAssetService.MutateCustomerAssets][google.ads.googleads.v21.services.CustomerAssetService.MutateCustomerAssets]. +// [CustomerAssetService.MutateCustomerAssets][google.ads.googleads.v22.services.CustomerAssetService.MutateCustomerAssets]. type MutateCustomerAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer assets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomerAssetsRequest) Reset() { *x = MutateCustomerAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateCustomerAssetsRequest) String() string { func (*MutateCustomerAssetsRequest) ProtoMessage() {} func (x *MutateCustomerAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateCustomerAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerAssetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type CustomerAssetOperation struct { func (x *CustomerAssetOperation) Reset() { *x = CustomerAssetOperation{} - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *CustomerAssetOperation) String() string { func (*CustomerAssetOperation) ProtoMessage() {} func (x *CustomerAssetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *CustomerAssetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetOperation.ProtoReflect.Descriptor instead. func (*CustomerAssetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerAssetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -262,7 +262,7 @@ type MutateCustomerAssetsResponse struct { func (x *MutateCustomerAssetsResponse) Reset() { *x = MutateCustomerAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -274,7 +274,7 @@ func (x *MutateCustomerAssetsResponse) String() string { func (*MutateCustomerAssetsResponse) ProtoMessage() {} func (x *MutateCustomerAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -287,7 +287,7 @@ func (x *MutateCustomerAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerAssetsResponse) GetPartialFailureError() *status.Status { @@ -319,7 +319,7 @@ type MutateCustomerAssetResult struct { func (x *MutateCustomerAssetResult) Reset() { *x = MutateCustomerAssetResult{} - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -331,7 +331,7 @@ func (x *MutateCustomerAssetResult) String() string { func (*MutateCustomerAssetResult) ProtoMessage() {} func (x *MutateCustomerAssetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -344,7 +344,7 @@ func (x *MutateCustomerAssetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetResult.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerAssetResult) GetResourceName() string { @@ -361,21 +361,21 @@ func (x *MutateCustomerAssetResult) GetCustomerAsset() *resources.CustomerAsset return nil } -var File_google_ads_googleads_v21_services_customer_asset_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_asset_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -395,7 +395,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -407,7 +407,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -419,12 +419,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -441,7 +441,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -454,23 +454,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -480,57 +480,57 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x43, 0x75, 0x73, 0x74, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_asset_service_proto_goTypes = []any{ - (*MutateCustomerAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerAssetsRequest - (*CustomerAssetOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerAssetOperation - (*MutateCustomerAssetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerAssetsResponse - (*MutateCustomerAssetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerAssetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_asset_service_proto_goTypes = []any{ + (*MutateCustomerAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerAssetsRequest + (*CustomerAssetOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerAssetOperation + (*MutateCustomerAssetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerAssetsResponse + (*MutateCustomerAssetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerAssetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomerAsset)(nil), // 6: google.ads.googleads.v21.resources.CustomerAsset + (*resources.CustomerAsset)(nil), // 6: google.ads.googleads.v22.resources.CustomerAsset (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_asset_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerAssetsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerAssetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomerAssetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomerAssetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CustomerAssetOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerAsset - 6, // 4: google.ads.googleads.v21.services.CustomerAssetOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerAsset - 7, // 5: google.ads.googleads.v21.services.MutateCustomerAssetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateCustomerAssetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerAssetResult - 6, // 7: google.ads.googleads.v21.services.MutateCustomerAssetResult.customer_asset:type_name -> google.ads.googleads.v21.resources.CustomerAsset - 0, // 8: google.ads.googleads.v21.services.CustomerAssetService.MutateCustomerAssets:input_type -> google.ads.googleads.v21.services.MutateCustomerAssetsRequest - 2, // 9: google.ads.googleads.v21.services.CustomerAssetService.MutateCustomerAssets:output_type -> google.ads.googleads.v21.services.MutateCustomerAssetsResponse +var file_google_ads_googleads_v22_services_customer_asset_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerAssetsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerAssetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomerAssetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomerAssetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CustomerAssetOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerAsset + 6, // 4: google.ads.googleads.v22.services.CustomerAssetOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerAsset + 7, // 5: google.ads.googleads.v22.services.MutateCustomerAssetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateCustomerAssetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerAssetResult + 6, // 7: google.ads.googleads.v22.services.MutateCustomerAssetResult.customer_asset:type_name -> google.ads.googleads.v22.resources.CustomerAsset + 0, // 8: google.ads.googleads.v22.services.CustomerAssetService.MutateCustomerAssets:input_type -> google.ads.googleads.v22.services.MutateCustomerAssetsRequest + 2, // 9: google.ads.googleads.v22.services.CustomerAssetService.MutateCustomerAssets:output_type -> google.ads.googleads.v22.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 @@ -538,12 +538,12 @@ var file_google_ads_googleads_v21_services_customer_asset_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_asset_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_asset_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_asset_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_asset_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_asset_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_asset_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerAssetOperation_Create)(nil), (*CustomerAssetOperation_Update)(nil), (*CustomerAssetOperation_Remove)(nil), @@ -552,17 +552,17 @@ func file_google_ads_googleads_v21_services_customer_asset_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_asset_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_asset_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_asset_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_asset_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_asset_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_asset_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_asset_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_asset_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_asset_service_proto = out.File - file_google_ads_googleads_v21_services_customer_asset_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_asset_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_asset_service_proto = out.File + file_google_ads_googleads_v22_services_customer_asset_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 1f883668..284e899e 100644 --- a/services/customer_asset_service_grpc.pb.go +++ b/services/customer_asset_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_asset_service.proto +// source: google/ads/googleads/v22/services/customer_asset_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerAssetService_MutateCustomerAssets_FullMethodName = "/google.ads.googleads.v21.services.CustomerAssetService/MutateCustomerAssets" + CustomerAssetService_MutateCustomerAssets_FullMethodName = "/google.ads.googleads.v22.services.CustomerAssetService/MutateCustomerAssets" ) // CustomerAssetServiceClient is the client API for CustomerAssetService service. @@ -154,7 +154,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.v21.services.CustomerAssetService", + ServiceName: "google.ads.googleads.v22.services.CustomerAssetService", HandlerType: (*CustomerAssetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -163,5 +163,5 @@ var CustomerAssetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_asset_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_asset_service.proto", } diff --git a/services/customer_asset_set_service.pb.go b/services/customer_asset_set_service.pb.go index 2a844efe..fb724ff5 100644 --- a/services/customer_asset_set_service.pb.go +++ b/services/customer_asset_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_asset_set_service.proto +// source: google/ads/googleads/v22/services/customer_asset_set_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerAssetSetService.MutateCustomerAssetSets][google.ads.googleads.v21.services.CustomerAssetSetService.MutateCustomerAssetSets]. +// [CustomerAssetSetService.MutateCustomerAssetSets][google.ads.googleads.v22.services.CustomerAssetSetService.MutateCustomerAssetSets]. type MutateCustomerAssetSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer asset sets are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomerAssetSetsRequest) Reset() { *x = MutateCustomerAssetSetsRequest{} - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCustomerAssetSetsRequest) String() string { func (*MutateCustomerAssetSetsRequest) ProtoMessage() {} func (x *MutateCustomerAssetSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateCustomerAssetSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerAssetSetsRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type CustomerAssetSetOperation struct { func (x *CustomerAssetSetOperation) Reset() { *x = CustomerAssetSetOperation{} - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CustomerAssetSetOperation) String() string { func (*CustomerAssetSetOperation) ProtoMessage() {} func (x *CustomerAssetSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CustomerAssetSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerAssetSetOperation.ProtoReflect.Descriptor instead. func (*CustomerAssetSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerAssetSetOperation) GetOperation() isCustomerAssetSetOperation_Operation { @@ -235,7 +235,7 @@ type MutateCustomerAssetSetsResponse struct { func (x *MutateCustomerAssetSetsResponse) Reset() { *x = MutateCustomerAssetSetsResponse{} - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateCustomerAssetSetsResponse) String() string { func (*MutateCustomerAssetSetsResponse) ProtoMessage() {} func (x *MutateCustomerAssetSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateCustomerAssetSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerAssetSetsResponse) GetResults() []*MutateCustomerAssetSetResult { @@ -292,7 +292,7 @@ type MutateCustomerAssetSetResult struct { func (x *MutateCustomerAssetSetResult) Reset() { *x = MutateCustomerAssetSetResult{} - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateCustomerAssetSetResult) String() string { func (*MutateCustomerAssetSetResult) ProtoMessage() {} func (x *MutateCustomerAssetSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateCustomerAssetSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerAssetSetResult.ProtoReflect.Descriptor instead. func (*MutateCustomerAssetSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerAssetSetResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateCustomerAssetSetResult) GetCustomerAssetSet() *resources.Customer return nil } -var File_google_ads_googleads_v21_services_customer_asset_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_asset_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -378,7 +378,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -400,7 +400,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,17 +426,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x37, 0x2f, 0x76, 0x32, 0x32, 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, @@ -446,55 +446,55 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x43, 0x75, 0x73, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_asset_set_service_proto_goTypes = []any{ - (*MutateCustomerAssetSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest - (*CustomerAssetSetOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerAssetSetOperation - (*MutateCustomerAssetSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse - (*MutateCustomerAssetSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerAssetSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerAssetSet)(nil), // 5: google.ads.googleads.v21.resources.CustomerAssetSet +var file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_asset_set_service_proto_goTypes = []any{ + (*MutateCustomerAssetSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest + (*CustomerAssetSetOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerAssetSetOperation + (*MutateCustomerAssetSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerAssetSetsResponse + (*MutateCustomerAssetSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerAssetSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerAssetSet)(nil), // 5: google.ads.googleads.v22.resources.CustomerAssetSet (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_asset_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerAssetSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomerAssetSetOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerAssetSet - 3, // 3: google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerAssetSetResult - 6, // 4: google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateCustomerAssetSetResult.customer_asset_set:type_name -> google.ads.googleads.v21.resources.CustomerAssetSet - 0, // 6: google.ads.googleads.v21.services.CustomerAssetSetService.MutateCustomerAssetSets:input_type -> google.ads.googleads.v21.services.MutateCustomerAssetSetsRequest - 2, // 7: google.ads.googleads.v21.services.CustomerAssetSetService.MutateCustomerAssetSets:output_type -> google.ads.googleads.v21.services.MutateCustomerAssetSetsResponse +var file_google_ads_googleads_v22_services_customer_asset_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerAssetSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomerAssetSetOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerAssetSet + 3, // 3: google.ads.googleads.v22.services.MutateCustomerAssetSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerAssetSetResult + 6, // 4: google.ads.googleads.v22.services.MutateCustomerAssetSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateCustomerAssetSetResult.customer_asset_set:type_name -> google.ads.googleads.v22.resources.CustomerAssetSet + 0, // 6: google.ads.googleads.v22.services.CustomerAssetSetService.MutateCustomerAssetSets:input_type -> google.ads.googleads.v22.services.MutateCustomerAssetSetsRequest + 2, // 7: google.ads.googleads.v22.services.CustomerAssetSetService.MutateCustomerAssetSets:output_type -> google.ads.googleads.v22.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 @@ -502,12 +502,12 @@ var file_google_ads_googleads_v21_services_customer_asset_set_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_asset_set_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_asset_set_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_asset_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_asset_set_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_asset_set_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_asset_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerAssetSetOperation_Create)(nil), (*CustomerAssetSetOperation_Remove)(nil), } @@ -515,17 +515,17 @@ func file_google_ads_googleads_v21_services_customer_asset_set_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_asset_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_asset_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_asset_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_asset_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_asset_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_asset_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_asset_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_asset_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_asset_set_service_proto = out.File - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_asset_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_asset_set_service_proto = out.File + file_google_ads_googleads_v22_services_customer_asset_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 5cfeeef3..375fe450 100644 --- a/services/customer_asset_set_service_grpc.pb.go +++ b/services/customer_asset_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_asset_set_service.proto +// source: google/ads/googleads/v22/services/customer_asset_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName = "/google.ads.googleads.v21.services.CustomerAssetSetService/MutateCustomerAssetSets" + CustomerAssetSetService_MutateCustomerAssetSets_FullMethodName = "/google.ads.googleads.v22.services.CustomerAssetSetService/MutateCustomerAssetSets" ) // CustomerAssetSetServiceClient is the client API for CustomerAssetSetService service. @@ -131,7 +131,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.v21.services.CustomerAssetSetService", + ServiceName: "google.ads.googleads.v22.services.CustomerAssetSetService", HandlerType: (*CustomerAssetSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CustomerAssetSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_asset_set_service.proto", + Metadata: "google/ads/googleads/v22/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 ad3383c7..bf8aace3 100644 --- a/services/customer_client_link_service.pb.go +++ b/services/customer_client_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_client_link_service.proto +// source: google/ads/googleads/v22/services/customer_client_link_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerClientLinkService.MutateCustomerClientLink][google.ads.googleads.v21.services.CustomerClientLinkService.MutateCustomerClientLink]. +// [CustomerClientLinkService.MutateCustomerClientLink][google.ads.googleads.v22.services.CustomerClientLinkService.MutateCustomerClientLink]. type MutateCustomerClientLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer link are being modified. @@ -55,7 +55,7 @@ type MutateCustomerClientLinkRequest struct { func (x *MutateCustomerClientLinkRequest) Reset() { *x = MutateCustomerClientLinkRequest{} - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *MutateCustomerClientLinkRequest) String() string { func (*MutateCustomerClientLinkRequest) ProtoMessage() {} func (x *MutateCustomerClientLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *MutateCustomerClientLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerClientLinkRequest) GetCustomerId() string { @@ -122,7 +122,7 @@ type CustomerClientLinkOperation struct { func (x *CustomerClientLinkOperation) Reset() { *x = CustomerClientLinkOperation{} - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -134,7 +134,7 @@ func (x *CustomerClientLinkOperation) String() string { func (*CustomerClientLinkOperation) ProtoMessage() {} func (x *CustomerClientLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -147,7 +147,7 @@ func (x *CustomerClientLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerClientLinkOperation.ProtoReflect.Descriptor instead. func (*CustomerClientLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerClientLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -211,7 +211,7 @@ type MutateCustomerClientLinkResponse struct { func (x *MutateCustomerClientLinkResponse) Reset() { *x = MutateCustomerClientLinkResponse{} - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -223,7 +223,7 @@ func (x *MutateCustomerClientLinkResponse) String() string { func (*MutateCustomerClientLinkResponse) ProtoMessage() {} func (x *MutateCustomerClientLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -236,7 +236,7 @@ func (x *MutateCustomerClientLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerClientLinkResponse) GetResult() *MutateCustomerClientLinkResult { @@ -257,7 +257,7 @@ type MutateCustomerClientLinkResult struct { func (x *MutateCustomerClientLinkResult) Reset() { *x = MutateCustomerClientLinkResult{} - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -269,7 +269,7 @@ func (x *MutateCustomerClientLinkResult) String() string { func (*MutateCustomerClientLinkResult) ProtoMessage() {} func (x *MutateCustomerClientLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -282,7 +282,7 @@ func (x *MutateCustomerClientLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerClientLinkResult.ProtoReflect.Descriptor instead. func (*MutateCustomerClientLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerClientLinkResult) GetResourceName() string { @@ -292,18 +292,18 @@ func (x *MutateCustomerClientLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_client_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_client_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x76, 0x32, 0x32, 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, @@ -322,7 +322,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -336,12 +336,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -349,7 +349,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -365,17 +365,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x32, 0x32, 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, @@ -384,54 +384,54 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, + 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, + 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_client_link_service_proto_goTypes = []any{ - (*MutateCustomerClientLinkRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerClientLinkRequest - (*CustomerClientLinkOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerClientLinkOperation - (*MutateCustomerClientLinkResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerClientLinkResponse - (*MutateCustomerClientLinkResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerClientLinkResult +var file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_client_link_service_proto_goTypes = []any{ + (*MutateCustomerClientLinkRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerClientLinkRequest + (*CustomerClientLinkOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerClientLinkOperation + (*MutateCustomerClientLinkResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerClientLinkResponse + (*MutateCustomerClientLinkResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerClientLinkResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerClientLink)(nil), // 5: google.ads.googleads.v21.resources.CustomerClientLink -} -var file_google_ads_googleads_v21_services_customer_client_link_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerClientLinkRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerClientLinkOperation - 4, // 1: google.ads.googleads.v21.services.CustomerClientLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomerClientLinkOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerClientLink - 5, // 3: google.ads.googleads.v21.services.CustomerClientLinkOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerClientLink - 3, // 4: google.ads.googleads.v21.services.MutateCustomerClientLinkResponse.result:type_name -> google.ads.googleads.v21.services.MutateCustomerClientLinkResult - 0, // 5: google.ads.googleads.v21.services.CustomerClientLinkService.MutateCustomerClientLink:input_type -> google.ads.googleads.v21.services.MutateCustomerClientLinkRequest - 2, // 6: google.ads.googleads.v21.services.CustomerClientLinkService.MutateCustomerClientLink:output_type -> google.ads.googleads.v21.services.MutateCustomerClientLinkResponse + (*resources.CustomerClientLink)(nil), // 5: google.ads.googleads.v22.resources.CustomerClientLink +} +var file_google_ads_googleads_v22_services_customer_client_link_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerClientLinkRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerClientLinkOperation + 4, // 1: google.ads.googleads.v22.services.CustomerClientLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomerClientLinkOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerClientLink + 5, // 3: google.ads.googleads.v22.services.CustomerClientLinkOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerClientLink + 3, // 4: google.ads.googleads.v22.services.MutateCustomerClientLinkResponse.result:type_name -> google.ads.googleads.v22.services.MutateCustomerClientLinkResult + 0, // 5: google.ads.googleads.v22.services.CustomerClientLinkService.MutateCustomerClientLink:input_type -> google.ads.googleads.v22.services.MutateCustomerClientLinkRequest + 2, // 6: google.ads.googleads.v22.services.CustomerClientLinkService.MutateCustomerClientLink:output_type -> google.ads.googleads.v22.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 @@ -439,12 +439,12 @@ var file_google_ads_googleads_v21_services_customer_client_link_service_proto_de 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_client_link_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_client_link_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_client_link_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_client_link_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_client_link_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_client_link_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerClientLinkOperation_Create)(nil), (*CustomerClientLinkOperation_Update)(nil), } @@ -452,17 +452,17 @@ func file_google_ads_googleads_v21_services_customer_client_link_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_client_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_client_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_client_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_client_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_client_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_client_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_client_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_client_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_client_link_service_proto = out.File - file_google_ads_googleads_v21_services_customer_client_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_client_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_client_link_service_proto = out.File + file_google_ads_googleads_v22_services_customer_client_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 a9420753..f640eaa8 100644 --- a/services/customer_client_link_service_grpc.pb.go +++ b/services/customer_client_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_client_link_service.proto +// source: google/ads/googleads/v22/services/customer_client_link_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerClientLinkService_MutateCustomerClientLink_FullMethodName = "/google.ads.googleads.v21.services.CustomerClientLinkService/MutateCustomerClientLink" + CustomerClientLinkService_MutateCustomerClientLink_FullMethodName = "/google.ads.googleads.v22.services.CustomerClientLinkService/MutateCustomerClientLink" ) // CustomerClientLinkServiceClient is the client API for CustomerClientLinkService service. @@ -159,7 +159,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.v21.services.CustomerClientLinkService", + ServiceName: "google.ads.googleads.v22.services.CustomerClientLinkService", HandlerType: (*CustomerClientLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -168,5 +168,5 @@ var CustomerClientLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_client_link_service.proto", + Metadata: "google/ads/googleads/v22/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 4f7ba0a2..4553b279 100644 --- a/services/customer_conversion_goal_service.pb.go +++ b/services/customer_conversion_goal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/customer_conversion_goal_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerConversionGoalService.MutateCustomerConversionGoals][google.ads.googleads.v21.services.CustomerConversionGoalService.MutateCustomerConversionGoals]. +// [CustomerConversionGoalService.MutateCustomerConversionGoals][google.ads.googleads.v22.services.CustomerConversionGoalService.MutateCustomerConversionGoals]. type MutateCustomerConversionGoalsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer conversion goals are being @@ -57,7 +57,7 @@ type MutateCustomerConversionGoalsRequest struct { func (x *MutateCustomerConversionGoalsRequest) Reset() { *x = MutateCustomerConversionGoalsRequest{} - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCustomerConversionGoalsRequest) String() string { func (*MutateCustomerConversionGoalsRequest) ProtoMessage() {} func (x *MutateCustomerConversionGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *MutateCustomerConversionGoalsRequest) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCustomerConversionGoalsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerConversionGoalsRequest) GetCustomerId() string { @@ -123,7 +123,7 @@ type CustomerConversionGoalOperation struct { func (x *CustomerConversionGoalOperation) Reset() { *x = CustomerConversionGoalOperation{} - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *CustomerConversionGoalOperation) String() string { func (*CustomerConversionGoalOperation) ProtoMessage() {} func (x *CustomerConversionGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *CustomerConversionGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerConversionGoalOperation.ProtoReflect.Descriptor instead. func (*CustomerConversionGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerConversionGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -197,7 +197,7 @@ type MutateCustomerConversionGoalsResponse struct { func (x *MutateCustomerConversionGoalsResponse) Reset() { *x = MutateCustomerConversionGoalsResponse{} - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *MutateCustomerConversionGoalsResponse) String() string { func (*MutateCustomerConversionGoalsResponse) ProtoMessage() {} func (x *MutateCustomerConversionGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *MutateCustomerConversionGoalsResponse) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCustomerConversionGoalsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerConversionGoalsResponse) GetResults() []*MutateCustomerConversionGoalResult { @@ -243,7 +243,7 @@ type MutateCustomerConversionGoalResult struct { func (x *MutateCustomerConversionGoalResult) Reset() { *x = MutateCustomerConversionGoalResult{} - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -255,7 +255,7 @@ func (x *MutateCustomerConversionGoalResult) String() string { func (*MutateCustomerConversionGoalResult) ProtoMessage() {} func (x *MutateCustomerConversionGoalResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -268,7 +268,7 @@ func (x *MutateCustomerConversionGoalResult) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerConversionGoalResult.ProtoReflect.Descriptor instead. func (*MutateCustomerConversionGoalResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerConversionGoalResult) GetResourceName() string { @@ -278,18 +278,18 @@ func (x *MutateCustomerConversionGoalResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_conversion_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_conversion_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x41, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -309,7 +309,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x76, 0x32, 0x32, 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, @@ -323,7 +323,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -350,17 +350,17 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -370,52 +370,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x22, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_goTypes = []any{ - (*MutateCustomerConversionGoalsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerConversionGoalsRequest - (*CustomerConversionGoalOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerConversionGoalOperation - (*MutateCustomerConversionGoalsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerConversionGoalsResponse - (*MutateCustomerConversionGoalResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerConversionGoalResult +var file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_goTypes = []any{ + (*MutateCustomerConversionGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerConversionGoalsRequest + (*CustomerConversionGoalOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerConversionGoalOperation + (*MutateCustomerConversionGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerConversionGoalsResponse + (*MutateCustomerConversionGoalResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerConversionGoalResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerConversionGoal)(nil), // 5: google.ads.googleads.v21.resources.CustomerConversionGoal -} -var file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerConversionGoalsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerConversionGoalOperation - 4, // 1: google.ads.googleads.v21.services.CustomerConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomerConversionGoalOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerConversionGoal - 3, // 3: google.ads.googleads.v21.services.MutateCustomerConversionGoalsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerConversionGoalResult - 0, // 4: google.ads.googleads.v21.services.CustomerConversionGoalService.MutateCustomerConversionGoals:input_type -> google.ads.googleads.v21.services.MutateCustomerConversionGoalsRequest - 2, // 5: google.ads.googleads.v21.services.CustomerConversionGoalService.MutateCustomerConversionGoals:output_type -> google.ads.googleads.v21.services.MutateCustomerConversionGoalsResponse + (*resources.CustomerConversionGoal)(nil), // 5: google.ads.googleads.v22.resources.CustomerConversionGoal +} +var file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerConversionGoalsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerConversionGoalOperation + 4, // 1: google.ads.googleads.v22.services.CustomerConversionGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomerConversionGoalOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerConversionGoal + 3, // 3: google.ads.googleads.v22.services.MutateCustomerConversionGoalsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerConversionGoalResult + 0, // 4: google.ads.googleads.v22.services.CustomerConversionGoalService.MutateCustomerConversionGoals:input_type -> google.ads.googleads.v22.services.MutateCustomerConversionGoalsRequest + 2, // 5: google.ads.googleads.v22.services.CustomerConversionGoalService.MutateCustomerConversionGoals:output_type -> google.ads.googleads.v22.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 @@ -423,29 +423,29 @@ var file_google_ads_googleads_v21_services_customer_conversion_goal_service_prot 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_conversion_goal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_conversion_goal_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerConversionGoalOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_conversion_goal_service_proto = out.File - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_conversion_goal_service_proto = out.File + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 16a6487f..a6455f92 100644 --- a/services/customer_conversion_goal_service_grpc.pb.go +++ b/services/customer_conversion_goal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_conversion_goal_service.proto +// source: google/ads/googleads/v22/services/customer_conversion_goal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName = "/google.ads.googleads.v21.services.CustomerConversionGoalService/MutateCustomerConversionGoals" + CustomerConversionGoalService_MutateCustomerConversionGoals_FullMethodName = "/google.ads.googleads.v22.services.CustomerConversionGoalService/MutateCustomerConversionGoals" ) // CustomerConversionGoalServiceClient is the client API for CustomerConversionGoalService service. @@ -131,7 +131,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.v21.services.CustomerConversionGoalService", + ServiceName: "google.ads.googleads.v22.services.CustomerConversionGoalService", HandlerType: (*CustomerConversionGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CustomerConversionGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_conversion_goal_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_conversion_goal_service.proto", } diff --git a/services/customer_customizer_service.pb.go b/services/customer_customizer_service.pb.go index e73a41f5..ef5dde00 100644 --- a/services/customer_customizer_service.pb.go +++ b/services/customer_customizer_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_customizer_service.proto +// source: google/ads/googleads/v22/services/customer_customizer_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerCustomizerService.MutateCustomerCustomizers][google.ads.googleads.v21.services.CustomerCustomizerService.MutateCustomerCustomizers]. +// [CustomerCustomizerService.MutateCustomerCustomizers][google.ads.googleads.v22.services.CustomerCustomizerService.MutateCustomerCustomizers]. type MutateCustomerCustomizersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer customizers are being @@ -59,14 +59,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomerCustomizersRequest) Reset() { *x = MutateCustomerCustomizersRequest{} - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -78,7 +78,7 @@ func (x *MutateCustomerCustomizersRequest) String() string { func (*MutateCustomerCustomizersRequest) ProtoMessage() {} func (x *MutateCustomerCustomizersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -91,7 +91,7 @@ func (x *MutateCustomerCustomizersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerCustomizersRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerCustomizersRequest) GetCustomerId() string { @@ -145,7 +145,7 @@ type CustomerCustomizerOperation struct { func (x *CustomerCustomizerOperation) Reset() { *x = CustomerCustomizerOperation{} - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -157,7 +157,7 @@ func (x *CustomerCustomizerOperation) String() string { func (*CustomerCustomizerOperation) ProtoMessage() {} func (x *CustomerCustomizerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -170,7 +170,7 @@ func (x *CustomerCustomizerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerCustomizerOperation.ProtoReflect.Descriptor instead. func (*CustomerCustomizerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerCustomizerOperation) GetOperation() isCustomerCustomizerOperation_Operation { @@ -235,7 +235,7 @@ type MutateCustomerCustomizersResponse struct { func (x *MutateCustomerCustomizersResponse) Reset() { *x = MutateCustomerCustomizersResponse{} - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -247,7 +247,7 @@ func (x *MutateCustomerCustomizersResponse) String() string { func (*MutateCustomerCustomizersResponse) ProtoMessage() {} func (x *MutateCustomerCustomizersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -260,7 +260,7 @@ func (x *MutateCustomerCustomizersResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerCustomizersResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerCustomizersResponse) GetResults() []*MutateCustomerCustomizerResult { @@ -292,7 +292,7 @@ type MutateCustomerCustomizerResult struct { func (x *MutateCustomerCustomizerResult) Reset() { *x = MutateCustomerCustomizerResult{} - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -304,7 +304,7 @@ func (x *MutateCustomerCustomizerResult) String() string { func (*MutateCustomerCustomizerResult) ProtoMessage() {} func (x *MutateCustomerCustomizerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -317,7 +317,7 @@ func (x *MutateCustomerCustomizerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerCustomizerResult.ProtoReflect.Descriptor instead. func (*MutateCustomerCustomizerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerCustomizerResult) GetResourceName() string { @@ -334,21 +334,21 @@ func (x *MutateCustomerCustomizerResult) GetCustomerCustomizer() *resources.Cust return nil } -var File_google_ads_googleads_v21_services_customer_customizer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_customizer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -388,7 +388,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -401,7 +401,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -420,7 +420,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -428,17 +428,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x32, 0x32, 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, @@ -448,55 +448,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, + 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_customizer_service_proto_goTypes = []any{ - (*MutateCustomerCustomizersRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerCustomizersRequest - (*CustomerCustomizerOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerCustomizerOperation - (*MutateCustomerCustomizersResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerCustomizersResponse - (*MutateCustomerCustomizerResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerCustomizerResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerCustomizer)(nil), // 5: google.ads.googleads.v21.resources.CustomerCustomizer +var file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_customizer_service_proto_goTypes = []any{ + (*MutateCustomerCustomizersRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerCustomizersRequest + (*CustomerCustomizerOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerCustomizerOperation + (*MutateCustomerCustomizersResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerCustomizersResponse + (*MutateCustomerCustomizerResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerCustomizerResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerCustomizer)(nil), // 5: google.ads.googleads.v22.resources.CustomerCustomizer (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_customizer_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerCustomizersRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerCustomizerOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomerCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomerCustomizerOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerCustomizer - 3, // 3: google.ads.googleads.v21.services.MutateCustomerCustomizersResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerCustomizerResult - 6, // 4: google.ads.googleads.v21.services.MutateCustomerCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status - 5, // 5: google.ads.googleads.v21.services.MutateCustomerCustomizerResult.customer_customizer:type_name -> google.ads.googleads.v21.resources.CustomerCustomizer - 0, // 6: google.ads.googleads.v21.services.CustomerCustomizerService.MutateCustomerCustomizers:input_type -> google.ads.googleads.v21.services.MutateCustomerCustomizersRequest - 2, // 7: google.ads.googleads.v21.services.CustomerCustomizerService.MutateCustomerCustomizers:output_type -> google.ads.googleads.v21.services.MutateCustomerCustomizersResponse +var file_google_ads_googleads_v22_services_customer_customizer_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerCustomizersRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerCustomizerOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomerCustomizersRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomerCustomizerOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerCustomizer + 3, // 3: google.ads.googleads.v22.services.MutateCustomerCustomizersResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerCustomizerResult + 6, // 4: google.ads.googleads.v22.services.MutateCustomerCustomizersResponse.partial_failure_error:type_name -> google.rpc.Status + 5, // 5: google.ads.googleads.v22.services.MutateCustomerCustomizerResult.customer_customizer:type_name -> google.ads.googleads.v22.resources.CustomerCustomizer + 0, // 6: google.ads.googleads.v22.services.CustomerCustomizerService.MutateCustomerCustomizers:input_type -> google.ads.googleads.v22.services.MutateCustomerCustomizersRequest + 2, // 7: google.ads.googleads.v22.services.CustomerCustomizerService.MutateCustomerCustomizers:output_type -> google.ads.googleads.v22.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 @@ -504,12 +504,12 @@ var file_google_ads_googleads_v21_services_customer_customizer_service_proto_dep 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_customizer_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_customizer_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_customizer_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_customizer_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_customizer_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_customizer_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerCustomizerOperation_Create)(nil), (*CustomerCustomizerOperation_Remove)(nil), } @@ -517,17 +517,17 @@ func file_google_ads_googleads_v21_services_customer_customizer_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_customizer_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_customizer_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_customizer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_customizer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_customizer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_customizer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_customizer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_customizer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_customizer_service_proto = out.File - file_google_ads_googleads_v21_services_customer_customizer_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_customizer_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_customizer_service_proto = out.File + file_google_ads_googleads_v22_services_customer_customizer_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 75333cd5..9d128305 100644 --- a/services/customer_customizer_service_grpc.pb.go +++ b/services/customer_customizer_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_customizer_service.proto +// source: google/ads/googleads/v22/services/customer_customizer_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName = "/google.ads.googleads.v21.services.CustomerCustomizerService/MutateCustomerCustomizers" + CustomerCustomizerService_MutateCustomerCustomizers_FullMethodName = "/google.ads.googleads.v22.services.CustomerCustomizerService/MutateCustomerCustomizers" ) // CustomerCustomizerServiceClient is the client API for CustomerCustomizerService service. @@ -131,7 +131,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.v21.services.CustomerCustomizerService", + ServiceName: "google.ads.googleads.v22.services.CustomerCustomizerService", HandlerType: (*CustomerCustomizerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CustomerCustomizerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_customizer_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_customizer_service.proto", } diff --git a/services/customer_label_service.pb.go b/services/customer_label_service.pb.go index f4de9ea1..e5bc1402 100644 --- a/services/customer_label_service.pb.go +++ b/services/customer_label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_label_service.proto +// source: google/ads/googleads/v22/services/customer_label_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerLabelService.MutateCustomerLabels][google.ads.googleads.v21.services.CustomerLabelService.MutateCustomerLabels]. +// [CustomerLabelService.MutateCustomerLabels][google.ads.googleads.v22.services.CustomerLabelService.MutateCustomerLabels]. type MutateCustomerLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose customer-label relationships are being @@ -62,7 +62,7 @@ type MutateCustomerLabelsRequest struct { func (x *MutateCustomerLabelsRequest) Reset() { *x = MutateCustomerLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *MutateCustomerLabelsRequest) String() string { func (*MutateCustomerLabelsRequest) ProtoMessage() {} func (x *MutateCustomerLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *MutateCustomerLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerLabelsRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ type CustomerLabelOperation struct { func (x *CustomerLabelOperation) Reset() { *x = CustomerLabelOperation{} - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *CustomerLabelOperation) String() string { func (*CustomerLabelOperation) ProtoMessage() {} func (x *CustomerLabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *CustomerLabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLabelOperation.ProtoReflect.Descriptor instead. func (*CustomerLabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerLabelOperation) GetOperation() isCustomerLabelOperation_Operation { @@ -225,7 +225,7 @@ type MutateCustomerLabelsResponse struct { func (x *MutateCustomerLabelsResponse) Reset() { *x = MutateCustomerLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -237,7 +237,7 @@ func (x *MutateCustomerLabelsResponse) String() string { func (*MutateCustomerLabelsResponse) ProtoMessage() {} func (x *MutateCustomerLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -250,7 +250,7 @@ func (x *MutateCustomerLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerLabelsResponse) GetPartialFailureError() *status.Status { @@ -278,7 +278,7 @@ type MutateCustomerLabelResult struct { func (x *MutateCustomerLabelResult) Reset() { *x = MutateCustomerLabelResult{} - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -290,7 +290,7 @@ func (x *MutateCustomerLabelResult) String() string { func (*MutateCustomerLabelResult) ProtoMessage() {} func (x *MutateCustomerLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -303,7 +303,7 @@ func (x *MutateCustomerLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerLabelResult.ProtoReflect.Descriptor instead. func (*MutateCustomerLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerLabelResult) GetResourceName() string { @@ -313,17 +313,17 @@ func (x *MutateCustomerLabelResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -354,7 +354,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -370,7 +370,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -385,16 +385,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -403,52 +403,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_label_service_proto_goTypes = []any{ - (*MutateCustomerLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerLabelsRequest - (*CustomerLabelOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerLabelOperation - (*MutateCustomerLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerLabelsResponse - (*MutateCustomerLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerLabelResult - (*resources.CustomerLabel)(nil), // 4: google.ads.googleads.v21.resources.CustomerLabel +var file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_label_service_proto_goTypes = []any{ + (*MutateCustomerLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerLabelsRequest + (*CustomerLabelOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerLabelOperation + (*MutateCustomerLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerLabelsResponse + (*MutateCustomerLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerLabelResult + (*resources.CustomerLabel)(nil), // 4: google.ads.googleads.v22.resources.CustomerLabel (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerLabelOperation - 4, // 1: google.ads.googleads.v21.services.CustomerLabelOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerLabel - 5, // 2: google.ads.googleads.v21.services.MutateCustomerLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateCustomerLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerLabelResult - 0, // 4: google.ads.googleads.v21.services.CustomerLabelService.MutateCustomerLabels:input_type -> google.ads.googleads.v21.services.MutateCustomerLabelsRequest - 2, // 5: google.ads.googleads.v21.services.CustomerLabelService.MutateCustomerLabels:output_type -> google.ads.googleads.v21.services.MutateCustomerLabelsResponse +var file_google_ads_googleads_v22_services_customer_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerLabelOperation + 4, // 1: google.ads.googleads.v22.services.CustomerLabelOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerLabel + 5, // 2: google.ads.googleads.v22.services.MutateCustomerLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateCustomerLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerLabelResult + 0, // 4: google.ads.googleads.v22.services.CustomerLabelService.MutateCustomerLabels:input_type -> google.ads.googleads.v22.services.MutateCustomerLabelsRequest + 2, // 5: google.ads.googleads.v22.services.CustomerLabelService.MutateCustomerLabels:output_type -> google.ads.googleads.v22.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 @@ -456,12 +456,12 @@ var file_google_ads_googleads_v21_services_customer_label_service_proto_depIdxs 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_label_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_label_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_label_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_label_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerLabelOperation_Create)(nil), (*CustomerLabelOperation_Remove)(nil), } @@ -469,17 +469,17 @@ func file_google_ads_googleads_v21_services_customer_label_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_label_service_proto = out.File - file_google_ads_googleads_v21_services_customer_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_label_service_proto = out.File + file_google_ads_googleads_v22_services_customer_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 a29f34b2..2b62af6c 100644 --- a/services/customer_label_service_grpc.pb.go +++ b/services/customer_label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_label_service.proto +// source: google/ads/googleads/v22/services/customer_label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerLabelService_MutateCustomerLabels_FullMethodName = "/google.ads.googleads.v21.services.CustomerLabelService/MutateCustomerLabels" + CustomerLabelService_MutateCustomerLabels_FullMethodName = "/google.ads.googleads.v22.services.CustomerLabelService/MutateCustomerLabels" ) // CustomerLabelServiceClient is the client API for CustomerLabelService service. @@ -154,7 +154,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.v21.services.CustomerLabelService", + ServiceName: "google.ads.googleads.v22.services.CustomerLabelService", HandlerType: (*CustomerLabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -163,5 +163,5 @@ var CustomerLabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_label_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_label_service.proto", } diff --git a/services/customer_lifecycle_goal_service.pb.go b/services/customer_lifecycle_goal_service.pb.go index 03aba23d..7b0081d0 100644 --- a/services/customer_lifecycle_goal_service.pb.go +++ b/services/customer_lifecycle_goal_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_lifecycle_goal_service.proto +// source: google/ads/googleads/v22/services/customer_lifecycle_goal_service.proto package services @@ -55,7 +55,7 @@ type ConfigureCustomerLifecycleGoalsRequest struct { func (x *ConfigureCustomerLifecycleGoalsRequest) Reset() { *x = ConfigureCustomerLifecycleGoalsRequest{} - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *ConfigureCustomerLifecycleGoalsRequest) String() string { func (*ConfigureCustomerLifecycleGoalsRequest) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *ConfigureCustomerLifecycleGoalsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use ConfigureCustomerLifecycleGoalsRequest.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{0} } func (x *ConfigureCustomerLifecycleGoalsRequest) GetCustomerId() string { @@ -123,7 +123,7 @@ type CustomerLifecycleGoalOperation struct { func (x *CustomerLifecycleGoalOperation) Reset() { *x = CustomerLifecycleGoalOperation{} - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -135,7 +135,7 @@ func (x *CustomerLifecycleGoalOperation) String() string { func (*CustomerLifecycleGoalOperation) ProtoMessage() {} func (x *CustomerLifecycleGoalOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -148,7 +148,7 @@ func (x *CustomerLifecycleGoalOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerLifecycleGoalOperation.ProtoReflect.Descriptor instead. func (*CustomerLifecycleGoalOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerLifecycleGoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -213,7 +213,7 @@ type ConfigureCustomerLifecycleGoalsResponse struct { func (x *ConfigureCustomerLifecycleGoalsResponse) Reset() { *x = ConfigureCustomerLifecycleGoalsResponse{} - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -225,7 +225,7 @@ func (x *ConfigureCustomerLifecycleGoalsResponse) String() string { func (*ConfigureCustomerLifecycleGoalsResponse) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -238,7 +238,7 @@ func (x *ConfigureCustomerLifecycleGoalsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use ConfigureCustomerLifecycleGoalsResponse.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{2} } func (x *ConfigureCustomerLifecycleGoalsResponse) GetResult() *ConfigureCustomerLifecycleGoalsResult { @@ -259,7 +259,7 @@ type ConfigureCustomerLifecycleGoalsResult struct { func (x *ConfigureCustomerLifecycleGoalsResult) Reset() { *x = ConfigureCustomerLifecycleGoalsResult{} - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -271,7 +271,7 @@ func (x *ConfigureCustomerLifecycleGoalsResult) String() string { func (*ConfigureCustomerLifecycleGoalsResult) ProtoMessage() {} func (x *ConfigureCustomerLifecycleGoalsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -284,7 +284,7 @@ func (x *ConfigureCustomerLifecycleGoalsResult) ProtoReflect() protoreflect.Mess // Deprecated: Use ConfigureCustomerLifecycleGoalsResult.ProtoReflect.Descriptor instead. func (*ConfigureCustomerLifecycleGoalsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescGZIP(), []int{3} } func (x *ConfigureCustomerLifecycleGoalsResult) GetResourceName() string { @@ -294,18 +294,18 @@ func (x *ConfigureCustomerLifecycleGoalsResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -325,7 +325,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, + 0x32, 0x32, 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, @@ -340,12 +340,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -354,7 +354,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -372,17 +372,17 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x66, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x54, 0x2f, 0x76, 0x32, 0x32, 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, @@ -393,54 +393,54 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_goTypes = []any{ - (*ConfigureCustomerLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest - (*CustomerLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerLifecycleGoalOperation - (*ConfigureCustomerLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse - (*ConfigureCustomerLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResult +var file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_goTypes = []any{ + (*ConfigureCustomerLifecycleGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest + (*CustomerLifecycleGoalOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerLifecycleGoalOperation + (*ConfigureCustomerLifecycleGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse + (*ConfigureCustomerLifecycleGoalsResult)(nil), // 3: google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerLifecycleGoal)(nil), // 5: google.ads.googleads.v21.resources.CustomerLifecycleGoal -} -var file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerLifecycleGoalOperation - 4, // 1: google.ads.googleads.v21.services.CustomerLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomerLifecycleGoalOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerLifecycleGoal - 5, // 3: google.ads.googleads.v21.services.CustomerLifecycleGoalOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerLifecycleGoal - 3, // 4: google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResult - 0, // 5: google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:input_type -> google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsRequest - 2, // 6: google.ads.googleads.v21.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:output_type -> google.ads.googleads.v21.services.ConfigureCustomerLifecycleGoalsResponse + (*resources.CustomerLifecycleGoal)(nil), // 5: google.ads.googleads.v22.resources.CustomerLifecycleGoal +} +var file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerLifecycleGoalOperation + 4, // 1: google.ads.googleads.v22.services.CustomerLifecycleGoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomerLifecycleGoalOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerLifecycleGoal + 5, // 3: google.ads.googleads.v22.services.CustomerLifecycleGoalOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerLifecycleGoal + 3, // 4: google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResponse.result:type_name -> google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsResult + 0, // 5: google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:input_type -> google.ads.googleads.v22.services.ConfigureCustomerLifecycleGoalsRequest + 2, // 6: google.ads.googleads.v22.services.CustomerLifecycleGoalService.ConfigureCustomerLifecycleGoals:output_type -> google.ads.googleads.v22.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 @@ -448,12 +448,12 @@ var file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerLifecycleGoalOperation_Create)(nil), (*CustomerLifecycleGoalOperation_Update)(nil), } @@ -461,17 +461,17 @@ func file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto = out.File - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_lifecycle_goal_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto = out.File + file_google_ads_googleads_v22_services_customer_lifecycle_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 4ffaa08f..69ae4d6d 100644 --- a/services/customer_lifecycle_goal_service_grpc.pb.go +++ b/services/customer_lifecycle_goal_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_lifecycle_goal_service.proto +// source: google/ads/googleads/v22/services/customer_lifecycle_goal_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName = "/google.ads.googleads.v21.services.CustomerLifecycleGoalService/ConfigureCustomerLifecycleGoals" + CustomerLifecycleGoalService_ConfigureCustomerLifecycleGoals_FullMethodName = "/google.ads.googleads.v22.services.CustomerLifecycleGoalService/ConfigureCustomerLifecycleGoals" ) // CustomerLifecycleGoalServiceClient is the client API for CustomerLifecycleGoalService service. @@ -149,7 +149,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.v21.services.CustomerLifecycleGoalService", + ServiceName: "google.ads.googleads.v22.services.CustomerLifecycleGoalService", HandlerType: (*CustomerLifecycleGoalServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +158,5 @@ var CustomerLifecycleGoalService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_lifecycle_goal_service.proto", + Metadata: "google/ads/googleads/v22/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 c37f332a..73c18b31 100644 --- a/services/customer_manager_link_service.pb.go +++ b/services/customer_manager_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_manager_link_service.proto +// source: google/ads/googleads/v22/services/customer_manager_link_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [CustomerManagerLinkService.MutateCustomerManagerLink][google.ads.googleads.v21.services.CustomerManagerLinkService.MutateCustomerManagerLink]. +// [CustomerManagerLinkService.MutateCustomerManagerLink][google.ads.googleads.v22.services.CustomerManagerLinkService.MutateCustomerManagerLink]. type MutateCustomerManagerLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customer manager links are being @@ -57,7 +57,7 @@ type MutateCustomerManagerLinkRequest struct { func (x *MutateCustomerManagerLinkRequest) Reset() { *x = MutateCustomerManagerLinkRequest{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *MutateCustomerManagerLinkRequest) String() string { func (*MutateCustomerManagerLinkRequest) ProtoMessage() {} func (x *MutateCustomerManagerLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *MutateCustomerManagerLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerManagerLinkRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerManagerLinkRequest) GetCustomerId() string { @@ -107,7 +107,7 @@ func (x *MutateCustomerManagerLinkRequest) GetValidateOnly() bool { } // Request message for -// [CustomerManagerLinkService.MoveManagerLink][google.ads.googleads.v21.services.CustomerManagerLinkService.MoveManagerLink]. +// [CustomerManagerLinkService.MoveManagerLink][google.ads.googleads.v22.services.CustomerManagerLinkService.MoveManagerLink]. type MoveManagerLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the client customer that is being moved. @@ -129,7 +129,7 @@ type MoveManagerLinkRequest struct { func (x *MoveManagerLinkRequest) Reset() { *x = MoveManagerLinkRequest{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -141,7 +141,7 @@ func (x *MoveManagerLinkRequest) String() string { func (*MoveManagerLinkRequest) ProtoMessage() {} func (x *MoveManagerLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -154,7 +154,7 @@ func (x *MoveManagerLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveManagerLinkRequest.ProtoReflect.Descriptor instead. func (*MoveManagerLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{1} } func (x *MoveManagerLinkRequest) GetCustomerId() string { @@ -206,7 +206,7 @@ type CustomerManagerLinkOperation struct { func (x *CustomerManagerLinkOperation) Reset() { *x = CustomerManagerLinkOperation{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -218,7 +218,7 @@ func (x *CustomerManagerLinkOperation) String() string { func (*CustomerManagerLinkOperation) ProtoMessage() {} func (x *CustomerManagerLinkOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -231,7 +231,7 @@ func (x *CustomerManagerLinkOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerManagerLinkOperation.ProtoReflect.Descriptor instead. func (*CustomerManagerLinkOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{2} } func (x *CustomerManagerLinkOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -279,7 +279,7 @@ type MutateCustomerManagerLinkResponse struct { func (x *MutateCustomerManagerLinkResponse) Reset() { *x = MutateCustomerManagerLinkResponse{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *MutateCustomerManagerLinkResponse) String() string { func (*MutateCustomerManagerLinkResponse) ProtoMessage() {} func (x *MutateCustomerManagerLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *MutateCustomerManagerLinkResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomerManagerLinkResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerManagerLinkResponse) GetResults() []*MutateCustomerManagerLinkResult { @@ -327,7 +327,7 @@ type MoveManagerLinkResponse struct { func (x *MoveManagerLinkResponse) Reset() { *x = MoveManagerLinkResponse{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -339,7 +339,7 @@ func (x *MoveManagerLinkResponse) String() string { func (*MoveManagerLinkResponse) ProtoMessage() {} func (x *MoveManagerLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -352,7 +352,7 @@ func (x *MoveManagerLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MoveManagerLinkResponse.ProtoReflect.Descriptor instead. func (*MoveManagerLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{4} } func (x *MoveManagerLinkResponse) GetResourceName() string { @@ -373,7 +373,7 @@ type MutateCustomerManagerLinkResult struct { func (x *MutateCustomerManagerLinkResult) Reset() { *x = MutateCustomerManagerLinkResult{} - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -385,7 +385,7 @@ func (x *MutateCustomerManagerLinkResult) String() string { func (*MutateCustomerManagerLinkResult) ProtoMessage() {} func (x *MutateCustomerManagerLinkResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -398,7 +398,7 @@ func (x *MutateCustomerManagerLinkResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerManagerLinkResult.ProtoReflect.Descriptor instead. func (*MutateCustomerManagerLinkResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP(), []int{5} } func (x *MutateCustomerManagerLinkResult) GetResourceName() string { @@ -408,18 +408,18 @@ func (x *MutateCustomerManagerLinkResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_manager_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_manager_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -438,7 +438,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -466,7 +466,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -474,7 +474,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -498,33 +498,33 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x3f, 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x6f, 0x76, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x32, 0x32, 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, @@ -534,57 +534,57 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_customer_manager_link_service_proto_goTypes = []any{ - (*MutateCustomerManagerLinkRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerManagerLinkRequest - (*MoveManagerLinkRequest)(nil), // 1: google.ads.googleads.v21.services.MoveManagerLinkRequest - (*CustomerManagerLinkOperation)(nil), // 2: google.ads.googleads.v21.services.CustomerManagerLinkOperation - (*MutateCustomerManagerLinkResponse)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse - (*MoveManagerLinkResponse)(nil), // 4: google.ads.googleads.v21.services.MoveManagerLinkResponse - (*MutateCustomerManagerLinkResult)(nil), // 5: google.ads.googleads.v21.services.MutateCustomerManagerLinkResult +var file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_customer_manager_link_service_proto_goTypes = []any{ + (*MutateCustomerManagerLinkRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerManagerLinkRequest + (*MoveManagerLinkRequest)(nil), // 1: google.ads.googleads.v22.services.MoveManagerLinkRequest + (*CustomerManagerLinkOperation)(nil), // 2: google.ads.googleads.v22.services.CustomerManagerLinkOperation + (*MutateCustomerManagerLinkResponse)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse + (*MoveManagerLinkResponse)(nil), // 4: google.ads.googleads.v22.services.MoveManagerLinkResponse + (*MutateCustomerManagerLinkResult)(nil), // 5: google.ads.googleads.v22.services.MutateCustomerManagerLinkResult (*fieldmaskpb.FieldMask)(nil), // 6: google.protobuf.FieldMask - (*resources.CustomerManagerLink)(nil), // 7: google.ads.googleads.v21.resources.CustomerManagerLink -} -var file_google_ads_googleads_v21_services_customer_manager_link_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.MutateCustomerManagerLinkRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerManagerLinkOperation - 6, // 1: google.ads.googleads.v21.services.CustomerManagerLinkOperation.update_mask:type_name -> google.protobuf.FieldMask - 7, // 2: google.ads.googleads.v21.services.CustomerManagerLinkOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerManagerLink - 5, // 3: google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerManagerLinkResult - 0, // 4: google.ads.googleads.v21.services.CustomerManagerLinkService.MutateCustomerManagerLink:input_type -> google.ads.googleads.v21.services.MutateCustomerManagerLinkRequest - 1, // 5: google.ads.googleads.v21.services.CustomerManagerLinkService.MoveManagerLink:input_type -> google.ads.googleads.v21.services.MoveManagerLinkRequest - 3, // 6: google.ads.googleads.v21.services.CustomerManagerLinkService.MutateCustomerManagerLink:output_type -> google.ads.googleads.v21.services.MutateCustomerManagerLinkResponse - 4, // 7: google.ads.googleads.v21.services.CustomerManagerLinkService.MoveManagerLink:output_type -> google.ads.googleads.v21.services.MoveManagerLinkResponse + (*resources.CustomerManagerLink)(nil), // 7: google.ads.googleads.v22.resources.CustomerManagerLink +} +var file_google_ads_googleads_v22_services_customer_manager_link_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.MutateCustomerManagerLinkRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerManagerLinkOperation + 6, // 1: google.ads.googleads.v22.services.CustomerManagerLinkOperation.update_mask:type_name -> google.protobuf.FieldMask + 7, // 2: google.ads.googleads.v22.services.CustomerManagerLinkOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerManagerLink + 5, // 3: google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerManagerLinkResult + 0, // 4: google.ads.googleads.v22.services.CustomerManagerLinkService.MutateCustomerManagerLink:input_type -> google.ads.googleads.v22.services.MutateCustomerManagerLinkRequest + 1, // 5: google.ads.googleads.v22.services.CustomerManagerLinkService.MoveManagerLink:input_type -> google.ads.googleads.v22.services.MoveManagerLinkRequest + 3, // 6: google.ads.googleads.v22.services.CustomerManagerLinkService.MutateCustomerManagerLink:output_type -> google.ads.googleads.v22.services.MutateCustomerManagerLinkResponse + 4, // 7: google.ads.googleads.v22.services.CustomerManagerLinkService.MoveManagerLink:output_type -> google.ads.googleads.v22.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 @@ -592,29 +592,29 @@ var file_google_ads_googleads_v21_services_customer_manager_link_service_proto_d 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_manager_link_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_manager_link_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_manager_link_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_manager_link_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_manager_link_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_manager_link_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes[2].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes[2].OneofWrappers = []any{ (*CustomerManagerLinkOperation_Update)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_manager_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_manager_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_manager_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_manager_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_manager_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_manager_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_manager_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_manager_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_manager_link_service_proto = out.File - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_manager_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_manager_link_service_proto = out.File + file_google_ads_googleads_v22_services_customer_manager_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 b1daf4b5..e041c3e0 100644 --- a/services/customer_manager_link_service_grpc.pb.go +++ b/services/customer_manager_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_manager_link_service.proto +// source: google/ads/googleads/v22/services/customer_manager_link_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName = "/google.ads.googleads.v21.services.CustomerManagerLinkService/MutateCustomerManagerLink" - CustomerManagerLinkService_MoveManagerLink_FullMethodName = "/google.ads.googleads.v21.services.CustomerManagerLinkService/MoveManagerLink" + CustomerManagerLinkService_MutateCustomerManagerLink_FullMethodName = "/google.ads.googleads.v22.services.CustomerManagerLinkService/MutateCustomerManagerLink" + CustomerManagerLinkService_MoveManagerLink_FullMethodName = "/google.ads.googleads.v22.services.CustomerManagerLinkService/MoveManagerLink" ) // CustomerManagerLinkServiceClient is the client API for CustomerManagerLinkService service. @@ -225,7 +225,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.v21.services.CustomerManagerLinkService", + ServiceName: "google.ads.googleads.v22.services.CustomerManagerLinkService", HandlerType: (*CustomerManagerLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -238,5 +238,5 @@ var CustomerManagerLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_manager_link_service.proto", + Metadata: "google/ads/googleads/v22/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 4fbbc736..31024560 100644 --- a/services/customer_negative_criterion_service.pb.go +++ b/services/customer_negative_criterion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_negative_criterion_service.proto +// source: google/ads/googleads/v22/services/customer_negative_criterion_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerNegativeCriterionService.MutateCustomerNegativeCriteria][google.ads.googleads.v21.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria]. +// [CustomerNegativeCriterionService.MutateCustomerNegativeCriteria][google.ads.googleads.v22.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria]. type MutateCustomerNegativeCriteriaRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose criteria are being modified. @@ -57,14 +57,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomerNegativeCriteriaRequest) Reset() { *x = MutateCustomerNegativeCriteriaRequest{} - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateCustomerNegativeCriteriaRequest) String() string { func (*MutateCustomerNegativeCriteriaRequest) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *MutateCustomerNegativeCriteriaRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateCustomerNegativeCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerNegativeCriteriaRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type CustomerNegativeCriterionOperation struct { func (x *CustomerNegativeCriterionOperation) Reset() { *x = CustomerNegativeCriterionOperation{} - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *CustomerNegativeCriterionOperation) String() string { func (*CustomerNegativeCriterionOperation) ProtoMessage() {} func (x *CustomerNegativeCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *CustomerNegativeCriterionOperation) ProtoReflect() protoreflect.Message // Deprecated: Use CustomerNegativeCriterionOperation.ProtoReflect.Descriptor instead. func (*CustomerNegativeCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerNegativeCriterionOperation) GetOperation() isCustomerNegativeCriterionOperation_Operation { @@ -233,7 +233,7 @@ type MutateCustomerNegativeCriteriaResponse struct { func (x *MutateCustomerNegativeCriteriaResponse) Reset() { *x = MutateCustomerNegativeCriteriaResponse{} - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -245,7 +245,7 @@ func (x *MutateCustomerNegativeCriteriaResponse) String() string { func (*MutateCustomerNegativeCriteriaResponse) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -258,7 +258,7 @@ func (x *MutateCustomerNegativeCriteriaResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateCustomerNegativeCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerNegativeCriteriaResponse) GetPartialFailureError() *status.Status { @@ -289,7 +289,7 @@ type MutateCustomerNegativeCriteriaResult struct { func (x *MutateCustomerNegativeCriteriaResult) Reset() { *x = MutateCustomerNegativeCriteriaResult{} - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -301,7 +301,7 @@ func (x *MutateCustomerNegativeCriteriaResult) String() string { func (*MutateCustomerNegativeCriteriaResult) ProtoMessage() {} func (x *MutateCustomerNegativeCriteriaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -314,7 +314,7 @@ func (x *MutateCustomerNegativeCriteriaResult) ProtoReflect() protoreflect.Messa // Deprecated: Use MutateCustomerNegativeCriteriaResult.ProtoReflect.Descriptor instead. func (*MutateCustomerNegativeCriteriaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerNegativeCriteriaResult) GetResourceName() string { @@ -331,22 +331,22 @@ func (x *MutateCustomerNegativeCriteriaResult) GetCustomerNegativeCriterion() *r return nil } -var File_google_ads_googleads_v21_services_customer_negative_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_negative_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -365,7 +365,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -378,7 +378,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -422,7 +422,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -432,17 +432,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x43, 0x3a, 0x01, 0x2a, 0x22, 0x3e, 0x2f, 0x76, 0x32, 0x32, 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, @@ -452,56 +452,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_goTypes = []any{ - (*MutateCustomerNegativeCriteriaRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest - (*CustomerNegativeCriterionOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerNegativeCriterionOperation - (*MutateCustomerNegativeCriteriaResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse - (*MutateCustomerNegativeCriteriaResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.CustomerNegativeCriterion)(nil), // 5: google.ads.googleads.v21.resources.CustomerNegativeCriterion +var file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_goTypes = []any{ + (*MutateCustomerNegativeCriteriaRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest + (*CustomerNegativeCriterionOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerNegativeCriterionOperation + (*MutateCustomerNegativeCriteriaResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResponse + (*MutateCustomerNegativeCriteriaResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.CustomerNegativeCriterion)(nil), // 5: google.ads.googleads.v22.resources.CustomerNegativeCriterion (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest.operations:type_name -> google.ads.googleads.v21.services.CustomerNegativeCriterionOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomerNegativeCriterionOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerNegativeCriterion - 6, // 3: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResult - 5, // 5: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResult.customer_negative_criterion:type_name -> google.ads.googleads.v21.resources.CustomerNegativeCriterion - 0, // 6: google.ads.googleads.v21.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:input_type -> google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaRequest - 2, // 7: google.ads.googleads.v21.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:output_type -> google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResponse +var file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest.operations:type_name -> google.ads.googleads.v22.services.CustomerNegativeCriterionOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomerNegativeCriterionOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerNegativeCriterion + 6, // 3: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResult + 5, // 5: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResult.customer_negative_criterion:type_name -> google.ads.googleads.v22.resources.CustomerNegativeCriterion + 0, // 6: google.ads.googleads.v22.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:input_type -> google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaRequest + 2, // 7: google.ads.googleads.v22.services.CustomerNegativeCriterionService.MutateCustomerNegativeCriteria:output_type -> google.ads.googleads.v22.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 @@ -509,12 +509,12 @@ var file_google_ads_googleads_v21_services_customer_negative_criterion_service_p 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_negative_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_negative_criterion_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerNegativeCriterionOperation_Create)(nil), (*CustomerNegativeCriterionOperation_Remove)(nil), } @@ -522,17 +522,17 @@ func file_google_ads_googleads_v21_services_customer_negative_criterion_service_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_negative_criterion_service_proto = out.File - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_negative_criterion_service_proto = out.File + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ccd2ed62..e81ff57f 100644 --- a/services/customer_negative_criterion_service_grpc.pb.go +++ b/services/customer_negative_criterion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_negative_criterion_service.proto +// source: google/ads/googleads/v22/services/customer_negative_criterion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName = "/google.ads.googleads.v21.services.CustomerNegativeCriterionService/MutateCustomerNegativeCriteria" + CustomerNegativeCriterionService_MutateCustomerNegativeCriteria_FullMethodName = "/google.ads.googleads.v22.services.CustomerNegativeCriterionService/MutateCustomerNegativeCriteria" ) // CustomerNegativeCriterionServiceClient is the client API for CustomerNegativeCriterionService service. @@ -155,7 +155,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.v21.services.CustomerNegativeCriterionService", + ServiceName: "google.ads.googleads.v22.services.CustomerNegativeCriterionService", HandlerType: (*CustomerNegativeCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -164,5 +164,5 @@ var CustomerNegativeCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_negative_criterion_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_negative_criterion_service.proto", } diff --git a/services/customer_service.pb.go b/services/customer_service.pb.go index f983f911..2a7c051a 100644 --- a/services/customer_service.pb.go +++ b/services/customer_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_service.proto +// source: google/ads/googleads/v22/services/customer_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [CustomerService.MutateCustomer][google.ads.googleads.v21.services.CustomerService.MutateCustomer]. +// [CustomerService.MutateCustomer][google.ads.googleads.v22.services.CustomerService.MutateCustomer]. type MutateCustomerRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being modified. @@ -52,14 +52,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomerRequest) Reset() { *x = MutateCustomerRequest{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *MutateCustomerRequest) String() string { func (*MutateCustomerRequest) ProtoMessage() {} func (x *MutateCustomerRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *MutateCustomerRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerRequest) GetCustomerId() string { @@ -116,7 +116,7 @@ func (x *MutateCustomerRequest) GetResponseContentType() enums.ResponseContentTy } // Request message for -// [CustomerService.CreateCustomerClient][google.ads.googleads.v21.services.CustomerService.CreateCustomerClient]. +// [CustomerService.CreateCustomerClient][google.ads.googleads.v22.services.CustomerService.CreateCustomerClient]. type CreateCustomerClientRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the Manager under whom client customer is being @@ -130,7 +130,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.v21.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.v22.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"` @@ -140,7 +140,7 @@ type CreateCustomerClientRequest struct { func (x *CreateCustomerClientRequest) Reset() { *x = CreateCustomerClientRequest{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *CreateCustomerClientRequest) String() string { func (*CreateCustomerClientRequest) ProtoMessage() {} func (x *CreateCustomerClientRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,7 +165,7 @@ func (x *CreateCustomerClientRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateCustomerClientRequest.ProtoReflect.Descriptor instead. func (*CreateCustomerClientRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{1} } func (x *CreateCustomerClientRequest) GetCustomerId() string { @@ -216,7 +216,7 @@ type CustomerOperation struct { func (x *CustomerOperation) Reset() { *x = CustomerOperation{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -228,7 +228,7 @@ func (x *CustomerOperation) String() string { func (*CustomerOperation) ProtoMessage() {} func (x *CustomerOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -241,7 +241,7 @@ func (x *CustomerOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerOperation.ProtoReflect.Descriptor instead. func (*CustomerOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{2} } func (x *CustomerOperation) GetUpdate() *resources.Customer { @@ -273,7 +273,7 @@ type CreateCustomerClientResponse struct { func (x *CreateCustomerClientResponse) Reset() { *x = CreateCustomerClientResponse{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -285,7 +285,7 @@ func (x *CreateCustomerClientResponse) String() string { func (*CreateCustomerClientResponse) ProtoMessage() {} func (x *CreateCustomerClientResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -298,7 +298,7 @@ func (x *CreateCustomerClientResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateCustomerClientResponse.ProtoReflect.Descriptor instead. func (*CreateCustomerClientResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{3} } func (x *CreateCustomerClientResponse) GetResourceName() string { @@ -326,7 +326,7 @@ type MutateCustomerResponse struct { func (x *MutateCustomerResponse) Reset() { *x = MutateCustomerResponse{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -338,7 +338,7 @@ func (x *MutateCustomerResponse) String() string { func (*MutateCustomerResponse) ProtoMessage() {} func (x *MutateCustomerResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -351,7 +351,7 @@ func (x *MutateCustomerResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{4} } func (x *MutateCustomerResponse) GetResult() *MutateCustomerResult { @@ -375,7 +375,7 @@ type MutateCustomerResult struct { func (x *MutateCustomerResult) Reset() { *x = MutateCustomerResult{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -387,7 +387,7 @@ func (x *MutateCustomerResult) String() string { func (*MutateCustomerResult) ProtoMessage() {} func (x *MutateCustomerResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -400,7 +400,7 @@ func (x *MutateCustomerResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerResult.ProtoReflect.Descriptor instead. func (*MutateCustomerResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{5} } func (x *MutateCustomerResult) GetResourceName() string { @@ -418,7 +418,7 @@ func (x *MutateCustomerResult) GetCustomer() *resources.Customer { } // Request message for -// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v21.services.CustomerService.ListAccessibleCustomers]. +// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v22.services.CustomerService.ListAccessibleCustomers]. type ListAccessibleCustomersRequest struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -427,7 +427,7 @@ type ListAccessibleCustomersRequest struct { func (x *ListAccessibleCustomersRequest) Reset() { *x = ListAccessibleCustomersRequest{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -439,7 +439,7 @@ func (x *ListAccessibleCustomersRequest) String() string { func (*ListAccessibleCustomersRequest) ProtoMessage() {} func (x *ListAccessibleCustomersRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -452,11 +452,11 @@ func (x *ListAccessibleCustomersRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAccessibleCustomersRequest.ProtoReflect.Descriptor instead. func (*ListAccessibleCustomersRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{6} } // Response message for -// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v21.services.CustomerService.ListAccessibleCustomers]. +// [CustomerService.ListAccessibleCustomers][google.ads.googleads.v22.services.CustomerService.ListAccessibleCustomers]. type ListAccessibleCustomersResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Resource name of customers directly accessible by the @@ -468,7 +468,7 @@ type ListAccessibleCustomersResponse struct { func (x *ListAccessibleCustomersResponse) Reset() { *x = ListAccessibleCustomersResponse{} - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -480,7 +480,7 @@ func (x *ListAccessibleCustomersResponse) String() string { func (*ListAccessibleCustomersResponse) ProtoMessage() {} func (x *ListAccessibleCustomersResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -493,7 +493,7 @@ func (x *ListAccessibleCustomersResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListAccessibleCustomersResponse.ProtoReflect.Descriptor instead. func (*ListAccessibleCustomersResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP(), []int{7} } func (x *ListAccessibleCustomersResponse) GetResourceNames() []string { @@ -503,24 +503,24 @@ func (x *ListAccessibleCustomersResponse) GetResourceNames() []string { return nil } -var File_google_ads_googleads_v21_services_customer_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x30, 0x67, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x63, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -538,7 +538,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, + 0x32, 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, @@ -546,7 +546,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -558,7 +558,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -566,7 +566,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x65, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -577,7 +577,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -596,7 +596,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -607,7 +607,7 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -620,43 +620,43 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x2a, 0x3a, 0x01, 0x2a, 0x22, 0x25, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x65, 0x22, 0x2e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x28, 0x12, 0x26, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, @@ -666,65 +666,65 @@ var file_google_ads_googleads_v21_services_customer_service_proto_rawDesc = stri 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x43, 0x75, 0x73, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_customer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_google_ads_googleads_v21_services_customer_service_proto_goTypes = []any{ - (*MutateCustomerRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerRequest - (*CreateCustomerClientRequest)(nil), // 1: google.ads.googleads.v21.services.CreateCustomerClientRequest - (*CustomerOperation)(nil), // 2: google.ads.googleads.v21.services.CustomerOperation - (*CreateCustomerClientResponse)(nil), // 3: google.ads.googleads.v21.services.CreateCustomerClientResponse - (*MutateCustomerResponse)(nil), // 4: google.ads.googleads.v21.services.MutateCustomerResponse - (*MutateCustomerResult)(nil), // 5: google.ads.googleads.v21.services.MutateCustomerResult - (*ListAccessibleCustomersRequest)(nil), // 6: google.ads.googleads.v21.services.ListAccessibleCustomersRequest - (*ListAccessibleCustomersResponse)(nil), // 7: google.ads.googleads.v21.services.ListAccessibleCustomersResponse - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 8: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.Customer)(nil), // 9: google.ads.googleads.v21.resources.Customer - (enums.AccessRoleEnum_AccessRole)(0), // 10: google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole + return file_google_ads_googleads_v22_services_customer_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_customer_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_google_ads_googleads_v22_services_customer_service_proto_goTypes = []any{ + (*MutateCustomerRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerRequest + (*CreateCustomerClientRequest)(nil), // 1: google.ads.googleads.v22.services.CreateCustomerClientRequest + (*CustomerOperation)(nil), // 2: google.ads.googleads.v22.services.CustomerOperation + (*CreateCustomerClientResponse)(nil), // 3: google.ads.googleads.v22.services.CreateCustomerClientResponse + (*MutateCustomerResponse)(nil), // 4: google.ads.googleads.v22.services.MutateCustomerResponse + (*MutateCustomerResult)(nil), // 5: google.ads.googleads.v22.services.MutateCustomerResult + (*ListAccessibleCustomersRequest)(nil), // 6: google.ads.googleads.v22.services.ListAccessibleCustomersRequest + (*ListAccessibleCustomersResponse)(nil), // 7: google.ads.googleads.v22.services.ListAccessibleCustomersResponse + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 8: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.Customer)(nil), // 9: google.ads.googleads.v22.resources.Customer + (enums.AccessRoleEnum_AccessRole)(0), // 10: google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole (*fieldmaskpb.FieldMask)(nil), // 11: google.protobuf.FieldMask } -var file_google_ads_googleads_v21_services_customer_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.MutateCustomerRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerOperation - 8, // 1: google.ads.googleads.v21.services.MutateCustomerRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 9, // 2: google.ads.googleads.v21.services.CreateCustomerClientRequest.customer_client:type_name -> google.ads.googleads.v21.resources.Customer - 10, // 3: google.ads.googleads.v21.services.CreateCustomerClientRequest.access_role:type_name -> google.ads.googleads.v21.enums.AccessRoleEnum.AccessRole - 9, // 4: google.ads.googleads.v21.services.CustomerOperation.update:type_name -> google.ads.googleads.v21.resources.Customer - 11, // 5: google.ads.googleads.v21.services.CustomerOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 6: google.ads.googleads.v21.services.MutateCustomerResponse.result:type_name -> google.ads.googleads.v21.services.MutateCustomerResult - 9, // 7: google.ads.googleads.v21.services.MutateCustomerResult.customer:type_name -> google.ads.googleads.v21.resources.Customer - 0, // 8: google.ads.googleads.v21.services.CustomerService.MutateCustomer:input_type -> google.ads.googleads.v21.services.MutateCustomerRequest - 6, // 9: google.ads.googleads.v21.services.CustomerService.ListAccessibleCustomers:input_type -> google.ads.googleads.v21.services.ListAccessibleCustomersRequest - 1, // 10: google.ads.googleads.v21.services.CustomerService.CreateCustomerClient:input_type -> google.ads.googleads.v21.services.CreateCustomerClientRequest - 4, // 11: google.ads.googleads.v21.services.CustomerService.MutateCustomer:output_type -> google.ads.googleads.v21.services.MutateCustomerResponse - 7, // 12: google.ads.googleads.v21.services.CustomerService.ListAccessibleCustomers:output_type -> google.ads.googleads.v21.services.ListAccessibleCustomersResponse - 3, // 13: google.ads.googleads.v21.services.CustomerService.CreateCustomerClient:output_type -> google.ads.googleads.v21.services.CreateCustomerClientResponse +var file_google_ads_googleads_v22_services_customer_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.MutateCustomerRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerOperation + 8, // 1: google.ads.googleads.v22.services.MutateCustomerRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 9, // 2: google.ads.googleads.v22.services.CreateCustomerClientRequest.customer_client:type_name -> google.ads.googleads.v22.resources.Customer + 10, // 3: google.ads.googleads.v22.services.CreateCustomerClientRequest.access_role:type_name -> google.ads.googleads.v22.enums.AccessRoleEnum.AccessRole + 9, // 4: google.ads.googleads.v22.services.CustomerOperation.update:type_name -> google.ads.googleads.v22.resources.Customer + 11, // 5: google.ads.googleads.v22.services.CustomerOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 6: google.ads.googleads.v22.services.MutateCustomerResponse.result:type_name -> google.ads.googleads.v22.services.MutateCustomerResult + 9, // 7: google.ads.googleads.v22.services.MutateCustomerResult.customer:type_name -> google.ads.googleads.v22.resources.Customer + 0, // 8: google.ads.googleads.v22.services.CustomerService.MutateCustomer:input_type -> google.ads.googleads.v22.services.MutateCustomerRequest + 6, // 9: google.ads.googleads.v22.services.CustomerService.ListAccessibleCustomers:input_type -> google.ads.googleads.v22.services.ListAccessibleCustomersRequest + 1, // 10: google.ads.googleads.v22.services.CustomerService.CreateCustomerClient:input_type -> google.ads.googleads.v22.services.CreateCustomerClientRequest + 4, // 11: google.ads.googleads.v22.services.CustomerService.MutateCustomer:output_type -> google.ads.googleads.v22.services.MutateCustomerResponse + 7, // 12: google.ads.googleads.v22.services.CustomerService.ListAccessibleCustomers:output_type -> google.ads.googleads.v22.services.ListAccessibleCustomersResponse + 3, // 13: google.ads.googleads.v22.services.CustomerService.CreateCustomerClient:output_type -> google.ads.googleads.v22.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 @@ -732,27 +732,27 @@ var file_google_ads_googleads_v21_services_customer_service_proto_depIdxs = []in 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_service_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_customer_service_proto_msgTypes[1].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_service_proto_rawDesc)), NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_service_proto = out.File - file_google_ads_googleads_v21_services_customer_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_service_proto = out.File + file_google_ads_googleads_v22_services_customer_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_customer_service_proto_depIdxs = nil } diff --git a/services/customer_service_grpc.pb.go b/services/customer_service_grpc.pb.go index 87365631..f6eebfb5 100644 --- a/services/customer_service_grpc.pb.go +++ b/services/customer_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_service.proto +// source: google/ads/googleads/v22/services/customer_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerService_MutateCustomer_FullMethodName = "/google.ads.googleads.v21.services.CustomerService/MutateCustomer" - CustomerService_ListAccessibleCustomers_FullMethodName = "/google.ads.googleads.v21.services.CustomerService/ListAccessibleCustomers" - CustomerService_CreateCustomerClient_FullMethodName = "/google.ads.googleads.v21.services.CustomerService/CreateCustomerClient" + CustomerService_MutateCustomer_FullMethodName = "/google.ads.googleads.v22.services.CustomerService/MutateCustomer" + CustomerService_ListAccessibleCustomers_FullMethodName = "/google.ads.googleads.v22.services.CustomerService/ListAccessibleCustomers" + CustomerService_CreateCustomerClient_FullMethodName = "/google.ads.googleads.v22.services.CustomerService/CreateCustomerClient" ) // CustomerServiceClient is the client API for CustomerService service. @@ -272,7 +272,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.v21.services.CustomerService", + ServiceName: "google.ads.googleads.v22.services.CustomerService", HandlerType: (*CustomerServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -289,5 +289,5 @@ var CustomerService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_service.proto", + Metadata: "google/ads/googleads/v22/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 3310c117..8e6fd500 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 @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_sk_ad_network_conversion_value_schema_service.proto +// source: google/ads/googleads/v22/services/customer_sk_ad_network_conversion_value_schema_service.proto package services @@ -49,7 +49,7 @@ type CustomerSkAdNetworkConversionValueSchemaOperation struct { func (x *CustomerSkAdNetworkConversionValueSchemaOperation) Reset() { *x = CustomerSkAdNetworkConversionValueSchemaOperation{} - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaOperation) String() string { func (*CustomerSkAdNetworkConversionValueSchemaOperation) ProtoMessage() {} func (x *CustomerSkAdNetworkConversionValueSchemaOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaOperation) ProtoReflect() proto // Deprecated: Use CustomerSkAdNetworkConversionValueSchemaOperation.ProtoReflect.Descriptor instead. func (*CustomerSkAdNetworkConversionValueSchemaOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{0} } func (x *CustomerSkAdNetworkConversionValueSchemaOperation) GetUpdate() *resources.CustomerSkAdNetworkConversionValueSchema { @@ -85,7 +85,7 @@ func (x *CustomerSkAdNetworkConversionValueSchemaOperation) GetUpdate() *resourc } // Request message for -// [CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema][google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema]. +// [CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema][google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema]. type MutateCustomerSkAdNetworkConversionValueSchemaRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The ID of the customer whose shared sets are being modified. @@ -105,7 +105,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaRequest struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaRequest{} - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) String() string func (*MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,7 +130,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) ProtoReflect() p // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{1} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaRequest) GetCustomerId() string { @@ -174,7 +174,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaResult struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaResult{} - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -186,7 +186,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) String() string { func (*MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -199,7 +199,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) ProtoReflect() pr // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaResult.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaResult) GetResourceName() string { @@ -230,7 +230,7 @@ type MutateCustomerSkAdNetworkConversionValueSchemaResponse struct { func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) Reset() { *x = MutateCustomerSkAdNetworkConversionValueSchemaResponse{} - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) String() string func (*MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoMessage() {} func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) ProtoReflect() // Deprecated: Use MutateCustomerSkAdNetworkConversionValueSchemaResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerSkAdNetworkConversionValueSchemaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) GetResult() *MutateCustomerSkAdNetworkConversionValueSchemaResult { @@ -272,19 +272,19 @@ func (x *MutateCustomerSkAdNetworkConversionValueSchemaResponse) GetWarning() *s return nil } -var File_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -303,7 +303,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -315,7 +315,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -343,7 +343,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -358,18 +358,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x54, 0x3a, 0x01, 0x2a, 0x22, 0x4f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -380,7 +380,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -388,46 +388,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = []any{ - (*CustomerSkAdNetworkConversionValueSchemaOperation)(nil), // 0: google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaOperation - (*MutateCustomerSkAdNetworkConversionValueSchemaRequest)(nil), // 1: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest - (*MutateCustomerSkAdNetworkConversionValueSchemaResult)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResult - (*MutateCustomerSkAdNetworkConversionValueSchemaResponse)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse - (*resources.CustomerSkAdNetworkConversionValueSchema)(nil), // 4: google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema +var file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = []any{ + (*CustomerSkAdNetworkConversionValueSchemaOperation)(nil), // 0: google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaOperation + (*MutateCustomerSkAdNetworkConversionValueSchemaRequest)(nil), // 1: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest + (*MutateCustomerSkAdNetworkConversionValueSchemaResult)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResult + (*MutateCustomerSkAdNetworkConversionValueSchemaResponse)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse + (*resources.CustomerSkAdNetworkConversionValueSchema)(nil), // 4: google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerSkAdNetworkConversionValueSchema - 0, // 1: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaOperation - 2, // 2: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.result:type_name -> google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResult - 5, // 3: google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.warning:type_name -> google.rpc.Status - 1, // 4: google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:input_type -> google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest - 3, // 5: google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:output_type -> google.ads.googleads.v21.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse +var file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerSkAdNetworkConversionValueSchema + 0, // 1: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaOperation + 2, // 2: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.result:type_name -> google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResult + 5, // 3: google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaResponse.warning:type_name -> google.rpc.Status + 1, // 4: google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:input_type -> google.ads.googleads.v22.services.MutateCustomerSkAdNetworkConversionValueSchemaRequest + 3, // 5: google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaService.MutateCustomerSkAdNetworkConversionValueSchema:output_type -> google.ads.googleads.v22.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 @@ -436,27 +436,27 @@ var file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_val } func init() { - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto != nil { +func file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto = out.File - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_sk_ad_network_conversion_value_schema_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto = out.File + file_google_ads_googleads_v22_services_customer_sk_ad_network_conversion_value_schema_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 c56ccdbb..f4615210 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 @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_sk_ad_network_conversion_value_schema_service.proto +// source: google/ads/googleads/v22/services/customer_sk_ad_network_conversion_value_schema_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName = "/google.ads.googleads.v21.services.CustomerSkAdNetworkConversionValueSchemaService/MutateCustomerSkAdNetworkConversionValueSchema" + CustomerSkAdNetworkConversionValueSchemaService_MutateCustomerSkAdNetworkConversionValueSchema_FullMethodName = "/google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaService/MutateCustomerSkAdNetworkConversionValueSchema" ) // CustomerSkAdNetworkConversionValueSchemaServiceClient is the client API for CustomerSkAdNetworkConversionValueSchemaService service. @@ -145,7 +145,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.v21.services.CustomerSkAdNetworkConversionValueSchemaService", + ServiceName: "google.ads.googleads.v22.services.CustomerSkAdNetworkConversionValueSchemaService", HandlerType: (*CustomerSkAdNetworkConversionValueSchemaServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -154,5 +154,5 @@ var CustomerSkAdNetworkConversionValueSchemaService_ServiceDesc = grpc.ServiceDe }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_sk_ad_network_conversion_value_schema_service.proto", + Metadata: "google/ads/googleads/v22/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 faaad14a..cc01783c 100644 --- a/services/customer_user_access_invitation_service.pb.go +++ b/services/customer_user_access_invitation_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_user_access_invitation_service.proto +// source: google/ads/googleads/v22/services/customer_user_access_invitation_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation][google.ads.googleads.v21.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation] +// [CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation][google.ads.googleads.v22.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation] type MutateCustomerUserAccessInvitationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose access invitation is being modified. @@ -51,7 +51,7 @@ type MutateCustomerUserAccessInvitationRequest struct { func (x *MutateCustomerUserAccessInvitationRequest) Reset() { *x = MutateCustomerUserAccessInvitationRequest{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *MutateCustomerUserAccessInvitationRequest) String() string { func (*MutateCustomerUserAccessInvitationRequest) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *MutateCustomerUserAccessInvitationRequest) ProtoReflect() protoreflect. // Deprecated: Use MutateCustomerUserAccessInvitationRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerUserAccessInvitationRequest) GetCustomerId() string { @@ -109,7 +109,7 @@ type CustomerUserAccessInvitationOperation struct { func (x *CustomerUserAccessInvitationOperation) Reset() { *x = CustomerUserAccessInvitationOperation{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -121,7 +121,7 @@ func (x *CustomerUserAccessInvitationOperation) String() string { func (*CustomerUserAccessInvitationOperation) ProtoMessage() {} func (x *CustomerUserAccessInvitationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -134,7 +134,7 @@ func (x *CustomerUserAccessInvitationOperation) ProtoReflect() protoreflect.Mess // Deprecated: Use CustomerUserAccessInvitationOperation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessInvitationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerUserAccessInvitationOperation) GetOperation() isCustomerUserAccessInvitationOperation_Operation { @@ -197,7 +197,7 @@ type MutateCustomerUserAccessInvitationResponse struct { func (x *MutateCustomerUserAccessInvitationResponse) Reset() { *x = MutateCustomerUserAccessInvitationResponse{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *MutateCustomerUserAccessInvitationResponse) String() string { func (*MutateCustomerUserAccessInvitationResponse) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *MutateCustomerUserAccessInvitationResponse) ProtoReflect() protoreflect // Deprecated: Use MutateCustomerUserAccessInvitationResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerUserAccessInvitationResponse) GetResult() *MutateCustomerUserAccessInvitationResult { @@ -243,7 +243,7 @@ type MutateCustomerUserAccessInvitationResult struct { func (x *MutateCustomerUserAccessInvitationResult) Reset() { *x = MutateCustomerUserAccessInvitationResult{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -255,7 +255,7 @@ func (x *MutateCustomerUserAccessInvitationResult) String() string { func (*MutateCustomerUserAccessInvitationResult) ProtoMessage() {} func (x *MutateCustomerUserAccessInvitationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -268,7 +268,7 @@ func (x *MutateCustomerUserAccessInvitationResult) ProtoReflect() protoreflect.M // Deprecated: Use MutateCustomerUserAccessInvitationResult.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessInvitationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerUserAccessInvitationResult) GetResourceName() string { @@ -278,18 +278,18 @@ func (x *MutateCustomerUserAccessInvitationResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -308,7 +308,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x76, 0x32, 0x32, 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, @@ -317,7 +317,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -332,7 +332,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -351,18 +351,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, + 0x32, 0x32, 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, @@ -372,51 +372,51 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_goTypes = []any{ - (*MutateCustomerUserAccessInvitationRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationRequest - (*CustomerUserAccessInvitationOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerUserAccessInvitationOperation - (*MutateCustomerUserAccessInvitationResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResponse - (*MutateCustomerUserAccessInvitationResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResult - (*resources.CustomerUserAccessInvitation)(nil), // 4: google.ads.googleads.v21.resources.CustomerUserAccessInvitation -} -var file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerUserAccessInvitationOperation - 4, // 1: google.ads.googleads.v21.services.CustomerUserAccessInvitationOperation.create:type_name -> google.ads.googleads.v21.resources.CustomerUserAccessInvitation - 3, // 2: google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResponse.result:type_name -> google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResult - 0, // 3: google.ads.googleads.v21.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:input_type -> google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationRequest - 2, // 4: google.ads.googleads.v21.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:output_type -> google.ads.googleads.v21.services.MutateCustomerUserAccessInvitationResponse + return file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_goTypes = []any{ + (*MutateCustomerUserAccessInvitationRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationRequest + (*CustomerUserAccessInvitationOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerUserAccessInvitationOperation + (*MutateCustomerUserAccessInvitationResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResponse + (*MutateCustomerUserAccessInvitationResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResult + (*resources.CustomerUserAccessInvitation)(nil), // 4: google.ads.googleads.v22.resources.CustomerUserAccessInvitation +} +var file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerUserAccessInvitationOperation + 4, // 1: google.ads.googleads.v22.services.CustomerUserAccessInvitationOperation.create:type_name -> google.ads.googleads.v22.resources.CustomerUserAccessInvitation + 3, // 2: google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResponse.result:type_name -> google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationResult + 0, // 3: google.ads.googleads.v22.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:input_type -> google.ads.googleads.v22.services.MutateCustomerUserAccessInvitationRequest + 2, // 4: google.ads.googleads.v22.services.CustomerUserAccessInvitationService.MutateCustomerUserAccessInvitation:output_type -> google.ads.googleads.v22.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 @@ -425,13 +425,13 @@ var file_google_ads_googleads_v21_services_customer_user_access_invitation_servi } func init() { - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_init() + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto != nil { +func file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerUserAccessInvitationOperation_Create)(nil), (*CustomerUserAccessInvitationOperation_Remove)(nil), } @@ -439,17 +439,17 @@ func file_google_ads_googleads_v21_services_customer_user_access_invitation_serv out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto = out.File - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_user_access_invitation_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto = out.File + file_google_ads_googleads_v22_services_customer_user_access_invitation_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 bb2d8cbb..30e41929 100644 --- a/services/customer_user_access_invitation_service_grpc.pb.go +++ b/services/customer_user_access_invitation_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_user_access_invitation_service.proto +// source: google/ads/googleads/v22/services/customer_user_access_invitation_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName = "/google.ads.googleads.v21.services.CustomerUserAccessInvitationService/MutateCustomerUserAccessInvitation" + CustomerUserAccessInvitationService_MutateCustomerUserAccessInvitation_FullMethodName = "/google.ads.googleads.v22.services.CustomerUserAccessInvitationService/MutateCustomerUserAccessInvitation" ) // CustomerUserAccessInvitationServiceClient is the client API for CustomerUserAccessInvitationService service. @@ -151,7 +151,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.v21.services.CustomerUserAccessInvitationService", + ServiceName: "google.ads.googleads.v22.services.CustomerUserAccessInvitationService", HandlerType: (*CustomerUserAccessInvitationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -160,5 +160,5 @@ var CustomerUserAccessInvitationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_user_access_invitation_service.proto", + Metadata: "google/ads/googleads/v22/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 97591d93..c6ff1441 100644 --- a/services/customer_user_access_service.pb.go +++ b/services/customer_user_access_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_user_access_service.proto +// source: google/ads/googleads/v22/services/customer_user_access_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Mutate Request for -// [CustomerUserAccessService.MutateCustomerUserAccess][google.ads.googleads.v21.services.CustomerUserAccessService.MutateCustomerUserAccess]. +// [CustomerUserAccessService.MutateCustomerUserAccess][google.ads.googleads.v22.services.CustomerUserAccessService.MutateCustomerUserAccess]. type MutateCustomerUserAccessRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being modified. @@ -52,7 +52,7 @@ type MutateCustomerUserAccessRequest struct { func (x *MutateCustomerUserAccessRequest) Reset() { *x = MutateCustomerUserAccessRequest{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *MutateCustomerUserAccessRequest) String() string { func (*MutateCustomerUserAccessRequest) ProtoMessage() {} func (x *MutateCustomerUserAccessRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *MutateCustomerUserAccessRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessRequest.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomerUserAccessRequest) GetCustomerId() string { @@ -112,7 +112,7 @@ type CustomerUserAccessOperation struct { func (x *CustomerUserAccessOperation) Reset() { *x = CustomerUserAccessOperation{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *CustomerUserAccessOperation) String() string { func (*CustomerUserAccessOperation) ProtoMessage() {} func (x *CustomerUserAccessOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,7 +137,7 @@ func (x *CustomerUserAccessOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomerUserAccessOperation.ProtoReflect.Descriptor instead. func (*CustomerUserAccessOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescGZIP(), []int{1} } func (x *CustomerUserAccessOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -205,7 +205,7 @@ type MutateCustomerUserAccessResponse struct { func (x *MutateCustomerUserAccessResponse) Reset() { *x = MutateCustomerUserAccessResponse{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -217,7 +217,7 @@ func (x *MutateCustomerUserAccessResponse) String() string { func (*MutateCustomerUserAccessResponse) ProtoMessage() {} func (x *MutateCustomerUserAccessResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -230,7 +230,7 @@ func (x *MutateCustomerUserAccessResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessResponse.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomerUserAccessResponse) GetResult() *MutateCustomerUserAccessResult { @@ -251,7 +251,7 @@ type MutateCustomerUserAccessResult struct { func (x *MutateCustomerUserAccessResult) Reset() { *x = MutateCustomerUserAccessResult{} - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -263,7 +263,7 @@ func (x *MutateCustomerUserAccessResult) String() string { func (*MutateCustomerUserAccessResult) ProtoMessage() {} func (x *MutateCustomerUserAccessResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -276,7 +276,7 @@ func (x *MutateCustomerUserAccessResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomerUserAccessResult.ProtoReflect.Descriptor instead. func (*MutateCustomerUserAccessResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomerUserAccessResult) GetResourceName() string { @@ -286,18 +286,18 @@ func (x *MutateCustomerUserAccessResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_customer_user_access_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customer_user_access_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, + 0x76, 0x32, 0x32, 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, @@ -316,7 +316,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -328,7 +328,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x75, 0x73, + 0x32, 0x32, 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, @@ -341,7 +341,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -356,17 +356,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -376,52 +376,52 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customer_user_access_service_proto_goTypes = []any{ - (*MutateCustomerUserAccessRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomerUserAccessRequest - (*CustomerUserAccessOperation)(nil), // 1: google.ads.googleads.v21.services.CustomerUserAccessOperation - (*MutateCustomerUserAccessResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomerUserAccessResponse - (*MutateCustomerUserAccessResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomerUserAccessResult +var file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customer_user_access_service_proto_goTypes = []any{ + (*MutateCustomerUserAccessRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomerUserAccessRequest + (*CustomerUserAccessOperation)(nil), // 1: google.ads.googleads.v22.services.CustomerUserAccessOperation + (*MutateCustomerUserAccessResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomerUserAccessResponse + (*MutateCustomerUserAccessResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomerUserAccessResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.CustomerUserAccess)(nil), // 5: google.ads.googleads.v21.resources.CustomerUserAccess -} -var file_google_ads_googleads_v21_services_customer_user_access_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomerUserAccessRequest.operation:type_name -> google.ads.googleads.v21.services.CustomerUserAccessOperation - 4, // 1: google.ads.googleads.v21.services.CustomerUserAccessOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.CustomerUserAccessOperation.update:type_name -> google.ads.googleads.v21.resources.CustomerUserAccess - 3, // 3: google.ads.googleads.v21.services.MutateCustomerUserAccessResponse.result:type_name -> google.ads.googleads.v21.services.MutateCustomerUserAccessResult - 0, // 4: google.ads.googleads.v21.services.CustomerUserAccessService.MutateCustomerUserAccess:input_type -> google.ads.googleads.v21.services.MutateCustomerUserAccessRequest - 2, // 5: google.ads.googleads.v21.services.CustomerUserAccessService.MutateCustomerUserAccess:output_type -> google.ads.googleads.v21.services.MutateCustomerUserAccessResponse + (*resources.CustomerUserAccess)(nil), // 5: google.ads.googleads.v22.resources.CustomerUserAccess +} +var file_google_ads_googleads_v22_services_customer_user_access_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomerUserAccessRequest.operation:type_name -> google.ads.googleads.v22.services.CustomerUserAccessOperation + 4, // 1: google.ads.googleads.v22.services.CustomerUserAccessOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.CustomerUserAccessOperation.update:type_name -> google.ads.googleads.v22.resources.CustomerUserAccess + 3, // 3: google.ads.googleads.v22.services.MutateCustomerUserAccessResponse.result:type_name -> google.ads.googleads.v22.services.MutateCustomerUserAccessResult + 0, // 4: google.ads.googleads.v22.services.CustomerUserAccessService.MutateCustomerUserAccess:input_type -> google.ads.googleads.v22.services.MutateCustomerUserAccessRequest + 2, // 5: google.ads.googleads.v22.services.CustomerUserAccessService.MutateCustomerUserAccess:output_type -> google.ads.googleads.v22.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 @@ -429,12 +429,12 @@ var file_google_ads_googleads_v21_services_customer_user_access_service_proto_de 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customer_user_access_service_proto_init() } -func file_google_ads_googleads_v21_services_customer_user_access_service_proto_init() { - if File_google_ads_googleads_v21_services_customer_user_access_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customer_user_access_service_proto_init() } +func file_google_ads_googleads_v22_services_customer_user_access_service_proto_init() { + if File_google_ads_googleads_v22_services_customer_user_access_service_proto != nil { return } - file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomerUserAccessOperation_Update)(nil), (*CustomerUserAccessOperation_Remove)(nil), } @@ -442,17 +442,17 @@ func file_google_ads_googleads_v21_services_customer_user_access_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customer_user_access_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customer_user_access_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customer_user_access_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customer_user_access_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customer_user_access_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customer_user_access_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customer_user_access_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customer_user_access_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customer_user_access_service_proto = out.File - file_google_ads_googleads_v21_services_customer_user_access_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customer_user_access_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customer_user_access_service_proto = out.File + file_google_ads_googleads_v22_services_customer_user_access_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 96de6606..c63b88a4 100644 --- a/services/customer_user_access_service_grpc.pb.go +++ b/services/customer_user_access_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customer_user_access_service.proto +// source: google/ads/googleads/v22/services/customer_user_access_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName = "/google.ads.googleads.v21.services.CustomerUserAccessService/MutateCustomerUserAccess" + CustomerUserAccessService_MutateCustomerUserAccess_FullMethodName = "/google.ads.googleads.v22.services.CustomerUserAccessService/MutateCustomerUserAccess" ) // CustomerUserAccessServiceClient is the client API for CustomerUserAccessService service. @@ -155,7 +155,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.v21.services.CustomerUserAccessService", + ServiceName: "google.ads.googleads.v22.services.CustomerUserAccessService", HandlerType: (*CustomerUserAccessServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -164,5 +164,5 @@ var CustomerUserAccessService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customer_user_access_service.proto", + Metadata: "google/ads/googleads/v22/services/customer_user_access_service.proto", } diff --git a/services/customizer_attribute_service.pb.go b/services/customizer_attribute_service.pb.go index 2e8ea741..559f611d 100644 --- a/services/customizer_attribute_service.pb.go +++ b/services/customizer_attribute_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/customizer_attribute_service.proto +// source: google/ads/googleads/v22/services/customizer_attribute_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [CustomizerAttributeService.MutateCustomizerAttributes][google.ads.googleads.v21.services.CustomizerAttributeService.MutateCustomizerAttributes]. +// [CustomizerAttributeService.MutateCustomizerAttributes][google.ads.googleads.v22.services.CustomizerAttributeService.MutateCustomizerAttributes]. type MutateCustomizerAttributesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose customizer attributes are being @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateCustomizerAttributesRequest) Reset() { *x = MutateCustomizerAttributesRequest{} - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateCustomizerAttributesRequest) String() string { func (*MutateCustomizerAttributesRequest) ProtoMessage() {} func (x *MutateCustomizerAttributesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateCustomizerAttributesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomizerAttributesRequest.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescGZIP(), []int{0} } func (x *MutateCustomizerAttributesRequest) GetCustomerId() string { @@ -148,7 +148,7 @@ type CustomizerAttributeOperation struct { func (x *CustomizerAttributeOperation) Reset() { *x = CustomizerAttributeOperation{} - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -160,7 +160,7 @@ func (x *CustomizerAttributeOperation) String() string { func (*CustomizerAttributeOperation) ProtoMessage() {} func (x *CustomizerAttributeOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -173,7 +173,7 @@ func (x *CustomizerAttributeOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use CustomizerAttributeOperation.ProtoReflect.Descriptor instead. func (*CustomizerAttributeOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescGZIP(), []int{1} } func (x *CustomizerAttributeOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -245,7 +245,7 @@ type MutateCustomizerAttributesResponse struct { func (x *MutateCustomizerAttributesResponse) Reset() { *x = MutateCustomizerAttributesResponse{} - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -257,7 +257,7 @@ func (x *MutateCustomizerAttributesResponse) String() string { func (*MutateCustomizerAttributesResponse) ProtoMessage() {} func (x *MutateCustomizerAttributesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -270,7 +270,7 @@ func (x *MutateCustomizerAttributesResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateCustomizerAttributesResponse.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescGZIP(), []int{2} } func (x *MutateCustomizerAttributesResponse) GetResults() []*MutateCustomizerAttributeResult { @@ -302,7 +302,7 @@ type MutateCustomizerAttributeResult struct { func (x *MutateCustomizerAttributeResult) Reset() { *x = MutateCustomizerAttributeResult{} - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -314,7 +314,7 @@ func (x *MutateCustomizerAttributeResult) String() string { func (*MutateCustomizerAttributeResult) ProtoMessage() {} func (x *MutateCustomizerAttributeResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -327,7 +327,7 @@ func (x *MutateCustomizerAttributeResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateCustomizerAttributeResult.ProtoReflect.Descriptor instead. func (*MutateCustomizerAttributeResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescGZIP(), []int{3} } func (x *MutateCustomizerAttributeResult) GetResourceName() string { @@ -344,21 +344,21 @@ func (x *MutateCustomizerAttributeResult) GetCustomizerAttribute() *resources.Cu return nil } -var File_google_ads_googleads_v21_services_customizer_attribute_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_customizer_attribute_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -404,7 +404,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -436,7 +436,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -445,17 +445,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -465,57 +465,57 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDescData + return file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_customizer_attribute_service_proto_goTypes = []any{ - (*MutateCustomizerAttributesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateCustomizerAttributesRequest - (*CustomizerAttributeOperation)(nil), // 1: google.ads.googleads.v21.services.CustomizerAttributeOperation - (*MutateCustomizerAttributesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateCustomizerAttributesResponse - (*MutateCustomizerAttributeResult)(nil), // 3: google.ads.googleads.v21.services.MutateCustomizerAttributeResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_customizer_attribute_service_proto_goTypes = []any{ + (*MutateCustomizerAttributesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateCustomizerAttributesRequest + (*CustomizerAttributeOperation)(nil), // 1: google.ads.googleads.v22.services.CustomizerAttributeOperation + (*MutateCustomizerAttributesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateCustomizerAttributesResponse + (*MutateCustomizerAttributeResult)(nil), // 3: google.ads.googleads.v22.services.MutateCustomizerAttributeResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.CustomizerAttribute)(nil), // 6: google.ads.googleads.v21.resources.CustomizerAttribute + (*resources.CustomizerAttribute)(nil), // 6: google.ads.googleads.v22.resources.CustomizerAttribute (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_customizer_attribute_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateCustomizerAttributesRequest.operations:type_name -> google.ads.googleads.v21.services.CustomizerAttributeOperation - 4, // 1: google.ads.googleads.v21.services.MutateCustomizerAttributesRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.CustomizerAttributeOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.CustomizerAttributeOperation.create:type_name -> google.ads.googleads.v21.resources.CustomizerAttribute - 3, // 4: google.ads.googleads.v21.services.MutateCustomizerAttributesResponse.results:type_name -> google.ads.googleads.v21.services.MutateCustomizerAttributeResult - 7, // 5: google.ads.googleads.v21.services.MutateCustomizerAttributesResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 6: google.ads.googleads.v21.services.MutateCustomizerAttributeResult.customizer_attribute:type_name -> google.ads.googleads.v21.resources.CustomizerAttribute - 0, // 7: google.ads.googleads.v21.services.CustomizerAttributeService.MutateCustomizerAttributes:input_type -> google.ads.googleads.v21.services.MutateCustomizerAttributesRequest - 2, // 8: google.ads.googleads.v21.services.CustomizerAttributeService.MutateCustomizerAttributes:output_type -> google.ads.googleads.v21.services.MutateCustomizerAttributesResponse +var file_google_ads_googleads_v22_services_customizer_attribute_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateCustomizerAttributesRequest.operations:type_name -> google.ads.googleads.v22.services.CustomizerAttributeOperation + 4, // 1: google.ads.googleads.v22.services.MutateCustomizerAttributesRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.CustomizerAttributeOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.CustomizerAttributeOperation.create:type_name -> google.ads.googleads.v22.resources.CustomizerAttribute + 3, // 4: google.ads.googleads.v22.services.MutateCustomizerAttributesResponse.results:type_name -> google.ads.googleads.v22.services.MutateCustomizerAttributeResult + 7, // 5: google.ads.googleads.v22.services.MutateCustomizerAttributesResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 6: google.ads.googleads.v22.services.MutateCustomizerAttributeResult.customizer_attribute:type_name -> google.ads.googleads.v22.resources.CustomizerAttribute + 0, // 7: google.ads.googleads.v22.services.CustomizerAttributeService.MutateCustomizerAttributes:input_type -> google.ads.googleads.v22.services.MutateCustomizerAttributesRequest + 2, // 8: google.ads.googleads.v22.services.CustomizerAttributeService.MutateCustomizerAttributes:output_type -> google.ads.googleads.v22.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 @@ -523,12 +523,12 @@ var file_google_ads_googleads_v21_services_customizer_attribute_service_proto_de 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_customizer_attribute_service_proto_init() } -func file_google_ads_googleads_v21_services_customizer_attribute_service_proto_init() { - if File_google_ads_googleads_v21_services_customizer_attribute_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_customizer_attribute_service_proto_init() } +func file_google_ads_googleads_v22_services_customizer_attribute_service_proto_init() { + if File_google_ads_googleads_v22_services_customizer_attribute_service_proto != nil { return } - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes[1].OneofWrappers = []any{ (*CustomizerAttributeOperation_Create)(nil), (*CustomizerAttributeOperation_Remove)(nil), } @@ -536,17 +536,17 @@ func file_google_ads_googleads_v21_services_customizer_attribute_service_proto_i out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_customizer_attribute_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_customizer_attribute_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_customizer_attribute_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_customizer_attribute_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_customizer_attribute_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_customizer_attribute_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_customizer_attribute_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_customizer_attribute_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_customizer_attribute_service_proto = out.File - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_customizer_attribute_service_proto = out.File + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 518f0265..d95e37d3 100644 --- a/services/customizer_attribute_service_grpc.pb.go +++ b/services/customizer_attribute_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/customizer_attribute_service.proto +// source: google/ads/googleads/v22/services/customizer_attribute_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName = "/google.ads.googleads.v21.services.CustomizerAttributeService/MutateCustomizerAttributes" + CustomizerAttributeService_MutateCustomizerAttributes_FullMethodName = "/google.ads.googleads.v22.services.CustomizerAttributeService/MutateCustomizerAttributes" ) // CustomizerAttributeServiceClient is the client API for CustomizerAttributeService service. @@ -131,7 +131,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.v21.services.CustomizerAttributeService", + ServiceName: "google.ads.googleads.v22.services.CustomizerAttributeService", HandlerType: (*CustomizerAttributeServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -140,5 +140,5 @@ var CustomizerAttributeService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/customizer_attribute_service.proto", + Metadata: "google/ads/googleads/v22/services/customizer_attribute_service.proto", } diff --git a/services/data_link_service.pb.go b/services/data_link_service.pb.go index 84e801b8..d08d02f7 100644 --- a/services/data_link_service.pb.go +++ b/services/data_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/data_link_service.proto +// source: google/ads/googleads/v22/services/data_link_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [DataLinkService.CreateDataLink][google.ads.googleads.v21.services.DataLinkService.CreateDataLink]. +// [DataLinkService.CreateDataLink][google.ads.googleads.v22.services.DataLinkService.CreateDataLink]. type CreateDataLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which the data link is created. @@ -52,7 +52,7 @@ type CreateDataLinkRequest struct { func (x *CreateDataLinkRequest) Reset() { *x = CreateDataLinkRequest{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *CreateDataLinkRequest) String() string { func (*CreateDataLinkRequest) ProtoMessage() {} func (x *CreateDataLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *CreateDataLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDataLinkRequest.ProtoReflect.Descriptor instead. func (*CreateDataLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{0} } func (x *CreateDataLinkRequest) GetCustomerId() string { @@ -95,7 +95,7 @@ func (x *CreateDataLinkRequest) GetDataLink() *resources.DataLink { } // Response message for -// [DataLinkService.CreateDataLink][google.ads.googleads.v21.services.DataLinkService.CreateDataLink]. +// [DataLinkService.CreateDataLink][google.ads.googleads.v22.services.DataLinkService.CreateDataLink]. type CreateDataLinkResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Returned for successful operations. Resource name of the data link. @@ -106,7 +106,7 @@ type CreateDataLinkResponse struct { func (x *CreateDataLinkResponse) Reset() { *x = CreateDataLinkResponse{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -118,7 +118,7 @@ func (x *CreateDataLinkResponse) String() string { func (*CreateDataLinkResponse) ProtoMessage() {} func (x *CreateDataLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -131,7 +131,7 @@ func (x *CreateDataLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateDataLinkResponse.ProtoReflect.Descriptor instead. func (*CreateDataLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{1} } func (x *CreateDataLinkResponse) GetResourceName() string { @@ -142,7 +142,7 @@ func (x *CreateDataLinkResponse) GetResourceName() string { } // Request message for -// [DataLinkService.RemoveDataLink][google.ads.googleads.v21.services.DataLinkService.RemoveDataLink]. +// [DataLinkService.RemoveDataLink][google.ads.googleads.v22.services.DataLinkService.RemoveDataLink]. type RemoveDataLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which the data link is updated. @@ -155,7 +155,7 @@ type RemoveDataLinkRequest struct { func (x *RemoveDataLinkRequest) Reset() { *x = RemoveDataLinkRequest{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -167,7 +167,7 @@ func (x *RemoveDataLinkRequest) String() string { func (*RemoveDataLinkRequest) ProtoMessage() {} func (x *RemoveDataLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -180,7 +180,7 @@ func (x *RemoveDataLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveDataLinkRequest.ProtoReflect.Descriptor instead. func (*RemoveDataLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{2} } func (x *RemoveDataLinkRequest) GetCustomerId() string { @@ -198,7 +198,7 @@ func (x *RemoveDataLinkRequest) GetResourceName() string { } // Response message for -// [DataLinkService.RemoveDataLink][google.ads.googleads.v21.services.DataLinkService.RemoveDataLink]. +// [DataLinkService.RemoveDataLink][google.ads.googleads.v22.services.DataLinkService.RemoveDataLink]. type RemoveDataLinkResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Result for the remove request. @@ -209,7 +209,7 @@ type RemoveDataLinkResponse struct { func (x *RemoveDataLinkResponse) Reset() { *x = RemoveDataLinkResponse{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -221,7 +221,7 @@ func (x *RemoveDataLinkResponse) String() string { func (*RemoveDataLinkResponse) ProtoMessage() {} func (x *RemoveDataLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -234,7 +234,7 @@ func (x *RemoveDataLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveDataLinkResponse.ProtoReflect.Descriptor instead. func (*RemoveDataLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{3} } func (x *RemoveDataLinkResponse) GetResourceName() string { @@ -245,13 +245,13 @@ func (x *RemoveDataLinkResponse) GetResourceName() string { } // Request message for -// [DataLinkService.UpdateDataLink][google.ads.googleads.v21.services.DataLinkService.UpdateDataLink]. +// [DataLinkService.UpdateDataLink][google.ads.googleads.v22.services.DataLinkService.UpdateDataLink]. type UpdateDataLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which the data link is created. CustomerId string `protobuf:"bytes,1,opt,name=customer_id,json=customerId,proto3" json:"customer_id,omitempty"` // Required. The data link status to be updated to. - DataLinkStatus enums.DataLinkStatusEnum_DataLinkStatus `protobuf:"varint,2,opt,name=data_link_status,json=dataLinkStatus,proto3,enum=google.ads.googleads.v21.enums.DataLinkStatusEnum_DataLinkStatus" json:"data_link_status,omitempty"` + DataLinkStatus enums.DataLinkStatusEnum_DataLinkStatus `protobuf:"varint,2,opt,name=data_link_status,json=dataLinkStatus,proto3,enum=google.ads.googleads.v22.enums.DataLinkStatusEnum_DataLinkStatus" json:"data_link_status,omitempty"` // Required. The data link is expected to have a valid resource name. ResourceName string `protobuf:"bytes,3,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` unknownFields protoimpl.UnknownFields @@ -260,7 +260,7 @@ type UpdateDataLinkRequest struct { func (x *UpdateDataLinkRequest) Reset() { *x = UpdateDataLinkRequest{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -272,7 +272,7 @@ func (x *UpdateDataLinkRequest) String() string { func (*UpdateDataLinkRequest) ProtoMessage() {} func (x *UpdateDataLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -285,7 +285,7 @@ func (x *UpdateDataLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDataLinkRequest.ProtoReflect.Descriptor instead. func (*UpdateDataLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{4} } func (x *UpdateDataLinkRequest) GetCustomerId() string { @@ -310,7 +310,7 @@ func (x *UpdateDataLinkRequest) GetResourceName() string { } // Response message for -// [DataLinkService.UpdateDataLink][google.ads.googleads.v21.services.DataLinkService.UpdateDataLink]. +// [DataLinkService.UpdateDataLink][google.ads.googleads.v22.services.DataLinkService.UpdateDataLink]. type UpdateDataLinkResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Returned for successful operations. Resource name of the data link. @@ -321,7 +321,7 @@ type UpdateDataLinkResponse struct { func (x *UpdateDataLinkResponse) Reset() { *x = UpdateDataLinkResponse{} - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *UpdateDataLinkResponse) String() string { func (*UpdateDataLinkResponse) ProtoMessage() {} func (x *UpdateDataLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *UpdateDataLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UpdateDataLinkResponse.ProtoReflect.Descriptor instead. func (*UpdateDataLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP(), []int{5} } func (x *UpdateDataLinkResponse) GetResourceName() string { @@ -356,20 +356,20 @@ func (x *UpdateDataLinkResponse) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_data_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_data_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_data_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x35, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 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, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc = str 0x52, 0x0a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x4e, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x22, 0x65, 0x0a, 0x16, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, @@ -416,7 +416,7 @@ var file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc = str 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x49, 0x64, 0x12, 0x70, 0x0a, 0x10, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0e, 0x64, 0x61, @@ -436,44 +436,44 @@ var file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc = str 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd9, 0x01, 0x0a, 0x0e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x34, 0x3a, - 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x12, 0xdd, 0x01, 0x0a, 0x0e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x56, 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, 0x34, 0x3a, - 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x72, 0x65, 0x6d, 0x6f, 0x76, 0x65, 0x12, 0xee, 0x01, 0x0a, 0x0e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x67, 0xda, 0x41, 0x2a, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 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, 0x34, - 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x2f, 0x2f, 0x76, 0x32, 0x32, 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, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x73, 0x3a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x1a, 0x45, 0xca, 0x41, 0x18, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, @@ -482,56 +482,56 @@ var file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x44, 0x61, 0x74, 0x61, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_data_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_data_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_data_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_data_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_data_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_data_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_data_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_data_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_data_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_data_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_data_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_data_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_data_link_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_data_link_service_proto_goTypes = []any{ - (*CreateDataLinkRequest)(nil), // 0: google.ads.googleads.v21.services.CreateDataLinkRequest - (*CreateDataLinkResponse)(nil), // 1: google.ads.googleads.v21.services.CreateDataLinkResponse - (*RemoveDataLinkRequest)(nil), // 2: google.ads.googleads.v21.services.RemoveDataLinkRequest - (*RemoveDataLinkResponse)(nil), // 3: google.ads.googleads.v21.services.RemoveDataLinkResponse - (*UpdateDataLinkRequest)(nil), // 4: google.ads.googleads.v21.services.UpdateDataLinkRequest - (*UpdateDataLinkResponse)(nil), // 5: google.ads.googleads.v21.services.UpdateDataLinkResponse - (*resources.DataLink)(nil), // 6: google.ads.googleads.v21.resources.DataLink - (enums.DataLinkStatusEnum_DataLinkStatus)(0), // 7: google.ads.googleads.v21.enums.DataLinkStatusEnum.DataLinkStatus -} -var file_google_ads_googleads_v21_services_data_link_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.services.CreateDataLinkRequest.data_link:type_name -> google.ads.googleads.v21.resources.DataLink - 7, // 1: google.ads.googleads.v21.services.UpdateDataLinkRequest.data_link_status:type_name -> google.ads.googleads.v21.enums.DataLinkStatusEnum.DataLinkStatus - 0, // 2: google.ads.googleads.v21.services.DataLinkService.CreateDataLink:input_type -> google.ads.googleads.v21.services.CreateDataLinkRequest - 2, // 3: google.ads.googleads.v21.services.DataLinkService.RemoveDataLink:input_type -> google.ads.googleads.v21.services.RemoveDataLinkRequest - 4, // 4: google.ads.googleads.v21.services.DataLinkService.UpdateDataLink:input_type -> google.ads.googleads.v21.services.UpdateDataLinkRequest - 1, // 5: google.ads.googleads.v21.services.DataLinkService.CreateDataLink:output_type -> google.ads.googleads.v21.services.CreateDataLinkResponse - 3, // 6: google.ads.googleads.v21.services.DataLinkService.RemoveDataLink:output_type -> google.ads.googleads.v21.services.RemoveDataLinkResponse - 5, // 7: google.ads.googleads.v21.services.DataLinkService.UpdateDataLink:output_type -> google.ads.googleads.v21.services.UpdateDataLinkResponse + return file_google_ads_googleads_v22_services_data_link_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_data_link_service_proto_goTypes = []any{ + (*CreateDataLinkRequest)(nil), // 0: google.ads.googleads.v22.services.CreateDataLinkRequest + (*CreateDataLinkResponse)(nil), // 1: google.ads.googleads.v22.services.CreateDataLinkResponse + (*RemoveDataLinkRequest)(nil), // 2: google.ads.googleads.v22.services.RemoveDataLinkRequest + (*RemoveDataLinkResponse)(nil), // 3: google.ads.googleads.v22.services.RemoveDataLinkResponse + (*UpdateDataLinkRequest)(nil), // 4: google.ads.googleads.v22.services.UpdateDataLinkRequest + (*UpdateDataLinkResponse)(nil), // 5: google.ads.googleads.v22.services.UpdateDataLinkResponse + (*resources.DataLink)(nil), // 6: google.ads.googleads.v22.resources.DataLink + (enums.DataLinkStatusEnum_DataLinkStatus)(0), // 7: google.ads.googleads.v22.enums.DataLinkStatusEnum.DataLinkStatus +} +var file_google_ads_googleads_v22_services_data_link_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.services.CreateDataLinkRequest.data_link:type_name -> google.ads.googleads.v22.resources.DataLink + 7, // 1: google.ads.googleads.v22.services.UpdateDataLinkRequest.data_link_status:type_name -> google.ads.googleads.v22.enums.DataLinkStatusEnum.DataLinkStatus + 0, // 2: google.ads.googleads.v22.services.DataLinkService.CreateDataLink:input_type -> google.ads.googleads.v22.services.CreateDataLinkRequest + 2, // 3: google.ads.googleads.v22.services.DataLinkService.RemoveDataLink:input_type -> google.ads.googleads.v22.services.RemoveDataLinkRequest + 4, // 4: google.ads.googleads.v22.services.DataLinkService.UpdateDataLink:input_type -> google.ads.googleads.v22.services.UpdateDataLinkRequest + 1, // 5: google.ads.googleads.v22.services.DataLinkService.CreateDataLink:output_type -> google.ads.googleads.v22.services.CreateDataLinkResponse + 3, // 6: google.ads.googleads.v22.services.DataLinkService.RemoveDataLink:output_type -> google.ads.googleads.v22.services.RemoveDataLinkResponse + 5, // 7: google.ads.googleads.v22.services.DataLinkService.UpdateDataLink:output_type -> google.ads.googleads.v22.services.UpdateDataLinkResponse 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 @@ -539,26 +539,26 @@ var file_google_ads_googleads_v21_services_data_link_service_proto_depIdxs = []i 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_data_link_service_proto_init() } -func file_google_ads_googleads_v21_services_data_link_service_proto_init() { - if File_google_ads_googleads_v21_services_data_link_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_data_link_service_proto_init() } +func file_google_ads_googleads_v22_services_data_link_service_proto_init() { + if File_google_ads_googleads_v22_services_data_link_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_data_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_data_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_data_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_data_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_data_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_data_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_data_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_data_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_data_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_data_link_service_proto = out.File - file_google_ads_googleads_v21_services_data_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_data_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_data_link_service_proto = out.File + file_google_ads_googleads_v22_services_data_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_data_link_service_proto_depIdxs = nil } diff --git a/services/data_link_service_grpc.pb.go b/services/data_link_service_grpc.pb.go index 45579808..2516d734 100644 --- a/services/data_link_service_grpc.pb.go +++ b/services/data_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/data_link_service.proto +// source: google/ads/googleads/v22/services/data_link_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - DataLinkService_CreateDataLink_FullMethodName = "/google.ads.googleads.v21.services.DataLinkService/CreateDataLink" - DataLinkService_RemoveDataLink_FullMethodName = "/google.ads.googleads.v21.services.DataLinkService/RemoveDataLink" - DataLinkService_UpdateDataLink_FullMethodName = "/google.ads.googleads.v21.services.DataLinkService/UpdateDataLink" + DataLinkService_CreateDataLink_FullMethodName = "/google.ads.googleads.v22.services.DataLinkService/CreateDataLink" + DataLinkService_RemoveDataLink_FullMethodName = "/google.ads.googleads.v22.services.DataLinkService/RemoveDataLink" + DataLinkService_UpdateDataLink_FullMethodName = "/google.ads.googleads.v22.services.DataLinkService/UpdateDataLink" ) // DataLinkServiceClient is the client API for DataLinkService service. @@ -286,7 +286,7 @@ func _DataLinkService_UpdateDataLink_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 DataLinkService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.DataLinkService", + ServiceName: "google.ads.googleads.v22.services.DataLinkService", HandlerType: (*DataLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -303,5 +303,5 @@ var DataLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/data_link_service.proto", + Metadata: "google/ads/googleads/v22/services/data_link_service.proto", } diff --git a/services/experiment_arm_service.pb.go b/services/experiment_arm_service.pb.go index 3547a7d5..ea37f782 100644 --- a/services/experiment_arm_service.pb.go +++ b/services/experiment_arm_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/experiment_arm_service.proto +// source: google/ads/googleads/v22/services/experiment_arm_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [ExperimentArmService.MutateExperimentArms][google.ads.googleads.v21.services.ExperimentArmService.MutateExperimentArms]. +// [ExperimentArmService.MutateExperimentArms][google.ads.googleads.v22.services.ExperimentArmService.MutateExperimentArms]. type MutateExperimentArmsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose experiments are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateExperimentArmsRequest) Reset() { *x = MutateExperimentArmsRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateExperimentArmsRequest) String() string { func (*MutateExperimentArmsRequest) ProtoMessage() {} func (x *MutateExperimentArmsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateExperimentArmsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmsRequest.ProtoReflect.Descriptor instead. func (*MutateExperimentArmsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescGZIP(), []int{0} } func (x *MutateExperimentArmsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type ExperimentArmOperation struct { func (x *ExperimentArmOperation) Reset() { *x = ExperimentArmOperation{} - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *ExperimentArmOperation) String() string { func (*ExperimentArmOperation) ProtoMessage() {} func (x *ExperimentArmOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *ExperimentArmOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentArmOperation.ProtoReflect.Descriptor instead. func (*ExperimentArmOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescGZIP(), []int{1} } func (x *ExperimentArmOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateExperimentArmsResponse struct { func (x *MutateExperimentArmsResponse) Reset() { *x = MutateExperimentArmsResponse{} - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *MutateExperimentArmsResponse) String() string { func (*MutateExperimentArmsResponse) ProtoMessage() {} func (x *MutateExperimentArmsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *MutateExperimentArmsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmsResponse.ProtoReflect.Descriptor instead. func (*MutateExperimentArmsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescGZIP(), []int{2} } func (x *MutateExperimentArmsResponse) GetPartialFailureError() *status.Status { @@ -318,7 +318,7 @@ type MutateExperimentArmResult struct { func (x *MutateExperimentArmResult) Reset() { *x = MutateExperimentArmResult{} - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *MutateExperimentArmResult) String() string { func (*MutateExperimentArmResult) ProtoMessage() {} func (x *MutateExperimentArmResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *MutateExperimentArmResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentArmResult.ProtoReflect.Descriptor instead. func (*MutateExperimentArmResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescGZIP(), []int{3} } func (x *MutateExperimentArmResult) GetResourceName() string { @@ -360,21 +360,21 @@ func (x *MutateExperimentArmResult) GetExperimentArm() *resources.ExperimentArm return nil } -var File_google_ads_googleads_v21_services_experiment_arm_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_experiment_arm_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -394,7 +394,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,12 +418,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -440,7 +440,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -453,23 +453,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -479,57 +479,57 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x19, 0x45, 0x78, 0x70, 0x65, + 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDescData + return file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_experiment_arm_service_proto_goTypes = []any{ - (*MutateExperimentArmsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateExperimentArmsRequest - (*ExperimentArmOperation)(nil), // 1: google.ads.googleads.v21.services.ExperimentArmOperation - (*MutateExperimentArmsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateExperimentArmsResponse - (*MutateExperimentArmResult)(nil), // 3: google.ads.googleads.v21.services.MutateExperimentArmResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_experiment_arm_service_proto_goTypes = []any{ + (*MutateExperimentArmsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateExperimentArmsRequest + (*ExperimentArmOperation)(nil), // 1: google.ads.googleads.v22.services.ExperimentArmOperation + (*MutateExperimentArmsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateExperimentArmsResponse + (*MutateExperimentArmResult)(nil), // 3: google.ads.googleads.v22.services.MutateExperimentArmResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.ExperimentArm)(nil), // 6: google.ads.googleads.v21.resources.ExperimentArm + (*resources.ExperimentArm)(nil), // 6: google.ads.googleads.v22.resources.ExperimentArm (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_experiment_arm_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateExperimentArmsRequest.operations:type_name -> google.ads.googleads.v21.services.ExperimentArmOperation - 4, // 1: google.ads.googleads.v21.services.MutateExperimentArmsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.ExperimentArmOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.ExperimentArmOperation.create:type_name -> google.ads.googleads.v21.resources.ExperimentArm - 6, // 4: google.ads.googleads.v21.services.ExperimentArmOperation.update:type_name -> google.ads.googleads.v21.resources.ExperimentArm - 7, // 5: google.ads.googleads.v21.services.MutateExperimentArmsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateExperimentArmsResponse.results:type_name -> google.ads.googleads.v21.services.MutateExperimentArmResult - 6, // 7: google.ads.googleads.v21.services.MutateExperimentArmResult.experiment_arm:type_name -> google.ads.googleads.v21.resources.ExperimentArm - 0, // 8: google.ads.googleads.v21.services.ExperimentArmService.MutateExperimentArms:input_type -> google.ads.googleads.v21.services.MutateExperimentArmsRequest - 2, // 9: google.ads.googleads.v21.services.ExperimentArmService.MutateExperimentArms:output_type -> google.ads.googleads.v21.services.MutateExperimentArmsResponse +var file_google_ads_googleads_v22_services_experiment_arm_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateExperimentArmsRequest.operations:type_name -> google.ads.googleads.v22.services.ExperimentArmOperation + 4, // 1: google.ads.googleads.v22.services.MutateExperimentArmsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.ExperimentArmOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.ExperimentArmOperation.create:type_name -> google.ads.googleads.v22.resources.ExperimentArm + 6, // 4: google.ads.googleads.v22.services.ExperimentArmOperation.update:type_name -> google.ads.googleads.v22.resources.ExperimentArm + 7, // 5: google.ads.googleads.v22.services.MutateExperimentArmsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateExperimentArmsResponse.results:type_name -> google.ads.googleads.v22.services.MutateExperimentArmResult + 6, // 7: google.ads.googleads.v22.services.MutateExperimentArmResult.experiment_arm:type_name -> google.ads.googleads.v22.resources.ExperimentArm + 0, // 8: google.ads.googleads.v22.services.ExperimentArmService.MutateExperimentArms:input_type -> google.ads.googleads.v22.services.MutateExperimentArmsRequest + 2, // 9: google.ads.googleads.v22.services.ExperimentArmService.MutateExperimentArms:output_type -> google.ads.googleads.v22.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 @@ -537,12 +537,12 @@ var file_google_ads_googleads_v21_services_experiment_arm_service_proto_depIdxs 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_experiment_arm_service_proto_init() } -func file_google_ads_googleads_v21_services_experiment_arm_service_proto_init() { - if File_google_ads_googleads_v21_services_experiment_arm_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_experiment_arm_service_proto_init() } +func file_google_ads_googleads_v22_services_experiment_arm_service_proto_init() { + if File_google_ads_googleads_v22_services_experiment_arm_service_proto != nil { return } - file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes[1].OneofWrappers = []any{ (*ExperimentArmOperation_Create)(nil), (*ExperimentArmOperation_Update)(nil), (*ExperimentArmOperation_Remove)(nil), @@ -551,17 +551,17 @@ func file_google_ads_googleads_v21_services_experiment_arm_service_proto_init() out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_experiment_arm_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_experiment_arm_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_experiment_arm_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_experiment_arm_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_experiment_arm_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_experiment_arm_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_experiment_arm_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_experiment_arm_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_experiment_arm_service_proto = out.File - file_google_ads_googleads_v21_services_experiment_arm_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_experiment_arm_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_experiment_arm_service_proto = out.File + file_google_ads_googleads_v22_services_experiment_arm_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 2fef0bcf..a95119ef 100644 --- a/services/experiment_arm_service_grpc.pb.go +++ b/services/experiment_arm_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/experiment_arm_service.proto +// source: google/ads/googleads/v22/services/experiment_arm_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ExperimentArmService_MutateExperimentArms_FullMethodName = "/google.ads.googleads.v21.services.ExperimentArmService/MutateExperimentArms" + ExperimentArmService_MutateExperimentArms_FullMethodName = "/google.ads.googleads.v22.services.ExperimentArmService/MutateExperimentArms" ) // ExperimentArmServiceClient is the client API for ExperimentArmService service. @@ -150,7 +150,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.v21.services.ExperimentArmService", + ServiceName: "google.ads.googleads.v22.services.ExperimentArmService", HandlerType: (*ExperimentArmServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -159,5 +159,5 @@ var ExperimentArmService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/experiment_arm_service.proto", + Metadata: "google/ads/googleads/v22/services/experiment_arm_service.proto", } diff --git a/services/experiment_service.pb.go b/services/experiment_service.pb.go index 42c93b91..5a1c5980 100644 --- a/services/experiment_service.pb.go +++ b/services/experiment_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/experiment_service.proto +// source: google/ads/googleads/v22/services/experiment_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [ExperimentService.MutateExperiments][google.ads.googleads.v21.services.ExperimentService.MutateExperiments]. +// [ExperimentService.MutateExperiments][google.ads.googleads.v22.services.ExperimentService.MutateExperiments]. type MutateExperimentsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose experiments are being modified. @@ -63,7 +63,7 @@ type MutateExperimentsRequest struct { func (x *MutateExperimentsRequest) Reset() { *x = MutateExperimentsRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateExperimentsRequest) String() string { func (*MutateExperimentsRequest) ProtoMessage() {} func (x *MutateExperimentsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateExperimentsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentsRequest.ProtoReflect.Descriptor instead. func (*MutateExperimentsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{0} } func (x *MutateExperimentsRequest) GetCustomerId() string { @@ -138,7 +138,7 @@ type ExperimentOperation struct { func (x *ExperimentOperation) Reset() { *x = ExperimentOperation{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -150,7 +150,7 @@ func (x *ExperimentOperation) String() string { func (*ExperimentOperation) ProtoMessage() {} func (x *ExperimentOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -163,7 +163,7 @@ func (x *ExperimentOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ExperimentOperation.ProtoReflect.Descriptor instead. func (*ExperimentOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{1} } func (x *ExperimentOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -252,7 +252,7 @@ type MutateExperimentsResponse struct { func (x *MutateExperimentsResponse) Reset() { *x = MutateExperimentsResponse{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -264,7 +264,7 @@ func (x *MutateExperimentsResponse) String() string { func (*MutateExperimentsResponse) ProtoMessage() {} func (x *MutateExperimentsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -277,7 +277,7 @@ func (x *MutateExperimentsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentsResponse.ProtoReflect.Descriptor instead. func (*MutateExperimentsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{2} } func (x *MutateExperimentsResponse) GetPartialFailureError() *status.Status { @@ -305,7 +305,7 @@ type MutateExperimentResult struct { func (x *MutateExperimentResult) Reset() { *x = MutateExperimentResult{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -317,7 +317,7 @@ func (x *MutateExperimentResult) String() string { func (*MutateExperimentResult) ProtoMessage() {} func (x *MutateExperimentResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -330,7 +330,7 @@ func (x *MutateExperimentResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateExperimentResult.ProtoReflect.Descriptor instead. func (*MutateExperimentResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{3} } func (x *MutateExperimentResult) GetResourceName() string { @@ -341,7 +341,7 @@ func (x *MutateExperimentResult) GetResourceName() string { } // Request message for -// [ExperimentService.EndExperiment][google.ads.googleads.v21.services.ExperimentService.EndExperiment]. +// [ExperimentService.EndExperiment][google.ads.googleads.v22.services.ExperimentService.EndExperiment]. type EndExperimentRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the campaign experiment to end. @@ -355,7 +355,7 @@ type EndExperimentRequest struct { func (x *EndExperimentRequest) Reset() { *x = EndExperimentRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -367,7 +367,7 @@ func (x *EndExperimentRequest) String() string { func (*EndExperimentRequest) ProtoMessage() {} func (x *EndExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -380,7 +380,7 @@ func (x *EndExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use EndExperimentRequest.ProtoReflect.Descriptor instead. func (*EndExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{4} } func (x *EndExperimentRequest) GetExperiment() string { @@ -398,7 +398,7 @@ func (x *EndExperimentRequest) GetValidateOnly() bool { } // Request message for -// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v21.services.ExperimentService.ListExperimentAsyncErrors]. +// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v22.services.ExperimentService.ListExperimentAsyncErrors]. type ListExperimentAsyncErrorsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The name of the experiment from which to retrieve the async @@ -420,7 +420,7 @@ type ListExperimentAsyncErrorsRequest struct { func (x *ListExperimentAsyncErrorsRequest) Reset() { *x = ListExperimentAsyncErrorsRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -432,7 +432,7 @@ func (x *ListExperimentAsyncErrorsRequest) String() string { func (*ListExperimentAsyncErrorsRequest) ProtoMessage() {} func (x *ListExperimentAsyncErrorsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -445,7 +445,7 @@ func (x *ListExperimentAsyncErrorsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListExperimentAsyncErrorsRequest.ProtoReflect.Descriptor instead. func (*ListExperimentAsyncErrorsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{5} } func (x *ListExperimentAsyncErrorsRequest) GetResourceName() string { @@ -470,7 +470,7 @@ func (x *ListExperimentAsyncErrorsRequest) GetPageSize() int32 { } // Response message for -// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v21.services.ExperimentService.ListExperimentAsyncErrors]. +// [ExperimentService.ListExperimentAsyncErrors][google.ads.googleads.v22.services.ExperimentService.ListExperimentAsyncErrors]. type ListExperimentAsyncErrorsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // details of the errors when performing the asynchronous operation. @@ -486,7 +486,7 @@ type ListExperimentAsyncErrorsResponse struct { func (x *ListExperimentAsyncErrorsResponse) Reset() { *x = ListExperimentAsyncErrorsResponse{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -498,7 +498,7 @@ func (x *ListExperimentAsyncErrorsResponse) String() string { func (*ListExperimentAsyncErrorsResponse) ProtoMessage() {} func (x *ListExperimentAsyncErrorsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -511,7 +511,7 @@ func (x *ListExperimentAsyncErrorsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ListExperimentAsyncErrorsResponse.ProtoReflect.Descriptor instead. func (*ListExperimentAsyncErrorsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{6} } func (x *ListExperimentAsyncErrorsResponse) GetErrors() []*status.Status { @@ -529,7 +529,7 @@ func (x *ListExperimentAsyncErrorsResponse) GetNextPageToken() string { } // Request message for -// [ExperimentService.GraduateExperiment][google.ads.googleads.v21.services.ExperimentService.GraduateExperiment]. +// [ExperimentService.GraduateExperiment][google.ads.googleads.v22.services.ExperimentService.GraduateExperiment]. type GraduateExperimentRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The experiment to be graduated. @@ -547,7 +547,7 @@ type GraduateExperimentRequest struct { func (x *GraduateExperimentRequest) Reset() { *x = GraduateExperimentRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -559,7 +559,7 @@ func (x *GraduateExperimentRequest) String() string { func (*GraduateExperimentRequest) ProtoMessage() {} func (x *GraduateExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -572,7 +572,7 @@ func (x *GraduateExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GraduateExperimentRequest.ProtoReflect.Descriptor instead. func (*GraduateExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{7} } func (x *GraduateExperimentRequest) GetExperiment() string { @@ -610,7 +610,7 @@ type CampaignBudgetMapping struct { func (x *CampaignBudgetMapping) Reset() { *x = CampaignBudgetMapping{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -622,7 +622,7 @@ func (x *CampaignBudgetMapping) String() string { func (*CampaignBudgetMapping) ProtoMessage() {} func (x *CampaignBudgetMapping) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -635,7 +635,7 @@ func (x *CampaignBudgetMapping) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignBudgetMapping.ProtoReflect.Descriptor instead. func (*CampaignBudgetMapping) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{8} } func (x *CampaignBudgetMapping) GetExperimentCampaign() string { @@ -653,7 +653,7 @@ func (x *CampaignBudgetMapping) GetCampaignBudget() string { } // Request message for -// [ExperimentService.ScheduleExperiment][google.ads.googleads.v21.services.ExperimentService.ScheduleExperiment]. +// [ExperimentService.ScheduleExperiment][google.ads.googleads.v22.services.ExperimentService.ScheduleExperiment]. type ScheduleExperimentRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The scheduled experiment. @@ -667,7 +667,7 @@ type ScheduleExperimentRequest struct { func (x *ScheduleExperimentRequest) Reset() { *x = ScheduleExperimentRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -679,7 +679,7 @@ func (x *ScheduleExperimentRequest) String() string { func (*ScheduleExperimentRequest) ProtoMessage() {} func (x *ScheduleExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -692,7 +692,7 @@ func (x *ScheduleExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExperimentRequest.ProtoReflect.Descriptor instead. func (*ScheduleExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{9} } func (x *ScheduleExperimentRequest) GetResourceName() string { @@ -720,7 +720,7 @@ type ScheduleExperimentMetadata struct { func (x *ScheduleExperimentMetadata) Reset() { *x = ScheduleExperimentMetadata{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -732,7 +732,7 @@ func (x *ScheduleExperimentMetadata) String() string { func (*ScheduleExperimentMetadata) ProtoMessage() {} func (x *ScheduleExperimentMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -745,7 +745,7 @@ func (x *ScheduleExperimentMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use ScheduleExperimentMetadata.ProtoReflect.Descriptor instead. func (*ScheduleExperimentMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{10} } func (x *ScheduleExperimentMetadata) GetExperiment() string { @@ -756,7 +756,7 @@ func (x *ScheduleExperimentMetadata) GetExperiment() string { } // Request message for -// [ExperimentService.PromoteExperiment][google.ads.googleads.v21.services.ExperimentService.PromoteExperiment]. +// [ExperimentService.PromoteExperiment][google.ads.googleads.v22.services.ExperimentService.PromoteExperiment]. type PromoteExperimentRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the experiment to promote. @@ -770,7 +770,7 @@ type PromoteExperimentRequest struct { func (x *PromoteExperimentRequest) Reset() { *x = PromoteExperimentRequest{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -782,7 +782,7 @@ func (x *PromoteExperimentRequest) String() string { func (*PromoteExperimentRequest) ProtoMessage() {} func (x *PromoteExperimentRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -795,7 +795,7 @@ func (x *PromoteExperimentRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteExperimentRequest.ProtoReflect.Descriptor instead. func (*PromoteExperimentRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{11} } func (x *PromoteExperimentRequest) GetResourceName() string { @@ -823,7 +823,7 @@ type PromoteExperimentMetadata struct { func (x *PromoteExperimentMetadata) Reset() { *x = PromoteExperimentMetadata{} - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -835,7 +835,7 @@ func (x *PromoteExperimentMetadata) String() string { func (*PromoteExperimentMetadata) ProtoMessage() {} func (x *PromoteExperimentMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -848,7 +848,7 @@ func (x *PromoteExperimentMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use PromoteExperimentMetadata.ProtoReflect.Descriptor instead. func (*PromoteExperimentMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP(), []int{12} } func (x *PromoteExperimentMetadata) GetExperiment() string { @@ -858,17 +858,17 @@ func (x *PromoteExperimentMetadata) GetExperiment() string { return "" } -var File_google_ads_googleads_v21_services_experiment_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_experiment_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_experiment_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -892,7 +892,7 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -908,11 +908,11 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x45, 0x78, 0x70, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -928,7 +928,7 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -975,7 +975,7 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1031,49 +1031,49 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x36, 0x3a, 0x01, 0x2a, 0x22, 0x31, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x65, + 0xe4, 0x93, 0x02, 0x3e, 0x3a, 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x93, 0x02, 0x4a, 0x12, 0x48, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1081,13 +1081,13 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, - 0x31, 0x2f, 0x7b, 0x65, 0x78, 0x70, 0x65, 0x72, 0x69, 0x6d, 0x65, 0x6e, 0x74, 0x3d, 0x63, 0x75, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1095,30 +1095,30 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x3a, 0x01, 0x2a, 0x22, 0x41, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x32, 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, @@ -1128,78 +1128,78 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x16, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_experiment_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_experiment_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_experiment_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_experiment_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_experiment_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_experiment_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_experiment_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_experiment_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_experiment_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_experiment_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_experiment_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_experiment_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_experiment_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 13) -var file_google_ads_googleads_v21_services_experiment_service_proto_goTypes = []any{ - (*MutateExperimentsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateExperimentsRequest - (*ExperimentOperation)(nil), // 1: google.ads.googleads.v21.services.ExperimentOperation - (*MutateExperimentsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateExperimentsResponse - (*MutateExperimentResult)(nil), // 3: google.ads.googleads.v21.services.MutateExperimentResult - (*EndExperimentRequest)(nil), // 4: google.ads.googleads.v21.services.EndExperimentRequest - (*ListExperimentAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v21.services.ListExperimentAsyncErrorsRequest - (*ListExperimentAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse - (*GraduateExperimentRequest)(nil), // 7: google.ads.googleads.v21.services.GraduateExperimentRequest - (*CampaignBudgetMapping)(nil), // 8: google.ads.googleads.v21.services.CampaignBudgetMapping - (*ScheduleExperimentRequest)(nil), // 9: google.ads.googleads.v21.services.ScheduleExperimentRequest - (*ScheduleExperimentMetadata)(nil), // 10: google.ads.googleads.v21.services.ScheduleExperimentMetadata - (*PromoteExperimentRequest)(nil), // 11: google.ads.googleads.v21.services.PromoteExperimentRequest - (*PromoteExperimentMetadata)(nil), // 12: google.ads.googleads.v21.services.PromoteExperimentMetadata + return file_google_ads_googleads_v22_services_experiment_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes = make([]protoimpl.MessageInfo, 13) +var file_google_ads_googleads_v22_services_experiment_service_proto_goTypes = []any{ + (*MutateExperimentsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateExperimentsRequest + (*ExperimentOperation)(nil), // 1: google.ads.googleads.v22.services.ExperimentOperation + (*MutateExperimentsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateExperimentsResponse + (*MutateExperimentResult)(nil), // 3: google.ads.googleads.v22.services.MutateExperimentResult + (*EndExperimentRequest)(nil), // 4: google.ads.googleads.v22.services.EndExperimentRequest + (*ListExperimentAsyncErrorsRequest)(nil), // 5: google.ads.googleads.v22.services.ListExperimentAsyncErrorsRequest + (*ListExperimentAsyncErrorsResponse)(nil), // 6: google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse + (*GraduateExperimentRequest)(nil), // 7: google.ads.googleads.v22.services.GraduateExperimentRequest + (*CampaignBudgetMapping)(nil), // 8: google.ads.googleads.v22.services.CampaignBudgetMapping + (*ScheduleExperimentRequest)(nil), // 9: google.ads.googleads.v22.services.ScheduleExperimentRequest + (*ScheduleExperimentMetadata)(nil), // 10: google.ads.googleads.v22.services.ScheduleExperimentMetadata + (*PromoteExperimentRequest)(nil), // 11: google.ads.googleads.v22.services.PromoteExperimentRequest + (*PromoteExperimentMetadata)(nil), // 12: google.ads.googleads.v22.services.PromoteExperimentMetadata (*fieldmaskpb.FieldMask)(nil), // 13: google.protobuf.FieldMask - (*resources.Experiment)(nil), // 14: google.ads.googleads.v21.resources.Experiment + (*resources.Experiment)(nil), // 14: google.ads.googleads.v22.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_v21_services_experiment_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateExperimentsRequest.operations:type_name -> google.ads.googleads.v21.services.ExperimentOperation - 13, // 1: google.ads.googleads.v21.services.ExperimentOperation.update_mask:type_name -> google.protobuf.FieldMask - 14, // 2: google.ads.googleads.v21.services.ExperimentOperation.create:type_name -> google.ads.googleads.v21.resources.Experiment - 14, // 3: google.ads.googleads.v21.services.ExperimentOperation.update:type_name -> google.ads.googleads.v21.resources.Experiment - 15, // 4: google.ads.googleads.v21.services.MutateExperimentsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateExperimentsResponse.results:type_name -> google.ads.googleads.v21.services.MutateExperimentResult - 15, // 6: google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse.errors:type_name -> google.rpc.Status - 8, // 7: google.ads.googleads.v21.services.GraduateExperimentRequest.campaign_budget_mappings:type_name -> google.ads.googleads.v21.services.CampaignBudgetMapping - 0, // 8: google.ads.googleads.v21.services.ExperimentService.MutateExperiments:input_type -> google.ads.googleads.v21.services.MutateExperimentsRequest - 4, // 9: google.ads.googleads.v21.services.ExperimentService.EndExperiment:input_type -> google.ads.googleads.v21.services.EndExperimentRequest - 5, // 10: google.ads.googleads.v21.services.ExperimentService.ListExperimentAsyncErrors:input_type -> google.ads.googleads.v21.services.ListExperimentAsyncErrorsRequest - 7, // 11: google.ads.googleads.v21.services.ExperimentService.GraduateExperiment:input_type -> google.ads.googleads.v21.services.GraduateExperimentRequest - 9, // 12: google.ads.googleads.v21.services.ExperimentService.ScheduleExperiment:input_type -> google.ads.googleads.v21.services.ScheduleExperimentRequest - 11, // 13: google.ads.googleads.v21.services.ExperimentService.PromoteExperiment:input_type -> google.ads.googleads.v21.services.PromoteExperimentRequest - 2, // 14: google.ads.googleads.v21.services.ExperimentService.MutateExperiments:output_type -> google.ads.googleads.v21.services.MutateExperimentsResponse - 16, // 15: google.ads.googleads.v21.services.ExperimentService.EndExperiment:output_type -> google.protobuf.Empty - 6, // 16: google.ads.googleads.v21.services.ExperimentService.ListExperimentAsyncErrors:output_type -> google.ads.googleads.v21.services.ListExperimentAsyncErrorsResponse - 16, // 17: google.ads.googleads.v21.services.ExperimentService.GraduateExperiment:output_type -> google.protobuf.Empty - 17, // 18: google.ads.googleads.v21.services.ExperimentService.ScheduleExperiment:output_type -> google.longrunning.Operation - 17, // 19: google.ads.googleads.v21.services.ExperimentService.PromoteExperiment:output_type -> google.longrunning.Operation +var file_google_ads_googleads_v22_services_experiment_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateExperimentsRequest.operations:type_name -> google.ads.googleads.v22.services.ExperimentOperation + 13, // 1: google.ads.googleads.v22.services.ExperimentOperation.update_mask:type_name -> google.protobuf.FieldMask + 14, // 2: google.ads.googleads.v22.services.ExperimentOperation.create:type_name -> google.ads.googleads.v22.resources.Experiment + 14, // 3: google.ads.googleads.v22.services.ExperimentOperation.update:type_name -> google.ads.googleads.v22.resources.Experiment + 15, // 4: google.ads.googleads.v22.services.MutateExperimentsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateExperimentsResponse.results:type_name -> google.ads.googleads.v22.services.MutateExperimentResult + 15, // 6: google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse.errors:type_name -> google.rpc.Status + 8, // 7: google.ads.googleads.v22.services.GraduateExperimentRequest.campaign_budget_mappings:type_name -> google.ads.googleads.v22.services.CampaignBudgetMapping + 0, // 8: google.ads.googleads.v22.services.ExperimentService.MutateExperiments:input_type -> google.ads.googleads.v22.services.MutateExperimentsRequest + 4, // 9: google.ads.googleads.v22.services.ExperimentService.EndExperiment:input_type -> google.ads.googleads.v22.services.EndExperimentRequest + 5, // 10: google.ads.googleads.v22.services.ExperimentService.ListExperimentAsyncErrors:input_type -> google.ads.googleads.v22.services.ListExperimentAsyncErrorsRequest + 7, // 11: google.ads.googleads.v22.services.ExperimentService.GraduateExperiment:input_type -> google.ads.googleads.v22.services.GraduateExperimentRequest + 9, // 12: google.ads.googleads.v22.services.ExperimentService.ScheduleExperiment:input_type -> google.ads.googleads.v22.services.ScheduleExperimentRequest + 11, // 13: google.ads.googleads.v22.services.ExperimentService.PromoteExperiment:input_type -> google.ads.googleads.v22.services.PromoteExperimentRequest + 2, // 14: google.ads.googleads.v22.services.ExperimentService.MutateExperiments:output_type -> google.ads.googleads.v22.services.MutateExperimentsResponse + 16, // 15: google.ads.googleads.v22.services.ExperimentService.EndExperiment:output_type -> google.protobuf.Empty + 6, // 16: google.ads.googleads.v22.services.ExperimentService.ListExperimentAsyncErrors:output_type -> google.ads.googleads.v22.services.ListExperimentAsyncErrorsResponse + 16, // 17: google.ads.googleads.v22.services.ExperimentService.GraduateExperiment:output_type -> google.protobuf.Empty + 17, // 18: google.ads.googleads.v22.services.ExperimentService.ScheduleExperiment:output_type -> google.longrunning.Operation + 17, // 19: google.ads.googleads.v22.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 @@ -1207,12 +1207,12 @@ var file_google_ads_googleads_v21_services_experiment_service_proto_depIdxs = [] 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_experiment_service_proto_init() } -func file_google_ads_googleads_v21_services_experiment_service_proto_init() { - if File_google_ads_googleads_v21_services_experiment_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_experiment_service_proto_init() } +func file_google_ads_googleads_v22_services_experiment_service_proto_init() { + if File_google_ads_googleads_v22_services_experiment_service_proto != nil { return } - file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes[1].OneofWrappers = []any{ (*ExperimentOperation_Create)(nil), (*ExperimentOperation_Update)(nil), (*ExperimentOperation_Remove)(nil), @@ -1221,17 +1221,17 @@ func file_google_ads_googleads_v21_services_experiment_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_experiment_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_experiment_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_experiment_service_proto_rawDesc)), NumEnums: 0, NumMessages: 13, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_experiment_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_experiment_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_experiment_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_experiment_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_experiment_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_experiment_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_experiment_service_proto = out.File - file_google_ads_googleads_v21_services_experiment_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_experiment_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_experiment_service_proto = out.File + file_google_ads_googleads_v22_services_experiment_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_experiment_service_proto_depIdxs = nil } diff --git a/services/experiment_service_grpc.pb.go b/services/experiment_service_grpc.pb.go index 2081ee31..0a62f349 100644 --- a/services/experiment_service_grpc.pb.go +++ b/services/experiment_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/experiment_service.proto +// source: google/ads/googleads/v22/services/experiment_service.proto package services @@ -35,12 +35,12 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ExperimentService_MutateExperiments_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/MutateExperiments" - ExperimentService_EndExperiment_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/EndExperiment" - ExperimentService_ListExperimentAsyncErrors_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/ListExperimentAsyncErrors" - ExperimentService_GraduateExperiment_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/GraduateExperiment" - ExperimentService_ScheduleExperiment_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/ScheduleExperiment" - ExperimentService_PromoteExperiment_FullMethodName = "/google.ads.googleads.v21.services.ExperimentService/PromoteExperiment" + ExperimentService_MutateExperiments_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/MutateExperiments" + ExperimentService_EndExperiment_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/EndExperiment" + ExperimentService_ListExperimentAsyncErrors_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/ListExperimentAsyncErrors" + ExperimentService_GraduateExperiment_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/GraduateExperiment" + ExperimentService_ScheduleExperiment_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/ScheduleExperiment" + ExperimentService_PromoteExperiment_FullMethodName = "/google.ads.googleads.v22.services.ExperimentService/PromoteExperiment" ) // ExperimentServiceClient is the client API for ExperimentService service. @@ -478,7 +478,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.v21.services.ExperimentService", + ServiceName: "google.ads.googleads.v22.services.ExperimentService", HandlerType: (*ExperimentServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -507,5 +507,5 @@ var ExperimentService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/experiment_service.proto", + Metadata: "google/ads/googleads/v22/services/experiment_service.proto", } diff --git a/services/geo_target_constant_service.pb.go b/services/geo_target_constant_service.pb.go index 088b46b6..2b82206a 100644 --- a/services/geo_target_constant_service.pb.go +++ b/services/geo_target_constant_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/geo_target_constant_service.proto +// source: google/ads/googleads/v22/services/geo_target_constant_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v21.services.GeoTargetConstantService.SuggestGeoTargetConstants]. +// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v22.services.GeoTargetConstantService.SuggestGeoTargetConstants]. type SuggestGeoTargetConstantsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // If possible, returned geo targets are translated using this locale. If not, @@ -60,7 +60,7 @@ type SuggestGeoTargetConstantsRequest struct { func (x *SuggestGeoTargetConstantsRequest) Reset() { *x = SuggestGeoTargetConstantsRequest{} - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -72,7 +72,7 @@ func (x *SuggestGeoTargetConstantsRequest) String() string { func (*SuggestGeoTargetConstantsRequest) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -85,7 +85,7 @@ func (x *SuggestGeoTargetConstantsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestGeoTargetConstantsRequest.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestGeoTargetConstantsRequest) GetLocale() string { @@ -146,7 +146,7 @@ func (*SuggestGeoTargetConstantsRequest_LocationNames_) isSuggestGeoTargetConsta func (*SuggestGeoTargetConstantsRequest_GeoTargets_) isSuggestGeoTargetConstantsRequest_Query() {} // Response message for -// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v21.services.GeoTargetConstantService.SuggestGeoTargetConstants]. +// [GeoTargetConstantService.SuggestGeoTargetConstants][google.ads.googleads.v22.services.GeoTargetConstantService.SuggestGeoTargetConstants]. type SuggestGeoTargetConstantsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Geo target constant suggestions. @@ -157,7 +157,7 @@ type SuggestGeoTargetConstantsResponse struct { func (x *SuggestGeoTargetConstantsResponse) Reset() { *x = SuggestGeoTargetConstantsResponse{} - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -169,7 +169,7 @@ func (x *SuggestGeoTargetConstantsResponse) String() string { func (*SuggestGeoTargetConstantsResponse) ProtoMessage() {} func (x *SuggestGeoTargetConstantsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -182,7 +182,7 @@ func (x *SuggestGeoTargetConstantsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use SuggestGeoTargetConstantsResponse.ProtoReflect.Descriptor instead. func (*SuggestGeoTargetConstantsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestGeoTargetConstantsResponse) GetGeoTargetConstantSuggestions() []*GeoTargetConstantSuggestion { @@ -216,7 +216,7 @@ type GeoTargetConstantSuggestion struct { func (x *GeoTargetConstantSuggestion) Reset() { *x = GeoTargetConstantSuggestion{} - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -228,7 +228,7 @@ func (x *GeoTargetConstantSuggestion) String() string { func (*GeoTargetConstantSuggestion) ProtoMessage() {} func (x *GeoTargetConstantSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -241,7 +241,7 @@ func (x *GeoTargetConstantSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use GeoTargetConstantSuggestion.ProtoReflect.Descriptor instead. func (*GeoTargetConstantSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP(), []int{2} } func (x *GeoTargetConstantSuggestion) GetLocale() string { @@ -290,7 +290,7 @@ type SuggestGeoTargetConstantsRequest_LocationNames struct { func (x *SuggestGeoTargetConstantsRequest_LocationNames) Reset() { *x = SuggestGeoTargetConstantsRequest_LocationNames{} - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -302,7 +302,7 @@ func (x *SuggestGeoTargetConstantsRequest_LocationNames) String() string { func (*SuggestGeoTargetConstantsRequest_LocationNames) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest_LocationNames) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -315,7 +315,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_v21_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 0} + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 0} } func (x *SuggestGeoTargetConstantsRequest_LocationNames) GetNames() []string { @@ -336,7 +336,7 @@ type SuggestGeoTargetConstantsRequest_GeoTargets struct { func (x *SuggestGeoTargetConstantsRequest_GeoTargets) Reset() { *x = SuggestGeoTargetConstantsRequest_GeoTargets{} - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -348,7 +348,7 @@ func (x *SuggestGeoTargetConstantsRequest_GeoTargets) String() string { func (*SuggestGeoTargetConstantsRequest_GeoTargets) ProtoMessage() {} func (x *SuggestGeoTargetConstantsRequest_GeoTargets) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -361,7 +361,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_v21_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 1} + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP(), []int{0, 1} } func (x *SuggestGeoTargetConstantsRequest_GeoTargets) GetGeoTargetConstants() []string { @@ -371,18 +371,18 @@ func (x *SuggestGeoTargetConstantsRequest_GeoTargets) GetGeoTargetConstants() [] return nil } -var File_google_ads_googleads_v21_services_geo_target_constant_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_geo_target_constant_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x65, 0x6f, + 0x32, 0x32, 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, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, + 0x76, 0x32, 0x32, 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, @@ -424,7 +424,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -440,14 +440,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -458,15 +458,15 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x67, 0x65, 0x6f, 0x54, 0x61, 0x72, 0x67, 0x65, + 0x2a, 0x22, 0x1f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -474,53 +474,53 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, + 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v21_services_geo_target_constant_service_proto_goTypes = []any{ - (*SuggestGeoTargetConstantsRequest)(nil), // 0: google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest - (*SuggestGeoTargetConstantsResponse)(nil), // 1: google.ads.googleads.v21.services.SuggestGeoTargetConstantsResponse - (*GeoTargetConstantSuggestion)(nil), // 2: google.ads.googleads.v21.services.GeoTargetConstantSuggestion - (*SuggestGeoTargetConstantsRequest_LocationNames)(nil), // 3: google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.LocationNames - (*SuggestGeoTargetConstantsRequest_GeoTargets)(nil), // 4: google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.GeoTargets - (*resources.GeoTargetConstant)(nil), // 5: google.ads.googleads.v21.resources.GeoTargetConstant -} -var file_google_ads_googleads_v21_services_geo_target_constant_service_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.location_names:type_name -> google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.LocationNames - 4, // 1: google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.geo_targets:type_name -> google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest.GeoTargets - 2, // 2: google.ads.googleads.v21.services.SuggestGeoTargetConstantsResponse.geo_target_constant_suggestions:type_name -> google.ads.googleads.v21.services.GeoTargetConstantSuggestion - 5, // 3: google.ads.googleads.v21.services.GeoTargetConstantSuggestion.geo_target_constant:type_name -> google.ads.googleads.v21.resources.GeoTargetConstant - 5, // 4: google.ads.googleads.v21.services.GeoTargetConstantSuggestion.geo_target_constant_parents:type_name -> google.ads.googleads.v21.resources.GeoTargetConstant - 0, // 5: google.ads.googleads.v21.services.GeoTargetConstantService.SuggestGeoTargetConstants:input_type -> google.ads.googleads.v21.services.SuggestGeoTargetConstantsRequest - 1, // 6: google.ads.googleads.v21.services.GeoTargetConstantService.SuggestGeoTargetConstants:output_type -> google.ads.googleads.v21.services.SuggestGeoTargetConstantsResponse + return file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v22_services_geo_target_constant_service_proto_goTypes = []any{ + (*SuggestGeoTargetConstantsRequest)(nil), // 0: google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest + (*SuggestGeoTargetConstantsResponse)(nil), // 1: google.ads.googleads.v22.services.SuggestGeoTargetConstantsResponse + (*GeoTargetConstantSuggestion)(nil), // 2: google.ads.googleads.v22.services.GeoTargetConstantSuggestion + (*SuggestGeoTargetConstantsRequest_LocationNames)(nil), // 3: google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.LocationNames + (*SuggestGeoTargetConstantsRequest_GeoTargets)(nil), // 4: google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.GeoTargets + (*resources.GeoTargetConstant)(nil), // 5: google.ads.googleads.v22.resources.GeoTargetConstant +} +var file_google_ads_googleads_v22_services_geo_target_constant_service_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.location_names:type_name -> google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.LocationNames + 4, // 1: google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.geo_targets:type_name -> google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest.GeoTargets + 2, // 2: google.ads.googleads.v22.services.SuggestGeoTargetConstantsResponse.geo_target_constant_suggestions:type_name -> google.ads.googleads.v22.services.GeoTargetConstantSuggestion + 5, // 3: google.ads.googleads.v22.services.GeoTargetConstantSuggestion.geo_target_constant:type_name -> google.ads.googleads.v22.resources.GeoTargetConstant + 5, // 4: google.ads.googleads.v22.services.GeoTargetConstantSuggestion.geo_target_constant_parents:type_name -> google.ads.googleads.v22.resources.GeoTargetConstant + 0, // 5: google.ads.googleads.v22.services.GeoTargetConstantService.SuggestGeoTargetConstants:input_type -> google.ads.googleads.v22.services.SuggestGeoTargetConstantsRequest + 1, // 6: google.ads.googleads.v22.services.GeoTargetConstantService.SuggestGeoTargetConstants:output_type -> google.ads.googleads.v22.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 @@ -528,31 +528,31 @@ var file_google_ads_googleads_v21_services_geo_target_constant_service_proto_dep 0, // [0:5] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_geo_target_constant_service_proto_init() } -func file_google_ads_googleads_v21_services_geo_target_constant_service_proto_init() { - if File_google_ads_googleads_v21_services_geo_target_constant_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_geo_target_constant_service_proto_init() } +func file_google_ads_googleads_v22_services_geo_target_constant_service_proto_init() { + if File_google_ads_googleads_v22_services_geo_target_constant_service_proto != nil { return } - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[0].OneofWrappers = []any{ (*SuggestGeoTargetConstantsRequest_LocationNames_)(nil), (*SuggestGeoTargetConstantsRequest_GeoTargets_)(nil), } - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_geo_target_constant_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_geo_target_constant_service_proto_rawDesc)), NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_geo_target_constant_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_geo_target_constant_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_geo_target_constant_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_geo_target_constant_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_geo_target_constant_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_geo_target_constant_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_geo_target_constant_service_proto = out.File - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_geo_target_constant_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_geo_target_constant_service_proto = out.File + file_google_ads_googleads_v22_services_geo_target_constant_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 0a4b244b..9f9768f3 100644 --- a/services/geo_target_constant_service_grpc.pb.go +++ b/services/geo_target_constant_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/geo_target_constant_service.proto +// source: google/ads/googleads/v22/services/geo_target_constant_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName = "/google.ads.googleads.v21.services.GeoTargetConstantService/SuggestGeoTargetConstants" + GeoTargetConstantService_SuggestGeoTargetConstants_FullMethodName = "/google.ads.googleads.v22.services.GeoTargetConstantService/SuggestGeoTargetConstants" ) // GeoTargetConstantServiceClient is the client API for GeoTargetConstantService service. @@ -149,7 +149,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.v21.services.GeoTargetConstantService", + ServiceName: "google.ads.googleads.v22.services.GeoTargetConstantService", HandlerType: (*GeoTargetConstantServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +158,5 @@ var GeoTargetConstantService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/geo_target_constant_service.proto", + Metadata: "google/ads/googleads/v22/services/geo_target_constant_service.proto", } diff --git a/services/goal_service.pb.go b/services/goal_service.pb.go new file mode 100644 index 00000000..35c9ff8e --- /dev/null +++ b/services/goal_service.pb.go @@ -0,0 +1,486 @@ +// Copyright 2025 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.36.5 +// protoc v4.24.4 +// source: google/ads/googleads/v22/services/goal_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" + fieldmaskpb "google.golang.org/protobuf/types/known/fieldmaskpb" + reflect "reflect" + sync "sync" + unsafe "unsafe" +) + +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 +// [GoalService.MutateGoals][google.ads.googleads.v22.services.GoalService.MutateGoals]. +type MutateGoalsRequest struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Required. The ID of the customer whose goals 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 goals. + Operations []*GoalOperation `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"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateGoalsRequest) Reset() { + *x = MutateGoalsRequest{} + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[0] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateGoalsRequest) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateGoalsRequest) ProtoMessage() {} + +func (x *MutateGoalsRequest) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[0] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateGoalsRequest.ProtoReflect.Descriptor instead. +func (*MutateGoalsRequest) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_goal_service_proto_rawDescGZIP(), []int{0} +} + +func (x *MutateGoalsRequest) GetCustomerId() string { + if x != nil { + return x.CustomerId + } + return "" +} + +func (x *MutateGoalsRequest) GetOperations() []*GoalOperation { + if x != nil { + return x.Operations + } + return nil +} + +func (x *MutateGoalsRequest) GetPartialFailure() bool { + if x != nil { + return x.PartialFailure + } + return false +} + +func (x *MutateGoalsRequest) GetValidateOnly() bool { + if x != nil { + return x.ValidateOnly + } + return false +} + +// A single mutate operation on the goal. +type GoalOperation struct { + state protoimpl.MessageState `protogen:"open.v1"` + // FieldMask that determines which resource fields are modified in an update. + UpdateMask *fieldmaskpb.FieldMask `protobuf:"bytes,3,opt,name=update_mask,json=updateMask,proto3" json:"update_mask,omitempty"` + // The mutate operation. + // + // Types that are valid to be assigned to Operation: + // + // *GoalOperation_Create + // *GoalOperation_Update + Operation isGoalOperation_Operation `protobuf_oneof:"operation"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *GoalOperation) Reset() { + *x = GoalOperation{} + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[1] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *GoalOperation) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*GoalOperation) ProtoMessage() {} + +func (x *GoalOperation) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[1] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use GoalOperation.ProtoReflect.Descriptor instead. +func (*GoalOperation) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_goal_service_proto_rawDescGZIP(), []int{1} +} + +func (x *GoalOperation) GetUpdateMask() *fieldmaskpb.FieldMask { + if x != nil { + return x.UpdateMask + } + return nil +} + +func (x *GoalOperation) GetOperation() isGoalOperation_Operation { + if x != nil { + return x.Operation + } + return nil +} + +func (x *GoalOperation) GetCreate() *resources.Goal { + if x != nil { + if x, ok := x.Operation.(*GoalOperation_Create); ok { + return x.Create + } + } + return nil +} + +func (x *GoalOperation) GetUpdate() *resources.Goal { + if x != nil { + if x, ok := x.Operation.(*GoalOperation_Update); ok { + return x.Update + } + } + return nil +} + +type isGoalOperation_Operation interface { + isGoalOperation_Operation() +} + +type GoalOperation_Create struct { + // Create a new goal. + Create *resources.Goal `protobuf:"bytes,1,opt,name=create,proto3,oneof"` +} + +type GoalOperation_Update struct { + // Update an existing goal. + Update *resources.Goal `protobuf:"bytes,2,opt,name=update,proto3,oneof"` +} + +func (*GoalOperation_Create) isGoalOperation_Operation() {} + +func (*GoalOperation_Update) isGoalOperation_Operation() {} + +// Response message for a goal mutate. +type MutateGoalsResponse struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Errors that pertain to operation failures in the partial failure mode. + 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 []*MutateGoalResult `protobuf:"bytes,2,rep,name=results,proto3" json:"results,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateGoalsResponse) Reset() { + *x = MutateGoalsResponse{} + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[2] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateGoalsResponse) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateGoalsResponse) ProtoMessage() {} + +func (x *MutateGoalsResponse) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[2] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateGoalsResponse.ProtoReflect.Descriptor instead. +func (*MutateGoalsResponse) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_goal_service_proto_rawDescGZIP(), []int{2} +} + +func (x *MutateGoalsResponse) GetPartialFailureError() *status.Status { + if x != nil { + return x.PartialFailureError + } + return nil +} + +func (x *MutateGoalsResponse) GetResults() []*MutateGoalResult { + if x != nil { + return x.Results + } + return nil +} + +// The result for the goal mutate. +type MutateGoalResult struct { + state protoimpl.MessageState `protogen:"open.v1"` + // Returned for successful operations. + ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *MutateGoalResult) Reset() { + *x = MutateGoalResult{} + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[3] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *MutateGoalResult) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*MutateGoalResult) ProtoMessage() {} + +func (x *MutateGoalResult) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[3] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use MutateGoalResult.ProtoReflect.Descriptor instead. +func (*MutateGoalResult) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_goal_service_proto_rawDescGZIP(), []int{3} +} + +func (x *MutateGoalResult) GetResourceName() string { + if x != nil { + return x.ResourceName + } + return "" +} + +var File_google_ads_googleads_v22_services_goal_service_proto protoreflect.FileDescriptor + +var file_google_ads_googleads_v22_services_goal_service_proto_rawDesc = string([]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, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2f, 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, 0x32, 0x32, + 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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 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, + 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, 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, 0xe9, 0x01, 0x0a, 0x12, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x47, 0x6f, 0x61, 0x6c, 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, 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, + 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 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, 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, 0xe1, 0x01, 0x0a, 0x0d, 0x47, 0x6f, 0x61, 0x6c, 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, 0x03, 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, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, + 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 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, 0x22, 0xac, 0x01, 0x0a, 0x13, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x65, 0x47, 0x6f, 0x61, 0x6c, 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, 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, + 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x74, 0x65, 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x52, 0x07, 0x72, 0x65, + 0x73, 0x75, 0x6c, 0x74, 0x73, 0x22, 0x5b, 0x0a, 0x10, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, + 0x6f, 0x61, 0x6c, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x47, 0x0a, 0x0d, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 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, + 0x47, 0x6f, 0x61, 0x6c, 0x52, 0x0c, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x4e, 0x61, + 0x6d, 0x65, 0x32, 0xa4, 0x02, 0x0a, 0x0b, 0x47, 0x6f, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x12, 0xcd, 0x01, 0x0a, 0x0b, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x61, + 0x6c, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x61, + 0x6c, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x74, 0x61, 0x74, 0x65, 0x47, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 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, 0x47, 0x6f, 0x61, 0x6c, 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, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x42, 0x10, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, + 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, +}) + +var ( + file_google_ads_googleads_v22_services_goal_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_goal_service_proto_rawDescData []byte +) + +func file_google_ads_googleads_v22_services_goal_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_goal_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_goal_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_goal_service_proto_rawDesc))) + }) + return file_google_ads_googleads_v22_services_goal_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_goal_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_goal_service_proto_goTypes = []any{ + (*MutateGoalsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateGoalsRequest + (*GoalOperation)(nil), // 1: google.ads.googleads.v22.services.GoalOperation + (*MutateGoalsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateGoalsResponse + (*MutateGoalResult)(nil), // 3: google.ads.googleads.v22.services.MutateGoalResult + (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask + (*resources.Goal)(nil), // 5: google.ads.googleads.v22.resources.Goal + (*status.Status)(nil), // 6: google.rpc.Status +} +var file_google_ads_googleads_v22_services_goal_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateGoalsRequest.operations:type_name -> google.ads.googleads.v22.services.GoalOperation + 4, // 1: google.ads.googleads.v22.services.GoalOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.GoalOperation.create:type_name -> google.ads.googleads.v22.resources.Goal + 5, // 3: google.ads.googleads.v22.services.GoalOperation.update:type_name -> google.ads.googleads.v22.resources.Goal + 6, // 4: google.ads.googleads.v22.services.MutateGoalsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateGoalsResponse.results:type_name -> google.ads.googleads.v22.services.MutateGoalResult + 0, // 6: google.ads.googleads.v22.services.GoalService.MutateGoals:input_type -> google.ads.googleads.v22.services.MutateGoalsRequest + 2, // 7: google.ads.googleads.v22.services.GoalService.MutateGoals:output_type -> google.ads.googleads.v22.services.MutateGoalsResponse + 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 + 6, // [6:6] is the sub-list for extension extendee + 0, // [0:6] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_goal_service_proto_init() } +func file_google_ads_googleads_v22_services_goal_service_proto_init() { + if File_google_ads_googleads_v22_services_goal_service_proto != nil { + return + } + file_google_ads_googleads_v22_services_goal_service_proto_msgTypes[1].OneofWrappers = []any{ + (*GoalOperation_Create)(nil), + (*GoalOperation_Update)(nil), + } + type x struct{} + out := protoimpl.TypeBuilder{ + File: protoimpl.DescBuilder{ + GoPackagePath: reflect.TypeOf(x{}).PkgPath(), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_goal_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_goal_service_proto_rawDesc)), + NumEnums: 0, + NumMessages: 4, + NumExtensions: 0, + NumServices: 1, + }, + GoTypes: file_google_ads_googleads_v22_services_goal_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_goal_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_goal_service_proto_msgTypes, + }.Build() + File_google_ads_googleads_v22_services_goal_service_proto = out.File + file_google_ads_googleads_v22_services_goal_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_goal_service_proto_depIdxs = nil +} diff --git a/services/goal_service_grpc.pb.go b/services/goal_service_grpc.pb.go new file mode 100644 index 00000000..42d5f8b5 --- /dev/null +++ b/services/goal_service_grpc.pb.go @@ -0,0 +1,163 @@ +// Copyright 2025 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.5.1 +// - protoc v4.24.4 +// source: google/ads/googleads/v22/services/goal_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.64.0 or later. +const _ = grpc.SupportPackageIsVersion9 + +const ( + GoalService_MutateGoals_FullMethodName = "/google.ads.googleads.v22.services.GoalService/MutateGoals" +) + +// GoalServiceClient is the client API for GoalService 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 goals. +type GoalServiceClient interface { + // Create or update goals. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + // [GoalError]() + // [GoalServicesError]() + MutateGoals(ctx context.Context, in *MutateGoalsRequest, opts ...grpc.CallOption) (*MutateGoalsResponse, error) +} + +type goalServiceClient struct { + cc grpc.ClientConnInterface +} + +func NewGoalServiceClient(cc grpc.ClientConnInterface) GoalServiceClient { + return &goalServiceClient{cc} +} + +func (c *goalServiceClient) MutateGoals(ctx context.Context, in *MutateGoalsRequest, opts ...grpc.CallOption) (*MutateGoalsResponse, error) { + cOpts := append([]grpc.CallOption{grpc.StaticMethod()}, opts...) + out := new(MutateGoalsResponse) + err := c.cc.Invoke(ctx, GoalService_MutateGoals_FullMethodName, in, out, cOpts...) + if err != nil { + return nil, err + } + return out, nil +} + +// GoalServiceServer is the server API for GoalService service. +// All implementations must embed UnimplementedGoalServiceServer +// for forward compatibility. +// +// Service to manage goals. +type GoalServiceServer interface { + // Create or update goals. + // + // List of thrown errors: + // + // [AuthenticationError]() + // [AuthorizationError]() + // [HeaderError]() + // [InternalError]() + // [QuotaError]() + // [RequestError]() + // [GoalError]() + // [GoalServicesError]() + MutateGoals(context.Context, *MutateGoalsRequest) (*MutateGoalsResponse, error) + mustEmbedUnimplementedGoalServiceServer() +} + +// UnimplementedGoalServiceServer must be embedded to have +// forward compatible implementations. +// +// NOTE: this should be embedded by value instead of pointer to avoid a nil +// pointer dereference when methods are called. +type UnimplementedGoalServiceServer struct{} + +func (UnimplementedGoalServiceServer) MutateGoals(context.Context, *MutateGoalsRequest) (*MutateGoalsResponse, error) { + return nil, status.Errorf(codes.Unimplemented, "method MutateGoals not implemented") +} +func (UnimplementedGoalServiceServer) mustEmbedUnimplementedGoalServiceServer() {} +func (UnimplementedGoalServiceServer) testEmbeddedByValue() {} + +// UnsafeGoalServiceServer may be embedded to opt out of forward compatibility for this service. +// Use of this interface is not recommended, as added methods to GoalServiceServer will +// result in compilation errors. +type UnsafeGoalServiceServer interface { + mustEmbedUnimplementedGoalServiceServer() +} + +func RegisterGoalServiceServer(s grpc.ServiceRegistrar, srv GoalServiceServer) { + // If the following call pancis, it indicates UnimplementedGoalServiceServer was + // embedded by pointer and is nil. This will cause panics if an + // unimplemented method is ever invoked, so we test this at initialization + // time to prevent it from happening at runtime later due to I/O. + if t, ok := srv.(interface{ testEmbeddedByValue() }); ok { + t.testEmbeddedByValue() + } + s.RegisterService(&GoalService_ServiceDesc, srv) +} + +func _GoalService_MutateGoals_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) { + in := new(MutateGoalsRequest) + if err := dec(in); err != nil { + return nil, err + } + if interceptor == nil { + return srv.(GoalServiceServer).MutateGoals(ctx, in) + } + info := &grpc.UnaryServerInfo{ + Server: srv, + FullMethod: GoalService_MutateGoals_FullMethodName, + } + handler := func(ctx context.Context, req interface{}) (interface{}, error) { + return srv.(GoalServiceServer).MutateGoals(ctx, req.(*MutateGoalsRequest)) + } + return interceptor(ctx, in, info, handler) +} + +// GoalService_ServiceDesc is the grpc.ServiceDesc for GoalService service. +// It's only intended for direct use with grpc.RegisterService, +// and not to be introspected or modified (even as a copy) +var GoalService_ServiceDesc = grpc.ServiceDesc{ + ServiceName: "google.ads.googleads.v22.services.GoalService", + HandlerType: (*GoalServiceServer)(nil), + Methods: []grpc.MethodDesc{ + { + MethodName: "MutateGoals", + Handler: _GoalService_MutateGoals_Handler, + }, + }, + Streams: []grpc.StreamDesc{}, + Metadata: "google/ads/googleads/v22/services/goal_service.proto", +} diff --git a/services/google_ads_field_service.pb.go b/services/google_ads_field_service.pb.go index 157d0a52..2ba480df 100644 --- a/services/google_ads_field_service.pb.go +++ b/services/google_ads_field_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/google_ads_field_service.proto +// source: google/ads/googleads/v22/services/google_ads_field_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [GoogleAdsFieldService.GetGoogleAdsField][google.ads.googleads.v21.services.GoogleAdsFieldService.GetGoogleAdsField]. +// [GoogleAdsFieldService.GetGoogleAdsField][google.ads.googleads.v22.services.GoogleAdsFieldService.GetGoogleAdsField]. type GetGoogleAdsFieldRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the field to get. @@ -49,7 +49,7 @@ type GetGoogleAdsFieldRequest struct { func (x *GetGoogleAdsFieldRequest) Reset() { *x = GetGoogleAdsFieldRequest{} - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *GetGoogleAdsFieldRequest) String() string { func (*GetGoogleAdsFieldRequest) ProtoMessage() {} func (x *GetGoogleAdsFieldRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *GetGoogleAdsFieldRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetGoogleAdsFieldRequest.ProtoReflect.Descriptor instead. func (*GetGoogleAdsFieldRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescGZIP(), []int{0} } func (x *GetGoogleAdsFieldRequest) GetResourceName() string { @@ -85,7 +85,7 @@ func (x *GetGoogleAdsFieldRequest) GetResourceName() string { } // Request message for -// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v21.services.GoogleAdsFieldService.SearchGoogleAdsFields]. +// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v22.services.GoogleAdsFieldService.SearchGoogleAdsFields]. type SearchGoogleAdsFieldsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The query string. @@ -104,7 +104,7 @@ type SearchGoogleAdsFieldsRequest struct { func (x *SearchGoogleAdsFieldsRequest) Reset() { *x = SearchGoogleAdsFieldsRequest{} - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *SearchGoogleAdsFieldsRequest) String() string { func (*SearchGoogleAdsFieldsRequest) ProtoMessage() {} func (x *SearchGoogleAdsFieldsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,7 +129,7 @@ func (x *SearchGoogleAdsFieldsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsFieldsRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsFieldsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescGZIP(), []int{1} } func (x *SearchGoogleAdsFieldsRequest) GetQuery() string { @@ -154,7 +154,7 @@ func (x *SearchGoogleAdsFieldsRequest) GetPageSize() int32 { } // Response message for -// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v21.services.GoogleAdsFieldService.SearchGoogleAdsFields]. +// [GoogleAdsFieldService.SearchGoogleAdsFields][google.ads.googleads.v22.services.GoogleAdsFieldService.SearchGoogleAdsFields]. type SearchGoogleAdsFieldsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of fields that matched the query. @@ -171,7 +171,7 @@ type SearchGoogleAdsFieldsResponse struct { func (x *SearchGoogleAdsFieldsResponse) Reset() { *x = SearchGoogleAdsFieldsResponse{} - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *SearchGoogleAdsFieldsResponse) String() string { func (*SearchGoogleAdsFieldsResponse) ProtoMessage() {} func (x *SearchGoogleAdsFieldsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,7 +196,7 @@ func (x *SearchGoogleAdsFieldsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsFieldsResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsFieldsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescGZIP(), []int{2} } func (x *SearchGoogleAdsFieldsResponse) GetResults() []*resources.GoogleAdsField { @@ -220,17 +220,17 @@ func (x *SearchGoogleAdsFieldsResponse) GetTotalResultsCount() int64 { return 0 } -var File_google_ads_googleads_v21_services_google_ads_field_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_google_ads_field_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -259,7 +259,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -271,28 +271,28 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, 0x61, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, 0x76, 0x32, 0x32, 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, @@ -300,49 +300,49 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDescData + return file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_services_google_ads_field_service_proto_goTypes = []any{ - (*GetGoogleAdsFieldRequest)(nil), // 0: google.ads.googleads.v21.services.GetGoogleAdsFieldRequest - (*SearchGoogleAdsFieldsRequest)(nil), // 1: google.ads.googleads.v21.services.SearchGoogleAdsFieldsRequest - (*SearchGoogleAdsFieldsResponse)(nil), // 2: google.ads.googleads.v21.services.SearchGoogleAdsFieldsResponse - (*resources.GoogleAdsField)(nil), // 3: google.ads.googleads.v21.resources.GoogleAdsField +var file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_services_google_ads_field_service_proto_goTypes = []any{ + (*GetGoogleAdsFieldRequest)(nil), // 0: google.ads.googleads.v22.services.GetGoogleAdsFieldRequest + (*SearchGoogleAdsFieldsRequest)(nil), // 1: google.ads.googleads.v22.services.SearchGoogleAdsFieldsRequest + (*SearchGoogleAdsFieldsResponse)(nil), // 2: google.ads.googleads.v22.services.SearchGoogleAdsFieldsResponse + (*resources.GoogleAdsField)(nil), // 3: google.ads.googleads.v22.resources.GoogleAdsField } -var file_google_ads_googleads_v21_services_google_ads_field_service_proto_depIdxs = []int32{ - 3, // 0: google.ads.googleads.v21.services.SearchGoogleAdsFieldsResponse.results:type_name -> google.ads.googleads.v21.resources.GoogleAdsField - 0, // 1: google.ads.googleads.v21.services.GoogleAdsFieldService.GetGoogleAdsField:input_type -> google.ads.googleads.v21.services.GetGoogleAdsFieldRequest - 1, // 2: google.ads.googleads.v21.services.GoogleAdsFieldService.SearchGoogleAdsFields:input_type -> google.ads.googleads.v21.services.SearchGoogleAdsFieldsRequest - 3, // 3: google.ads.googleads.v21.services.GoogleAdsFieldService.GetGoogleAdsField:output_type -> google.ads.googleads.v21.resources.GoogleAdsField - 2, // 4: google.ads.googleads.v21.services.GoogleAdsFieldService.SearchGoogleAdsFields:output_type -> google.ads.googleads.v21.services.SearchGoogleAdsFieldsResponse +var file_google_ads_googleads_v22_services_google_ads_field_service_proto_depIdxs = []int32{ + 3, // 0: google.ads.googleads.v22.services.SearchGoogleAdsFieldsResponse.results:type_name -> google.ads.googleads.v22.resources.GoogleAdsField + 0, // 1: google.ads.googleads.v22.services.GoogleAdsFieldService.GetGoogleAdsField:input_type -> google.ads.googleads.v22.services.GetGoogleAdsFieldRequest + 1, // 2: google.ads.googleads.v22.services.GoogleAdsFieldService.SearchGoogleAdsFields:input_type -> google.ads.googleads.v22.services.SearchGoogleAdsFieldsRequest + 3, // 3: google.ads.googleads.v22.services.GoogleAdsFieldService.GetGoogleAdsField:output_type -> google.ads.googleads.v22.resources.GoogleAdsField + 2, // 4: google.ads.googleads.v22.services.GoogleAdsFieldService.SearchGoogleAdsFields:output_type -> google.ads.googleads.v22.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 @@ -350,26 +350,26 @@ var file_google_ads_googleads_v21_services_google_ads_field_service_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_google_ads_field_service_proto_init() } -func file_google_ads_googleads_v21_services_google_ads_field_service_proto_init() { - if File_google_ads_googleads_v21_services_google_ads_field_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_google_ads_field_service_proto_init() } +func file_google_ads_googleads_v22_services_google_ads_field_service_proto_init() { + if File_google_ads_googleads_v22_services_google_ads_field_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_google_ads_field_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_google_ads_field_service_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_google_ads_field_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_google_ads_field_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_google_ads_field_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_google_ads_field_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_google_ads_field_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_google_ads_field_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_google_ads_field_service_proto = out.File - file_google_ads_googleads_v21_services_google_ads_field_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_google_ads_field_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_google_ads_field_service_proto = out.File + file_google_ads_googleads_v22_services_google_ads_field_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 80c0e475..ac8a1065 100644 --- a/services/google_ads_field_service_grpc.pb.go +++ b/services/google_ads_field_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/google_ads_field_service.proto +// source: google/ads/googleads/v22/services/google_ads_field_service.proto package services @@ -34,8 +34,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - GoogleAdsFieldService_GetGoogleAdsField_FullMethodName = "/google.ads.googleads.v21.services.GoogleAdsFieldService/GetGoogleAdsField" - GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName = "/google.ads.googleads.v21.services.GoogleAdsFieldService/SearchGoogleAdsFields" + GoogleAdsFieldService_GetGoogleAdsField_FullMethodName = "/google.ads.googleads.v22.services.GoogleAdsFieldService/GetGoogleAdsField" + GoogleAdsFieldService_SearchGoogleAdsFields_FullMethodName = "/google.ads.googleads.v22.services.GoogleAdsFieldService/SearchGoogleAdsFields" ) // GoogleAdsFieldServiceClient is the client API for GoogleAdsFieldService service. @@ -203,7 +203,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.v21.services.GoogleAdsFieldService", + ServiceName: "google.ads.googleads.v22.services.GoogleAdsFieldService", HandlerType: (*GoogleAdsFieldServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -216,5 +216,5 @@ var GoogleAdsFieldService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/google_ads_field_service.proto", + Metadata: "google/ads/googleads/v22/services/google_ads_field_service.proto", } diff --git a/services/google_ads_service.pb.go b/services/google_ads_service.pb.go index aa3113b9..2fe87b04 100644 --- a/services/google_ads_service.pb.go +++ b/services/google_ads_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/google_ads_service.proto +// source: google/ads/googleads/v22/services/google_ads_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [GoogleAdsService.Search][google.ads.googleads.v21.services.GoogleAdsService.Search]. +// [GoogleAdsService.Search][google.ads.googleads.v22.services.GoogleAdsService.Search]. type SearchGoogleAdsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being queried. @@ -72,7 +72,7 @@ type SearchGoogleAdsRequest struct { func (x *SearchGoogleAdsRequest) Reset() { *x = SearchGoogleAdsRequest{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -84,7 +84,7 @@ func (x *SearchGoogleAdsRequest) String() string { func (*SearchGoogleAdsRequest) ProtoMessage() {} func (x *SearchGoogleAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -97,7 +97,7 @@ func (x *SearchGoogleAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{0} } func (x *SearchGoogleAdsRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ func (x *SearchGoogleAdsRequest) GetSearchSettings() *SearchSettings { } // Response message for -// [GoogleAdsService.Search][google.ads.googleads.v21.services.GoogleAdsService.Search]. +// [GoogleAdsService.Search][google.ads.googleads.v22.services.GoogleAdsService.Search]. type SearchGoogleAdsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of rows that matched the query. @@ -170,7 +170,7 @@ type SearchGoogleAdsResponse struct { func (x *SearchGoogleAdsResponse) Reset() { *x = SearchGoogleAdsResponse{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -182,7 +182,7 @@ func (x *SearchGoogleAdsResponse) String() string { func (*SearchGoogleAdsResponse) ProtoMessage() {} func (x *SearchGoogleAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -195,7 +195,7 @@ func (x *SearchGoogleAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{1} } func (x *SearchGoogleAdsResponse) GetResults() []*GoogleAdsRow { @@ -241,7 +241,7 @@ func (x *SearchGoogleAdsResponse) GetQueryResourceConsumption() int64 { } // Request message for -// [GoogleAdsService.SearchStream][google.ads.googleads.v21.services.GoogleAdsService.SearchStream]. +// [GoogleAdsService.SearchStream][google.ads.googleads.v22.services.GoogleAdsService.SearchStream]. type SearchGoogleAdsStreamRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being queried. @@ -251,14 +251,14 @@ 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.v21.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.v22.enums.SummaryRowSettingEnum_SummaryRowSetting" json:"summary_row_setting,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SearchGoogleAdsStreamRequest) Reset() { *x = SearchGoogleAdsStreamRequest{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -270,7 +270,7 @@ func (x *SearchGoogleAdsStreamRequest) String() string { func (*SearchGoogleAdsStreamRequest) ProtoMessage() {} func (x *SearchGoogleAdsStreamRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -283,7 +283,7 @@ func (x *SearchGoogleAdsStreamRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsStreamRequest.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsStreamRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{2} } func (x *SearchGoogleAdsStreamRequest) GetCustomerId() string { @@ -308,7 +308,7 @@ func (x *SearchGoogleAdsStreamRequest) GetSummaryRowSetting() enums.SummaryRowSe } // Response message for -// [GoogleAdsService.SearchStream][google.ads.googleads.v21.services.GoogleAdsService.SearchStream]. +// [GoogleAdsService.SearchStream][google.ads.googleads.v22.services.GoogleAdsService.SearchStream]. type SearchGoogleAdsStreamResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of rows that matched the query. @@ -333,7 +333,7 @@ type SearchGoogleAdsStreamResponse struct { func (x *SearchGoogleAdsStreamResponse) Reset() { *x = SearchGoogleAdsStreamResponse{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -345,7 +345,7 @@ func (x *SearchGoogleAdsStreamResponse) String() string { func (*SearchGoogleAdsStreamResponse) ProtoMessage() {} func (x *SearchGoogleAdsStreamResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -358,7 +358,7 @@ func (x *SearchGoogleAdsStreamResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchGoogleAdsStreamResponse.ProtoReflect.Descriptor instead. func (*SearchGoogleAdsStreamResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{3} } func (x *SearchGoogleAdsStreamResponse) GetResults() []*GoogleAdsRow { @@ -511,6 +511,8 @@ type GoogleAdsRow struct { CampaignDraft *resources.CampaignDraft `protobuf:"bytes,49,opt,name=campaign_draft,json=campaignDraft,proto3" json:"campaign_draft,omitempty"` // Campaign Group referenced in AWQL query. CampaignGroup *resources.CampaignGroup `protobuf:"bytes,25,opt,name=campaign_group,json=campaignGroup,proto3" json:"campaign_group,omitempty"` + // The campaign goal config referenced in the query. + CampaignGoalConfig *resources.CampaignGoalConfig `protobuf:"bytes,236,opt,name=campaign_goal_config,json=campaignGoalConfig,proto3" json:"campaign_goal_config,omitempty"` // The campaign label referenced in the query. CampaignLabel *resources.CampaignLabel `protobuf:"bytes,108,opt,name=campaign_label,json=campaignLabel,proto3" json:"campaign_label,omitempty"` // The campaign lifecycle goal referenced in the query. @@ -609,6 +611,8 @@ type GoogleAdsRow struct { GeoTargetConstant *resources.GeoTargetConstant `protobuf:"bytes,23,opt,name=geo_target_constant,json=geoTargetConstant,proto3" json:"geo_target_constant,omitempty"` // The geographic view referenced in the query. GeographicView *resources.GeographicView `protobuf:"bytes,125,opt,name=geographic_view,json=geographicView,proto3" json:"geographic_view,omitempty"` + // The goal in the query. + Goal *resources.Goal `protobuf:"bytes,237,opt,name=goal,proto3" json:"goal,omitempty"` // The group content suitability placement view referenced in the query. GroupContentSuitabilityPlacementView *resources.GroupContentSuitabilityPlacementView `protobuf:"bytes,239,opt,name=group_content_suitability_placement_view,json=groupContentSuitabilityPlacementView,proto3" json:"group_content_suitability_placement_view,omitempty"` // The group placement view referenced in the query. @@ -703,6 +707,8 @@ type GoogleAdsRow struct { 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 Targeting expansion view referenced in the query. + TargetingExpansionView *resources.TargetingExpansionView `protobuf:"bytes,244,opt,name=targeting_expansion_view,json=targetingExpansionView,proto3" json:"targeting_expansion_view,omitempty"` // The AccountLink referenced in the query. ThirdPartyAppAnalyticsLink *resources.ThirdPartyAppAnalyticsLink `protobuf:"bytes,144,opt,name=third_party_app_analytics_link,json=thirdPartyAppAnalyticsLink,proto3" json:"third_party_app_analytics_link,omitempty"` // The topic view referenced in the query. @@ -755,7 +761,7 @@ type GoogleAdsRow struct { func (x *GoogleAdsRow) Reset() { *x = GoogleAdsRow{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -767,7 +773,7 @@ func (x *GoogleAdsRow) String() string { func (*GoogleAdsRow) ProtoMessage() {} func (x *GoogleAdsRow) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -780,7 +786,7 @@ func (x *GoogleAdsRow) ProtoReflect() protoreflect.Message { // Deprecated: Use GoogleAdsRow.ProtoReflect.Descriptor instead. func (*GoogleAdsRow) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{4} } func (x *GoogleAdsRow) GetAccountBudget() *resources.AccountBudget { @@ -1175,6 +1181,13 @@ func (x *GoogleAdsRow) GetCampaignGroup() *resources.CampaignGroup { return nil } +func (x *GoogleAdsRow) GetCampaignGoalConfig() *resources.CampaignGoalConfig { + if x != nil { + return x.CampaignGoalConfig + } + return nil +} + func (x *GoogleAdsRow) GetCampaignLabel() *resources.CampaignLabel { if x != nil { return x.CampaignLabel @@ -1518,6 +1531,13 @@ func (x *GoogleAdsRow) GetGeographicView() *resources.GeographicView { return nil } +func (x *GoogleAdsRow) GetGoal() *resources.Goal { + if x != nil { + return x.Goal + } + return nil +} + func (x *GoogleAdsRow) GetGroupContentSuitabilityPlacementView() *resources.GroupContentSuitabilityPlacementView { if x != nil { return x.GroupContentSuitabilityPlacementView @@ -1847,6 +1867,13 @@ func (x *GoogleAdsRow) GetSmartCampaignSearchTermView() *resources.SmartCampaign return nil } +func (x *GoogleAdsRow) GetTargetingExpansionView() *resources.TargetingExpansionView { + if x != nil { + return x.TargetingExpansionView + } + return nil +} + func (x *GoogleAdsRow) GetThirdPartyAppAnalyticsLink() *resources.ThirdPartyAppAnalyticsLink { if x != nil { return x.ThirdPartyAppAnalyticsLink @@ -2009,7 +2036,7 @@ func (x *GoogleAdsRow) GetSegments() *common.Segments { } // Request message for -// [GoogleAdsService.Mutate][google.ads.googleads.v21.services.GoogleAdsService.Mutate]. +// [GoogleAdsService.Mutate][google.ads.googleads.v22.services.GoogleAdsService.Mutate]. type MutateGoogleAdsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose resources are being modified. @@ -2028,14 +2055,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateGoogleAdsRequest) Reset() { *x = MutateGoogleAdsRequest{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2047,7 +2074,7 @@ func (x *MutateGoogleAdsRequest) String() string { func (*MutateGoogleAdsRequest) ProtoMessage() {} func (x *MutateGoogleAdsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2060,7 +2087,7 @@ func (x *MutateGoogleAdsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateGoogleAdsRequest.ProtoReflect.Descriptor instead. func (*MutateGoogleAdsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{5} } func (x *MutateGoogleAdsRequest) GetCustomerId() string { @@ -2099,7 +2126,7 @@ func (x *MutateGoogleAdsRequest) GetResponseContentType() enums.ResponseContentT } // Response message for -// [GoogleAdsService.Mutate][google.ads.googleads.v21.services.GoogleAdsService.Mutate]. +// [GoogleAdsService.Mutate][google.ads.googleads.v22.services.GoogleAdsService.Mutate]. type MutateGoogleAdsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to operation failures in the partial failure mode. @@ -2115,7 +2142,7 @@ type MutateGoogleAdsResponse struct { func (x *MutateGoogleAdsResponse) Reset() { *x = MutateGoogleAdsResponse{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2127,7 +2154,7 @@ func (x *MutateGoogleAdsResponse) String() string { func (*MutateGoogleAdsResponse) ProtoMessage() {} func (x *MutateGoogleAdsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2140,7 +2167,7 @@ func (x *MutateGoogleAdsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateGoogleAdsResponse.ProtoReflect.Descriptor instead. func (*MutateGoogleAdsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{6} } func (x *MutateGoogleAdsResponse) GetPartialFailureError() *status.Status { @@ -2233,7 +2260,7 @@ type MutateOperation struct { func (x *MutateOperation) Reset() { *x = MutateOperation{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2245,7 +2272,7 @@ func (x *MutateOperation) String() string { func (*MutateOperation) ProtoMessage() {} func (x *MutateOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2258,7 +2285,7 @@ func (x *MutateOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateOperation.ProtoReflect.Descriptor instead. func (*MutateOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{7} } func (x *MutateOperation) GetOperation() isMutateOperation_Operation { @@ -3340,7 +3367,7 @@ type MutateOperationResponse struct { func (x *MutateOperationResponse) Reset() { *x = MutateOperationResponse{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -3352,7 +3379,7 @@ func (x *MutateOperationResponse) String() string { func (*MutateOperationResponse) ProtoMessage() {} func (x *MutateOperationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -3365,7 +3392,7 @@ func (x *MutateOperationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateOperationResponse.ProtoReflect.Descriptor instead. func (*MutateOperationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{8} } func (x *MutateOperationResponse) GetResponse() isMutateOperationResponse_Response { @@ -4400,7 +4427,7 @@ type SearchSettings struct { func (x *SearchSettings) Reset() { *x = SearchSettings{} - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -4412,7 +4439,7 @@ func (x *SearchSettings) String() string { func (*SearchSettings) ProtoMessage() {} func (x *SearchSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -4425,7 +4452,7 @@ func (x *SearchSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use SearchSettings.ProtoReflect.Descriptor instead. func (*SearchSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP(), []int{9} } func (x *SearchSettings) GetOmitResults() bool { @@ -4449,4057 +4476,4092 @@ func (x *SearchSettings) GetReturnTotalResultsCount() bool { return false } -var File_google_ads_googleads_v21_services_google_ads_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_google_ads_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_google_ads_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_google_ads_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x75, 0x6d, 0x6d, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x64, 0x5f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, 0x4f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, 0x6d, 0x5f, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, 0x73, 0x65, + 0x32, 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, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x61, 0x73, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, 0x64, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x62, 0x69, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x61, + 0x76, 0x32, 0x32, 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, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, - 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x42, 0x67, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, - 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, 0x42, 0x67, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, + 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, - 0x63, 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x69, 0x74, - 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, - 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x3c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, - 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, + 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, 0x32, 0x32, 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, 0x37, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, 0x72, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x72, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x63, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, - 0x6b, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x52, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, - 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, 0x61, - 0x69, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, - 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, + 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x52, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, + 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x64, 0x65, 0x74, 0x61, 0x69, + 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, + 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x31, 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, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, - 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, + 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x2d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x6f, 0x61, 0x6c, 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, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x74, + 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x47, 0x67, 0x6f, - 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, - 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, - 0x2f, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, - 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, - 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6f, - 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, - 0x79, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, - 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x5c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x47, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, - 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, - 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x70, - 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x31, 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, 0x2f, - 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x3f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, + 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x5c, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x6f, 0x6e, + 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x47, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, + 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x70, 0x65, 0x72, + 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x6c, 0x61, + 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x32, 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, 0x2f, 0x61, 0x64, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x41, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, + 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x74, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, + 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, + 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x3e, + 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, + 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, - 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, + 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, - 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, - 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, 0x32, 0x31, - 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x3e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, - 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x3e, - 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x4d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x4d, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, + 0x32, 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, 0x32, 0x31, - 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, + 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, 0x32, 0x32, 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, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x96, 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, 0x5a, 0x0a, 0x0f, 0x73, 0x65, - 0x61, 0x72, 0x63, 0x68, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x0a, 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, 0x32, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, 0x65, - 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0xc4, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x96, + 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, 0x5a, 0x0a, 0x0f, 0x73, + 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x73, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x18, 0x0a, + 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, 0x32, 0x32, 0x2e, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x52, 0x0e, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0xe5, 0x94, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x97, 0x01, 0x0a, 0x26, 0x61, - 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, 0x72, - 0x6d, 0x5f, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xf2, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x44, 0x2e, 0x67, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, - 0x6d, 0x41, 0x64, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, 0x69, - 0x65, 0x77, 0x52, 0x20, 0x61, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, - 0x65, 0x72, 0x6d, 0x41, 0x64, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x97, 0x01, 0x0a, 0x26, + 0x61, 0x69, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x73, 0x65, 0x61, 0x72, 0x63, 0x68, 0x5f, 0x74, 0x65, + 0x72, 0x6d, 0x5f, 0x61, 0x64, 0x5f, 0x63, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xf2, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x73, 0x2e, 0x41, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, + 0x72, 0x6d, 0x41, 0x64, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x56, + 0x69, 0x65, 0x77, 0x52, 0x20, 0x61, 0x69, 0x4d, 0x61, 0x78, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, + 0x54, 0x65, 0x72, 0x6d, 0x41, 0x64, 0x43, 0x6f, 0x6d, 0x62, 0x69, 0x6e, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x72, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x69, 0x0a, 0x14, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x5f, + 0x67, 0x6f, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x18, 0xec, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x52, 0x12, 0x63, 0x61, 0x6d, 0x70, + 0x61, 0x69, 0x67, 0x6e, 0x47, 0x6f, 0x61, 0x6c, 0x43, 0x6f, 0x6e, 0x66, 0x69, 0x67, 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, 0x32, - 0x31, 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, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x76, 0x0a, + 0x19, 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, 0xf3, 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, 0x32, 0x32, 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, 0x56, 0x69, 0x65, 0x77, 0x52, 0x16, 0x63, + 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x54, 0x65, 0x72, + 0x6d, 0x56, 0x69, 0x65, 0x77, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x76, 0x0a, 0x19, 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, 0xf3, - 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, 0x32, 0x31, - 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, 0x56, 0x69, 0x65, - 0x77, 0x52, 0x16, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x53, 0x65, 0x61, 0x72, 0x63, - 0x68, 0x54, 0x65, 0x72, 0x6d, 0x56, 0x69, 0x65, 0x77, 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, 0x32, - 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, - 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x72, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 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, - 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x4a, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, 0x6b, 0x18, 0xe6, 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, 0x32, 0x32, 0x2e, + 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x61, 0x74, 0x61, 0x4c, 0x69, + 0x6e, 0x6b, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x12, 0xa4, 0x01, 0x0a, + 0x29, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, + 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6c, 0x61, 0x63, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xee, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x43, 0x6f, 0x6e, + 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, + 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x25, 0x64, 0x65, + 0x74, 0x61, 0x69, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, + 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, + 0x69, 0x65, 0x77, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x4a, 0x0a, 0x09, 0x64, 0x61, 0x74, 0x61, 0x5f, 0x6c, 0x69, 0x6e, - 0x6b, 0x18, 0xe6, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x61, - 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, 0x52, 0x08, 0x64, 0x61, 0x74, 0x61, 0x4c, 0x69, 0x6e, 0x6b, - 0x12, 0xa4, 0x01, 0x0a, 0x29, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x5f, 0x63, 0x6f, 0x6e, 0x74, - 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, - 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xee, - 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, 0x32, 0x31, - 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x65, 0x74, 0x61, 0x69, - 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, - 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, - 0x52, 0x25, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, - 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, - 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 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, + 0x32, 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, 0x83, 0x01, 0x0a, + 0x1e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, + 0xf0, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x83, 0x01, 0x0a, 0x1e, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x75, 0x72, 0x6c, 0x5f, 0x65, - 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x18, 0xf0, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, - 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, - 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1a, 0x66, 0x69, 0x6e, 0x61, + 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x46, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, - 0x65, 0x74, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x65, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1a, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x55, 0x72, 0x6c, + 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x73, 0x73, 0x65, 0x74, 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, - 0x32, 0x31, 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, 0xa1, 0x01, 0x0a, 0x28, - 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, - 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, - 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xef, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, - 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, - 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, - 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x24, 0x67, 0x72, 0x6f, 0x75, 0x70, - 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, - 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x3d, 0x0a, 0x04, 0x67, 0x6f, 0x61, 0x6c, 0x18, + 0xed, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x6f, 0x61, 0x6c, + 0x52, 0x04, 0x67, 0x6f, 0x61, 0x6c, 0x12, 0xa1, 0x01, 0x0a, 0x28, 0x67, 0x72, 0x6f, 0x75, 0x70, + 0x5f, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, + 0x6c, 0x69, 0x74, 0x79, 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, + 0x69, 0x65, 0x77, 0x18, 0xef, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x47, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, + 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x24, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x43, 0x6f, 0x6e, 0x74, 0x65, + 0x6e, 0x74, 0x53, 0x75, 0x69, 0x74, 0x61, 0x62, 0x69, 0x6c, 0x69, 0x74, 0x79, 0x50, 0x6c, 0x61, + 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x6f, 0x0a, 0x16, 0x6c, - 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, - 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xf1, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, - 0x73, 0x2e, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, - 0x73, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x31, 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, 0x6f, 0x0a, 0x16, - 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, - 0x6e, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xe8, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, - 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, - 0x69, 0x6f, 0x6e, 0x56, 0x69, 0x65, 0x77, 0x52, 0x14, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, - 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0xc0, 0x01, - 0x0a, 0x33, 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, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, - 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x18, 0xe4, 0x01, 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, 0x32, 0x31, 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, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, - 0x52, 0x2e, 0x6f, 0x66, 0x66, 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x55, 0x70, 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x85, 0x01, 0x0a, - 0x1e, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, - 0x5f, 0x70, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, - 0xe9, 0x01, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3f, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x66, - 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, - 0x65, 0x6e, 0x74, 0x56, 0x69, 0x65, 0x77, 0x52, 0x1b, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, - 0x61, 0x6e, 0x63, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, - 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, + 0x32, 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, 0x6f, 0x0a, 0x16, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, + 0x18, 0xf1, 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, + 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x6f, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x56, 0x69, 0x65, + 0x77, 0x52, 0x14, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x65, 0x73, 0x74, 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, + 0x32, 0x32, 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, 0x6f, 0x0a, 0x16, 0x63, 0x6f, 0x6e, 0x74, 0x65, + 0x6e, 0x74, 0x5f, 0x63, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, + 0x77, 0x18, 0xe8, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, + 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, 0x69, 0x74, 0x65, 0x72, 0x69, 0x6f, 0x6e, 0x56, 0x69, + 0x65, 0x77, 0x52, 0x14, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e, 0x74, 0x43, 0x72, 0x69, 0x74, 0x65, + 0x72, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0xc0, 0x01, 0x0a, 0x33, 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, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, + 0x18, 0xe4, 0x01, 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, + 0x32, 0x32, 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, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x2e, 0x6f, 0x66, 0x66, + 0x6c, 0x69, 0x6e, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x55, 0x70, + 0x6c, 0x6f, 0x61, 0x64, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x85, 0x01, 0x0a, 0x1e, 0x70, 0x65, 0x72, 0x66, + 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x70, 0x6c, 0x61, 0x63, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x18, 0xe9, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, + 0x63, 0x65, 0x4d, 0x61, 0x78, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x56, 0x69, + 0x65, 0x77, 0x52, 0x1b, 0x70, 0x65, 0x72, 0x66, 0x6f, 0x72, 0x6d, 0x61, 0x6e, 0x63, 0x65, 0x4d, + 0x61, 0x78, 0x50, 0x6c, 0x61, 0x63, 0x65, 0x6d, 0x65, 0x6e, 0x74, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, + 0x32, 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, + 0x32, 0x32, 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, 0x75, 0x0a, 0x18, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, + 0x6e, 0x67, 0x5f, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x76, 0x69, 0x65, + 0x77, 0x18, 0xf4, 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, 0x32, 0x32, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x54, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, + 0x56, 0x69, 0x65, 0x77, 0x52, 0x16, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x45, + 0x78, 0x70, 0x61, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 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, 0x32, + 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, + 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, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x2e, 0x67, 0x6f, 0x6f, 0x67, + 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, - 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0xc3, - 0x3e, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, - 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0xc3, 0x3e, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, - 0x32, 0x31, 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, 0x67, - 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, - 0x2e, 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, 0x76, 0x32, 0x32, 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, 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 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, 0x32, 0x31, 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, 0x4f, + 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 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, + 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x44, 0x72, 0x61, 0x66, 0x74, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, + 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, + 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x8e, 0x3d, 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, 0x32, 0x32, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x8e, 0x3d, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, - 0x76, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, - 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x2e, 0x67, 0x6f, 0x6f, + 0x67, 0x6c, 0x65, 0x2e, 0x61, 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 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, 0x32, 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, + 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, 0x32, 0x32, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, 0x32, 0x31, 0x2e, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 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, 0x32, 0x31, 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, 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, 0x32, 0x31, 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, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x32, 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, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, + 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, + 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x22, 0x9e, 0x01, 0x0a, 0x0e, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, - 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x6d, 0x69, 0x74, - 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, - 0x6f, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x2c, 0x0a, 0x12, 0x72, - 0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, 0x72, 0x6f, - 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x53, - 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 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, 0x03, 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, 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, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x22, 0x9e, 0x01, 0x0a, 0x0e, 0x53, 0x65, 0x61, 0x72, + 0x63, 0x68, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x21, 0x0a, 0x0c, 0x6f, 0x6d, + 0x69, 0x74, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, + 0x52, 0x0b, 0x6f, 0x6d, 0x69, 0x74, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x12, 0x2c, 0x0a, + 0x12, 0x72, 0x65, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x73, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x5f, + 0x72, 0x6f, 0x77, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x72, 0x65, 0x74, 0x75, 0x72, + 0x6e, 0x53, 0x75, 0x6d, 0x6d, 0x61, 0x72, 0x79, 0x52, 0x6f, 0x77, 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, 0x03, 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, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, - 0x31, 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, + 0x32, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, - 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_google_ads_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_google_ads_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_google_ads_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_google_ads_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_google_ads_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) -var file_google_ads_googleads_v21_services_google_ads_service_proto_goTypes = []any{ - (*SearchGoogleAdsRequest)(nil), // 0: google.ads.googleads.v21.services.SearchGoogleAdsRequest - (*SearchGoogleAdsResponse)(nil), // 1: google.ads.googleads.v21.services.SearchGoogleAdsResponse - (*SearchGoogleAdsStreamRequest)(nil), // 2: google.ads.googleads.v21.services.SearchGoogleAdsStreamRequest - (*SearchGoogleAdsStreamResponse)(nil), // 3: google.ads.googleads.v21.services.SearchGoogleAdsStreamResponse - (*GoogleAdsRow)(nil), // 4: google.ads.googleads.v21.services.GoogleAdsRow - (*MutateGoogleAdsRequest)(nil), // 5: google.ads.googleads.v21.services.MutateGoogleAdsRequest - (*MutateGoogleAdsResponse)(nil), // 6: google.ads.googleads.v21.services.MutateGoogleAdsResponse - (*MutateOperation)(nil), // 7: google.ads.googleads.v21.services.MutateOperation - (*MutateOperationResponse)(nil), // 8: google.ads.googleads.v21.services.MutateOperationResponse - (*SearchSettings)(nil), // 9: google.ads.googleads.v21.services.SearchSettings + return file_google_ads_googleads_v22_services_google_ads_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes = make([]protoimpl.MessageInfo, 10) +var file_google_ads_googleads_v22_services_google_ads_service_proto_goTypes = []any{ + (*SearchGoogleAdsRequest)(nil), // 0: google.ads.googleads.v22.services.SearchGoogleAdsRequest + (*SearchGoogleAdsResponse)(nil), // 1: google.ads.googleads.v22.services.SearchGoogleAdsResponse + (*SearchGoogleAdsStreamRequest)(nil), // 2: google.ads.googleads.v22.services.SearchGoogleAdsStreamRequest + (*SearchGoogleAdsStreamResponse)(nil), // 3: google.ads.googleads.v22.services.SearchGoogleAdsStreamResponse + (*GoogleAdsRow)(nil), // 4: google.ads.googleads.v22.services.GoogleAdsRow + (*MutateGoogleAdsRequest)(nil), // 5: google.ads.googleads.v22.services.MutateGoogleAdsRequest + (*MutateGoogleAdsResponse)(nil), // 6: google.ads.googleads.v22.services.MutateGoogleAdsResponse + (*MutateOperation)(nil), // 7: google.ads.googleads.v22.services.MutateOperation + (*MutateOperationResponse)(nil), // 8: google.ads.googleads.v22.services.MutateOperationResponse + (*SearchSettings)(nil), // 9: google.ads.googleads.v22.services.SearchSettings (*fieldmaskpb.FieldMask)(nil), // 10: google.protobuf.FieldMask - (enums.SummaryRowSettingEnum_SummaryRowSetting)(0), // 11: google.ads.googleads.v21.enums.SummaryRowSettingEnum.SummaryRowSetting - (*resources.AccountBudget)(nil), // 12: google.ads.googleads.v21.resources.AccountBudget - (*resources.AccountBudgetProposal)(nil), // 13: google.ads.googleads.v21.resources.AccountBudgetProposal - (*resources.AccountLink)(nil), // 14: google.ads.googleads.v21.resources.AccountLink - (*resources.Ad)(nil), // 15: google.ads.googleads.v21.resources.Ad - (*resources.AdGroup)(nil), // 16: google.ads.googleads.v21.resources.AdGroup - (*resources.AdGroupAd)(nil), // 17: google.ads.googleads.v21.resources.AdGroupAd - (*resources.AdGroupAdAssetCombinationView)(nil), // 18: google.ads.googleads.v21.resources.AdGroupAdAssetCombinationView - (*resources.AdGroupAdAssetView)(nil), // 19: google.ads.googleads.v21.resources.AdGroupAdAssetView - (*resources.AdGroupAdLabel)(nil), // 20: google.ads.googleads.v21.resources.AdGroupAdLabel - (*resources.AdGroupAsset)(nil), // 21: google.ads.googleads.v21.resources.AdGroupAsset - (*resources.AdGroupAssetSet)(nil), // 22: google.ads.googleads.v21.resources.AdGroupAssetSet - (*resources.AdGroupAudienceView)(nil), // 23: google.ads.googleads.v21.resources.AdGroupAudienceView - (*resources.AdGroupBidModifier)(nil), // 24: google.ads.googleads.v21.resources.AdGroupBidModifier - (*resources.AdGroupCriterion)(nil), // 25: google.ads.googleads.v21.resources.AdGroupCriterion - (*resources.AdGroupCriterionCustomizer)(nil), // 26: google.ads.googleads.v21.resources.AdGroupCriterionCustomizer - (*resources.AdGroupCriterionLabel)(nil), // 27: google.ads.googleads.v21.resources.AdGroupCriterionLabel - (*resources.AdGroupCriterionSimulation)(nil), // 28: google.ads.googleads.v21.resources.AdGroupCriterionSimulation - (*resources.AdGroupCustomizer)(nil), // 29: google.ads.googleads.v21.resources.AdGroupCustomizer - (*resources.AdGroupLabel)(nil), // 30: google.ads.googleads.v21.resources.AdGroupLabel - (*resources.AdGroupSimulation)(nil), // 31: google.ads.googleads.v21.resources.AdGroupSimulation - (*resources.AdParameter)(nil), // 32: google.ads.googleads.v21.resources.AdParameter - (*resources.AgeRangeView)(nil), // 33: google.ads.googleads.v21.resources.AgeRangeView - (*resources.AdScheduleView)(nil), // 34: google.ads.googleads.v21.resources.AdScheduleView - (*resources.AiMaxSearchTermAdCombinationView)(nil), // 35: google.ads.googleads.v21.resources.AiMaxSearchTermAdCombinationView - (*resources.DomainCategory)(nil), // 36: google.ads.googleads.v21.resources.DomainCategory - (*resources.Asset)(nil), // 37: google.ads.googleads.v21.resources.Asset - (*resources.AssetFieldTypeView)(nil), // 38: google.ads.googleads.v21.resources.AssetFieldTypeView - (*resources.ChannelAggregateAssetView)(nil), // 39: google.ads.googleads.v21.resources.ChannelAggregateAssetView - (*resources.CampaignAggregateAssetView)(nil), // 40: google.ads.googleads.v21.resources.CampaignAggregateAssetView - (*resources.AssetGroupAsset)(nil), // 41: google.ads.googleads.v21.resources.AssetGroupAsset - (*resources.AssetGroupSignal)(nil), // 42: google.ads.googleads.v21.resources.AssetGroupSignal - (*resources.AssetGroupListingGroupFilter)(nil), // 43: google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - (*resources.AssetGroupProductGroupView)(nil), // 44: google.ads.googleads.v21.resources.AssetGroupProductGroupView - (*resources.AssetGroupTopCombinationView)(nil), // 45: google.ads.googleads.v21.resources.AssetGroupTopCombinationView - (*resources.AssetGroup)(nil), // 46: google.ads.googleads.v21.resources.AssetGroup - (*resources.AssetSetAsset)(nil), // 47: google.ads.googleads.v21.resources.AssetSetAsset - (*resources.AssetSet)(nil), // 48: google.ads.googleads.v21.resources.AssetSet - (*resources.AssetSetTypeView)(nil), // 49: google.ads.googleads.v21.resources.AssetSetTypeView - (*resources.BatchJob)(nil), // 50: google.ads.googleads.v21.resources.BatchJob - (*resources.BiddingDataExclusion)(nil), // 51: google.ads.googleads.v21.resources.BiddingDataExclusion - (*resources.BiddingSeasonalityAdjustment)(nil), // 52: google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - (*resources.BiddingStrategy)(nil), // 53: google.ads.googleads.v21.resources.BiddingStrategy - (*resources.BiddingStrategySimulation)(nil), // 54: google.ads.googleads.v21.resources.BiddingStrategySimulation - (*resources.BillingSetup)(nil), // 55: google.ads.googleads.v21.resources.BillingSetup - (*resources.CallView)(nil), // 56: google.ads.googleads.v21.resources.CallView - (*resources.CampaignBudget)(nil), // 57: google.ads.googleads.v21.resources.CampaignBudget - (*resources.Campaign)(nil), // 58: google.ads.googleads.v21.resources.Campaign - (*resources.CampaignAsset)(nil), // 59: google.ads.googleads.v21.resources.CampaignAsset - (*resources.CampaignAssetSet)(nil), // 60: google.ads.googleads.v21.resources.CampaignAssetSet - (*resources.CampaignAudienceView)(nil), // 61: google.ads.googleads.v21.resources.CampaignAudienceView - (*resources.CampaignBidModifier)(nil), // 62: google.ads.googleads.v21.resources.CampaignBidModifier - (*resources.CampaignConversionGoal)(nil), // 63: google.ads.googleads.v21.resources.CampaignConversionGoal - (*resources.CampaignCriterion)(nil), // 64: google.ads.googleads.v21.resources.CampaignCriterion - (*resources.CampaignCustomizer)(nil), // 65: google.ads.googleads.v21.resources.CampaignCustomizer - (*resources.CampaignDraft)(nil), // 66: google.ads.googleads.v21.resources.CampaignDraft - (*resources.CampaignGroup)(nil), // 67: google.ads.googleads.v21.resources.CampaignGroup - (*resources.CampaignLabel)(nil), // 68: google.ads.googleads.v21.resources.CampaignLabel - (*resources.CampaignLifecycleGoal)(nil), // 69: google.ads.googleads.v21.resources.CampaignLifecycleGoal - (*resources.CampaignSearchTermInsight)(nil), // 70: google.ads.googleads.v21.resources.CampaignSearchTermInsight - (*resources.CampaignSearchTermView)(nil), // 71: google.ads.googleads.v21.resources.CampaignSearchTermView - (*resources.CampaignSharedSet)(nil), // 72: google.ads.googleads.v21.resources.CampaignSharedSet - (*resources.CampaignSimulation)(nil), // 73: google.ads.googleads.v21.resources.CampaignSimulation - (*resources.CarrierConstant)(nil), // 74: google.ads.googleads.v21.resources.CarrierConstant - (*resources.ChangeEvent)(nil), // 75: google.ads.googleads.v21.resources.ChangeEvent - (*resources.ChangeStatus)(nil), // 76: google.ads.googleads.v21.resources.ChangeStatus - (*resources.CombinedAudience)(nil), // 77: google.ads.googleads.v21.resources.CombinedAudience - (*resources.Audience)(nil), // 78: google.ads.googleads.v21.resources.Audience - (*resources.ConversionAction)(nil), // 79: google.ads.googleads.v21.resources.ConversionAction - (*resources.ConversionCustomVariable)(nil), // 80: google.ads.googleads.v21.resources.ConversionCustomVariable - (*resources.ConversionGoalCampaignConfig)(nil), // 81: google.ads.googleads.v21.resources.ConversionGoalCampaignConfig - (*resources.ConversionValueRule)(nil), // 82: google.ads.googleads.v21.resources.ConversionValueRule - (*resources.ConversionValueRuleSet)(nil), // 83: google.ads.googleads.v21.resources.ConversionValueRuleSet - (*resources.ClickView)(nil), // 84: google.ads.googleads.v21.resources.ClickView - (*resources.CurrencyConstant)(nil), // 85: google.ads.googleads.v21.resources.CurrencyConstant - (*resources.CustomAudience)(nil), // 86: google.ads.googleads.v21.resources.CustomAudience - (*resources.CustomConversionGoal)(nil), // 87: google.ads.googleads.v21.resources.CustomConversionGoal - (*resources.CustomInterest)(nil), // 88: google.ads.googleads.v21.resources.CustomInterest - (*resources.Customer)(nil), // 89: google.ads.googleads.v21.resources.Customer - (*resources.CustomerAsset)(nil), // 90: google.ads.googleads.v21.resources.CustomerAsset - (*resources.CustomerAssetSet)(nil), // 91: google.ads.googleads.v21.resources.CustomerAssetSet - (*resources.AccessibleBiddingStrategy)(nil), // 92: google.ads.googleads.v21.resources.AccessibleBiddingStrategy - (*resources.CustomerCustomizer)(nil), // 93: google.ads.googleads.v21.resources.CustomerCustomizer - (*resources.CustomerManagerLink)(nil), // 94: google.ads.googleads.v21.resources.CustomerManagerLink - (*resources.CustomerClientLink)(nil), // 95: google.ads.googleads.v21.resources.CustomerClientLink - (*resources.CustomerClient)(nil), // 96: google.ads.googleads.v21.resources.CustomerClient - (*resources.CustomerConversionGoal)(nil), // 97: google.ads.googleads.v21.resources.CustomerConversionGoal - (*resources.CustomerLabel)(nil), // 98: google.ads.googleads.v21.resources.CustomerLabel - (*resources.CustomerLifecycleGoal)(nil), // 99: google.ads.googleads.v21.resources.CustomerLifecycleGoal - (*resources.CustomerNegativeCriterion)(nil), // 100: google.ads.googleads.v21.resources.CustomerNegativeCriterion - (*resources.CustomerSearchTermInsight)(nil), // 101: google.ads.googleads.v21.resources.CustomerSearchTermInsight - (*resources.CustomerUserAccess)(nil), // 102: google.ads.googleads.v21.resources.CustomerUserAccess - (*resources.CustomerUserAccessInvitation)(nil), // 103: google.ads.googleads.v21.resources.CustomerUserAccessInvitation - (*resources.CustomizerAttribute)(nil), // 104: google.ads.googleads.v21.resources.CustomizerAttribute - (*resources.DataLink)(nil), // 105: google.ads.googleads.v21.resources.DataLink - (*resources.DetailContentSuitabilityPlacementView)(nil), // 106: google.ads.googleads.v21.resources.DetailContentSuitabilityPlacementView - (*resources.DetailPlacementView)(nil), // 107: google.ads.googleads.v21.resources.DetailPlacementView - (*resources.DetailedDemographic)(nil), // 108: google.ads.googleads.v21.resources.DetailedDemographic - (*resources.DisplayKeywordView)(nil), // 109: google.ads.googleads.v21.resources.DisplayKeywordView - (*resources.DistanceView)(nil), // 110: google.ads.googleads.v21.resources.DistanceView - (*resources.DynamicSearchAdsSearchTermView)(nil), // 111: google.ads.googleads.v21.resources.DynamicSearchAdsSearchTermView - (*resources.ExpandedLandingPageView)(nil), // 112: google.ads.googleads.v21.resources.ExpandedLandingPageView - (*resources.FinalUrlExpansionAssetView)(nil), // 113: google.ads.googleads.v21.resources.FinalUrlExpansionAssetView - (*resources.GenderView)(nil), // 114: google.ads.googleads.v21.resources.GenderView - (*resources.GeoTargetConstant)(nil), // 115: google.ads.googleads.v21.resources.GeoTargetConstant - (*resources.GeographicView)(nil), // 116: google.ads.googleads.v21.resources.GeographicView - (*resources.GroupContentSuitabilityPlacementView)(nil), // 117: google.ads.googleads.v21.resources.GroupContentSuitabilityPlacementView - (*resources.GroupPlacementView)(nil), // 118: google.ads.googleads.v21.resources.GroupPlacementView - (*resources.HotelGroupView)(nil), // 119: google.ads.googleads.v21.resources.HotelGroupView - (*resources.HotelPerformanceView)(nil), // 120: google.ads.googleads.v21.resources.HotelPerformanceView - (*resources.HotelReconciliation)(nil), // 121: google.ads.googleads.v21.resources.HotelReconciliation - (*resources.IncomeRangeView)(nil), // 122: google.ads.googleads.v21.resources.IncomeRangeView - (*resources.KeywordView)(nil), // 123: google.ads.googleads.v21.resources.KeywordView - (*resources.KeywordPlan)(nil), // 124: google.ads.googleads.v21.resources.KeywordPlan - (*resources.KeywordPlanCampaign)(nil), // 125: google.ads.googleads.v21.resources.KeywordPlanCampaign - (*resources.KeywordPlanCampaignKeyword)(nil), // 126: google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword - (*resources.KeywordPlanAdGroup)(nil), // 127: google.ads.googleads.v21.resources.KeywordPlanAdGroup - (*resources.KeywordPlanAdGroupKeyword)(nil), // 128: google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword - (*resources.KeywordThemeConstant)(nil), // 129: google.ads.googleads.v21.resources.KeywordThemeConstant - (*resources.Label)(nil), // 130: google.ads.googleads.v21.resources.Label - (*resources.LandingPageView)(nil), // 131: google.ads.googleads.v21.resources.LandingPageView - (*resources.LanguageConstant)(nil), // 132: google.ads.googleads.v21.resources.LanguageConstant - (*resources.LocationView)(nil), // 133: google.ads.googleads.v21.resources.LocationView - (*resources.LocationInterestView)(nil), // 134: google.ads.googleads.v21.resources.LocationInterestView - (*resources.ManagedPlacementView)(nil), // 135: google.ads.googleads.v21.resources.ManagedPlacementView - (*resources.ContentCriterionView)(nil), // 136: google.ads.googleads.v21.resources.ContentCriterionView - (*resources.MediaFile)(nil), // 137: google.ads.googleads.v21.resources.MediaFile - (*resources.LocalServicesEmployee)(nil), // 138: google.ads.googleads.v21.resources.LocalServicesEmployee - (*resources.LocalServicesVerificationArtifact)(nil), // 139: google.ads.googleads.v21.resources.LocalServicesVerificationArtifact - (*resources.MobileAppCategoryConstant)(nil), // 140: google.ads.googleads.v21.resources.MobileAppCategoryConstant - (*resources.MobileDeviceConstant)(nil), // 141: google.ads.googleads.v21.resources.MobileDeviceConstant - (*resources.OfflineConversionUploadClientSummary)(nil), // 142: google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary - (*resources.OfflineConversionUploadConversionActionSummary)(nil), // 143: google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary - (*resources.OfflineUserDataJob)(nil), // 144: google.ads.googleads.v21.resources.OfflineUserDataJob - (*resources.OperatingSystemVersionConstant)(nil), // 145: google.ads.googleads.v21.resources.OperatingSystemVersionConstant - (*resources.PaidOrganicSearchTermView)(nil), // 146: google.ads.googleads.v21.resources.PaidOrganicSearchTermView - (*resources.QualifyingQuestion)(nil), // 147: google.ads.googleads.v21.resources.QualifyingQuestion - (*resources.ParentalStatusView)(nil), // 148: google.ads.googleads.v21.resources.ParentalStatusView - (*resources.PerStoreView)(nil), // 149: google.ads.googleads.v21.resources.PerStoreView - (*resources.PerformanceMaxPlacementView)(nil), // 150: google.ads.googleads.v21.resources.PerformanceMaxPlacementView - (*resources.ProductCategoryConstant)(nil), // 151: google.ads.googleads.v21.resources.ProductCategoryConstant - (*resources.ProductGroupView)(nil), // 152: google.ads.googleads.v21.resources.ProductGroupView - (*resources.ProductLink)(nil), // 153: google.ads.googleads.v21.resources.ProductLink - (*resources.ProductLinkInvitation)(nil), // 154: google.ads.googleads.v21.resources.ProductLinkInvitation - (*resources.Recommendation)(nil), // 155: google.ads.googleads.v21.resources.Recommendation - (*resources.RecommendationSubscription)(nil), // 156: google.ads.googleads.v21.resources.RecommendationSubscription - (*resources.SearchTermView)(nil), // 157: google.ads.googleads.v21.resources.SearchTermView - (*resources.SharedCriterion)(nil), // 158: google.ads.googleads.v21.resources.SharedCriterion - (*resources.SharedSet)(nil), // 159: google.ads.googleads.v21.resources.SharedSet - (*resources.SmartCampaignSetting)(nil), // 160: google.ads.googleads.v21.resources.SmartCampaignSetting - (*resources.ShoppingPerformanceView)(nil), // 161: google.ads.googleads.v21.resources.ShoppingPerformanceView - (*resources.ShoppingProduct)(nil), // 162: google.ads.googleads.v21.resources.ShoppingProduct - (*resources.SmartCampaignSearchTermView)(nil), // 163: google.ads.googleads.v21.resources.SmartCampaignSearchTermView - (*resources.ThirdPartyAppAnalyticsLink)(nil), // 164: google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLink - (*resources.TopicView)(nil), // 165: google.ads.googleads.v21.resources.TopicView - (*resources.TravelActivityGroupView)(nil), // 166: google.ads.googleads.v21.resources.TravelActivityGroupView - (*resources.TravelActivityPerformanceView)(nil), // 167: google.ads.googleads.v21.resources.TravelActivityPerformanceView - (*resources.Experiment)(nil), // 168: google.ads.googleads.v21.resources.Experiment - (*resources.ExperimentArm)(nil), // 169: google.ads.googleads.v21.resources.ExperimentArm - (*resources.UserInterest)(nil), // 170: google.ads.googleads.v21.resources.UserInterest - (*resources.LifeEvent)(nil), // 171: google.ads.googleads.v21.resources.LifeEvent - (*resources.UserList)(nil), // 172: google.ads.googleads.v21.resources.UserList - (*resources.UserListCustomerType)(nil), // 173: google.ads.googleads.v21.resources.UserListCustomerType - (*resources.UserLocationView)(nil), // 174: google.ads.googleads.v21.resources.UserLocationView - (*resources.RemarketingAction)(nil), // 175: google.ads.googleads.v21.resources.RemarketingAction - (*resources.TopicConstant)(nil), // 176: google.ads.googleads.v21.resources.TopicConstant - (*resources.Video)(nil), // 177: google.ads.googleads.v21.resources.Video - (*resources.WebpageView)(nil), // 178: google.ads.googleads.v21.resources.WebpageView - (*resources.LeadFormSubmissionData)(nil), // 179: google.ads.googleads.v21.resources.LeadFormSubmissionData - (*resources.LocalServicesLead)(nil), // 180: google.ads.googleads.v21.resources.LocalServicesLead - (*resources.LocalServicesLeadConversation)(nil), // 181: google.ads.googleads.v21.resources.LocalServicesLeadConversation - (*resources.AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 182: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleAdGroup - (*resources.AndroidPrivacySharedKeyGoogleCampaign)(nil), // 183: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleCampaign - (*resources.AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 184: google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleNetworkType - (*common.Metrics)(nil), // 185: google.ads.googleads.v21.common.Metrics - (*common.Segments)(nil), // 186: google.ads.googleads.v21.common.Segments - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 187: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*status.Status)(nil), // 188: google.rpc.Status - (*AdGroupAdLabelOperation)(nil), // 189: google.ads.googleads.v21.services.AdGroupAdLabelOperation - (*AdGroupAdOperation)(nil), // 190: google.ads.googleads.v21.services.AdGroupAdOperation - (*AdGroupAssetOperation)(nil), // 191: google.ads.googleads.v21.services.AdGroupAssetOperation - (*AdGroupBidModifierOperation)(nil), // 192: google.ads.googleads.v21.services.AdGroupBidModifierOperation - (*AdGroupCriterionCustomizerOperation)(nil), // 193: google.ads.googleads.v21.services.AdGroupCriterionCustomizerOperation - (*AdGroupCriterionLabelOperation)(nil), // 194: google.ads.googleads.v21.services.AdGroupCriterionLabelOperation - (*AdGroupCriterionOperation)(nil), // 195: google.ads.googleads.v21.services.AdGroupCriterionOperation - (*AdGroupCustomizerOperation)(nil), // 196: google.ads.googleads.v21.services.AdGroupCustomizerOperation - (*AdGroupLabelOperation)(nil), // 197: google.ads.googleads.v21.services.AdGroupLabelOperation - (*AdGroupOperation)(nil), // 198: google.ads.googleads.v21.services.AdGroupOperation - (*AdOperation)(nil), // 199: google.ads.googleads.v21.services.AdOperation - (*AdParameterOperation)(nil), // 200: google.ads.googleads.v21.services.AdParameterOperation - (*AssetOperation)(nil), // 201: google.ads.googleads.v21.services.AssetOperation - (*AssetGroupAssetOperation)(nil), // 202: google.ads.googleads.v21.services.AssetGroupAssetOperation - (*AssetGroupListingGroupFilterOperation)(nil), // 203: google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation - (*AssetGroupSignalOperation)(nil), // 204: google.ads.googleads.v21.services.AssetGroupSignalOperation - (*AssetGroupOperation)(nil), // 205: google.ads.googleads.v21.services.AssetGroupOperation - (*AssetSetAssetOperation)(nil), // 206: google.ads.googleads.v21.services.AssetSetAssetOperation - (*AssetSetOperation)(nil), // 207: google.ads.googleads.v21.services.AssetSetOperation - (*AudienceOperation)(nil), // 208: google.ads.googleads.v21.services.AudienceOperation - (*BiddingDataExclusionOperation)(nil), // 209: google.ads.googleads.v21.services.BiddingDataExclusionOperation - (*BiddingSeasonalityAdjustmentOperation)(nil), // 210: google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation - (*BiddingStrategyOperation)(nil), // 211: google.ads.googleads.v21.services.BiddingStrategyOperation - (*CampaignAssetOperation)(nil), // 212: google.ads.googleads.v21.services.CampaignAssetOperation - (*CampaignAssetSetOperation)(nil), // 213: google.ads.googleads.v21.services.CampaignAssetSetOperation - (*CampaignBidModifierOperation)(nil), // 214: google.ads.googleads.v21.services.CampaignBidModifierOperation - (*CampaignBudgetOperation)(nil), // 215: google.ads.googleads.v21.services.CampaignBudgetOperation - (*CampaignConversionGoalOperation)(nil), // 216: google.ads.googleads.v21.services.CampaignConversionGoalOperation - (*CampaignCriterionOperation)(nil), // 217: google.ads.googleads.v21.services.CampaignCriterionOperation - (*CampaignCustomizerOperation)(nil), // 218: google.ads.googleads.v21.services.CampaignCustomizerOperation - (*CampaignDraftOperation)(nil), // 219: google.ads.googleads.v21.services.CampaignDraftOperation - (*CampaignGroupOperation)(nil), // 220: google.ads.googleads.v21.services.CampaignGroupOperation - (*CampaignLabelOperation)(nil), // 221: google.ads.googleads.v21.services.CampaignLabelOperation - (*CampaignOperation)(nil), // 222: google.ads.googleads.v21.services.CampaignOperation - (*CampaignSharedSetOperation)(nil), // 223: google.ads.googleads.v21.services.CampaignSharedSetOperation - (*ConversionActionOperation)(nil), // 224: google.ads.googleads.v21.services.ConversionActionOperation - (*ConversionCustomVariableOperation)(nil), // 225: google.ads.googleads.v21.services.ConversionCustomVariableOperation - (*ConversionGoalCampaignConfigOperation)(nil), // 226: google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation - (*ConversionValueRuleOperation)(nil), // 227: google.ads.googleads.v21.services.ConversionValueRuleOperation - (*ConversionValueRuleSetOperation)(nil), // 228: google.ads.googleads.v21.services.ConversionValueRuleSetOperation - (*CustomConversionGoalOperation)(nil), // 229: google.ads.googleads.v21.services.CustomConversionGoalOperation - (*CustomerAssetOperation)(nil), // 230: google.ads.googleads.v21.services.CustomerAssetOperation - (*CustomerConversionGoalOperation)(nil), // 231: google.ads.googleads.v21.services.CustomerConversionGoalOperation - (*CustomerCustomizerOperation)(nil), // 232: google.ads.googleads.v21.services.CustomerCustomizerOperation - (*CustomerLabelOperation)(nil), // 233: google.ads.googleads.v21.services.CustomerLabelOperation - (*CustomerNegativeCriterionOperation)(nil), // 234: google.ads.googleads.v21.services.CustomerNegativeCriterionOperation - (*CustomerOperation)(nil), // 235: google.ads.googleads.v21.services.CustomerOperation - (*CustomizerAttributeOperation)(nil), // 236: google.ads.googleads.v21.services.CustomizerAttributeOperation - (*ExperimentOperation)(nil), // 237: google.ads.googleads.v21.services.ExperimentOperation - (*ExperimentArmOperation)(nil), // 238: google.ads.googleads.v21.services.ExperimentArmOperation - (*KeywordPlanAdGroupOperation)(nil), // 239: google.ads.googleads.v21.services.KeywordPlanAdGroupOperation - (*KeywordPlanAdGroupKeywordOperation)(nil), // 240: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation - (*KeywordPlanCampaignKeywordOperation)(nil), // 241: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation - (*KeywordPlanCampaignOperation)(nil), // 242: google.ads.googleads.v21.services.KeywordPlanCampaignOperation - (*KeywordPlanOperation)(nil), // 243: google.ads.googleads.v21.services.KeywordPlanOperation - (*LabelOperation)(nil), // 244: google.ads.googleads.v21.services.LabelOperation - (*RecommendationSubscriptionOperation)(nil), // 245: google.ads.googleads.v21.services.RecommendationSubscriptionOperation - (*RemarketingActionOperation)(nil), // 246: google.ads.googleads.v21.services.RemarketingActionOperation - (*SharedCriterionOperation)(nil), // 247: google.ads.googleads.v21.services.SharedCriterionOperation - (*SharedSetOperation)(nil), // 248: google.ads.googleads.v21.services.SharedSetOperation - (*SmartCampaignSettingOperation)(nil), // 249: google.ads.googleads.v21.services.SmartCampaignSettingOperation - (*UserListOperation)(nil), // 250: google.ads.googleads.v21.services.UserListOperation - (*MutateAdGroupAdLabelResult)(nil), // 251: google.ads.googleads.v21.services.MutateAdGroupAdLabelResult - (*MutateAdGroupAdResult)(nil), // 252: google.ads.googleads.v21.services.MutateAdGroupAdResult - (*MutateAdGroupAssetResult)(nil), // 253: google.ads.googleads.v21.services.MutateAdGroupAssetResult - (*MutateAdGroupBidModifierResult)(nil), // 254: google.ads.googleads.v21.services.MutateAdGroupBidModifierResult - (*MutateAdGroupCriterionCustomizerResult)(nil), // 255: google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizerResult - (*MutateAdGroupCriterionLabelResult)(nil), // 256: google.ads.googleads.v21.services.MutateAdGroupCriterionLabelResult - (*MutateAdGroupCriterionResult)(nil), // 257: google.ads.googleads.v21.services.MutateAdGroupCriterionResult - (*MutateAdGroupCustomizerResult)(nil), // 258: google.ads.googleads.v21.services.MutateAdGroupCustomizerResult - (*MutateAdGroupLabelResult)(nil), // 259: google.ads.googleads.v21.services.MutateAdGroupLabelResult - (*MutateAdGroupResult)(nil), // 260: google.ads.googleads.v21.services.MutateAdGroupResult - (*MutateAdParameterResult)(nil), // 261: google.ads.googleads.v21.services.MutateAdParameterResult - (*MutateAdResult)(nil), // 262: google.ads.googleads.v21.services.MutateAdResult - (*MutateAssetResult)(nil), // 263: google.ads.googleads.v21.services.MutateAssetResult - (*MutateAssetGroupAssetResult)(nil), // 264: google.ads.googleads.v21.services.MutateAssetGroupAssetResult - (*MutateAssetGroupListingGroupFilterResult)(nil), // 265: google.ads.googleads.v21.services.MutateAssetGroupListingGroupFilterResult - (*MutateAssetGroupSignalResult)(nil), // 266: google.ads.googleads.v21.services.MutateAssetGroupSignalResult - (*MutateAssetGroupResult)(nil), // 267: google.ads.googleads.v21.services.MutateAssetGroupResult - (*MutateAssetSetAssetResult)(nil), // 268: google.ads.googleads.v21.services.MutateAssetSetAssetResult - (*MutateAssetSetResult)(nil), // 269: google.ads.googleads.v21.services.MutateAssetSetResult - (*MutateAudienceResult)(nil), // 270: google.ads.googleads.v21.services.MutateAudienceResult - (*MutateBiddingDataExclusionsResult)(nil), // 271: google.ads.googleads.v21.services.MutateBiddingDataExclusionsResult - (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 272: google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResult - (*MutateBiddingStrategyResult)(nil), // 273: google.ads.googleads.v21.services.MutateBiddingStrategyResult - (*MutateCampaignAssetResult)(nil), // 274: google.ads.googleads.v21.services.MutateCampaignAssetResult - (*MutateCampaignAssetSetResult)(nil), // 275: google.ads.googleads.v21.services.MutateCampaignAssetSetResult - (*MutateCampaignBidModifierResult)(nil), // 276: google.ads.googleads.v21.services.MutateCampaignBidModifierResult - (*MutateCampaignBudgetResult)(nil), // 277: google.ads.googleads.v21.services.MutateCampaignBudgetResult - (*MutateCampaignConversionGoalResult)(nil), // 278: google.ads.googleads.v21.services.MutateCampaignConversionGoalResult - (*MutateCampaignCriterionResult)(nil), // 279: google.ads.googleads.v21.services.MutateCampaignCriterionResult - (*MutateCampaignCustomizerResult)(nil), // 280: google.ads.googleads.v21.services.MutateCampaignCustomizerResult - (*MutateCampaignDraftResult)(nil), // 281: google.ads.googleads.v21.services.MutateCampaignDraftResult - (*MutateCampaignGroupResult)(nil), // 282: google.ads.googleads.v21.services.MutateCampaignGroupResult - (*MutateCampaignLabelResult)(nil), // 283: google.ads.googleads.v21.services.MutateCampaignLabelResult - (*MutateCampaignResult)(nil), // 284: google.ads.googleads.v21.services.MutateCampaignResult - (*MutateCampaignSharedSetResult)(nil), // 285: google.ads.googleads.v21.services.MutateCampaignSharedSetResult - (*MutateConversionActionResult)(nil), // 286: google.ads.googleads.v21.services.MutateConversionActionResult - (*MutateConversionCustomVariableResult)(nil), // 287: google.ads.googleads.v21.services.MutateConversionCustomVariableResult - (*MutateConversionGoalCampaignConfigResult)(nil), // 288: google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigResult - (*MutateConversionValueRuleResult)(nil), // 289: google.ads.googleads.v21.services.MutateConversionValueRuleResult - (*MutateConversionValueRuleSetResult)(nil), // 290: google.ads.googleads.v21.services.MutateConversionValueRuleSetResult - (*MutateCustomConversionGoalResult)(nil), // 291: google.ads.googleads.v21.services.MutateCustomConversionGoalResult - (*MutateCustomerAssetResult)(nil), // 292: google.ads.googleads.v21.services.MutateCustomerAssetResult - (*MutateCustomerConversionGoalResult)(nil), // 293: google.ads.googleads.v21.services.MutateCustomerConversionGoalResult - (*MutateCustomerCustomizerResult)(nil), // 294: google.ads.googleads.v21.services.MutateCustomerCustomizerResult - (*MutateCustomerLabelResult)(nil), // 295: google.ads.googleads.v21.services.MutateCustomerLabelResult - (*MutateCustomerNegativeCriteriaResult)(nil), // 296: google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResult - (*MutateCustomerResult)(nil), // 297: google.ads.googleads.v21.services.MutateCustomerResult - (*MutateCustomizerAttributeResult)(nil), // 298: google.ads.googleads.v21.services.MutateCustomizerAttributeResult - (*MutateExperimentResult)(nil), // 299: google.ads.googleads.v21.services.MutateExperimentResult - (*MutateExperimentArmResult)(nil), // 300: google.ads.googleads.v21.services.MutateExperimentArmResult - (*MutateKeywordPlanAdGroupResult)(nil), // 301: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupResult - (*MutateKeywordPlanCampaignResult)(nil), // 302: google.ads.googleads.v21.services.MutateKeywordPlanCampaignResult - (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 303: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordResult - (*MutateKeywordPlanCampaignKeywordResult)(nil), // 304: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordResult - (*MutateKeywordPlansResult)(nil), // 305: google.ads.googleads.v21.services.MutateKeywordPlansResult - (*MutateLabelResult)(nil), // 306: google.ads.googleads.v21.services.MutateLabelResult - (*MutateRecommendationSubscriptionResult)(nil), // 307: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult - (*MutateRemarketingActionResult)(nil), // 308: google.ads.googleads.v21.services.MutateRemarketingActionResult - (*MutateSharedCriterionResult)(nil), // 309: google.ads.googleads.v21.services.MutateSharedCriterionResult - (*MutateSharedSetResult)(nil), // 310: google.ads.googleads.v21.services.MutateSharedSetResult - (*MutateSmartCampaignSettingResult)(nil), // 311: google.ads.googleads.v21.services.MutateSmartCampaignSettingResult - (*MutateUserListResult)(nil), // 312: google.ads.googleads.v21.services.MutateUserListResult -} -var file_google_ads_googleads_v21_services_google_ads_service_proto_depIdxs = []int32{ - 9, // 0: google.ads.googleads.v21.services.SearchGoogleAdsRequest.search_settings:type_name -> google.ads.googleads.v21.services.SearchSettings - 4, // 1: google.ads.googleads.v21.services.SearchGoogleAdsResponse.results:type_name -> google.ads.googleads.v21.services.GoogleAdsRow - 10, // 2: google.ads.googleads.v21.services.SearchGoogleAdsResponse.field_mask:type_name -> google.protobuf.FieldMask - 4, // 3: google.ads.googleads.v21.services.SearchGoogleAdsResponse.summary_row:type_name -> google.ads.googleads.v21.services.GoogleAdsRow - 11, // 4: google.ads.googleads.v21.services.SearchGoogleAdsStreamRequest.summary_row_setting:type_name -> google.ads.googleads.v21.enums.SummaryRowSettingEnum.SummaryRowSetting - 4, // 5: google.ads.googleads.v21.services.SearchGoogleAdsStreamResponse.results:type_name -> google.ads.googleads.v21.services.GoogleAdsRow - 10, // 6: google.ads.googleads.v21.services.SearchGoogleAdsStreamResponse.field_mask:type_name -> google.protobuf.FieldMask - 4, // 7: google.ads.googleads.v21.services.SearchGoogleAdsStreamResponse.summary_row:type_name -> google.ads.googleads.v21.services.GoogleAdsRow - 12, // 8: google.ads.googleads.v21.services.GoogleAdsRow.account_budget:type_name -> google.ads.googleads.v21.resources.AccountBudget - 13, // 9: google.ads.googleads.v21.services.GoogleAdsRow.account_budget_proposal:type_name -> google.ads.googleads.v21.resources.AccountBudgetProposal - 14, // 10: google.ads.googleads.v21.services.GoogleAdsRow.account_link:type_name -> google.ads.googleads.v21.resources.AccountLink - 15, // 11: google.ads.googleads.v21.services.GoogleAdsRow.ad:type_name -> google.ads.googleads.v21.resources.Ad - 16, // 12: google.ads.googleads.v21.services.GoogleAdsRow.ad_group:type_name -> google.ads.googleads.v21.resources.AdGroup - 17, // 13: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_ad:type_name -> google.ads.googleads.v21.resources.AdGroupAd - 18, // 14: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_ad_asset_combination_view:type_name -> google.ads.googleads.v21.resources.AdGroupAdAssetCombinationView - 19, // 15: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_ad_asset_view:type_name -> google.ads.googleads.v21.resources.AdGroupAdAssetView - 20, // 16: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_ad_label:type_name -> google.ads.googleads.v21.resources.AdGroupAdLabel - 21, // 17: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_asset:type_name -> google.ads.googleads.v21.resources.AdGroupAsset - 22, // 18: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_asset_set:type_name -> google.ads.googleads.v21.resources.AdGroupAssetSet - 23, // 19: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_audience_view:type_name -> google.ads.googleads.v21.resources.AdGroupAudienceView - 24, // 20: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_bid_modifier:type_name -> google.ads.googleads.v21.resources.AdGroupBidModifier - 25, // 21: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_criterion:type_name -> google.ads.googleads.v21.resources.AdGroupCriterion - 26, // 22: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_criterion_customizer:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionCustomizer - 27, // 23: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_criterion_label:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionLabel - 28, // 24: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_criterion_simulation:type_name -> google.ads.googleads.v21.resources.AdGroupCriterionSimulation - 29, // 25: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_customizer:type_name -> google.ads.googleads.v21.resources.AdGroupCustomizer - 30, // 26: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_label:type_name -> google.ads.googleads.v21.resources.AdGroupLabel - 31, // 27: google.ads.googleads.v21.services.GoogleAdsRow.ad_group_simulation:type_name -> google.ads.googleads.v21.resources.AdGroupSimulation - 32, // 28: google.ads.googleads.v21.services.GoogleAdsRow.ad_parameter:type_name -> google.ads.googleads.v21.resources.AdParameter - 33, // 29: google.ads.googleads.v21.services.GoogleAdsRow.age_range_view:type_name -> google.ads.googleads.v21.resources.AgeRangeView - 34, // 30: google.ads.googleads.v21.services.GoogleAdsRow.ad_schedule_view:type_name -> google.ads.googleads.v21.resources.AdScheduleView - 35, // 31: google.ads.googleads.v21.services.GoogleAdsRow.ai_max_search_term_ad_combination_view:type_name -> google.ads.googleads.v21.resources.AiMaxSearchTermAdCombinationView - 36, // 32: google.ads.googleads.v21.services.GoogleAdsRow.domain_category:type_name -> google.ads.googleads.v21.resources.DomainCategory - 37, // 33: google.ads.googleads.v21.services.GoogleAdsRow.asset:type_name -> google.ads.googleads.v21.resources.Asset - 38, // 34: google.ads.googleads.v21.services.GoogleAdsRow.asset_field_type_view:type_name -> google.ads.googleads.v21.resources.AssetFieldTypeView - 39, // 35: google.ads.googleads.v21.services.GoogleAdsRow.channel_aggregate_asset_view:type_name -> google.ads.googleads.v21.resources.ChannelAggregateAssetView - 40, // 36: google.ads.googleads.v21.services.GoogleAdsRow.campaign_aggregate_asset_view:type_name -> google.ads.googleads.v21.resources.CampaignAggregateAssetView - 41, // 37: google.ads.googleads.v21.services.GoogleAdsRow.asset_group_asset:type_name -> google.ads.googleads.v21.resources.AssetGroupAsset - 42, // 38: google.ads.googleads.v21.services.GoogleAdsRow.asset_group_signal:type_name -> google.ads.googleads.v21.resources.AssetGroupSignal - 43, // 39: google.ads.googleads.v21.services.GoogleAdsRow.asset_group_listing_group_filter:type_name -> google.ads.googleads.v21.resources.AssetGroupListingGroupFilter - 44, // 40: google.ads.googleads.v21.services.GoogleAdsRow.asset_group_product_group_view:type_name -> google.ads.googleads.v21.resources.AssetGroupProductGroupView - 45, // 41: google.ads.googleads.v21.services.GoogleAdsRow.asset_group_top_combination_view:type_name -> google.ads.googleads.v21.resources.AssetGroupTopCombinationView - 46, // 42: google.ads.googleads.v21.services.GoogleAdsRow.asset_group:type_name -> google.ads.googleads.v21.resources.AssetGroup - 47, // 43: google.ads.googleads.v21.services.GoogleAdsRow.asset_set_asset:type_name -> google.ads.googleads.v21.resources.AssetSetAsset - 48, // 44: google.ads.googleads.v21.services.GoogleAdsRow.asset_set:type_name -> google.ads.googleads.v21.resources.AssetSet - 49, // 45: google.ads.googleads.v21.services.GoogleAdsRow.asset_set_type_view:type_name -> google.ads.googleads.v21.resources.AssetSetTypeView - 50, // 46: google.ads.googleads.v21.services.GoogleAdsRow.batch_job:type_name -> google.ads.googleads.v21.resources.BatchJob - 51, // 47: google.ads.googleads.v21.services.GoogleAdsRow.bidding_data_exclusion:type_name -> google.ads.googleads.v21.resources.BiddingDataExclusion - 52, // 48: google.ads.googleads.v21.services.GoogleAdsRow.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v21.resources.BiddingSeasonalityAdjustment - 53, // 49: google.ads.googleads.v21.services.GoogleAdsRow.bidding_strategy:type_name -> google.ads.googleads.v21.resources.BiddingStrategy - 54, // 50: google.ads.googleads.v21.services.GoogleAdsRow.bidding_strategy_simulation:type_name -> google.ads.googleads.v21.resources.BiddingStrategySimulation - 55, // 51: google.ads.googleads.v21.services.GoogleAdsRow.billing_setup:type_name -> google.ads.googleads.v21.resources.BillingSetup - 56, // 52: google.ads.googleads.v21.services.GoogleAdsRow.call_view:type_name -> google.ads.googleads.v21.resources.CallView - 57, // 53: google.ads.googleads.v21.services.GoogleAdsRow.campaign_budget:type_name -> google.ads.googleads.v21.resources.CampaignBudget - 58, // 54: google.ads.googleads.v21.services.GoogleAdsRow.campaign:type_name -> google.ads.googleads.v21.resources.Campaign - 59, // 55: google.ads.googleads.v21.services.GoogleAdsRow.campaign_asset:type_name -> google.ads.googleads.v21.resources.CampaignAsset - 60, // 56: google.ads.googleads.v21.services.GoogleAdsRow.campaign_asset_set:type_name -> google.ads.googleads.v21.resources.CampaignAssetSet - 61, // 57: google.ads.googleads.v21.services.GoogleAdsRow.campaign_audience_view:type_name -> google.ads.googleads.v21.resources.CampaignAudienceView - 62, // 58: google.ads.googleads.v21.services.GoogleAdsRow.campaign_bid_modifier:type_name -> google.ads.googleads.v21.resources.CampaignBidModifier - 63, // 59: google.ads.googleads.v21.services.GoogleAdsRow.campaign_conversion_goal:type_name -> google.ads.googleads.v21.resources.CampaignConversionGoal - 64, // 60: google.ads.googleads.v21.services.GoogleAdsRow.campaign_criterion:type_name -> google.ads.googleads.v21.resources.CampaignCriterion - 65, // 61: google.ads.googleads.v21.services.GoogleAdsRow.campaign_customizer:type_name -> google.ads.googleads.v21.resources.CampaignCustomizer - 66, // 62: google.ads.googleads.v21.services.GoogleAdsRow.campaign_draft:type_name -> google.ads.googleads.v21.resources.CampaignDraft - 67, // 63: google.ads.googleads.v21.services.GoogleAdsRow.campaign_group:type_name -> google.ads.googleads.v21.resources.CampaignGroup - 68, // 64: google.ads.googleads.v21.services.GoogleAdsRow.campaign_label:type_name -> google.ads.googleads.v21.resources.CampaignLabel - 69, // 65: google.ads.googleads.v21.services.GoogleAdsRow.campaign_lifecycle_goal:type_name -> google.ads.googleads.v21.resources.CampaignLifecycleGoal - 70, // 66: google.ads.googleads.v21.services.GoogleAdsRow.campaign_search_term_insight:type_name -> google.ads.googleads.v21.resources.CampaignSearchTermInsight - 71, // 67: google.ads.googleads.v21.services.GoogleAdsRow.campaign_search_term_view:type_name -> google.ads.googleads.v21.resources.CampaignSearchTermView - 72, // 68: google.ads.googleads.v21.services.GoogleAdsRow.campaign_shared_set:type_name -> google.ads.googleads.v21.resources.CampaignSharedSet - 73, // 69: google.ads.googleads.v21.services.GoogleAdsRow.campaign_simulation:type_name -> google.ads.googleads.v21.resources.CampaignSimulation - 74, // 70: google.ads.googleads.v21.services.GoogleAdsRow.carrier_constant:type_name -> google.ads.googleads.v21.resources.CarrierConstant - 75, // 71: google.ads.googleads.v21.services.GoogleAdsRow.change_event:type_name -> google.ads.googleads.v21.resources.ChangeEvent - 76, // 72: google.ads.googleads.v21.services.GoogleAdsRow.change_status:type_name -> google.ads.googleads.v21.resources.ChangeStatus - 77, // 73: google.ads.googleads.v21.services.GoogleAdsRow.combined_audience:type_name -> google.ads.googleads.v21.resources.CombinedAudience - 78, // 74: google.ads.googleads.v21.services.GoogleAdsRow.audience:type_name -> google.ads.googleads.v21.resources.Audience - 79, // 75: google.ads.googleads.v21.services.GoogleAdsRow.conversion_action:type_name -> google.ads.googleads.v21.resources.ConversionAction - 80, // 76: google.ads.googleads.v21.services.GoogleAdsRow.conversion_custom_variable:type_name -> google.ads.googleads.v21.resources.ConversionCustomVariable - 81, // 77: google.ads.googleads.v21.services.GoogleAdsRow.conversion_goal_campaign_config:type_name -> google.ads.googleads.v21.resources.ConversionGoalCampaignConfig - 82, // 78: google.ads.googleads.v21.services.GoogleAdsRow.conversion_value_rule:type_name -> google.ads.googleads.v21.resources.ConversionValueRule - 83, // 79: google.ads.googleads.v21.services.GoogleAdsRow.conversion_value_rule_set:type_name -> google.ads.googleads.v21.resources.ConversionValueRuleSet - 84, // 80: google.ads.googleads.v21.services.GoogleAdsRow.click_view:type_name -> google.ads.googleads.v21.resources.ClickView - 85, // 81: google.ads.googleads.v21.services.GoogleAdsRow.currency_constant:type_name -> google.ads.googleads.v21.resources.CurrencyConstant - 86, // 82: google.ads.googleads.v21.services.GoogleAdsRow.custom_audience:type_name -> google.ads.googleads.v21.resources.CustomAudience - 87, // 83: google.ads.googleads.v21.services.GoogleAdsRow.custom_conversion_goal:type_name -> google.ads.googleads.v21.resources.CustomConversionGoal - 88, // 84: google.ads.googleads.v21.services.GoogleAdsRow.custom_interest:type_name -> google.ads.googleads.v21.resources.CustomInterest - 89, // 85: google.ads.googleads.v21.services.GoogleAdsRow.customer:type_name -> google.ads.googleads.v21.resources.Customer - 90, // 86: google.ads.googleads.v21.services.GoogleAdsRow.customer_asset:type_name -> google.ads.googleads.v21.resources.CustomerAsset - 91, // 87: google.ads.googleads.v21.services.GoogleAdsRow.customer_asset_set:type_name -> google.ads.googleads.v21.resources.CustomerAssetSet - 92, // 88: google.ads.googleads.v21.services.GoogleAdsRow.accessible_bidding_strategy:type_name -> google.ads.googleads.v21.resources.AccessibleBiddingStrategy - 93, // 89: google.ads.googleads.v21.services.GoogleAdsRow.customer_customizer:type_name -> google.ads.googleads.v21.resources.CustomerCustomizer - 94, // 90: google.ads.googleads.v21.services.GoogleAdsRow.customer_manager_link:type_name -> google.ads.googleads.v21.resources.CustomerManagerLink - 95, // 91: google.ads.googleads.v21.services.GoogleAdsRow.customer_client_link:type_name -> google.ads.googleads.v21.resources.CustomerClientLink - 96, // 92: google.ads.googleads.v21.services.GoogleAdsRow.customer_client:type_name -> google.ads.googleads.v21.resources.CustomerClient - 97, // 93: google.ads.googleads.v21.services.GoogleAdsRow.customer_conversion_goal:type_name -> google.ads.googleads.v21.resources.CustomerConversionGoal - 98, // 94: google.ads.googleads.v21.services.GoogleAdsRow.customer_label:type_name -> google.ads.googleads.v21.resources.CustomerLabel - 99, // 95: google.ads.googleads.v21.services.GoogleAdsRow.customer_lifecycle_goal:type_name -> google.ads.googleads.v21.resources.CustomerLifecycleGoal - 100, // 96: google.ads.googleads.v21.services.GoogleAdsRow.customer_negative_criterion:type_name -> google.ads.googleads.v21.resources.CustomerNegativeCriterion - 101, // 97: google.ads.googleads.v21.services.GoogleAdsRow.customer_search_term_insight:type_name -> google.ads.googleads.v21.resources.CustomerSearchTermInsight - 102, // 98: google.ads.googleads.v21.services.GoogleAdsRow.customer_user_access:type_name -> google.ads.googleads.v21.resources.CustomerUserAccess - 103, // 99: google.ads.googleads.v21.services.GoogleAdsRow.customer_user_access_invitation:type_name -> google.ads.googleads.v21.resources.CustomerUserAccessInvitation - 104, // 100: google.ads.googleads.v21.services.GoogleAdsRow.customizer_attribute:type_name -> google.ads.googleads.v21.resources.CustomizerAttribute - 105, // 101: google.ads.googleads.v21.services.GoogleAdsRow.data_link:type_name -> google.ads.googleads.v21.resources.DataLink - 106, // 102: google.ads.googleads.v21.services.GoogleAdsRow.detail_content_suitability_placement_view:type_name -> google.ads.googleads.v21.resources.DetailContentSuitabilityPlacementView - 107, // 103: google.ads.googleads.v21.services.GoogleAdsRow.detail_placement_view:type_name -> google.ads.googleads.v21.resources.DetailPlacementView - 108, // 104: google.ads.googleads.v21.services.GoogleAdsRow.detailed_demographic:type_name -> google.ads.googleads.v21.resources.DetailedDemographic - 109, // 105: google.ads.googleads.v21.services.GoogleAdsRow.display_keyword_view:type_name -> google.ads.googleads.v21.resources.DisplayKeywordView - 110, // 106: google.ads.googleads.v21.services.GoogleAdsRow.distance_view:type_name -> google.ads.googleads.v21.resources.DistanceView - 111, // 107: google.ads.googleads.v21.services.GoogleAdsRow.dynamic_search_ads_search_term_view:type_name -> google.ads.googleads.v21.resources.DynamicSearchAdsSearchTermView - 112, // 108: google.ads.googleads.v21.services.GoogleAdsRow.expanded_landing_page_view:type_name -> google.ads.googleads.v21.resources.ExpandedLandingPageView - 113, // 109: google.ads.googleads.v21.services.GoogleAdsRow.final_url_expansion_asset_view:type_name -> google.ads.googleads.v21.resources.FinalUrlExpansionAssetView - 114, // 110: google.ads.googleads.v21.services.GoogleAdsRow.gender_view:type_name -> google.ads.googleads.v21.resources.GenderView - 115, // 111: google.ads.googleads.v21.services.GoogleAdsRow.geo_target_constant:type_name -> google.ads.googleads.v21.resources.GeoTargetConstant - 116, // 112: google.ads.googleads.v21.services.GoogleAdsRow.geographic_view:type_name -> google.ads.googleads.v21.resources.GeographicView - 117, // 113: google.ads.googleads.v21.services.GoogleAdsRow.group_content_suitability_placement_view:type_name -> google.ads.googleads.v21.resources.GroupContentSuitabilityPlacementView - 118, // 114: google.ads.googleads.v21.services.GoogleAdsRow.group_placement_view:type_name -> google.ads.googleads.v21.resources.GroupPlacementView - 119, // 115: google.ads.googleads.v21.services.GoogleAdsRow.hotel_group_view:type_name -> google.ads.googleads.v21.resources.HotelGroupView - 120, // 116: google.ads.googleads.v21.services.GoogleAdsRow.hotel_performance_view:type_name -> google.ads.googleads.v21.resources.HotelPerformanceView - 121, // 117: google.ads.googleads.v21.services.GoogleAdsRow.hotel_reconciliation:type_name -> google.ads.googleads.v21.resources.HotelReconciliation - 122, // 118: google.ads.googleads.v21.services.GoogleAdsRow.income_range_view:type_name -> google.ads.googleads.v21.resources.IncomeRangeView - 123, // 119: google.ads.googleads.v21.services.GoogleAdsRow.keyword_view:type_name -> google.ads.googleads.v21.resources.KeywordView - 124, // 120: google.ads.googleads.v21.services.GoogleAdsRow.keyword_plan:type_name -> google.ads.googleads.v21.resources.KeywordPlan - 125, // 121: google.ads.googleads.v21.services.GoogleAdsRow.keyword_plan_campaign:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaign - 126, // 122: google.ads.googleads.v21.services.GoogleAdsRow.keyword_plan_campaign_keyword:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword - 127, // 123: google.ads.googleads.v21.services.GoogleAdsRow.keyword_plan_ad_group:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroup - 128, // 124: google.ads.googleads.v21.services.GoogleAdsRow.keyword_plan_ad_group_keyword:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword - 129, // 125: google.ads.googleads.v21.services.GoogleAdsRow.keyword_theme_constant:type_name -> google.ads.googleads.v21.resources.KeywordThemeConstant - 130, // 126: google.ads.googleads.v21.services.GoogleAdsRow.label:type_name -> google.ads.googleads.v21.resources.Label - 131, // 127: google.ads.googleads.v21.services.GoogleAdsRow.landing_page_view:type_name -> google.ads.googleads.v21.resources.LandingPageView - 132, // 128: google.ads.googleads.v21.services.GoogleAdsRow.language_constant:type_name -> google.ads.googleads.v21.resources.LanguageConstant - 133, // 129: google.ads.googleads.v21.services.GoogleAdsRow.location_view:type_name -> google.ads.googleads.v21.resources.LocationView - 134, // 130: google.ads.googleads.v21.services.GoogleAdsRow.location_interest_view:type_name -> google.ads.googleads.v21.resources.LocationInterestView - 135, // 131: google.ads.googleads.v21.services.GoogleAdsRow.managed_placement_view:type_name -> google.ads.googleads.v21.resources.ManagedPlacementView - 136, // 132: google.ads.googleads.v21.services.GoogleAdsRow.content_criterion_view:type_name -> google.ads.googleads.v21.resources.ContentCriterionView - 137, // 133: google.ads.googleads.v21.services.GoogleAdsRow.media_file:type_name -> google.ads.googleads.v21.resources.MediaFile - 138, // 134: google.ads.googleads.v21.services.GoogleAdsRow.local_services_employee:type_name -> google.ads.googleads.v21.resources.LocalServicesEmployee - 139, // 135: google.ads.googleads.v21.services.GoogleAdsRow.local_services_verification_artifact:type_name -> google.ads.googleads.v21.resources.LocalServicesVerificationArtifact - 140, // 136: google.ads.googleads.v21.services.GoogleAdsRow.mobile_app_category_constant:type_name -> google.ads.googleads.v21.resources.MobileAppCategoryConstant - 141, // 137: google.ads.googleads.v21.services.GoogleAdsRow.mobile_device_constant:type_name -> google.ads.googleads.v21.resources.MobileDeviceConstant - 142, // 138: google.ads.googleads.v21.services.GoogleAdsRow.offline_conversion_upload_client_summary:type_name -> google.ads.googleads.v21.resources.OfflineConversionUploadClientSummary - 143, // 139: google.ads.googleads.v21.services.GoogleAdsRow.offline_conversion_upload_conversion_action_summary:type_name -> google.ads.googleads.v21.resources.OfflineConversionUploadConversionActionSummary - 144, // 140: google.ads.googleads.v21.services.GoogleAdsRow.offline_user_data_job:type_name -> google.ads.googleads.v21.resources.OfflineUserDataJob - 145, // 141: google.ads.googleads.v21.services.GoogleAdsRow.operating_system_version_constant:type_name -> google.ads.googleads.v21.resources.OperatingSystemVersionConstant - 146, // 142: google.ads.googleads.v21.services.GoogleAdsRow.paid_organic_search_term_view:type_name -> google.ads.googleads.v21.resources.PaidOrganicSearchTermView - 147, // 143: google.ads.googleads.v21.services.GoogleAdsRow.qualifying_question:type_name -> google.ads.googleads.v21.resources.QualifyingQuestion - 148, // 144: google.ads.googleads.v21.services.GoogleAdsRow.parental_status_view:type_name -> google.ads.googleads.v21.resources.ParentalStatusView - 149, // 145: google.ads.googleads.v21.services.GoogleAdsRow.per_store_view:type_name -> google.ads.googleads.v21.resources.PerStoreView - 150, // 146: google.ads.googleads.v21.services.GoogleAdsRow.performance_max_placement_view:type_name -> google.ads.googleads.v21.resources.PerformanceMaxPlacementView - 151, // 147: google.ads.googleads.v21.services.GoogleAdsRow.product_category_constant:type_name -> google.ads.googleads.v21.resources.ProductCategoryConstant - 152, // 148: google.ads.googleads.v21.services.GoogleAdsRow.product_group_view:type_name -> google.ads.googleads.v21.resources.ProductGroupView - 153, // 149: google.ads.googleads.v21.services.GoogleAdsRow.product_link:type_name -> google.ads.googleads.v21.resources.ProductLink - 154, // 150: google.ads.googleads.v21.services.GoogleAdsRow.product_link_invitation:type_name -> google.ads.googleads.v21.resources.ProductLinkInvitation - 155, // 151: google.ads.googleads.v21.services.GoogleAdsRow.recommendation:type_name -> google.ads.googleads.v21.resources.Recommendation - 156, // 152: google.ads.googleads.v21.services.GoogleAdsRow.recommendation_subscription:type_name -> google.ads.googleads.v21.resources.RecommendationSubscription - 157, // 153: google.ads.googleads.v21.services.GoogleAdsRow.search_term_view:type_name -> google.ads.googleads.v21.resources.SearchTermView - 158, // 154: google.ads.googleads.v21.services.GoogleAdsRow.shared_criterion:type_name -> google.ads.googleads.v21.resources.SharedCriterion - 159, // 155: google.ads.googleads.v21.services.GoogleAdsRow.shared_set:type_name -> google.ads.googleads.v21.resources.SharedSet - 160, // 156: google.ads.googleads.v21.services.GoogleAdsRow.smart_campaign_setting:type_name -> google.ads.googleads.v21.resources.SmartCampaignSetting - 161, // 157: google.ads.googleads.v21.services.GoogleAdsRow.shopping_performance_view:type_name -> google.ads.googleads.v21.resources.ShoppingPerformanceView - 162, // 158: google.ads.googleads.v21.services.GoogleAdsRow.shopping_product:type_name -> google.ads.googleads.v21.resources.ShoppingProduct - 163, // 159: google.ads.googleads.v21.services.GoogleAdsRow.smart_campaign_search_term_view:type_name -> google.ads.googleads.v21.resources.SmartCampaignSearchTermView - 164, // 160: google.ads.googleads.v21.services.GoogleAdsRow.third_party_app_analytics_link:type_name -> google.ads.googleads.v21.resources.ThirdPartyAppAnalyticsLink - 165, // 161: google.ads.googleads.v21.services.GoogleAdsRow.topic_view:type_name -> google.ads.googleads.v21.resources.TopicView - 166, // 162: google.ads.googleads.v21.services.GoogleAdsRow.travel_activity_group_view:type_name -> google.ads.googleads.v21.resources.TravelActivityGroupView - 167, // 163: google.ads.googleads.v21.services.GoogleAdsRow.travel_activity_performance_view:type_name -> google.ads.googleads.v21.resources.TravelActivityPerformanceView - 168, // 164: google.ads.googleads.v21.services.GoogleAdsRow.experiment:type_name -> google.ads.googleads.v21.resources.Experiment - 169, // 165: google.ads.googleads.v21.services.GoogleAdsRow.experiment_arm:type_name -> google.ads.googleads.v21.resources.ExperimentArm - 170, // 166: google.ads.googleads.v21.services.GoogleAdsRow.user_interest:type_name -> google.ads.googleads.v21.resources.UserInterest - 171, // 167: google.ads.googleads.v21.services.GoogleAdsRow.life_event:type_name -> google.ads.googleads.v21.resources.LifeEvent - 172, // 168: google.ads.googleads.v21.services.GoogleAdsRow.user_list:type_name -> google.ads.googleads.v21.resources.UserList - 173, // 169: google.ads.googleads.v21.services.GoogleAdsRow.user_list_customer_type:type_name -> google.ads.googleads.v21.resources.UserListCustomerType - 174, // 170: google.ads.googleads.v21.services.GoogleAdsRow.user_location_view:type_name -> google.ads.googleads.v21.resources.UserLocationView - 175, // 171: google.ads.googleads.v21.services.GoogleAdsRow.remarketing_action:type_name -> google.ads.googleads.v21.resources.RemarketingAction - 176, // 172: google.ads.googleads.v21.services.GoogleAdsRow.topic_constant:type_name -> google.ads.googleads.v21.resources.TopicConstant - 177, // 173: google.ads.googleads.v21.services.GoogleAdsRow.video:type_name -> google.ads.googleads.v21.resources.Video - 178, // 174: google.ads.googleads.v21.services.GoogleAdsRow.webpage_view:type_name -> google.ads.googleads.v21.resources.WebpageView - 179, // 175: google.ads.googleads.v21.services.GoogleAdsRow.lead_form_submission_data:type_name -> google.ads.googleads.v21.resources.LeadFormSubmissionData - 180, // 176: google.ads.googleads.v21.services.GoogleAdsRow.local_services_lead:type_name -> google.ads.googleads.v21.resources.LocalServicesLead - 181, // 177: google.ads.googleads.v21.services.GoogleAdsRow.local_services_lead_conversation:type_name -> google.ads.googleads.v21.resources.LocalServicesLeadConversation - 182, // 178: google.ads.googleads.v21.services.GoogleAdsRow.android_privacy_shared_key_google_ad_group:type_name -> google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleAdGroup - 183, // 179: google.ads.googleads.v21.services.GoogleAdsRow.android_privacy_shared_key_google_campaign:type_name -> google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleCampaign - 184, // 180: google.ads.googleads.v21.services.GoogleAdsRow.android_privacy_shared_key_google_network_type:type_name -> google.ads.googleads.v21.resources.AndroidPrivacySharedKeyGoogleNetworkType - 185, // 181: google.ads.googleads.v21.services.GoogleAdsRow.metrics:type_name -> google.ads.googleads.v21.common.Metrics - 186, // 182: google.ads.googleads.v21.services.GoogleAdsRow.segments:type_name -> google.ads.googleads.v21.common.Segments - 7, // 183: google.ads.googleads.v21.services.MutateGoogleAdsRequest.mutate_operations:type_name -> google.ads.googleads.v21.services.MutateOperation - 187, // 184: google.ads.googleads.v21.services.MutateGoogleAdsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 188, // 185: google.ads.googleads.v21.services.MutateGoogleAdsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 186: google.ads.googleads.v21.services.MutateGoogleAdsResponse.mutate_operation_responses:type_name -> google.ads.googleads.v21.services.MutateOperationResponse - 189, // 187: google.ads.googleads.v21.services.MutateOperation.ad_group_ad_label_operation:type_name -> google.ads.googleads.v21.services.AdGroupAdLabelOperation - 190, // 188: google.ads.googleads.v21.services.MutateOperation.ad_group_ad_operation:type_name -> google.ads.googleads.v21.services.AdGroupAdOperation - 191, // 189: google.ads.googleads.v21.services.MutateOperation.ad_group_asset_operation:type_name -> google.ads.googleads.v21.services.AdGroupAssetOperation - 192, // 190: google.ads.googleads.v21.services.MutateOperation.ad_group_bid_modifier_operation:type_name -> google.ads.googleads.v21.services.AdGroupBidModifierOperation - 193, // 191: google.ads.googleads.v21.services.MutateOperation.ad_group_criterion_customizer_operation:type_name -> google.ads.googleads.v21.services.AdGroupCriterionCustomizerOperation - 194, // 192: google.ads.googleads.v21.services.MutateOperation.ad_group_criterion_label_operation:type_name -> google.ads.googleads.v21.services.AdGroupCriterionLabelOperation - 195, // 193: google.ads.googleads.v21.services.MutateOperation.ad_group_criterion_operation:type_name -> google.ads.googleads.v21.services.AdGroupCriterionOperation - 196, // 194: google.ads.googleads.v21.services.MutateOperation.ad_group_customizer_operation:type_name -> google.ads.googleads.v21.services.AdGroupCustomizerOperation - 197, // 195: google.ads.googleads.v21.services.MutateOperation.ad_group_label_operation:type_name -> google.ads.googleads.v21.services.AdGroupLabelOperation - 198, // 196: google.ads.googleads.v21.services.MutateOperation.ad_group_operation:type_name -> google.ads.googleads.v21.services.AdGroupOperation - 199, // 197: google.ads.googleads.v21.services.MutateOperation.ad_operation:type_name -> google.ads.googleads.v21.services.AdOperation - 200, // 198: google.ads.googleads.v21.services.MutateOperation.ad_parameter_operation:type_name -> google.ads.googleads.v21.services.AdParameterOperation - 201, // 199: google.ads.googleads.v21.services.MutateOperation.asset_operation:type_name -> google.ads.googleads.v21.services.AssetOperation - 202, // 200: google.ads.googleads.v21.services.MutateOperation.asset_group_asset_operation:type_name -> google.ads.googleads.v21.services.AssetGroupAssetOperation - 203, // 201: google.ads.googleads.v21.services.MutateOperation.asset_group_listing_group_filter_operation:type_name -> google.ads.googleads.v21.services.AssetGroupListingGroupFilterOperation - 204, // 202: google.ads.googleads.v21.services.MutateOperation.asset_group_signal_operation:type_name -> google.ads.googleads.v21.services.AssetGroupSignalOperation - 205, // 203: google.ads.googleads.v21.services.MutateOperation.asset_group_operation:type_name -> google.ads.googleads.v21.services.AssetGroupOperation - 206, // 204: google.ads.googleads.v21.services.MutateOperation.asset_set_asset_operation:type_name -> google.ads.googleads.v21.services.AssetSetAssetOperation - 207, // 205: google.ads.googleads.v21.services.MutateOperation.asset_set_operation:type_name -> google.ads.googleads.v21.services.AssetSetOperation - 208, // 206: google.ads.googleads.v21.services.MutateOperation.audience_operation:type_name -> google.ads.googleads.v21.services.AudienceOperation - 209, // 207: google.ads.googleads.v21.services.MutateOperation.bidding_data_exclusion_operation:type_name -> google.ads.googleads.v21.services.BiddingDataExclusionOperation - 210, // 208: google.ads.googleads.v21.services.MutateOperation.bidding_seasonality_adjustment_operation:type_name -> google.ads.googleads.v21.services.BiddingSeasonalityAdjustmentOperation - 211, // 209: google.ads.googleads.v21.services.MutateOperation.bidding_strategy_operation:type_name -> google.ads.googleads.v21.services.BiddingStrategyOperation - 212, // 210: google.ads.googleads.v21.services.MutateOperation.campaign_asset_operation:type_name -> google.ads.googleads.v21.services.CampaignAssetOperation - 213, // 211: google.ads.googleads.v21.services.MutateOperation.campaign_asset_set_operation:type_name -> google.ads.googleads.v21.services.CampaignAssetSetOperation - 214, // 212: google.ads.googleads.v21.services.MutateOperation.campaign_bid_modifier_operation:type_name -> google.ads.googleads.v21.services.CampaignBidModifierOperation - 215, // 213: google.ads.googleads.v21.services.MutateOperation.campaign_budget_operation:type_name -> google.ads.googleads.v21.services.CampaignBudgetOperation - 216, // 214: google.ads.googleads.v21.services.MutateOperation.campaign_conversion_goal_operation:type_name -> google.ads.googleads.v21.services.CampaignConversionGoalOperation - 217, // 215: google.ads.googleads.v21.services.MutateOperation.campaign_criterion_operation:type_name -> google.ads.googleads.v21.services.CampaignCriterionOperation - 218, // 216: google.ads.googleads.v21.services.MutateOperation.campaign_customizer_operation:type_name -> google.ads.googleads.v21.services.CampaignCustomizerOperation - 219, // 217: google.ads.googleads.v21.services.MutateOperation.campaign_draft_operation:type_name -> google.ads.googleads.v21.services.CampaignDraftOperation - 220, // 218: google.ads.googleads.v21.services.MutateOperation.campaign_group_operation:type_name -> google.ads.googleads.v21.services.CampaignGroupOperation - 221, // 219: google.ads.googleads.v21.services.MutateOperation.campaign_label_operation:type_name -> google.ads.googleads.v21.services.CampaignLabelOperation - 222, // 220: google.ads.googleads.v21.services.MutateOperation.campaign_operation:type_name -> google.ads.googleads.v21.services.CampaignOperation - 223, // 221: google.ads.googleads.v21.services.MutateOperation.campaign_shared_set_operation:type_name -> google.ads.googleads.v21.services.CampaignSharedSetOperation - 224, // 222: google.ads.googleads.v21.services.MutateOperation.conversion_action_operation:type_name -> google.ads.googleads.v21.services.ConversionActionOperation - 225, // 223: google.ads.googleads.v21.services.MutateOperation.conversion_custom_variable_operation:type_name -> google.ads.googleads.v21.services.ConversionCustomVariableOperation - 226, // 224: google.ads.googleads.v21.services.MutateOperation.conversion_goal_campaign_config_operation:type_name -> google.ads.googleads.v21.services.ConversionGoalCampaignConfigOperation - 227, // 225: google.ads.googleads.v21.services.MutateOperation.conversion_value_rule_operation:type_name -> google.ads.googleads.v21.services.ConversionValueRuleOperation - 228, // 226: google.ads.googleads.v21.services.MutateOperation.conversion_value_rule_set_operation:type_name -> google.ads.googleads.v21.services.ConversionValueRuleSetOperation - 229, // 227: google.ads.googleads.v21.services.MutateOperation.custom_conversion_goal_operation:type_name -> google.ads.googleads.v21.services.CustomConversionGoalOperation - 230, // 228: google.ads.googleads.v21.services.MutateOperation.customer_asset_operation:type_name -> google.ads.googleads.v21.services.CustomerAssetOperation - 231, // 229: google.ads.googleads.v21.services.MutateOperation.customer_conversion_goal_operation:type_name -> google.ads.googleads.v21.services.CustomerConversionGoalOperation - 232, // 230: google.ads.googleads.v21.services.MutateOperation.customer_customizer_operation:type_name -> google.ads.googleads.v21.services.CustomerCustomizerOperation - 233, // 231: google.ads.googleads.v21.services.MutateOperation.customer_label_operation:type_name -> google.ads.googleads.v21.services.CustomerLabelOperation - 234, // 232: google.ads.googleads.v21.services.MutateOperation.customer_negative_criterion_operation:type_name -> google.ads.googleads.v21.services.CustomerNegativeCriterionOperation - 235, // 233: google.ads.googleads.v21.services.MutateOperation.customer_operation:type_name -> google.ads.googleads.v21.services.CustomerOperation - 236, // 234: google.ads.googleads.v21.services.MutateOperation.customizer_attribute_operation:type_name -> google.ads.googleads.v21.services.CustomizerAttributeOperation - 237, // 235: google.ads.googleads.v21.services.MutateOperation.experiment_operation:type_name -> google.ads.googleads.v21.services.ExperimentOperation - 238, // 236: google.ads.googleads.v21.services.MutateOperation.experiment_arm_operation:type_name -> google.ads.googleads.v21.services.ExperimentArmOperation - 239, // 237: google.ads.googleads.v21.services.MutateOperation.keyword_plan_ad_group_operation:type_name -> google.ads.googleads.v21.services.KeywordPlanAdGroupOperation - 240, // 238: google.ads.googleads.v21.services.MutateOperation.keyword_plan_ad_group_keyword_operation:type_name -> google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation - 241, // 239: google.ads.googleads.v21.services.MutateOperation.keyword_plan_campaign_keyword_operation:type_name -> google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation - 242, // 240: google.ads.googleads.v21.services.MutateOperation.keyword_plan_campaign_operation:type_name -> google.ads.googleads.v21.services.KeywordPlanCampaignOperation - 243, // 241: google.ads.googleads.v21.services.MutateOperation.keyword_plan_operation:type_name -> google.ads.googleads.v21.services.KeywordPlanOperation - 244, // 242: google.ads.googleads.v21.services.MutateOperation.label_operation:type_name -> google.ads.googleads.v21.services.LabelOperation - 245, // 243: google.ads.googleads.v21.services.MutateOperation.recommendation_subscription_operation:type_name -> google.ads.googleads.v21.services.RecommendationSubscriptionOperation - 246, // 244: google.ads.googleads.v21.services.MutateOperation.remarketing_action_operation:type_name -> google.ads.googleads.v21.services.RemarketingActionOperation - 247, // 245: google.ads.googleads.v21.services.MutateOperation.shared_criterion_operation:type_name -> google.ads.googleads.v21.services.SharedCriterionOperation - 248, // 246: google.ads.googleads.v21.services.MutateOperation.shared_set_operation:type_name -> google.ads.googleads.v21.services.SharedSetOperation - 249, // 247: google.ads.googleads.v21.services.MutateOperation.smart_campaign_setting_operation:type_name -> google.ads.googleads.v21.services.SmartCampaignSettingOperation - 250, // 248: google.ads.googleads.v21.services.MutateOperation.user_list_operation:type_name -> google.ads.googleads.v21.services.UserListOperation - 251, // 249: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_ad_label_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupAdLabelResult - 252, // 250: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_ad_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupAdResult - 253, // 251: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_asset_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupAssetResult - 254, // 252: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_bid_modifier_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupBidModifierResult - 255, // 253: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_criterion_customizer_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionCustomizerResult - 256, // 254: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_criterion_label_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionLabelResult - 257, // 255: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_criterion_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupCriterionResult - 258, // 256: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_customizer_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupCustomizerResult - 259, // 257: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_label_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupLabelResult - 260, // 258: google.ads.googleads.v21.services.MutateOperationResponse.ad_group_result:type_name -> google.ads.googleads.v21.services.MutateAdGroupResult - 261, // 259: google.ads.googleads.v21.services.MutateOperationResponse.ad_parameter_result:type_name -> google.ads.googleads.v21.services.MutateAdParameterResult - 262, // 260: google.ads.googleads.v21.services.MutateOperationResponse.ad_result:type_name -> google.ads.googleads.v21.services.MutateAdResult - 263, // 261: google.ads.googleads.v21.services.MutateOperationResponse.asset_result:type_name -> google.ads.googleads.v21.services.MutateAssetResult - 264, // 262: google.ads.googleads.v21.services.MutateOperationResponse.asset_group_asset_result:type_name -> google.ads.googleads.v21.services.MutateAssetGroupAssetResult - 265, // 263: google.ads.googleads.v21.services.MutateOperationResponse.asset_group_listing_group_filter_result:type_name -> google.ads.googleads.v21.services.MutateAssetGroupListingGroupFilterResult - 266, // 264: google.ads.googleads.v21.services.MutateOperationResponse.asset_group_signal_result:type_name -> google.ads.googleads.v21.services.MutateAssetGroupSignalResult - 267, // 265: google.ads.googleads.v21.services.MutateOperationResponse.asset_group_result:type_name -> google.ads.googleads.v21.services.MutateAssetGroupResult - 268, // 266: google.ads.googleads.v21.services.MutateOperationResponse.asset_set_asset_result:type_name -> google.ads.googleads.v21.services.MutateAssetSetAssetResult - 269, // 267: google.ads.googleads.v21.services.MutateOperationResponse.asset_set_result:type_name -> google.ads.googleads.v21.services.MutateAssetSetResult - 270, // 268: google.ads.googleads.v21.services.MutateOperationResponse.audience_result:type_name -> google.ads.googleads.v21.services.MutateAudienceResult - 271, // 269: google.ads.googleads.v21.services.MutateOperationResponse.bidding_data_exclusion_result:type_name -> google.ads.googleads.v21.services.MutateBiddingDataExclusionsResult - 272, // 270: google.ads.googleads.v21.services.MutateOperationResponse.bidding_seasonality_adjustment_result:type_name -> google.ads.googleads.v21.services.MutateBiddingSeasonalityAdjustmentsResult - 273, // 271: google.ads.googleads.v21.services.MutateOperationResponse.bidding_strategy_result:type_name -> google.ads.googleads.v21.services.MutateBiddingStrategyResult - 274, // 272: google.ads.googleads.v21.services.MutateOperationResponse.campaign_asset_result:type_name -> google.ads.googleads.v21.services.MutateCampaignAssetResult - 275, // 273: google.ads.googleads.v21.services.MutateOperationResponse.campaign_asset_set_result:type_name -> google.ads.googleads.v21.services.MutateCampaignAssetSetResult - 276, // 274: google.ads.googleads.v21.services.MutateOperationResponse.campaign_bid_modifier_result:type_name -> google.ads.googleads.v21.services.MutateCampaignBidModifierResult - 277, // 275: google.ads.googleads.v21.services.MutateOperationResponse.campaign_budget_result:type_name -> google.ads.googleads.v21.services.MutateCampaignBudgetResult - 278, // 276: google.ads.googleads.v21.services.MutateOperationResponse.campaign_conversion_goal_result:type_name -> google.ads.googleads.v21.services.MutateCampaignConversionGoalResult - 279, // 277: google.ads.googleads.v21.services.MutateOperationResponse.campaign_criterion_result:type_name -> google.ads.googleads.v21.services.MutateCampaignCriterionResult - 280, // 278: google.ads.googleads.v21.services.MutateOperationResponse.campaign_customizer_result:type_name -> google.ads.googleads.v21.services.MutateCampaignCustomizerResult - 281, // 279: google.ads.googleads.v21.services.MutateOperationResponse.campaign_draft_result:type_name -> google.ads.googleads.v21.services.MutateCampaignDraftResult - 282, // 280: google.ads.googleads.v21.services.MutateOperationResponse.campaign_group_result:type_name -> google.ads.googleads.v21.services.MutateCampaignGroupResult - 283, // 281: google.ads.googleads.v21.services.MutateOperationResponse.campaign_label_result:type_name -> google.ads.googleads.v21.services.MutateCampaignLabelResult - 284, // 282: google.ads.googleads.v21.services.MutateOperationResponse.campaign_result:type_name -> google.ads.googleads.v21.services.MutateCampaignResult - 285, // 283: google.ads.googleads.v21.services.MutateOperationResponse.campaign_shared_set_result:type_name -> google.ads.googleads.v21.services.MutateCampaignSharedSetResult - 286, // 284: google.ads.googleads.v21.services.MutateOperationResponse.conversion_action_result:type_name -> google.ads.googleads.v21.services.MutateConversionActionResult - 287, // 285: google.ads.googleads.v21.services.MutateOperationResponse.conversion_custom_variable_result:type_name -> google.ads.googleads.v21.services.MutateConversionCustomVariableResult - 288, // 286: google.ads.googleads.v21.services.MutateOperationResponse.conversion_goal_campaign_config_result:type_name -> google.ads.googleads.v21.services.MutateConversionGoalCampaignConfigResult - 289, // 287: google.ads.googleads.v21.services.MutateOperationResponse.conversion_value_rule_result:type_name -> google.ads.googleads.v21.services.MutateConversionValueRuleResult - 290, // 288: google.ads.googleads.v21.services.MutateOperationResponse.conversion_value_rule_set_result:type_name -> google.ads.googleads.v21.services.MutateConversionValueRuleSetResult - 291, // 289: google.ads.googleads.v21.services.MutateOperationResponse.custom_conversion_goal_result:type_name -> google.ads.googleads.v21.services.MutateCustomConversionGoalResult - 292, // 290: google.ads.googleads.v21.services.MutateOperationResponse.customer_asset_result:type_name -> google.ads.googleads.v21.services.MutateCustomerAssetResult - 293, // 291: google.ads.googleads.v21.services.MutateOperationResponse.customer_conversion_goal_result:type_name -> google.ads.googleads.v21.services.MutateCustomerConversionGoalResult - 294, // 292: google.ads.googleads.v21.services.MutateOperationResponse.customer_customizer_result:type_name -> google.ads.googleads.v21.services.MutateCustomerCustomizerResult - 295, // 293: google.ads.googleads.v21.services.MutateOperationResponse.customer_label_result:type_name -> google.ads.googleads.v21.services.MutateCustomerLabelResult - 296, // 294: google.ads.googleads.v21.services.MutateOperationResponse.customer_negative_criterion_result:type_name -> google.ads.googleads.v21.services.MutateCustomerNegativeCriteriaResult - 297, // 295: google.ads.googleads.v21.services.MutateOperationResponse.customer_result:type_name -> google.ads.googleads.v21.services.MutateCustomerResult - 298, // 296: google.ads.googleads.v21.services.MutateOperationResponse.customizer_attribute_result:type_name -> google.ads.googleads.v21.services.MutateCustomizerAttributeResult - 299, // 297: google.ads.googleads.v21.services.MutateOperationResponse.experiment_result:type_name -> google.ads.googleads.v21.services.MutateExperimentResult - 300, // 298: google.ads.googleads.v21.services.MutateOperationResponse.experiment_arm_result:type_name -> google.ads.googleads.v21.services.MutateExperimentArmResult - 301, // 299: google.ads.googleads.v21.services.MutateOperationResponse.keyword_plan_ad_group_result:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupResult - 302, // 300: google.ads.googleads.v21.services.MutateOperationResponse.keyword_plan_campaign_result:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignResult - 303, // 301: google.ads.googleads.v21.services.MutateOperationResponse.keyword_plan_ad_group_keyword_result:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordResult - 304, // 302: google.ads.googleads.v21.services.MutateOperationResponse.keyword_plan_campaign_keyword_result:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordResult - 305, // 303: google.ads.googleads.v21.services.MutateOperationResponse.keyword_plan_result:type_name -> google.ads.googleads.v21.services.MutateKeywordPlansResult - 306, // 304: google.ads.googleads.v21.services.MutateOperationResponse.label_result:type_name -> google.ads.googleads.v21.services.MutateLabelResult - 307, // 305: google.ads.googleads.v21.services.MutateOperationResponse.recommendation_subscription_result:type_name -> google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult - 308, // 306: google.ads.googleads.v21.services.MutateOperationResponse.remarketing_action_result:type_name -> google.ads.googleads.v21.services.MutateRemarketingActionResult - 309, // 307: google.ads.googleads.v21.services.MutateOperationResponse.shared_criterion_result:type_name -> google.ads.googleads.v21.services.MutateSharedCriterionResult - 310, // 308: google.ads.googleads.v21.services.MutateOperationResponse.shared_set_result:type_name -> google.ads.googleads.v21.services.MutateSharedSetResult - 311, // 309: google.ads.googleads.v21.services.MutateOperationResponse.smart_campaign_setting_result:type_name -> google.ads.googleads.v21.services.MutateSmartCampaignSettingResult - 312, // 310: google.ads.googleads.v21.services.MutateOperationResponse.user_list_result:type_name -> google.ads.googleads.v21.services.MutateUserListResult - 0, // 311: google.ads.googleads.v21.services.GoogleAdsService.Search:input_type -> google.ads.googleads.v21.services.SearchGoogleAdsRequest - 2, // 312: google.ads.googleads.v21.services.GoogleAdsService.SearchStream:input_type -> google.ads.googleads.v21.services.SearchGoogleAdsStreamRequest - 5, // 313: google.ads.googleads.v21.services.GoogleAdsService.Mutate:input_type -> google.ads.googleads.v21.services.MutateGoogleAdsRequest - 1, // 314: google.ads.googleads.v21.services.GoogleAdsService.Search:output_type -> google.ads.googleads.v21.services.SearchGoogleAdsResponse - 3, // 315: google.ads.googleads.v21.services.GoogleAdsService.SearchStream:output_type -> google.ads.googleads.v21.services.SearchGoogleAdsStreamResponse - 6, // 316: google.ads.googleads.v21.services.GoogleAdsService.Mutate:output_type -> google.ads.googleads.v21.services.MutateGoogleAdsResponse - 314, // [314:317] is the sub-list for method output_type - 311, // [311:314] is the sub-list for method input_type - 311, // [311:311] is the sub-list for extension type_name - 311, // [311:311] is the sub-list for extension extendee - 0, // [0:311] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_services_google_ads_service_proto_init() } -func file_google_ads_googleads_v21_services_google_ads_service_proto_init() { - if File_google_ads_googleads_v21_services_google_ads_service_proto != nil { + (enums.SummaryRowSettingEnum_SummaryRowSetting)(0), // 11: google.ads.googleads.v22.enums.SummaryRowSettingEnum.SummaryRowSetting + (*resources.AccountBudget)(nil), // 12: google.ads.googleads.v22.resources.AccountBudget + (*resources.AccountBudgetProposal)(nil), // 13: google.ads.googleads.v22.resources.AccountBudgetProposal + (*resources.AccountLink)(nil), // 14: google.ads.googleads.v22.resources.AccountLink + (*resources.Ad)(nil), // 15: google.ads.googleads.v22.resources.Ad + (*resources.AdGroup)(nil), // 16: google.ads.googleads.v22.resources.AdGroup + (*resources.AdGroupAd)(nil), // 17: google.ads.googleads.v22.resources.AdGroupAd + (*resources.AdGroupAdAssetCombinationView)(nil), // 18: google.ads.googleads.v22.resources.AdGroupAdAssetCombinationView + (*resources.AdGroupAdAssetView)(nil), // 19: google.ads.googleads.v22.resources.AdGroupAdAssetView + (*resources.AdGroupAdLabel)(nil), // 20: google.ads.googleads.v22.resources.AdGroupAdLabel + (*resources.AdGroupAsset)(nil), // 21: google.ads.googleads.v22.resources.AdGroupAsset + (*resources.AdGroupAssetSet)(nil), // 22: google.ads.googleads.v22.resources.AdGroupAssetSet + (*resources.AdGroupAudienceView)(nil), // 23: google.ads.googleads.v22.resources.AdGroupAudienceView + (*resources.AdGroupBidModifier)(nil), // 24: google.ads.googleads.v22.resources.AdGroupBidModifier + (*resources.AdGroupCriterion)(nil), // 25: google.ads.googleads.v22.resources.AdGroupCriterion + (*resources.AdGroupCriterionCustomizer)(nil), // 26: google.ads.googleads.v22.resources.AdGroupCriterionCustomizer + (*resources.AdGroupCriterionLabel)(nil), // 27: google.ads.googleads.v22.resources.AdGroupCriterionLabel + (*resources.AdGroupCriterionSimulation)(nil), // 28: google.ads.googleads.v22.resources.AdGroupCriterionSimulation + (*resources.AdGroupCustomizer)(nil), // 29: google.ads.googleads.v22.resources.AdGroupCustomizer + (*resources.AdGroupLabel)(nil), // 30: google.ads.googleads.v22.resources.AdGroupLabel + (*resources.AdGroupSimulation)(nil), // 31: google.ads.googleads.v22.resources.AdGroupSimulation + (*resources.AdParameter)(nil), // 32: google.ads.googleads.v22.resources.AdParameter + (*resources.AgeRangeView)(nil), // 33: google.ads.googleads.v22.resources.AgeRangeView + (*resources.AdScheduleView)(nil), // 34: google.ads.googleads.v22.resources.AdScheduleView + (*resources.AiMaxSearchTermAdCombinationView)(nil), // 35: google.ads.googleads.v22.resources.AiMaxSearchTermAdCombinationView + (*resources.DomainCategory)(nil), // 36: google.ads.googleads.v22.resources.DomainCategory + (*resources.Asset)(nil), // 37: google.ads.googleads.v22.resources.Asset + (*resources.AssetFieldTypeView)(nil), // 38: google.ads.googleads.v22.resources.AssetFieldTypeView + (*resources.ChannelAggregateAssetView)(nil), // 39: google.ads.googleads.v22.resources.ChannelAggregateAssetView + (*resources.CampaignAggregateAssetView)(nil), // 40: google.ads.googleads.v22.resources.CampaignAggregateAssetView + (*resources.AssetGroupAsset)(nil), // 41: google.ads.googleads.v22.resources.AssetGroupAsset + (*resources.AssetGroupSignal)(nil), // 42: google.ads.googleads.v22.resources.AssetGroupSignal + (*resources.AssetGroupListingGroupFilter)(nil), // 43: google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + (*resources.AssetGroupProductGroupView)(nil), // 44: google.ads.googleads.v22.resources.AssetGroupProductGroupView + (*resources.AssetGroupTopCombinationView)(nil), // 45: google.ads.googleads.v22.resources.AssetGroupTopCombinationView + (*resources.AssetGroup)(nil), // 46: google.ads.googleads.v22.resources.AssetGroup + (*resources.AssetSetAsset)(nil), // 47: google.ads.googleads.v22.resources.AssetSetAsset + (*resources.AssetSet)(nil), // 48: google.ads.googleads.v22.resources.AssetSet + (*resources.AssetSetTypeView)(nil), // 49: google.ads.googleads.v22.resources.AssetSetTypeView + (*resources.BatchJob)(nil), // 50: google.ads.googleads.v22.resources.BatchJob + (*resources.BiddingDataExclusion)(nil), // 51: google.ads.googleads.v22.resources.BiddingDataExclusion + (*resources.BiddingSeasonalityAdjustment)(nil), // 52: google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + (*resources.BiddingStrategy)(nil), // 53: google.ads.googleads.v22.resources.BiddingStrategy + (*resources.BiddingStrategySimulation)(nil), // 54: google.ads.googleads.v22.resources.BiddingStrategySimulation + (*resources.BillingSetup)(nil), // 55: google.ads.googleads.v22.resources.BillingSetup + (*resources.CallView)(nil), // 56: google.ads.googleads.v22.resources.CallView + (*resources.CampaignBudget)(nil), // 57: google.ads.googleads.v22.resources.CampaignBudget + (*resources.Campaign)(nil), // 58: google.ads.googleads.v22.resources.Campaign + (*resources.CampaignAsset)(nil), // 59: google.ads.googleads.v22.resources.CampaignAsset + (*resources.CampaignAssetSet)(nil), // 60: google.ads.googleads.v22.resources.CampaignAssetSet + (*resources.CampaignAudienceView)(nil), // 61: google.ads.googleads.v22.resources.CampaignAudienceView + (*resources.CampaignBidModifier)(nil), // 62: google.ads.googleads.v22.resources.CampaignBidModifier + (*resources.CampaignConversionGoal)(nil), // 63: google.ads.googleads.v22.resources.CampaignConversionGoal + (*resources.CampaignCriterion)(nil), // 64: google.ads.googleads.v22.resources.CampaignCriterion + (*resources.CampaignCustomizer)(nil), // 65: google.ads.googleads.v22.resources.CampaignCustomizer + (*resources.CampaignDraft)(nil), // 66: google.ads.googleads.v22.resources.CampaignDraft + (*resources.CampaignGroup)(nil), // 67: google.ads.googleads.v22.resources.CampaignGroup + (*resources.CampaignGoalConfig)(nil), // 68: google.ads.googleads.v22.resources.CampaignGoalConfig + (*resources.CampaignLabel)(nil), // 69: google.ads.googleads.v22.resources.CampaignLabel + (*resources.CampaignLifecycleGoal)(nil), // 70: google.ads.googleads.v22.resources.CampaignLifecycleGoal + (*resources.CampaignSearchTermInsight)(nil), // 71: google.ads.googleads.v22.resources.CampaignSearchTermInsight + (*resources.CampaignSearchTermView)(nil), // 72: google.ads.googleads.v22.resources.CampaignSearchTermView + (*resources.CampaignSharedSet)(nil), // 73: google.ads.googleads.v22.resources.CampaignSharedSet + (*resources.CampaignSimulation)(nil), // 74: google.ads.googleads.v22.resources.CampaignSimulation + (*resources.CarrierConstant)(nil), // 75: google.ads.googleads.v22.resources.CarrierConstant + (*resources.ChangeEvent)(nil), // 76: google.ads.googleads.v22.resources.ChangeEvent + (*resources.ChangeStatus)(nil), // 77: google.ads.googleads.v22.resources.ChangeStatus + (*resources.CombinedAudience)(nil), // 78: google.ads.googleads.v22.resources.CombinedAudience + (*resources.Audience)(nil), // 79: google.ads.googleads.v22.resources.Audience + (*resources.ConversionAction)(nil), // 80: google.ads.googleads.v22.resources.ConversionAction + (*resources.ConversionCustomVariable)(nil), // 81: google.ads.googleads.v22.resources.ConversionCustomVariable + (*resources.ConversionGoalCampaignConfig)(nil), // 82: google.ads.googleads.v22.resources.ConversionGoalCampaignConfig + (*resources.ConversionValueRule)(nil), // 83: google.ads.googleads.v22.resources.ConversionValueRule + (*resources.ConversionValueRuleSet)(nil), // 84: google.ads.googleads.v22.resources.ConversionValueRuleSet + (*resources.ClickView)(nil), // 85: google.ads.googleads.v22.resources.ClickView + (*resources.CurrencyConstant)(nil), // 86: google.ads.googleads.v22.resources.CurrencyConstant + (*resources.CustomAudience)(nil), // 87: google.ads.googleads.v22.resources.CustomAudience + (*resources.CustomConversionGoal)(nil), // 88: google.ads.googleads.v22.resources.CustomConversionGoal + (*resources.CustomInterest)(nil), // 89: google.ads.googleads.v22.resources.CustomInterest + (*resources.Customer)(nil), // 90: google.ads.googleads.v22.resources.Customer + (*resources.CustomerAsset)(nil), // 91: google.ads.googleads.v22.resources.CustomerAsset + (*resources.CustomerAssetSet)(nil), // 92: google.ads.googleads.v22.resources.CustomerAssetSet + (*resources.AccessibleBiddingStrategy)(nil), // 93: google.ads.googleads.v22.resources.AccessibleBiddingStrategy + (*resources.CustomerCustomizer)(nil), // 94: google.ads.googleads.v22.resources.CustomerCustomizer + (*resources.CustomerManagerLink)(nil), // 95: google.ads.googleads.v22.resources.CustomerManagerLink + (*resources.CustomerClientLink)(nil), // 96: google.ads.googleads.v22.resources.CustomerClientLink + (*resources.CustomerClient)(nil), // 97: google.ads.googleads.v22.resources.CustomerClient + (*resources.CustomerConversionGoal)(nil), // 98: google.ads.googleads.v22.resources.CustomerConversionGoal + (*resources.CustomerLabel)(nil), // 99: google.ads.googleads.v22.resources.CustomerLabel + (*resources.CustomerLifecycleGoal)(nil), // 100: google.ads.googleads.v22.resources.CustomerLifecycleGoal + (*resources.CustomerNegativeCriterion)(nil), // 101: google.ads.googleads.v22.resources.CustomerNegativeCriterion + (*resources.CustomerSearchTermInsight)(nil), // 102: google.ads.googleads.v22.resources.CustomerSearchTermInsight + (*resources.CustomerUserAccess)(nil), // 103: google.ads.googleads.v22.resources.CustomerUserAccess + (*resources.CustomerUserAccessInvitation)(nil), // 104: google.ads.googleads.v22.resources.CustomerUserAccessInvitation + (*resources.CustomizerAttribute)(nil), // 105: google.ads.googleads.v22.resources.CustomizerAttribute + (*resources.DataLink)(nil), // 106: google.ads.googleads.v22.resources.DataLink + (*resources.DetailContentSuitabilityPlacementView)(nil), // 107: google.ads.googleads.v22.resources.DetailContentSuitabilityPlacementView + (*resources.DetailPlacementView)(nil), // 108: google.ads.googleads.v22.resources.DetailPlacementView + (*resources.DetailedDemographic)(nil), // 109: google.ads.googleads.v22.resources.DetailedDemographic + (*resources.DisplayKeywordView)(nil), // 110: google.ads.googleads.v22.resources.DisplayKeywordView + (*resources.DistanceView)(nil), // 111: google.ads.googleads.v22.resources.DistanceView + (*resources.DynamicSearchAdsSearchTermView)(nil), // 112: google.ads.googleads.v22.resources.DynamicSearchAdsSearchTermView + (*resources.ExpandedLandingPageView)(nil), // 113: google.ads.googleads.v22.resources.ExpandedLandingPageView + (*resources.FinalUrlExpansionAssetView)(nil), // 114: google.ads.googleads.v22.resources.FinalUrlExpansionAssetView + (*resources.GenderView)(nil), // 115: google.ads.googleads.v22.resources.GenderView + (*resources.GeoTargetConstant)(nil), // 116: google.ads.googleads.v22.resources.GeoTargetConstant + (*resources.GeographicView)(nil), // 117: google.ads.googleads.v22.resources.GeographicView + (*resources.Goal)(nil), // 118: google.ads.googleads.v22.resources.Goal + (*resources.GroupContentSuitabilityPlacementView)(nil), // 119: google.ads.googleads.v22.resources.GroupContentSuitabilityPlacementView + (*resources.GroupPlacementView)(nil), // 120: google.ads.googleads.v22.resources.GroupPlacementView + (*resources.HotelGroupView)(nil), // 121: google.ads.googleads.v22.resources.HotelGroupView + (*resources.HotelPerformanceView)(nil), // 122: google.ads.googleads.v22.resources.HotelPerformanceView + (*resources.HotelReconciliation)(nil), // 123: google.ads.googleads.v22.resources.HotelReconciliation + (*resources.IncomeRangeView)(nil), // 124: google.ads.googleads.v22.resources.IncomeRangeView + (*resources.KeywordView)(nil), // 125: google.ads.googleads.v22.resources.KeywordView + (*resources.KeywordPlan)(nil), // 126: google.ads.googleads.v22.resources.KeywordPlan + (*resources.KeywordPlanCampaign)(nil), // 127: google.ads.googleads.v22.resources.KeywordPlanCampaign + (*resources.KeywordPlanCampaignKeyword)(nil), // 128: google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword + (*resources.KeywordPlanAdGroup)(nil), // 129: google.ads.googleads.v22.resources.KeywordPlanAdGroup + (*resources.KeywordPlanAdGroupKeyword)(nil), // 130: google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword + (*resources.KeywordThemeConstant)(nil), // 131: google.ads.googleads.v22.resources.KeywordThemeConstant + (*resources.Label)(nil), // 132: google.ads.googleads.v22.resources.Label + (*resources.LandingPageView)(nil), // 133: google.ads.googleads.v22.resources.LandingPageView + (*resources.LanguageConstant)(nil), // 134: google.ads.googleads.v22.resources.LanguageConstant + (*resources.LocationView)(nil), // 135: google.ads.googleads.v22.resources.LocationView + (*resources.LocationInterestView)(nil), // 136: google.ads.googleads.v22.resources.LocationInterestView + (*resources.ManagedPlacementView)(nil), // 137: google.ads.googleads.v22.resources.ManagedPlacementView + (*resources.ContentCriterionView)(nil), // 138: google.ads.googleads.v22.resources.ContentCriterionView + (*resources.MediaFile)(nil), // 139: google.ads.googleads.v22.resources.MediaFile + (*resources.LocalServicesEmployee)(nil), // 140: google.ads.googleads.v22.resources.LocalServicesEmployee + (*resources.LocalServicesVerificationArtifact)(nil), // 141: google.ads.googleads.v22.resources.LocalServicesVerificationArtifact + (*resources.MobileAppCategoryConstant)(nil), // 142: google.ads.googleads.v22.resources.MobileAppCategoryConstant + (*resources.MobileDeviceConstant)(nil), // 143: google.ads.googleads.v22.resources.MobileDeviceConstant + (*resources.OfflineConversionUploadClientSummary)(nil), // 144: google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary + (*resources.OfflineConversionUploadConversionActionSummary)(nil), // 145: google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary + (*resources.OfflineUserDataJob)(nil), // 146: google.ads.googleads.v22.resources.OfflineUserDataJob + (*resources.OperatingSystemVersionConstant)(nil), // 147: google.ads.googleads.v22.resources.OperatingSystemVersionConstant + (*resources.PaidOrganicSearchTermView)(nil), // 148: google.ads.googleads.v22.resources.PaidOrganicSearchTermView + (*resources.QualifyingQuestion)(nil), // 149: google.ads.googleads.v22.resources.QualifyingQuestion + (*resources.ParentalStatusView)(nil), // 150: google.ads.googleads.v22.resources.ParentalStatusView + (*resources.PerStoreView)(nil), // 151: google.ads.googleads.v22.resources.PerStoreView + (*resources.PerformanceMaxPlacementView)(nil), // 152: google.ads.googleads.v22.resources.PerformanceMaxPlacementView + (*resources.ProductCategoryConstant)(nil), // 153: google.ads.googleads.v22.resources.ProductCategoryConstant + (*resources.ProductGroupView)(nil), // 154: google.ads.googleads.v22.resources.ProductGroupView + (*resources.ProductLink)(nil), // 155: google.ads.googleads.v22.resources.ProductLink + (*resources.ProductLinkInvitation)(nil), // 156: google.ads.googleads.v22.resources.ProductLinkInvitation + (*resources.Recommendation)(nil), // 157: google.ads.googleads.v22.resources.Recommendation + (*resources.RecommendationSubscription)(nil), // 158: google.ads.googleads.v22.resources.RecommendationSubscription + (*resources.SearchTermView)(nil), // 159: google.ads.googleads.v22.resources.SearchTermView + (*resources.SharedCriterion)(nil), // 160: google.ads.googleads.v22.resources.SharedCriterion + (*resources.SharedSet)(nil), // 161: google.ads.googleads.v22.resources.SharedSet + (*resources.SmartCampaignSetting)(nil), // 162: google.ads.googleads.v22.resources.SmartCampaignSetting + (*resources.ShoppingPerformanceView)(nil), // 163: google.ads.googleads.v22.resources.ShoppingPerformanceView + (*resources.ShoppingProduct)(nil), // 164: google.ads.googleads.v22.resources.ShoppingProduct + (*resources.SmartCampaignSearchTermView)(nil), // 165: google.ads.googleads.v22.resources.SmartCampaignSearchTermView + (*resources.TargetingExpansionView)(nil), // 166: google.ads.googleads.v22.resources.TargetingExpansionView + (*resources.ThirdPartyAppAnalyticsLink)(nil), // 167: google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLink + (*resources.TopicView)(nil), // 168: google.ads.googleads.v22.resources.TopicView + (*resources.TravelActivityGroupView)(nil), // 169: google.ads.googleads.v22.resources.TravelActivityGroupView + (*resources.TravelActivityPerformanceView)(nil), // 170: google.ads.googleads.v22.resources.TravelActivityPerformanceView + (*resources.Experiment)(nil), // 171: google.ads.googleads.v22.resources.Experiment + (*resources.ExperimentArm)(nil), // 172: google.ads.googleads.v22.resources.ExperimentArm + (*resources.UserInterest)(nil), // 173: google.ads.googleads.v22.resources.UserInterest + (*resources.LifeEvent)(nil), // 174: google.ads.googleads.v22.resources.LifeEvent + (*resources.UserList)(nil), // 175: google.ads.googleads.v22.resources.UserList + (*resources.UserListCustomerType)(nil), // 176: google.ads.googleads.v22.resources.UserListCustomerType + (*resources.UserLocationView)(nil), // 177: google.ads.googleads.v22.resources.UserLocationView + (*resources.RemarketingAction)(nil), // 178: google.ads.googleads.v22.resources.RemarketingAction + (*resources.TopicConstant)(nil), // 179: google.ads.googleads.v22.resources.TopicConstant + (*resources.Video)(nil), // 180: google.ads.googleads.v22.resources.Video + (*resources.WebpageView)(nil), // 181: google.ads.googleads.v22.resources.WebpageView + (*resources.LeadFormSubmissionData)(nil), // 182: google.ads.googleads.v22.resources.LeadFormSubmissionData + (*resources.LocalServicesLead)(nil), // 183: google.ads.googleads.v22.resources.LocalServicesLead + (*resources.LocalServicesLeadConversation)(nil), // 184: google.ads.googleads.v22.resources.LocalServicesLeadConversation + (*resources.AndroidPrivacySharedKeyGoogleAdGroup)(nil), // 185: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleAdGroup + (*resources.AndroidPrivacySharedKeyGoogleCampaign)(nil), // 186: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleCampaign + (*resources.AndroidPrivacySharedKeyGoogleNetworkType)(nil), // 187: google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleNetworkType + (*common.Metrics)(nil), // 188: google.ads.googleads.v22.common.Metrics + (*common.Segments)(nil), // 189: google.ads.googleads.v22.common.Segments + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 190: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*status.Status)(nil), // 191: google.rpc.Status + (*AdGroupAdLabelOperation)(nil), // 192: google.ads.googleads.v22.services.AdGroupAdLabelOperation + (*AdGroupAdOperation)(nil), // 193: google.ads.googleads.v22.services.AdGroupAdOperation + (*AdGroupAssetOperation)(nil), // 194: google.ads.googleads.v22.services.AdGroupAssetOperation + (*AdGroupBidModifierOperation)(nil), // 195: google.ads.googleads.v22.services.AdGroupBidModifierOperation + (*AdGroupCriterionCustomizerOperation)(nil), // 196: google.ads.googleads.v22.services.AdGroupCriterionCustomizerOperation + (*AdGroupCriterionLabelOperation)(nil), // 197: google.ads.googleads.v22.services.AdGroupCriterionLabelOperation + (*AdGroupCriterionOperation)(nil), // 198: google.ads.googleads.v22.services.AdGroupCriterionOperation + (*AdGroupCustomizerOperation)(nil), // 199: google.ads.googleads.v22.services.AdGroupCustomizerOperation + (*AdGroupLabelOperation)(nil), // 200: google.ads.googleads.v22.services.AdGroupLabelOperation + (*AdGroupOperation)(nil), // 201: google.ads.googleads.v22.services.AdGroupOperation + (*AdOperation)(nil), // 202: google.ads.googleads.v22.services.AdOperation + (*AdParameterOperation)(nil), // 203: google.ads.googleads.v22.services.AdParameterOperation + (*AssetOperation)(nil), // 204: google.ads.googleads.v22.services.AssetOperation + (*AssetGroupAssetOperation)(nil), // 205: google.ads.googleads.v22.services.AssetGroupAssetOperation + (*AssetGroupListingGroupFilterOperation)(nil), // 206: google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation + (*AssetGroupSignalOperation)(nil), // 207: google.ads.googleads.v22.services.AssetGroupSignalOperation + (*AssetGroupOperation)(nil), // 208: google.ads.googleads.v22.services.AssetGroupOperation + (*AssetSetAssetOperation)(nil), // 209: google.ads.googleads.v22.services.AssetSetAssetOperation + (*AssetSetOperation)(nil), // 210: google.ads.googleads.v22.services.AssetSetOperation + (*AudienceOperation)(nil), // 211: google.ads.googleads.v22.services.AudienceOperation + (*BiddingDataExclusionOperation)(nil), // 212: google.ads.googleads.v22.services.BiddingDataExclusionOperation + (*BiddingSeasonalityAdjustmentOperation)(nil), // 213: google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation + (*BiddingStrategyOperation)(nil), // 214: google.ads.googleads.v22.services.BiddingStrategyOperation + (*CampaignAssetOperation)(nil), // 215: google.ads.googleads.v22.services.CampaignAssetOperation + (*CampaignAssetSetOperation)(nil), // 216: google.ads.googleads.v22.services.CampaignAssetSetOperation + (*CampaignBidModifierOperation)(nil), // 217: google.ads.googleads.v22.services.CampaignBidModifierOperation + (*CampaignBudgetOperation)(nil), // 218: google.ads.googleads.v22.services.CampaignBudgetOperation + (*CampaignConversionGoalOperation)(nil), // 219: google.ads.googleads.v22.services.CampaignConversionGoalOperation + (*CampaignCriterionOperation)(nil), // 220: google.ads.googleads.v22.services.CampaignCriterionOperation + (*CampaignCustomizerOperation)(nil), // 221: google.ads.googleads.v22.services.CampaignCustomizerOperation + (*CampaignDraftOperation)(nil), // 222: google.ads.googleads.v22.services.CampaignDraftOperation + (*CampaignGroupOperation)(nil), // 223: google.ads.googleads.v22.services.CampaignGroupOperation + (*CampaignLabelOperation)(nil), // 224: google.ads.googleads.v22.services.CampaignLabelOperation + (*CampaignOperation)(nil), // 225: google.ads.googleads.v22.services.CampaignOperation + (*CampaignSharedSetOperation)(nil), // 226: google.ads.googleads.v22.services.CampaignSharedSetOperation + (*ConversionActionOperation)(nil), // 227: google.ads.googleads.v22.services.ConversionActionOperation + (*ConversionCustomVariableOperation)(nil), // 228: google.ads.googleads.v22.services.ConversionCustomVariableOperation + (*ConversionGoalCampaignConfigOperation)(nil), // 229: google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation + (*ConversionValueRuleOperation)(nil), // 230: google.ads.googleads.v22.services.ConversionValueRuleOperation + (*ConversionValueRuleSetOperation)(nil), // 231: google.ads.googleads.v22.services.ConversionValueRuleSetOperation + (*CustomConversionGoalOperation)(nil), // 232: google.ads.googleads.v22.services.CustomConversionGoalOperation + (*CustomerAssetOperation)(nil), // 233: google.ads.googleads.v22.services.CustomerAssetOperation + (*CustomerConversionGoalOperation)(nil), // 234: google.ads.googleads.v22.services.CustomerConversionGoalOperation + (*CustomerCustomizerOperation)(nil), // 235: google.ads.googleads.v22.services.CustomerCustomizerOperation + (*CustomerLabelOperation)(nil), // 236: google.ads.googleads.v22.services.CustomerLabelOperation + (*CustomerNegativeCriterionOperation)(nil), // 237: google.ads.googleads.v22.services.CustomerNegativeCriterionOperation + (*CustomerOperation)(nil), // 238: google.ads.googleads.v22.services.CustomerOperation + (*CustomizerAttributeOperation)(nil), // 239: google.ads.googleads.v22.services.CustomizerAttributeOperation + (*ExperimentOperation)(nil), // 240: google.ads.googleads.v22.services.ExperimentOperation + (*ExperimentArmOperation)(nil), // 241: google.ads.googleads.v22.services.ExperimentArmOperation + (*KeywordPlanAdGroupOperation)(nil), // 242: google.ads.googleads.v22.services.KeywordPlanAdGroupOperation + (*KeywordPlanAdGroupKeywordOperation)(nil), // 243: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation + (*KeywordPlanCampaignKeywordOperation)(nil), // 244: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation + (*KeywordPlanCampaignOperation)(nil), // 245: google.ads.googleads.v22.services.KeywordPlanCampaignOperation + (*KeywordPlanOperation)(nil), // 246: google.ads.googleads.v22.services.KeywordPlanOperation + (*LabelOperation)(nil), // 247: google.ads.googleads.v22.services.LabelOperation + (*RecommendationSubscriptionOperation)(nil), // 248: google.ads.googleads.v22.services.RecommendationSubscriptionOperation + (*RemarketingActionOperation)(nil), // 249: google.ads.googleads.v22.services.RemarketingActionOperation + (*SharedCriterionOperation)(nil), // 250: google.ads.googleads.v22.services.SharedCriterionOperation + (*SharedSetOperation)(nil), // 251: google.ads.googleads.v22.services.SharedSetOperation + (*SmartCampaignSettingOperation)(nil), // 252: google.ads.googleads.v22.services.SmartCampaignSettingOperation + (*UserListOperation)(nil), // 253: google.ads.googleads.v22.services.UserListOperation + (*MutateAdGroupAdLabelResult)(nil), // 254: google.ads.googleads.v22.services.MutateAdGroupAdLabelResult + (*MutateAdGroupAdResult)(nil), // 255: google.ads.googleads.v22.services.MutateAdGroupAdResult + (*MutateAdGroupAssetResult)(nil), // 256: google.ads.googleads.v22.services.MutateAdGroupAssetResult + (*MutateAdGroupBidModifierResult)(nil), // 257: google.ads.googleads.v22.services.MutateAdGroupBidModifierResult + (*MutateAdGroupCriterionCustomizerResult)(nil), // 258: google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizerResult + (*MutateAdGroupCriterionLabelResult)(nil), // 259: google.ads.googleads.v22.services.MutateAdGroupCriterionLabelResult + (*MutateAdGroupCriterionResult)(nil), // 260: google.ads.googleads.v22.services.MutateAdGroupCriterionResult + (*MutateAdGroupCustomizerResult)(nil), // 261: google.ads.googleads.v22.services.MutateAdGroupCustomizerResult + (*MutateAdGroupLabelResult)(nil), // 262: google.ads.googleads.v22.services.MutateAdGroupLabelResult + (*MutateAdGroupResult)(nil), // 263: google.ads.googleads.v22.services.MutateAdGroupResult + (*MutateAdParameterResult)(nil), // 264: google.ads.googleads.v22.services.MutateAdParameterResult + (*MutateAdResult)(nil), // 265: google.ads.googleads.v22.services.MutateAdResult + (*MutateAssetResult)(nil), // 266: google.ads.googleads.v22.services.MutateAssetResult + (*MutateAssetGroupAssetResult)(nil), // 267: google.ads.googleads.v22.services.MutateAssetGroupAssetResult + (*MutateAssetGroupListingGroupFilterResult)(nil), // 268: google.ads.googleads.v22.services.MutateAssetGroupListingGroupFilterResult + (*MutateAssetGroupSignalResult)(nil), // 269: google.ads.googleads.v22.services.MutateAssetGroupSignalResult + (*MutateAssetGroupResult)(nil), // 270: google.ads.googleads.v22.services.MutateAssetGroupResult + (*MutateAssetSetAssetResult)(nil), // 271: google.ads.googleads.v22.services.MutateAssetSetAssetResult + (*MutateAssetSetResult)(nil), // 272: google.ads.googleads.v22.services.MutateAssetSetResult + (*MutateAudienceResult)(nil), // 273: google.ads.googleads.v22.services.MutateAudienceResult + (*MutateBiddingDataExclusionsResult)(nil), // 274: google.ads.googleads.v22.services.MutateBiddingDataExclusionsResult + (*MutateBiddingSeasonalityAdjustmentsResult)(nil), // 275: google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResult + (*MutateBiddingStrategyResult)(nil), // 276: google.ads.googleads.v22.services.MutateBiddingStrategyResult + (*MutateCampaignAssetResult)(nil), // 277: google.ads.googleads.v22.services.MutateCampaignAssetResult + (*MutateCampaignAssetSetResult)(nil), // 278: google.ads.googleads.v22.services.MutateCampaignAssetSetResult + (*MutateCampaignBidModifierResult)(nil), // 279: google.ads.googleads.v22.services.MutateCampaignBidModifierResult + (*MutateCampaignBudgetResult)(nil), // 280: google.ads.googleads.v22.services.MutateCampaignBudgetResult + (*MutateCampaignConversionGoalResult)(nil), // 281: google.ads.googleads.v22.services.MutateCampaignConversionGoalResult + (*MutateCampaignCriterionResult)(nil), // 282: google.ads.googleads.v22.services.MutateCampaignCriterionResult + (*MutateCampaignCustomizerResult)(nil), // 283: google.ads.googleads.v22.services.MutateCampaignCustomizerResult + (*MutateCampaignDraftResult)(nil), // 284: google.ads.googleads.v22.services.MutateCampaignDraftResult + (*MutateCampaignGroupResult)(nil), // 285: google.ads.googleads.v22.services.MutateCampaignGroupResult + (*MutateCampaignLabelResult)(nil), // 286: google.ads.googleads.v22.services.MutateCampaignLabelResult + (*MutateCampaignResult)(nil), // 287: google.ads.googleads.v22.services.MutateCampaignResult + (*MutateCampaignSharedSetResult)(nil), // 288: google.ads.googleads.v22.services.MutateCampaignSharedSetResult + (*MutateConversionActionResult)(nil), // 289: google.ads.googleads.v22.services.MutateConversionActionResult + (*MutateConversionCustomVariableResult)(nil), // 290: google.ads.googleads.v22.services.MutateConversionCustomVariableResult + (*MutateConversionGoalCampaignConfigResult)(nil), // 291: google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigResult + (*MutateConversionValueRuleResult)(nil), // 292: google.ads.googleads.v22.services.MutateConversionValueRuleResult + (*MutateConversionValueRuleSetResult)(nil), // 293: google.ads.googleads.v22.services.MutateConversionValueRuleSetResult + (*MutateCustomConversionGoalResult)(nil), // 294: google.ads.googleads.v22.services.MutateCustomConversionGoalResult + (*MutateCustomerAssetResult)(nil), // 295: google.ads.googleads.v22.services.MutateCustomerAssetResult + (*MutateCustomerConversionGoalResult)(nil), // 296: google.ads.googleads.v22.services.MutateCustomerConversionGoalResult + (*MutateCustomerCustomizerResult)(nil), // 297: google.ads.googleads.v22.services.MutateCustomerCustomizerResult + (*MutateCustomerLabelResult)(nil), // 298: google.ads.googleads.v22.services.MutateCustomerLabelResult + (*MutateCustomerNegativeCriteriaResult)(nil), // 299: google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResult + (*MutateCustomerResult)(nil), // 300: google.ads.googleads.v22.services.MutateCustomerResult + (*MutateCustomizerAttributeResult)(nil), // 301: google.ads.googleads.v22.services.MutateCustomizerAttributeResult + (*MutateExperimentResult)(nil), // 302: google.ads.googleads.v22.services.MutateExperimentResult + (*MutateExperimentArmResult)(nil), // 303: google.ads.googleads.v22.services.MutateExperimentArmResult + (*MutateKeywordPlanAdGroupResult)(nil), // 304: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupResult + (*MutateKeywordPlanCampaignResult)(nil), // 305: google.ads.googleads.v22.services.MutateKeywordPlanCampaignResult + (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 306: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordResult + (*MutateKeywordPlanCampaignKeywordResult)(nil), // 307: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordResult + (*MutateKeywordPlansResult)(nil), // 308: google.ads.googleads.v22.services.MutateKeywordPlansResult + (*MutateLabelResult)(nil), // 309: google.ads.googleads.v22.services.MutateLabelResult + (*MutateRecommendationSubscriptionResult)(nil), // 310: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult + (*MutateRemarketingActionResult)(nil), // 311: google.ads.googleads.v22.services.MutateRemarketingActionResult + (*MutateSharedCriterionResult)(nil), // 312: google.ads.googleads.v22.services.MutateSharedCriterionResult + (*MutateSharedSetResult)(nil), // 313: google.ads.googleads.v22.services.MutateSharedSetResult + (*MutateSmartCampaignSettingResult)(nil), // 314: google.ads.googleads.v22.services.MutateSmartCampaignSettingResult + (*MutateUserListResult)(nil), // 315: google.ads.googleads.v22.services.MutateUserListResult +} +var file_google_ads_googleads_v22_services_google_ads_service_proto_depIdxs = []int32{ + 9, // 0: google.ads.googleads.v22.services.SearchGoogleAdsRequest.search_settings:type_name -> google.ads.googleads.v22.services.SearchSettings + 4, // 1: google.ads.googleads.v22.services.SearchGoogleAdsResponse.results:type_name -> google.ads.googleads.v22.services.GoogleAdsRow + 10, // 2: google.ads.googleads.v22.services.SearchGoogleAdsResponse.field_mask:type_name -> google.protobuf.FieldMask + 4, // 3: google.ads.googleads.v22.services.SearchGoogleAdsResponse.summary_row:type_name -> google.ads.googleads.v22.services.GoogleAdsRow + 11, // 4: google.ads.googleads.v22.services.SearchGoogleAdsStreamRequest.summary_row_setting:type_name -> google.ads.googleads.v22.enums.SummaryRowSettingEnum.SummaryRowSetting + 4, // 5: google.ads.googleads.v22.services.SearchGoogleAdsStreamResponse.results:type_name -> google.ads.googleads.v22.services.GoogleAdsRow + 10, // 6: google.ads.googleads.v22.services.SearchGoogleAdsStreamResponse.field_mask:type_name -> google.protobuf.FieldMask + 4, // 7: google.ads.googleads.v22.services.SearchGoogleAdsStreamResponse.summary_row:type_name -> google.ads.googleads.v22.services.GoogleAdsRow + 12, // 8: google.ads.googleads.v22.services.GoogleAdsRow.account_budget:type_name -> google.ads.googleads.v22.resources.AccountBudget + 13, // 9: google.ads.googleads.v22.services.GoogleAdsRow.account_budget_proposal:type_name -> google.ads.googleads.v22.resources.AccountBudgetProposal + 14, // 10: google.ads.googleads.v22.services.GoogleAdsRow.account_link:type_name -> google.ads.googleads.v22.resources.AccountLink + 15, // 11: google.ads.googleads.v22.services.GoogleAdsRow.ad:type_name -> google.ads.googleads.v22.resources.Ad + 16, // 12: google.ads.googleads.v22.services.GoogleAdsRow.ad_group:type_name -> google.ads.googleads.v22.resources.AdGroup + 17, // 13: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_ad:type_name -> google.ads.googleads.v22.resources.AdGroupAd + 18, // 14: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_ad_asset_combination_view:type_name -> google.ads.googleads.v22.resources.AdGroupAdAssetCombinationView + 19, // 15: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_ad_asset_view:type_name -> google.ads.googleads.v22.resources.AdGroupAdAssetView + 20, // 16: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_ad_label:type_name -> google.ads.googleads.v22.resources.AdGroupAdLabel + 21, // 17: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_asset:type_name -> google.ads.googleads.v22.resources.AdGroupAsset + 22, // 18: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_asset_set:type_name -> google.ads.googleads.v22.resources.AdGroupAssetSet + 23, // 19: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_audience_view:type_name -> google.ads.googleads.v22.resources.AdGroupAudienceView + 24, // 20: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_bid_modifier:type_name -> google.ads.googleads.v22.resources.AdGroupBidModifier + 25, // 21: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_criterion:type_name -> google.ads.googleads.v22.resources.AdGroupCriterion + 26, // 22: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_criterion_customizer:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionCustomizer + 27, // 23: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_criterion_label:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionLabel + 28, // 24: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_criterion_simulation:type_name -> google.ads.googleads.v22.resources.AdGroupCriterionSimulation + 29, // 25: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_customizer:type_name -> google.ads.googleads.v22.resources.AdGroupCustomizer + 30, // 26: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_label:type_name -> google.ads.googleads.v22.resources.AdGroupLabel + 31, // 27: google.ads.googleads.v22.services.GoogleAdsRow.ad_group_simulation:type_name -> google.ads.googleads.v22.resources.AdGroupSimulation + 32, // 28: google.ads.googleads.v22.services.GoogleAdsRow.ad_parameter:type_name -> google.ads.googleads.v22.resources.AdParameter + 33, // 29: google.ads.googleads.v22.services.GoogleAdsRow.age_range_view:type_name -> google.ads.googleads.v22.resources.AgeRangeView + 34, // 30: google.ads.googleads.v22.services.GoogleAdsRow.ad_schedule_view:type_name -> google.ads.googleads.v22.resources.AdScheduleView + 35, // 31: google.ads.googleads.v22.services.GoogleAdsRow.ai_max_search_term_ad_combination_view:type_name -> google.ads.googleads.v22.resources.AiMaxSearchTermAdCombinationView + 36, // 32: google.ads.googleads.v22.services.GoogleAdsRow.domain_category:type_name -> google.ads.googleads.v22.resources.DomainCategory + 37, // 33: google.ads.googleads.v22.services.GoogleAdsRow.asset:type_name -> google.ads.googleads.v22.resources.Asset + 38, // 34: google.ads.googleads.v22.services.GoogleAdsRow.asset_field_type_view:type_name -> google.ads.googleads.v22.resources.AssetFieldTypeView + 39, // 35: google.ads.googleads.v22.services.GoogleAdsRow.channel_aggregate_asset_view:type_name -> google.ads.googleads.v22.resources.ChannelAggregateAssetView + 40, // 36: google.ads.googleads.v22.services.GoogleAdsRow.campaign_aggregate_asset_view:type_name -> google.ads.googleads.v22.resources.CampaignAggregateAssetView + 41, // 37: google.ads.googleads.v22.services.GoogleAdsRow.asset_group_asset:type_name -> google.ads.googleads.v22.resources.AssetGroupAsset + 42, // 38: google.ads.googleads.v22.services.GoogleAdsRow.asset_group_signal:type_name -> google.ads.googleads.v22.resources.AssetGroupSignal + 43, // 39: google.ads.googleads.v22.services.GoogleAdsRow.asset_group_listing_group_filter:type_name -> google.ads.googleads.v22.resources.AssetGroupListingGroupFilter + 44, // 40: google.ads.googleads.v22.services.GoogleAdsRow.asset_group_product_group_view:type_name -> google.ads.googleads.v22.resources.AssetGroupProductGroupView + 45, // 41: google.ads.googleads.v22.services.GoogleAdsRow.asset_group_top_combination_view:type_name -> google.ads.googleads.v22.resources.AssetGroupTopCombinationView + 46, // 42: google.ads.googleads.v22.services.GoogleAdsRow.asset_group:type_name -> google.ads.googleads.v22.resources.AssetGroup + 47, // 43: google.ads.googleads.v22.services.GoogleAdsRow.asset_set_asset:type_name -> google.ads.googleads.v22.resources.AssetSetAsset + 48, // 44: google.ads.googleads.v22.services.GoogleAdsRow.asset_set:type_name -> google.ads.googleads.v22.resources.AssetSet + 49, // 45: google.ads.googleads.v22.services.GoogleAdsRow.asset_set_type_view:type_name -> google.ads.googleads.v22.resources.AssetSetTypeView + 50, // 46: google.ads.googleads.v22.services.GoogleAdsRow.batch_job:type_name -> google.ads.googleads.v22.resources.BatchJob + 51, // 47: google.ads.googleads.v22.services.GoogleAdsRow.bidding_data_exclusion:type_name -> google.ads.googleads.v22.resources.BiddingDataExclusion + 52, // 48: google.ads.googleads.v22.services.GoogleAdsRow.bidding_seasonality_adjustment:type_name -> google.ads.googleads.v22.resources.BiddingSeasonalityAdjustment + 53, // 49: google.ads.googleads.v22.services.GoogleAdsRow.bidding_strategy:type_name -> google.ads.googleads.v22.resources.BiddingStrategy + 54, // 50: google.ads.googleads.v22.services.GoogleAdsRow.bidding_strategy_simulation:type_name -> google.ads.googleads.v22.resources.BiddingStrategySimulation + 55, // 51: google.ads.googleads.v22.services.GoogleAdsRow.billing_setup:type_name -> google.ads.googleads.v22.resources.BillingSetup + 56, // 52: google.ads.googleads.v22.services.GoogleAdsRow.call_view:type_name -> google.ads.googleads.v22.resources.CallView + 57, // 53: google.ads.googleads.v22.services.GoogleAdsRow.campaign_budget:type_name -> google.ads.googleads.v22.resources.CampaignBudget + 58, // 54: google.ads.googleads.v22.services.GoogleAdsRow.campaign:type_name -> google.ads.googleads.v22.resources.Campaign + 59, // 55: google.ads.googleads.v22.services.GoogleAdsRow.campaign_asset:type_name -> google.ads.googleads.v22.resources.CampaignAsset + 60, // 56: google.ads.googleads.v22.services.GoogleAdsRow.campaign_asset_set:type_name -> google.ads.googleads.v22.resources.CampaignAssetSet + 61, // 57: google.ads.googleads.v22.services.GoogleAdsRow.campaign_audience_view:type_name -> google.ads.googleads.v22.resources.CampaignAudienceView + 62, // 58: google.ads.googleads.v22.services.GoogleAdsRow.campaign_bid_modifier:type_name -> google.ads.googleads.v22.resources.CampaignBidModifier + 63, // 59: google.ads.googleads.v22.services.GoogleAdsRow.campaign_conversion_goal:type_name -> google.ads.googleads.v22.resources.CampaignConversionGoal + 64, // 60: google.ads.googleads.v22.services.GoogleAdsRow.campaign_criterion:type_name -> google.ads.googleads.v22.resources.CampaignCriterion + 65, // 61: google.ads.googleads.v22.services.GoogleAdsRow.campaign_customizer:type_name -> google.ads.googleads.v22.resources.CampaignCustomizer + 66, // 62: google.ads.googleads.v22.services.GoogleAdsRow.campaign_draft:type_name -> google.ads.googleads.v22.resources.CampaignDraft + 67, // 63: google.ads.googleads.v22.services.GoogleAdsRow.campaign_group:type_name -> google.ads.googleads.v22.resources.CampaignGroup + 68, // 64: google.ads.googleads.v22.services.GoogleAdsRow.campaign_goal_config:type_name -> google.ads.googleads.v22.resources.CampaignGoalConfig + 69, // 65: google.ads.googleads.v22.services.GoogleAdsRow.campaign_label:type_name -> google.ads.googleads.v22.resources.CampaignLabel + 70, // 66: google.ads.googleads.v22.services.GoogleAdsRow.campaign_lifecycle_goal:type_name -> google.ads.googleads.v22.resources.CampaignLifecycleGoal + 71, // 67: google.ads.googleads.v22.services.GoogleAdsRow.campaign_search_term_insight:type_name -> google.ads.googleads.v22.resources.CampaignSearchTermInsight + 72, // 68: google.ads.googleads.v22.services.GoogleAdsRow.campaign_search_term_view:type_name -> google.ads.googleads.v22.resources.CampaignSearchTermView + 73, // 69: google.ads.googleads.v22.services.GoogleAdsRow.campaign_shared_set:type_name -> google.ads.googleads.v22.resources.CampaignSharedSet + 74, // 70: google.ads.googleads.v22.services.GoogleAdsRow.campaign_simulation:type_name -> google.ads.googleads.v22.resources.CampaignSimulation + 75, // 71: google.ads.googleads.v22.services.GoogleAdsRow.carrier_constant:type_name -> google.ads.googleads.v22.resources.CarrierConstant + 76, // 72: google.ads.googleads.v22.services.GoogleAdsRow.change_event:type_name -> google.ads.googleads.v22.resources.ChangeEvent + 77, // 73: google.ads.googleads.v22.services.GoogleAdsRow.change_status:type_name -> google.ads.googleads.v22.resources.ChangeStatus + 78, // 74: google.ads.googleads.v22.services.GoogleAdsRow.combined_audience:type_name -> google.ads.googleads.v22.resources.CombinedAudience + 79, // 75: google.ads.googleads.v22.services.GoogleAdsRow.audience:type_name -> google.ads.googleads.v22.resources.Audience + 80, // 76: google.ads.googleads.v22.services.GoogleAdsRow.conversion_action:type_name -> google.ads.googleads.v22.resources.ConversionAction + 81, // 77: google.ads.googleads.v22.services.GoogleAdsRow.conversion_custom_variable:type_name -> google.ads.googleads.v22.resources.ConversionCustomVariable + 82, // 78: google.ads.googleads.v22.services.GoogleAdsRow.conversion_goal_campaign_config:type_name -> google.ads.googleads.v22.resources.ConversionGoalCampaignConfig + 83, // 79: google.ads.googleads.v22.services.GoogleAdsRow.conversion_value_rule:type_name -> google.ads.googleads.v22.resources.ConversionValueRule + 84, // 80: google.ads.googleads.v22.services.GoogleAdsRow.conversion_value_rule_set:type_name -> google.ads.googleads.v22.resources.ConversionValueRuleSet + 85, // 81: google.ads.googleads.v22.services.GoogleAdsRow.click_view:type_name -> google.ads.googleads.v22.resources.ClickView + 86, // 82: google.ads.googleads.v22.services.GoogleAdsRow.currency_constant:type_name -> google.ads.googleads.v22.resources.CurrencyConstant + 87, // 83: google.ads.googleads.v22.services.GoogleAdsRow.custom_audience:type_name -> google.ads.googleads.v22.resources.CustomAudience + 88, // 84: google.ads.googleads.v22.services.GoogleAdsRow.custom_conversion_goal:type_name -> google.ads.googleads.v22.resources.CustomConversionGoal + 89, // 85: google.ads.googleads.v22.services.GoogleAdsRow.custom_interest:type_name -> google.ads.googleads.v22.resources.CustomInterest + 90, // 86: google.ads.googleads.v22.services.GoogleAdsRow.customer:type_name -> google.ads.googleads.v22.resources.Customer + 91, // 87: google.ads.googleads.v22.services.GoogleAdsRow.customer_asset:type_name -> google.ads.googleads.v22.resources.CustomerAsset + 92, // 88: google.ads.googleads.v22.services.GoogleAdsRow.customer_asset_set:type_name -> google.ads.googleads.v22.resources.CustomerAssetSet + 93, // 89: google.ads.googleads.v22.services.GoogleAdsRow.accessible_bidding_strategy:type_name -> google.ads.googleads.v22.resources.AccessibleBiddingStrategy + 94, // 90: google.ads.googleads.v22.services.GoogleAdsRow.customer_customizer:type_name -> google.ads.googleads.v22.resources.CustomerCustomizer + 95, // 91: google.ads.googleads.v22.services.GoogleAdsRow.customer_manager_link:type_name -> google.ads.googleads.v22.resources.CustomerManagerLink + 96, // 92: google.ads.googleads.v22.services.GoogleAdsRow.customer_client_link:type_name -> google.ads.googleads.v22.resources.CustomerClientLink + 97, // 93: google.ads.googleads.v22.services.GoogleAdsRow.customer_client:type_name -> google.ads.googleads.v22.resources.CustomerClient + 98, // 94: google.ads.googleads.v22.services.GoogleAdsRow.customer_conversion_goal:type_name -> google.ads.googleads.v22.resources.CustomerConversionGoal + 99, // 95: google.ads.googleads.v22.services.GoogleAdsRow.customer_label:type_name -> google.ads.googleads.v22.resources.CustomerLabel + 100, // 96: google.ads.googleads.v22.services.GoogleAdsRow.customer_lifecycle_goal:type_name -> google.ads.googleads.v22.resources.CustomerLifecycleGoal + 101, // 97: google.ads.googleads.v22.services.GoogleAdsRow.customer_negative_criterion:type_name -> google.ads.googleads.v22.resources.CustomerNegativeCriterion + 102, // 98: google.ads.googleads.v22.services.GoogleAdsRow.customer_search_term_insight:type_name -> google.ads.googleads.v22.resources.CustomerSearchTermInsight + 103, // 99: google.ads.googleads.v22.services.GoogleAdsRow.customer_user_access:type_name -> google.ads.googleads.v22.resources.CustomerUserAccess + 104, // 100: google.ads.googleads.v22.services.GoogleAdsRow.customer_user_access_invitation:type_name -> google.ads.googleads.v22.resources.CustomerUserAccessInvitation + 105, // 101: google.ads.googleads.v22.services.GoogleAdsRow.customizer_attribute:type_name -> google.ads.googleads.v22.resources.CustomizerAttribute + 106, // 102: google.ads.googleads.v22.services.GoogleAdsRow.data_link:type_name -> google.ads.googleads.v22.resources.DataLink + 107, // 103: google.ads.googleads.v22.services.GoogleAdsRow.detail_content_suitability_placement_view:type_name -> google.ads.googleads.v22.resources.DetailContentSuitabilityPlacementView + 108, // 104: google.ads.googleads.v22.services.GoogleAdsRow.detail_placement_view:type_name -> google.ads.googleads.v22.resources.DetailPlacementView + 109, // 105: google.ads.googleads.v22.services.GoogleAdsRow.detailed_demographic:type_name -> google.ads.googleads.v22.resources.DetailedDemographic + 110, // 106: google.ads.googleads.v22.services.GoogleAdsRow.display_keyword_view:type_name -> google.ads.googleads.v22.resources.DisplayKeywordView + 111, // 107: google.ads.googleads.v22.services.GoogleAdsRow.distance_view:type_name -> google.ads.googleads.v22.resources.DistanceView + 112, // 108: google.ads.googleads.v22.services.GoogleAdsRow.dynamic_search_ads_search_term_view:type_name -> google.ads.googleads.v22.resources.DynamicSearchAdsSearchTermView + 113, // 109: google.ads.googleads.v22.services.GoogleAdsRow.expanded_landing_page_view:type_name -> google.ads.googleads.v22.resources.ExpandedLandingPageView + 114, // 110: google.ads.googleads.v22.services.GoogleAdsRow.final_url_expansion_asset_view:type_name -> google.ads.googleads.v22.resources.FinalUrlExpansionAssetView + 115, // 111: google.ads.googleads.v22.services.GoogleAdsRow.gender_view:type_name -> google.ads.googleads.v22.resources.GenderView + 116, // 112: google.ads.googleads.v22.services.GoogleAdsRow.geo_target_constant:type_name -> google.ads.googleads.v22.resources.GeoTargetConstant + 117, // 113: google.ads.googleads.v22.services.GoogleAdsRow.geographic_view:type_name -> google.ads.googleads.v22.resources.GeographicView + 118, // 114: google.ads.googleads.v22.services.GoogleAdsRow.goal:type_name -> google.ads.googleads.v22.resources.Goal + 119, // 115: google.ads.googleads.v22.services.GoogleAdsRow.group_content_suitability_placement_view:type_name -> google.ads.googleads.v22.resources.GroupContentSuitabilityPlacementView + 120, // 116: google.ads.googleads.v22.services.GoogleAdsRow.group_placement_view:type_name -> google.ads.googleads.v22.resources.GroupPlacementView + 121, // 117: google.ads.googleads.v22.services.GoogleAdsRow.hotel_group_view:type_name -> google.ads.googleads.v22.resources.HotelGroupView + 122, // 118: google.ads.googleads.v22.services.GoogleAdsRow.hotel_performance_view:type_name -> google.ads.googleads.v22.resources.HotelPerformanceView + 123, // 119: google.ads.googleads.v22.services.GoogleAdsRow.hotel_reconciliation:type_name -> google.ads.googleads.v22.resources.HotelReconciliation + 124, // 120: google.ads.googleads.v22.services.GoogleAdsRow.income_range_view:type_name -> google.ads.googleads.v22.resources.IncomeRangeView + 125, // 121: google.ads.googleads.v22.services.GoogleAdsRow.keyword_view:type_name -> google.ads.googleads.v22.resources.KeywordView + 126, // 122: google.ads.googleads.v22.services.GoogleAdsRow.keyword_plan:type_name -> google.ads.googleads.v22.resources.KeywordPlan + 127, // 123: google.ads.googleads.v22.services.GoogleAdsRow.keyword_plan_campaign:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaign + 128, // 124: google.ads.googleads.v22.services.GoogleAdsRow.keyword_plan_campaign_keyword:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword + 129, // 125: google.ads.googleads.v22.services.GoogleAdsRow.keyword_plan_ad_group:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroup + 130, // 126: google.ads.googleads.v22.services.GoogleAdsRow.keyword_plan_ad_group_keyword:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword + 131, // 127: google.ads.googleads.v22.services.GoogleAdsRow.keyword_theme_constant:type_name -> google.ads.googleads.v22.resources.KeywordThemeConstant + 132, // 128: google.ads.googleads.v22.services.GoogleAdsRow.label:type_name -> google.ads.googleads.v22.resources.Label + 133, // 129: google.ads.googleads.v22.services.GoogleAdsRow.landing_page_view:type_name -> google.ads.googleads.v22.resources.LandingPageView + 134, // 130: google.ads.googleads.v22.services.GoogleAdsRow.language_constant:type_name -> google.ads.googleads.v22.resources.LanguageConstant + 135, // 131: google.ads.googleads.v22.services.GoogleAdsRow.location_view:type_name -> google.ads.googleads.v22.resources.LocationView + 136, // 132: google.ads.googleads.v22.services.GoogleAdsRow.location_interest_view:type_name -> google.ads.googleads.v22.resources.LocationInterestView + 137, // 133: google.ads.googleads.v22.services.GoogleAdsRow.managed_placement_view:type_name -> google.ads.googleads.v22.resources.ManagedPlacementView + 138, // 134: google.ads.googleads.v22.services.GoogleAdsRow.content_criterion_view:type_name -> google.ads.googleads.v22.resources.ContentCriterionView + 139, // 135: google.ads.googleads.v22.services.GoogleAdsRow.media_file:type_name -> google.ads.googleads.v22.resources.MediaFile + 140, // 136: google.ads.googleads.v22.services.GoogleAdsRow.local_services_employee:type_name -> google.ads.googleads.v22.resources.LocalServicesEmployee + 141, // 137: google.ads.googleads.v22.services.GoogleAdsRow.local_services_verification_artifact:type_name -> google.ads.googleads.v22.resources.LocalServicesVerificationArtifact + 142, // 138: google.ads.googleads.v22.services.GoogleAdsRow.mobile_app_category_constant:type_name -> google.ads.googleads.v22.resources.MobileAppCategoryConstant + 143, // 139: google.ads.googleads.v22.services.GoogleAdsRow.mobile_device_constant:type_name -> google.ads.googleads.v22.resources.MobileDeviceConstant + 144, // 140: google.ads.googleads.v22.services.GoogleAdsRow.offline_conversion_upload_client_summary:type_name -> google.ads.googleads.v22.resources.OfflineConversionUploadClientSummary + 145, // 141: google.ads.googleads.v22.services.GoogleAdsRow.offline_conversion_upload_conversion_action_summary:type_name -> google.ads.googleads.v22.resources.OfflineConversionUploadConversionActionSummary + 146, // 142: google.ads.googleads.v22.services.GoogleAdsRow.offline_user_data_job:type_name -> google.ads.googleads.v22.resources.OfflineUserDataJob + 147, // 143: google.ads.googleads.v22.services.GoogleAdsRow.operating_system_version_constant:type_name -> google.ads.googleads.v22.resources.OperatingSystemVersionConstant + 148, // 144: google.ads.googleads.v22.services.GoogleAdsRow.paid_organic_search_term_view:type_name -> google.ads.googleads.v22.resources.PaidOrganicSearchTermView + 149, // 145: google.ads.googleads.v22.services.GoogleAdsRow.qualifying_question:type_name -> google.ads.googleads.v22.resources.QualifyingQuestion + 150, // 146: google.ads.googleads.v22.services.GoogleAdsRow.parental_status_view:type_name -> google.ads.googleads.v22.resources.ParentalStatusView + 151, // 147: google.ads.googleads.v22.services.GoogleAdsRow.per_store_view:type_name -> google.ads.googleads.v22.resources.PerStoreView + 152, // 148: google.ads.googleads.v22.services.GoogleAdsRow.performance_max_placement_view:type_name -> google.ads.googleads.v22.resources.PerformanceMaxPlacementView + 153, // 149: google.ads.googleads.v22.services.GoogleAdsRow.product_category_constant:type_name -> google.ads.googleads.v22.resources.ProductCategoryConstant + 154, // 150: google.ads.googleads.v22.services.GoogleAdsRow.product_group_view:type_name -> google.ads.googleads.v22.resources.ProductGroupView + 155, // 151: google.ads.googleads.v22.services.GoogleAdsRow.product_link:type_name -> google.ads.googleads.v22.resources.ProductLink + 156, // 152: google.ads.googleads.v22.services.GoogleAdsRow.product_link_invitation:type_name -> google.ads.googleads.v22.resources.ProductLinkInvitation + 157, // 153: google.ads.googleads.v22.services.GoogleAdsRow.recommendation:type_name -> google.ads.googleads.v22.resources.Recommendation + 158, // 154: google.ads.googleads.v22.services.GoogleAdsRow.recommendation_subscription:type_name -> google.ads.googleads.v22.resources.RecommendationSubscription + 159, // 155: google.ads.googleads.v22.services.GoogleAdsRow.search_term_view:type_name -> google.ads.googleads.v22.resources.SearchTermView + 160, // 156: google.ads.googleads.v22.services.GoogleAdsRow.shared_criterion:type_name -> google.ads.googleads.v22.resources.SharedCriterion + 161, // 157: google.ads.googleads.v22.services.GoogleAdsRow.shared_set:type_name -> google.ads.googleads.v22.resources.SharedSet + 162, // 158: google.ads.googleads.v22.services.GoogleAdsRow.smart_campaign_setting:type_name -> google.ads.googleads.v22.resources.SmartCampaignSetting + 163, // 159: google.ads.googleads.v22.services.GoogleAdsRow.shopping_performance_view:type_name -> google.ads.googleads.v22.resources.ShoppingPerformanceView + 164, // 160: google.ads.googleads.v22.services.GoogleAdsRow.shopping_product:type_name -> google.ads.googleads.v22.resources.ShoppingProduct + 165, // 161: google.ads.googleads.v22.services.GoogleAdsRow.smart_campaign_search_term_view:type_name -> google.ads.googleads.v22.resources.SmartCampaignSearchTermView + 166, // 162: google.ads.googleads.v22.services.GoogleAdsRow.targeting_expansion_view:type_name -> google.ads.googleads.v22.resources.TargetingExpansionView + 167, // 163: google.ads.googleads.v22.services.GoogleAdsRow.third_party_app_analytics_link:type_name -> google.ads.googleads.v22.resources.ThirdPartyAppAnalyticsLink + 168, // 164: google.ads.googleads.v22.services.GoogleAdsRow.topic_view:type_name -> google.ads.googleads.v22.resources.TopicView + 169, // 165: google.ads.googleads.v22.services.GoogleAdsRow.travel_activity_group_view:type_name -> google.ads.googleads.v22.resources.TravelActivityGroupView + 170, // 166: google.ads.googleads.v22.services.GoogleAdsRow.travel_activity_performance_view:type_name -> google.ads.googleads.v22.resources.TravelActivityPerformanceView + 171, // 167: google.ads.googleads.v22.services.GoogleAdsRow.experiment:type_name -> google.ads.googleads.v22.resources.Experiment + 172, // 168: google.ads.googleads.v22.services.GoogleAdsRow.experiment_arm:type_name -> google.ads.googleads.v22.resources.ExperimentArm + 173, // 169: google.ads.googleads.v22.services.GoogleAdsRow.user_interest:type_name -> google.ads.googleads.v22.resources.UserInterest + 174, // 170: google.ads.googleads.v22.services.GoogleAdsRow.life_event:type_name -> google.ads.googleads.v22.resources.LifeEvent + 175, // 171: google.ads.googleads.v22.services.GoogleAdsRow.user_list:type_name -> google.ads.googleads.v22.resources.UserList + 176, // 172: google.ads.googleads.v22.services.GoogleAdsRow.user_list_customer_type:type_name -> google.ads.googleads.v22.resources.UserListCustomerType + 177, // 173: google.ads.googleads.v22.services.GoogleAdsRow.user_location_view:type_name -> google.ads.googleads.v22.resources.UserLocationView + 178, // 174: google.ads.googleads.v22.services.GoogleAdsRow.remarketing_action:type_name -> google.ads.googleads.v22.resources.RemarketingAction + 179, // 175: google.ads.googleads.v22.services.GoogleAdsRow.topic_constant:type_name -> google.ads.googleads.v22.resources.TopicConstant + 180, // 176: google.ads.googleads.v22.services.GoogleAdsRow.video:type_name -> google.ads.googleads.v22.resources.Video + 181, // 177: google.ads.googleads.v22.services.GoogleAdsRow.webpage_view:type_name -> google.ads.googleads.v22.resources.WebpageView + 182, // 178: google.ads.googleads.v22.services.GoogleAdsRow.lead_form_submission_data:type_name -> google.ads.googleads.v22.resources.LeadFormSubmissionData + 183, // 179: google.ads.googleads.v22.services.GoogleAdsRow.local_services_lead:type_name -> google.ads.googleads.v22.resources.LocalServicesLead + 184, // 180: google.ads.googleads.v22.services.GoogleAdsRow.local_services_lead_conversation:type_name -> google.ads.googleads.v22.resources.LocalServicesLeadConversation + 185, // 181: google.ads.googleads.v22.services.GoogleAdsRow.android_privacy_shared_key_google_ad_group:type_name -> google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleAdGroup + 186, // 182: google.ads.googleads.v22.services.GoogleAdsRow.android_privacy_shared_key_google_campaign:type_name -> google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleCampaign + 187, // 183: google.ads.googleads.v22.services.GoogleAdsRow.android_privacy_shared_key_google_network_type:type_name -> google.ads.googleads.v22.resources.AndroidPrivacySharedKeyGoogleNetworkType + 188, // 184: google.ads.googleads.v22.services.GoogleAdsRow.metrics:type_name -> google.ads.googleads.v22.common.Metrics + 189, // 185: google.ads.googleads.v22.services.GoogleAdsRow.segments:type_name -> google.ads.googleads.v22.common.Segments + 7, // 186: google.ads.googleads.v22.services.MutateGoogleAdsRequest.mutate_operations:type_name -> google.ads.googleads.v22.services.MutateOperation + 190, // 187: google.ads.googleads.v22.services.MutateGoogleAdsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 191, // 188: google.ads.googleads.v22.services.MutateGoogleAdsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 189: google.ads.googleads.v22.services.MutateGoogleAdsResponse.mutate_operation_responses:type_name -> google.ads.googleads.v22.services.MutateOperationResponse + 192, // 190: google.ads.googleads.v22.services.MutateOperation.ad_group_ad_label_operation:type_name -> google.ads.googleads.v22.services.AdGroupAdLabelOperation + 193, // 191: google.ads.googleads.v22.services.MutateOperation.ad_group_ad_operation:type_name -> google.ads.googleads.v22.services.AdGroupAdOperation + 194, // 192: google.ads.googleads.v22.services.MutateOperation.ad_group_asset_operation:type_name -> google.ads.googleads.v22.services.AdGroupAssetOperation + 195, // 193: google.ads.googleads.v22.services.MutateOperation.ad_group_bid_modifier_operation:type_name -> google.ads.googleads.v22.services.AdGroupBidModifierOperation + 196, // 194: google.ads.googleads.v22.services.MutateOperation.ad_group_criterion_customizer_operation:type_name -> google.ads.googleads.v22.services.AdGroupCriterionCustomizerOperation + 197, // 195: google.ads.googleads.v22.services.MutateOperation.ad_group_criterion_label_operation:type_name -> google.ads.googleads.v22.services.AdGroupCriterionLabelOperation + 198, // 196: google.ads.googleads.v22.services.MutateOperation.ad_group_criterion_operation:type_name -> google.ads.googleads.v22.services.AdGroupCriterionOperation + 199, // 197: google.ads.googleads.v22.services.MutateOperation.ad_group_customizer_operation:type_name -> google.ads.googleads.v22.services.AdGroupCustomizerOperation + 200, // 198: google.ads.googleads.v22.services.MutateOperation.ad_group_label_operation:type_name -> google.ads.googleads.v22.services.AdGroupLabelOperation + 201, // 199: google.ads.googleads.v22.services.MutateOperation.ad_group_operation:type_name -> google.ads.googleads.v22.services.AdGroupOperation + 202, // 200: google.ads.googleads.v22.services.MutateOperation.ad_operation:type_name -> google.ads.googleads.v22.services.AdOperation + 203, // 201: google.ads.googleads.v22.services.MutateOperation.ad_parameter_operation:type_name -> google.ads.googleads.v22.services.AdParameterOperation + 204, // 202: google.ads.googleads.v22.services.MutateOperation.asset_operation:type_name -> google.ads.googleads.v22.services.AssetOperation + 205, // 203: google.ads.googleads.v22.services.MutateOperation.asset_group_asset_operation:type_name -> google.ads.googleads.v22.services.AssetGroupAssetOperation + 206, // 204: google.ads.googleads.v22.services.MutateOperation.asset_group_listing_group_filter_operation:type_name -> google.ads.googleads.v22.services.AssetGroupListingGroupFilterOperation + 207, // 205: google.ads.googleads.v22.services.MutateOperation.asset_group_signal_operation:type_name -> google.ads.googleads.v22.services.AssetGroupSignalOperation + 208, // 206: google.ads.googleads.v22.services.MutateOperation.asset_group_operation:type_name -> google.ads.googleads.v22.services.AssetGroupOperation + 209, // 207: google.ads.googleads.v22.services.MutateOperation.asset_set_asset_operation:type_name -> google.ads.googleads.v22.services.AssetSetAssetOperation + 210, // 208: google.ads.googleads.v22.services.MutateOperation.asset_set_operation:type_name -> google.ads.googleads.v22.services.AssetSetOperation + 211, // 209: google.ads.googleads.v22.services.MutateOperation.audience_operation:type_name -> google.ads.googleads.v22.services.AudienceOperation + 212, // 210: google.ads.googleads.v22.services.MutateOperation.bidding_data_exclusion_operation:type_name -> google.ads.googleads.v22.services.BiddingDataExclusionOperation + 213, // 211: google.ads.googleads.v22.services.MutateOperation.bidding_seasonality_adjustment_operation:type_name -> google.ads.googleads.v22.services.BiddingSeasonalityAdjustmentOperation + 214, // 212: google.ads.googleads.v22.services.MutateOperation.bidding_strategy_operation:type_name -> google.ads.googleads.v22.services.BiddingStrategyOperation + 215, // 213: google.ads.googleads.v22.services.MutateOperation.campaign_asset_operation:type_name -> google.ads.googleads.v22.services.CampaignAssetOperation + 216, // 214: google.ads.googleads.v22.services.MutateOperation.campaign_asset_set_operation:type_name -> google.ads.googleads.v22.services.CampaignAssetSetOperation + 217, // 215: google.ads.googleads.v22.services.MutateOperation.campaign_bid_modifier_operation:type_name -> google.ads.googleads.v22.services.CampaignBidModifierOperation + 218, // 216: google.ads.googleads.v22.services.MutateOperation.campaign_budget_operation:type_name -> google.ads.googleads.v22.services.CampaignBudgetOperation + 219, // 217: google.ads.googleads.v22.services.MutateOperation.campaign_conversion_goal_operation:type_name -> google.ads.googleads.v22.services.CampaignConversionGoalOperation + 220, // 218: google.ads.googleads.v22.services.MutateOperation.campaign_criterion_operation:type_name -> google.ads.googleads.v22.services.CampaignCriterionOperation + 221, // 219: google.ads.googleads.v22.services.MutateOperation.campaign_customizer_operation:type_name -> google.ads.googleads.v22.services.CampaignCustomizerOperation + 222, // 220: google.ads.googleads.v22.services.MutateOperation.campaign_draft_operation:type_name -> google.ads.googleads.v22.services.CampaignDraftOperation + 223, // 221: google.ads.googleads.v22.services.MutateOperation.campaign_group_operation:type_name -> google.ads.googleads.v22.services.CampaignGroupOperation + 224, // 222: google.ads.googleads.v22.services.MutateOperation.campaign_label_operation:type_name -> google.ads.googleads.v22.services.CampaignLabelOperation + 225, // 223: google.ads.googleads.v22.services.MutateOperation.campaign_operation:type_name -> google.ads.googleads.v22.services.CampaignOperation + 226, // 224: google.ads.googleads.v22.services.MutateOperation.campaign_shared_set_operation:type_name -> google.ads.googleads.v22.services.CampaignSharedSetOperation + 227, // 225: google.ads.googleads.v22.services.MutateOperation.conversion_action_operation:type_name -> google.ads.googleads.v22.services.ConversionActionOperation + 228, // 226: google.ads.googleads.v22.services.MutateOperation.conversion_custom_variable_operation:type_name -> google.ads.googleads.v22.services.ConversionCustomVariableOperation + 229, // 227: google.ads.googleads.v22.services.MutateOperation.conversion_goal_campaign_config_operation:type_name -> google.ads.googleads.v22.services.ConversionGoalCampaignConfigOperation + 230, // 228: google.ads.googleads.v22.services.MutateOperation.conversion_value_rule_operation:type_name -> google.ads.googleads.v22.services.ConversionValueRuleOperation + 231, // 229: google.ads.googleads.v22.services.MutateOperation.conversion_value_rule_set_operation:type_name -> google.ads.googleads.v22.services.ConversionValueRuleSetOperation + 232, // 230: google.ads.googleads.v22.services.MutateOperation.custom_conversion_goal_operation:type_name -> google.ads.googleads.v22.services.CustomConversionGoalOperation + 233, // 231: google.ads.googleads.v22.services.MutateOperation.customer_asset_operation:type_name -> google.ads.googleads.v22.services.CustomerAssetOperation + 234, // 232: google.ads.googleads.v22.services.MutateOperation.customer_conversion_goal_operation:type_name -> google.ads.googleads.v22.services.CustomerConversionGoalOperation + 235, // 233: google.ads.googleads.v22.services.MutateOperation.customer_customizer_operation:type_name -> google.ads.googleads.v22.services.CustomerCustomizerOperation + 236, // 234: google.ads.googleads.v22.services.MutateOperation.customer_label_operation:type_name -> google.ads.googleads.v22.services.CustomerLabelOperation + 237, // 235: google.ads.googleads.v22.services.MutateOperation.customer_negative_criterion_operation:type_name -> google.ads.googleads.v22.services.CustomerNegativeCriterionOperation + 238, // 236: google.ads.googleads.v22.services.MutateOperation.customer_operation:type_name -> google.ads.googleads.v22.services.CustomerOperation + 239, // 237: google.ads.googleads.v22.services.MutateOperation.customizer_attribute_operation:type_name -> google.ads.googleads.v22.services.CustomizerAttributeOperation + 240, // 238: google.ads.googleads.v22.services.MutateOperation.experiment_operation:type_name -> google.ads.googleads.v22.services.ExperimentOperation + 241, // 239: google.ads.googleads.v22.services.MutateOperation.experiment_arm_operation:type_name -> google.ads.googleads.v22.services.ExperimentArmOperation + 242, // 240: google.ads.googleads.v22.services.MutateOperation.keyword_plan_ad_group_operation:type_name -> google.ads.googleads.v22.services.KeywordPlanAdGroupOperation + 243, // 241: google.ads.googleads.v22.services.MutateOperation.keyword_plan_ad_group_keyword_operation:type_name -> google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation + 244, // 242: google.ads.googleads.v22.services.MutateOperation.keyword_plan_campaign_keyword_operation:type_name -> google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation + 245, // 243: google.ads.googleads.v22.services.MutateOperation.keyword_plan_campaign_operation:type_name -> google.ads.googleads.v22.services.KeywordPlanCampaignOperation + 246, // 244: google.ads.googleads.v22.services.MutateOperation.keyword_plan_operation:type_name -> google.ads.googleads.v22.services.KeywordPlanOperation + 247, // 245: google.ads.googleads.v22.services.MutateOperation.label_operation:type_name -> google.ads.googleads.v22.services.LabelOperation + 248, // 246: google.ads.googleads.v22.services.MutateOperation.recommendation_subscription_operation:type_name -> google.ads.googleads.v22.services.RecommendationSubscriptionOperation + 249, // 247: google.ads.googleads.v22.services.MutateOperation.remarketing_action_operation:type_name -> google.ads.googleads.v22.services.RemarketingActionOperation + 250, // 248: google.ads.googleads.v22.services.MutateOperation.shared_criterion_operation:type_name -> google.ads.googleads.v22.services.SharedCriterionOperation + 251, // 249: google.ads.googleads.v22.services.MutateOperation.shared_set_operation:type_name -> google.ads.googleads.v22.services.SharedSetOperation + 252, // 250: google.ads.googleads.v22.services.MutateOperation.smart_campaign_setting_operation:type_name -> google.ads.googleads.v22.services.SmartCampaignSettingOperation + 253, // 251: google.ads.googleads.v22.services.MutateOperation.user_list_operation:type_name -> google.ads.googleads.v22.services.UserListOperation + 254, // 252: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_ad_label_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupAdLabelResult + 255, // 253: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_ad_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupAdResult + 256, // 254: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_asset_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupAssetResult + 257, // 255: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_bid_modifier_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupBidModifierResult + 258, // 256: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_criterion_customizer_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionCustomizerResult + 259, // 257: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_criterion_label_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionLabelResult + 260, // 258: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_criterion_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupCriterionResult + 261, // 259: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_customizer_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupCustomizerResult + 262, // 260: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_label_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupLabelResult + 263, // 261: google.ads.googleads.v22.services.MutateOperationResponse.ad_group_result:type_name -> google.ads.googleads.v22.services.MutateAdGroupResult + 264, // 262: google.ads.googleads.v22.services.MutateOperationResponse.ad_parameter_result:type_name -> google.ads.googleads.v22.services.MutateAdParameterResult + 265, // 263: google.ads.googleads.v22.services.MutateOperationResponse.ad_result:type_name -> google.ads.googleads.v22.services.MutateAdResult + 266, // 264: google.ads.googleads.v22.services.MutateOperationResponse.asset_result:type_name -> google.ads.googleads.v22.services.MutateAssetResult + 267, // 265: google.ads.googleads.v22.services.MutateOperationResponse.asset_group_asset_result:type_name -> google.ads.googleads.v22.services.MutateAssetGroupAssetResult + 268, // 266: google.ads.googleads.v22.services.MutateOperationResponse.asset_group_listing_group_filter_result:type_name -> google.ads.googleads.v22.services.MutateAssetGroupListingGroupFilterResult + 269, // 267: google.ads.googleads.v22.services.MutateOperationResponse.asset_group_signal_result:type_name -> google.ads.googleads.v22.services.MutateAssetGroupSignalResult + 270, // 268: google.ads.googleads.v22.services.MutateOperationResponse.asset_group_result:type_name -> google.ads.googleads.v22.services.MutateAssetGroupResult + 271, // 269: google.ads.googleads.v22.services.MutateOperationResponse.asset_set_asset_result:type_name -> google.ads.googleads.v22.services.MutateAssetSetAssetResult + 272, // 270: google.ads.googleads.v22.services.MutateOperationResponse.asset_set_result:type_name -> google.ads.googleads.v22.services.MutateAssetSetResult + 273, // 271: google.ads.googleads.v22.services.MutateOperationResponse.audience_result:type_name -> google.ads.googleads.v22.services.MutateAudienceResult + 274, // 272: google.ads.googleads.v22.services.MutateOperationResponse.bidding_data_exclusion_result:type_name -> google.ads.googleads.v22.services.MutateBiddingDataExclusionsResult + 275, // 273: google.ads.googleads.v22.services.MutateOperationResponse.bidding_seasonality_adjustment_result:type_name -> google.ads.googleads.v22.services.MutateBiddingSeasonalityAdjustmentsResult + 276, // 274: google.ads.googleads.v22.services.MutateOperationResponse.bidding_strategy_result:type_name -> google.ads.googleads.v22.services.MutateBiddingStrategyResult + 277, // 275: google.ads.googleads.v22.services.MutateOperationResponse.campaign_asset_result:type_name -> google.ads.googleads.v22.services.MutateCampaignAssetResult + 278, // 276: google.ads.googleads.v22.services.MutateOperationResponse.campaign_asset_set_result:type_name -> google.ads.googleads.v22.services.MutateCampaignAssetSetResult + 279, // 277: google.ads.googleads.v22.services.MutateOperationResponse.campaign_bid_modifier_result:type_name -> google.ads.googleads.v22.services.MutateCampaignBidModifierResult + 280, // 278: google.ads.googleads.v22.services.MutateOperationResponse.campaign_budget_result:type_name -> google.ads.googleads.v22.services.MutateCampaignBudgetResult + 281, // 279: google.ads.googleads.v22.services.MutateOperationResponse.campaign_conversion_goal_result:type_name -> google.ads.googleads.v22.services.MutateCampaignConversionGoalResult + 282, // 280: google.ads.googleads.v22.services.MutateOperationResponse.campaign_criterion_result:type_name -> google.ads.googleads.v22.services.MutateCampaignCriterionResult + 283, // 281: google.ads.googleads.v22.services.MutateOperationResponse.campaign_customizer_result:type_name -> google.ads.googleads.v22.services.MutateCampaignCustomizerResult + 284, // 282: google.ads.googleads.v22.services.MutateOperationResponse.campaign_draft_result:type_name -> google.ads.googleads.v22.services.MutateCampaignDraftResult + 285, // 283: google.ads.googleads.v22.services.MutateOperationResponse.campaign_group_result:type_name -> google.ads.googleads.v22.services.MutateCampaignGroupResult + 286, // 284: google.ads.googleads.v22.services.MutateOperationResponse.campaign_label_result:type_name -> google.ads.googleads.v22.services.MutateCampaignLabelResult + 287, // 285: google.ads.googleads.v22.services.MutateOperationResponse.campaign_result:type_name -> google.ads.googleads.v22.services.MutateCampaignResult + 288, // 286: google.ads.googleads.v22.services.MutateOperationResponse.campaign_shared_set_result:type_name -> google.ads.googleads.v22.services.MutateCampaignSharedSetResult + 289, // 287: google.ads.googleads.v22.services.MutateOperationResponse.conversion_action_result:type_name -> google.ads.googleads.v22.services.MutateConversionActionResult + 290, // 288: google.ads.googleads.v22.services.MutateOperationResponse.conversion_custom_variable_result:type_name -> google.ads.googleads.v22.services.MutateConversionCustomVariableResult + 291, // 289: google.ads.googleads.v22.services.MutateOperationResponse.conversion_goal_campaign_config_result:type_name -> google.ads.googleads.v22.services.MutateConversionGoalCampaignConfigResult + 292, // 290: google.ads.googleads.v22.services.MutateOperationResponse.conversion_value_rule_result:type_name -> google.ads.googleads.v22.services.MutateConversionValueRuleResult + 293, // 291: google.ads.googleads.v22.services.MutateOperationResponse.conversion_value_rule_set_result:type_name -> google.ads.googleads.v22.services.MutateConversionValueRuleSetResult + 294, // 292: google.ads.googleads.v22.services.MutateOperationResponse.custom_conversion_goal_result:type_name -> google.ads.googleads.v22.services.MutateCustomConversionGoalResult + 295, // 293: google.ads.googleads.v22.services.MutateOperationResponse.customer_asset_result:type_name -> google.ads.googleads.v22.services.MutateCustomerAssetResult + 296, // 294: google.ads.googleads.v22.services.MutateOperationResponse.customer_conversion_goal_result:type_name -> google.ads.googleads.v22.services.MutateCustomerConversionGoalResult + 297, // 295: google.ads.googleads.v22.services.MutateOperationResponse.customer_customizer_result:type_name -> google.ads.googleads.v22.services.MutateCustomerCustomizerResult + 298, // 296: google.ads.googleads.v22.services.MutateOperationResponse.customer_label_result:type_name -> google.ads.googleads.v22.services.MutateCustomerLabelResult + 299, // 297: google.ads.googleads.v22.services.MutateOperationResponse.customer_negative_criterion_result:type_name -> google.ads.googleads.v22.services.MutateCustomerNegativeCriteriaResult + 300, // 298: google.ads.googleads.v22.services.MutateOperationResponse.customer_result:type_name -> google.ads.googleads.v22.services.MutateCustomerResult + 301, // 299: google.ads.googleads.v22.services.MutateOperationResponse.customizer_attribute_result:type_name -> google.ads.googleads.v22.services.MutateCustomizerAttributeResult + 302, // 300: google.ads.googleads.v22.services.MutateOperationResponse.experiment_result:type_name -> google.ads.googleads.v22.services.MutateExperimentResult + 303, // 301: google.ads.googleads.v22.services.MutateOperationResponse.experiment_arm_result:type_name -> google.ads.googleads.v22.services.MutateExperimentArmResult + 304, // 302: google.ads.googleads.v22.services.MutateOperationResponse.keyword_plan_ad_group_result:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupResult + 305, // 303: google.ads.googleads.v22.services.MutateOperationResponse.keyword_plan_campaign_result:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignResult + 306, // 304: google.ads.googleads.v22.services.MutateOperationResponse.keyword_plan_ad_group_keyword_result:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordResult + 307, // 305: google.ads.googleads.v22.services.MutateOperationResponse.keyword_plan_campaign_keyword_result:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordResult + 308, // 306: google.ads.googleads.v22.services.MutateOperationResponse.keyword_plan_result:type_name -> google.ads.googleads.v22.services.MutateKeywordPlansResult + 309, // 307: google.ads.googleads.v22.services.MutateOperationResponse.label_result:type_name -> google.ads.googleads.v22.services.MutateLabelResult + 310, // 308: google.ads.googleads.v22.services.MutateOperationResponse.recommendation_subscription_result:type_name -> google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult + 311, // 309: google.ads.googleads.v22.services.MutateOperationResponse.remarketing_action_result:type_name -> google.ads.googleads.v22.services.MutateRemarketingActionResult + 312, // 310: google.ads.googleads.v22.services.MutateOperationResponse.shared_criterion_result:type_name -> google.ads.googleads.v22.services.MutateSharedCriterionResult + 313, // 311: google.ads.googleads.v22.services.MutateOperationResponse.shared_set_result:type_name -> google.ads.googleads.v22.services.MutateSharedSetResult + 314, // 312: google.ads.googleads.v22.services.MutateOperationResponse.smart_campaign_setting_result:type_name -> google.ads.googleads.v22.services.MutateSmartCampaignSettingResult + 315, // 313: google.ads.googleads.v22.services.MutateOperationResponse.user_list_result:type_name -> google.ads.googleads.v22.services.MutateUserListResult + 0, // 314: google.ads.googleads.v22.services.GoogleAdsService.Search:input_type -> google.ads.googleads.v22.services.SearchGoogleAdsRequest + 2, // 315: google.ads.googleads.v22.services.GoogleAdsService.SearchStream:input_type -> google.ads.googleads.v22.services.SearchGoogleAdsStreamRequest + 5, // 316: google.ads.googleads.v22.services.GoogleAdsService.Mutate:input_type -> google.ads.googleads.v22.services.MutateGoogleAdsRequest + 1, // 317: google.ads.googleads.v22.services.GoogleAdsService.Search:output_type -> google.ads.googleads.v22.services.SearchGoogleAdsResponse + 3, // 318: google.ads.googleads.v22.services.GoogleAdsService.SearchStream:output_type -> google.ads.googleads.v22.services.SearchGoogleAdsStreamResponse + 6, // 319: google.ads.googleads.v22.services.GoogleAdsService.Mutate:output_type -> google.ads.googleads.v22.services.MutateGoogleAdsResponse + 317, // [317:320] is the sub-list for method output_type + 314, // [314:317] is the sub-list for method input_type + 314, // [314:314] is the sub-list for extension type_name + 314, // [314:314] is the sub-list for extension extendee + 0, // [0:314] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_google_ads_service_proto_init() } +func file_google_ads_googleads_v22_services_google_ads_service_proto_init() { + if File_google_ads_googleads_v22_services_google_ads_service_proto != nil { return } - file_google_ads_googleads_v21_services_ad_group_ad_label_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_ad_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_asset_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_bid_modifier_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_criterion_customizer_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_criterion_label_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_criterion_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_customizer_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_label_service_proto_init() - file_google_ads_googleads_v21_services_ad_group_service_proto_init() - file_google_ads_googleads_v21_services_ad_parameter_service_proto_init() - file_google_ads_googleads_v21_services_ad_service_proto_init() - file_google_ads_googleads_v21_services_asset_group_asset_service_proto_init() - file_google_ads_googleads_v21_services_asset_group_listing_group_filter_service_proto_init() - file_google_ads_googleads_v21_services_asset_group_service_proto_init() - file_google_ads_googleads_v21_services_asset_group_signal_service_proto_init() - file_google_ads_googleads_v21_services_asset_service_proto_init() - file_google_ads_googleads_v21_services_asset_set_asset_service_proto_init() - file_google_ads_googleads_v21_services_asset_set_service_proto_init() - file_google_ads_googleads_v21_services_audience_service_proto_init() - file_google_ads_googleads_v21_services_bidding_data_exclusion_service_proto_init() - file_google_ads_googleads_v21_services_bidding_seasonality_adjustment_service_proto_init() - file_google_ads_googleads_v21_services_bidding_strategy_service_proto_init() - file_google_ads_googleads_v21_services_campaign_asset_service_proto_init() - file_google_ads_googleads_v21_services_campaign_asset_set_service_proto_init() - file_google_ads_googleads_v21_services_campaign_bid_modifier_service_proto_init() - file_google_ads_googleads_v21_services_campaign_budget_service_proto_init() - file_google_ads_googleads_v21_services_campaign_conversion_goal_service_proto_init() - file_google_ads_googleads_v21_services_campaign_criterion_service_proto_init() - file_google_ads_googleads_v21_services_campaign_customizer_service_proto_init() - file_google_ads_googleads_v21_services_campaign_draft_service_proto_init() - file_google_ads_googleads_v21_services_campaign_group_service_proto_init() - file_google_ads_googleads_v21_services_campaign_label_service_proto_init() - file_google_ads_googleads_v21_services_campaign_service_proto_init() - file_google_ads_googleads_v21_services_campaign_shared_set_service_proto_init() - file_google_ads_googleads_v21_services_conversion_action_service_proto_init() - file_google_ads_googleads_v21_services_conversion_custom_variable_service_proto_init() - file_google_ads_googleads_v21_services_conversion_goal_campaign_config_service_proto_init() - file_google_ads_googleads_v21_services_conversion_value_rule_service_proto_init() - file_google_ads_googleads_v21_services_conversion_value_rule_set_service_proto_init() - file_google_ads_googleads_v21_services_custom_conversion_goal_service_proto_init() - file_google_ads_googleads_v21_services_customer_asset_service_proto_init() - file_google_ads_googleads_v21_services_customer_conversion_goal_service_proto_init() - file_google_ads_googleads_v21_services_customer_customizer_service_proto_init() - file_google_ads_googleads_v21_services_customer_label_service_proto_init() - file_google_ads_googleads_v21_services_customer_negative_criterion_service_proto_init() - file_google_ads_googleads_v21_services_customer_service_proto_init() - file_google_ads_googleads_v21_services_customizer_attribute_service_proto_init() - file_google_ads_googleads_v21_services_experiment_arm_service_proto_init() - file_google_ads_googleads_v21_services_experiment_service_proto_init() - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_init() - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_init() - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_init() - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_init() - file_google_ads_googleads_v21_services_keyword_plan_service_proto_init() - file_google_ads_googleads_v21_services_label_service_proto_init() - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_init() - file_google_ads_googleads_v21_services_remarketing_action_service_proto_init() - file_google_ads_googleads_v21_services_shared_criterion_service_proto_init() - file_google_ads_googleads_v21_services_shared_set_service_proto_init() - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_init() - file_google_ads_googleads_v21_services_user_list_service_proto_init() - file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[7].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_ad_group_ad_label_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_ad_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_asset_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_bid_modifier_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_criterion_customizer_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_criterion_label_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_criterion_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_customizer_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_label_service_proto_init() + file_google_ads_googleads_v22_services_ad_group_service_proto_init() + file_google_ads_googleads_v22_services_ad_parameter_service_proto_init() + file_google_ads_googleads_v22_services_ad_service_proto_init() + file_google_ads_googleads_v22_services_asset_group_asset_service_proto_init() + file_google_ads_googleads_v22_services_asset_group_listing_group_filter_service_proto_init() + file_google_ads_googleads_v22_services_asset_group_service_proto_init() + file_google_ads_googleads_v22_services_asset_group_signal_service_proto_init() + file_google_ads_googleads_v22_services_asset_service_proto_init() + file_google_ads_googleads_v22_services_asset_set_asset_service_proto_init() + file_google_ads_googleads_v22_services_asset_set_service_proto_init() + file_google_ads_googleads_v22_services_audience_service_proto_init() + file_google_ads_googleads_v22_services_bidding_data_exclusion_service_proto_init() + file_google_ads_googleads_v22_services_bidding_seasonality_adjustment_service_proto_init() + file_google_ads_googleads_v22_services_bidding_strategy_service_proto_init() + file_google_ads_googleads_v22_services_campaign_asset_service_proto_init() + file_google_ads_googleads_v22_services_campaign_asset_set_service_proto_init() + file_google_ads_googleads_v22_services_campaign_bid_modifier_service_proto_init() + file_google_ads_googleads_v22_services_campaign_budget_service_proto_init() + file_google_ads_googleads_v22_services_campaign_conversion_goal_service_proto_init() + file_google_ads_googleads_v22_services_campaign_criterion_service_proto_init() + file_google_ads_googleads_v22_services_campaign_customizer_service_proto_init() + file_google_ads_googleads_v22_services_campaign_draft_service_proto_init() + file_google_ads_googleads_v22_services_campaign_group_service_proto_init() + file_google_ads_googleads_v22_services_campaign_label_service_proto_init() + file_google_ads_googleads_v22_services_campaign_service_proto_init() + file_google_ads_googleads_v22_services_campaign_shared_set_service_proto_init() + file_google_ads_googleads_v22_services_conversion_action_service_proto_init() + file_google_ads_googleads_v22_services_conversion_custom_variable_service_proto_init() + file_google_ads_googleads_v22_services_conversion_goal_campaign_config_service_proto_init() + file_google_ads_googleads_v22_services_conversion_value_rule_service_proto_init() + file_google_ads_googleads_v22_services_conversion_value_rule_set_service_proto_init() + file_google_ads_googleads_v22_services_custom_conversion_goal_service_proto_init() + file_google_ads_googleads_v22_services_customer_asset_service_proto_init() + file_google_ads_googleads_v22_services_customer_conversion_goal_service_proto_init() + file_google_ads_googleads_v22_services_customer_customizer_service_proto_init() + file_google_ads_googleads_v22_services_customer_label_service_proto_init() + file_google_ads_googleads_v22_services_customer_negative_criterion_service_proto_init() + file_google_ads_googleads_v22_services_customer_service_proto_init() + file_google_ads_googleads_v22_services_customizer_attribute_service_proto_init() + file_google_ads_googleads_v22_services_experiment_arm_service_proto_init() + file_google_ads_googleads_v22_services_experiment_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_service_proto_init() + file_google_ads_googleads_v22_services_label_service_proto_init() + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_init() + file_google_ads_googleads_v22_services_remarketing_action_service_proto_init() + file_google_ads_googleads_v22_services_shared_criterion_service_proto_init() + file_google_ads_googleads_v22_services_shared_set_service_proto_init() + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_init() + file_google_ads_googleads_v22_services_user_list_service_proto_init() + file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[7].OneofWrappers = []any{ (*MutateOperation_AdGroupAdLabelOperation)(nil), (*MutateOperation_AdGroupAdOperation)(nil), (*MutateOperation_AdGroupAssetOperation)(nil), @@ -8563,7 +8625,7 @@ func file_google_ads_googleads_v21_services_google_ads_service_proto_init() { (*MutateOperation_SmartCampaignSettingOperation)(nil), (*MutateOperation_UserListOperation)(nil), } - file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes[8].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes[8].OneofWrappers = []any{ (*MutateOperationResponse_AdGroupAdLabelResult)(nil), (*MutateOperationResponse_AdGroupAdResult)(nil), (*MutateOperationResponse_AdGroupAssetResult)(nil), @@ -8631,17 +8693,17 @@ func file_google_ads_googleads_v21_services_google_ads_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_google_ads_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_google_ads_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_google_ads_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_google_ads_service_proto_rawDesc)), NumEnums: 0, NumMessages: 10, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_google_ads_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_google_ads_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_google_ads_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_google_ads_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_google_ads_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_google_ads_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_google_ads_service_proto = out.File - file_google_ads_googleads_v21_services_google_ads_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_google_ads_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_google_ads_service_proto = out.File + file_google_ads_googleads_v22_services_google_ads_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 3360d1aa..f128b1e3 100644 --- a/services/google_ads_service_grpc.pb.go +++ b/services/google_ads_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/google_ads_service.proto +// source: google/ads/googleads/v22/services/google_ads_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - GoogleAdsService_Search_FullMethodName = "/google.ads.googleads.v21.services.GoogleAdsService/Search" - GoogleAdsService_SearchStream_FullMethodName = "/google.ads.googleads.v21.services.GoogleAdsService/SearchStream" - GoogleAdsService_Mutate_FullMethodName = "/google.ads.googleads.v21.services.GoogleAdsService/Mutate" + GoogleAdsService_Search_FullMethodName = "/google.ads.googleads.v22.services.GoogleAdsService/Search" + GoogleAdsService_SearchStream_FullMethodName = "/google.ads.googleads.v22.services.GoogleAdsService/SearchStream" + GoogleAdsService_Mutate_FullMethodName = "/google.ads.googleads.v22.services.GoogleAdsService/Mutate" ) // GoogleAdsServiceClient is the client API for GoogleAdsService service. @@ -478,7 +478,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.v21.services.GoogleAdsService", + ServiceName: "google.ads.googleads.v22.services.GoogleAdsService", HandlerType: (*GoogleAdsServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -497,5 +497,5 @@ var GoogleAdsService_ServiceDesc = grpc.ServiceDesc{ ServerStreams: true, }, }, - Metadata: "google/ads/googleads/v21/services/google_ads_service.proto", + Metadata: "google/ads/googleads/v22/services/google_ads_service.proto", } diff --git a/services/identity_verification_service.pb.go b/services/identity_verification_service.pb.go index 6fdf7c42..67f71996 100644 --- a/services/identity_verification_service.pb.go +++ b/services/identity_verification_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/identity_verification_service.proto +// source: google/ads/googleads/v22/services/identity_verification_service.proto package services @@ -48,14 +48,14 @@ 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.v21.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.v22.enums.IdentityVerificationProgramEnum_IdentityVerificationProgram" json:"verification_program,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *StartIdentityVerificationRequest) Reset() { *x = StartIdentityVerificationRequest{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *StartIdentityVerificationRequest) String() string { func (*StartIdentityVerificationRequest) ProtoMessage() {} func (x *StartIdentityVerificationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *StartIdentityVerificationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use StartIdentityVerificationRequest.ProtoReflect.Descriptor instead. func (*StartIdentityVerificationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{0} } func (x *StartIdentityVerificationRequest) GetCustomerId() string { @@ -112,7 +112,7 @@ type GetIdentityVerificationRequest struct { func (x *GetIdentityVerificationRequest) Reset() { *x = GetIdentityVerificationRequest{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -124,7 +124,7 @@ func (x *GetIdentityVerificationRequest) String() string { func (*GetIdentityVerificationRequest) ProtoMessage() {} func (x *GetIdentityVerificationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -137,7 +137,7 @@ func (x *GetIdentityVerificationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIdentityVerificationRequest.ProtoReflect.Descriptor instead. func (*GetIdentityVerificationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{1} } func (x *GetIdentityVerificationRequest) GetCustomerId() string { @@ -160,7 +160,7 @@ type GetIdentityVerificationResponse struct { func (x *GetIdentityVerificationResponse) Reset() { *x = GetIdentityVerificationResponse{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *GetIdentityVerificationResponse) String() string { func (*GetIdentityVerificationResponse) ProtoMessage() {} func (x *GetIdentityVerificationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,7 +185,7 @@ func (x *GetIdentityVerificationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetIdentityVerificationResponse.ProtoReflect.Descriptor instead. func (*GetIdentityVerificationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{2} } func (x *GetIdentityVerificationResponse) GetIdentityVerification() []*IdentityVerification { @@ -199,7 +199,7 @@ func (x *GetIdentityVerificationResponse) GetIdentityVerification() []*IdentityV type IdentityVerification struct { state protoimpl.MessageState `protogen:"open.v1"` // The verification program type. - VerificationProgram enums.IdentityVerificationProgramEnum_IdentityVerificationProgram `protobuf:"varint,1,opt,name=verification_program,json=verificationProgram,proto3,enum=google.ads.googleads.v21.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.v22.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"` @@ -212,7 +212,7 @@ type IdentityVerification struct { func (x *IdentityVerification) Reset() { *x = IdentityVerification{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -224,7 +224,7 @@ func (x *IdentityVerification) String() string { func (*IdentityVerification) ProtoMessage() {} func (x *IdentityVerification) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -237,7 +237,7 @@ func (x *IdentityVerification) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerification.ProtoReflect.Descriptor instead. func (*IdentityVerification) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{3} } func (x *IdentityVerification) GetVerificationProgram() enums.IdentityVerificationProgramEnum_IdentityVerificationProgram { @@ -266,7 +266,7 @@ func (x *IdentityVerification) GetVerificationProgress() *IdentityVerificationPr type IdentityVerificationProgress struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` @@ -279,7 +279,7 @@ type IdentityVerificationProgress struct { func (x *IdentityVerificationProgress) Reset() { *x = IdentityVerificationProgress{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *IdentityVerificationProgress) String() string { func (*IdentityVerificationProgress) ProtoMessage() {} func (x *IdentityVerificationProgress) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *IdentityVerificationProgress) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationProgress.ProtoReflect.Descriptor instead. func (*IdentityVerificationProgress) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{4} } func (x *IdentityVerificationProgress) GetProgramStatus() enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus { @@ -342,7 +342,7 @@ type IdentityVerificationRequirement struct { func (x *IdentityVerificationRequirement) Reset() { *x = IdentityVerificationRequirement{} - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -354,7 +354,7 @@ func (x *IdentityVerificationRequirement) String() string { func (*IdentityVerificationRequirement) ProtoMessage() {} func (x *IdentityVerificationRequirement) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -367,7 +367,7 @@ func (x *IdentityVerificationRequirement) ProtoReflect() protoreflect.Message { // Deprecated: Use IdentityVerificationRequirement.ProtoReflect.Descriptor instead. func (*IdentityVerificationRequirement) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP(), []int{5} } func (x *IdentityVerificationRequirement) GetVerificationStartDeadlineTime() string { @@ -384,22 +384,22 @@ func (x *IdentityVerificationRequirement) GetVerificationCompletionDeadlineTime( return "" } -var File_google_ads_googleads_v21_services_identity_verification_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_identity_verification_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x42, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, 0x64, 0x65, 0x6e, 0x74, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x69, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, + 0x76, 0x32, 0x32, 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, @@ -434,7 +434,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -442,7 +442,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -452,7 +452,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -461,7 +461,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x49, 0x64, 0x65, + 0x76, 0x32, 0x32, 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, @@ -474,7 +474,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -504,29 +504,29 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x3d, 0x3a, 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x38, 0x12, 0x36, 0x2f, 0x76, 0x32, 0x32, 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, @@ -536,59 +536,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_identity_verification_service_proto_goTypes = []any{ - (*StartIdentityVerificationRequest)(nil), // 0: google.ads.googleads.v21.services.StartIdentityVerificationRequest - (*GetIdentityVerificationRequest)(nil), // 1: google.ads.googleads.v21.services.GetIdentityVerificationRequest - (*GetIdentityVerificationResponse)(nil), // 2: google.ads.googleads.v21.services.GetIdentityVerificationResponse - (*IdentityVerification)(nil), // 3: google.ads.googleads.v21.services.IdentityVerification - (*IdentityVerificationProgress)(nil), // 4: google.ads.googleads.v21.services.IdentityVerificationProgress - (*IdentityVerificationRequirement)(nil), // 5: google.ads.googleads.v21.services.IdentityVerificationRequirement - (enums.IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 6: google.ads.googleads.v21.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - (enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 7: google.ads.googleads.v21.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus + return file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_identity_verification_service_proto_goTypes = []any{ + (*StartIdentityVerificationRequest)(nil), // 0: google.ads.googleads.v22.services.StartIdentityVerificationRequest + (*GetIdentityVerificationRequest)(nil), // 1: google.ads.googleads.v22.services.GetIdentityVerificationRequest + (*GetIdentityVerificationResponse)(nil), // 2: google.ads.googleads.v22.services.GetIdentityVerificationResponse + (*IdentityVerification)(nil), // 3: google.ads.googleads.v22.services.IdentityVerification + (*IdentityVerificationProgress)(nil), // 4: google.ads.googleads.v22.services.IdentityVerificationProgress + (*IdentityVerificationRequirement)(nil), // 5: google.ads.googleads.v22.services.IdentityVerificationRequirement + (enums.IdentityVerificationProgramEnum_IdentityVerificationProgram)(0), // 6: google.ads.googleads.v22.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + (enums.IdentityVerificationProgramStatusEnum_IdentityVerificationProgramStatus)(0), // 7: google.ads.googleads.v22.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus (*emptypb.Empty)(nil), // 8: google.protobuf.Empty } -var file_google_ads_googleads_v21_services_identity_verification_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.services.StartIdentityVerificationRequest.verification_program:type_name -> google.ads.googleads.v21.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - 3, // 1: google.ads.googleads.v21.services.GetIdentityVerificationResponse.identity_verification:type_name -> google.ads.googleads.v21.services.IdentityVerification - 6, // 2: google.ads.googleads.v21.services.IdentityVerification.verification_program:type_name -> google.ads.googleads.v21.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram - 5, // 3: google.ads.googleads.v21.services.IdentityVerification.identity_verification_requirement:type_name -> google.ads.googleads.v21.services.IdentityVerificationRequirement - 4, // 4: google.ads.googleads.v21.services.IdentityVerification.verification_progress:type_name -> google.ads.googleads.v21.services.IdentityVerificationProgress - 7, // 5: google.ads.googleads.v21.services.IdentityVerificationProgress.program_status:type_name -> google.ads.googleads.v21.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus - 0, // 6: google.ads.googleads.v21.services.IdentityVerificationService.StartIdentityVerification:input_type -> google.ads.googleads.v21.services.StartIdentityVerificationRequest - 1, // 7: google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification:input_type -> google.ads.googleads.v21.services.GetIdentityVerificationRequest - 8, // 8: google.ads.googleads.v21.services.IdentityVerificationService.StartIdentityVerification:output_type -> google.protobuf.Empty - 2, // 9: google.ads.googleads.v21.services.IdentityVerificationService.GetIdentityVerification:output_type -> google.ads.googleads.v21.services.GetIdentityVerificationResponse +var file_google_ads_googleads_v22_services_identity_verification_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.services.StartIdentityVerificationRequest.verification_program:type_name -> google.ads.googleads.v22.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + 3, // 1: google.ads.googleads.v22.services.GetIdentityVerificationResponse.identity_verification:type_name -> google.ads.googleads.v22.services.IdentityVerification + 6, // 2: google.ads.googleads.v22.services.IdentityVerification.verification_program:type_name -> google.ads.googleads.v22.enums.IdentityVerificationProgramEnum.IdentityVerificationProgram + 5, // 3: google.ads.googleads.v22.services.IdentityVerification.identity_verification_requirement:type_name -> google.ads.googleads.v22.services.IdentityVerificationRequirement + 4, // 4: google.ads.googleads.v22.services.IdentityVerification.verification_progress:type_name -> google.ads.googleads.v22.services.IdentityVerificationProgress + 7, // 5: google.ads.googleads.v22.services.IdentityVerificationProgress.program_status:type_name -> google.ads.googleads.v22.enums.IdentityVerificationProgramStatusEnum.IdentityVerificationProgramStatus + 0, // 6: google.ads.googleads.v22.services.IdentityVerificationService.StartIdentityVerification:input_type -> google.ads.googleads.v22.services.StartIdentityVerificationRequest + 1, // 7: google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification:input_type -> google.ads.googleads.v22.services.GetIdentityVerificationRequest + 8, // 8: google.ads.googleads.v22.services.IdentityVerificationService.StartIdentityVerification:output_type -> google.protobuf.Empty + 2, // 9: google.ads.googleads.v22.services.IdentityVerificationService.GetIdentityVerification:output_type -> google.ads.googleads.v22.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 @@ -596,27 +596,27 @@ var file_google_ads_googleads_v21_services_identity_verification_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_identity_verification_service_proto_init() } -func file_google_ads_googleads_v21_services_identity_verification_service_proto_init() { - if File_google_ads_googleads_v21_services_identity_verification_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_identity_verification_service_proto_init() } +func file_google_ads_googleads_v22_services_identity_verification_service_proto_init() { + if File_google_ads_googleads_v22_services_identity_verification_service_proto != nil { return } - file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes[3].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_identity_verification_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_identity_verification_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_identity_verification_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_identity_verification_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_identity_verification_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_identity_verification_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_identity_verification_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_identity_verification_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_identity_verification_service_proto = out.File - file_google_ads_googleads_v21_services_identity_verification_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_identity_verification_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_identity_verification_service_proto = out.File + file_google_ads_googleads_v22_services_identity_verification_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 14577a13..3b9a4bf2 100644 --- a/services/identity_verification_service_grpc.pb.go +++ b/services/identity_verification_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/identity_verification_service.proto +// source: google/ads/googleads/v22/services/identity_verification_service.proto package services @@ -34,8 +34,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - IdentityVerificationService_StartIdentityVerification_FullMethodName = "/google.ads.googleads.v21.services.IdentityVerificationService/StartIdentityVerification" - IdentityVerificationService_GetIdentityVerification_FullMethodName = "/google.ads.googleads.v21.services.IdentityVerificationService/GetIdentityVerification" + IdentityVerificationService_StartIdentityVerification_FullMethodName = "/google.ads.googleads.v22.services.IdentityVerificationService/StartIdentityVerification" + IdentityVerificationService_GetIdentityVerification_FullMethodName = "/google.ads.googleads.v22.services.IdentityVerificationService/GetIdentityVerification" ) // IdentityVerificationServiceClient is the client API for IdentityVerificationService service. @@ -206,7 +206,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.v21.services.IdentityVerificationService", + ServiceName: "google.ads.googleads.v22.services.IdentityVerificationService", HandlerType: (*IdentityVerificationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -219,5 +219,5 @@ var IdentityVerificationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/identity_verification_service.proto", + Metadata: "google/ads/googleads/v22/services/identity_verification_service.proto", } diff --git a/services/invoice_service.pb.go b/services/invoice_service.pb.go index f666a308..5489efe0 100644 --- a/services/invoice_service.pb.go +++ b/services/invoice_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/invoice_service.proto +// source: google/ads/googleads/v22/services/invoice_service.proto package services @@ -52,14 +52,14 @@ 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.v21.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.v22.enums.MonthOfYearEnum_MonthOfYear" json:"issue_month,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ListInvoicesRequest) Reset() { *x = ListInvoicesRequest{} - mi := &file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *ListInvoicesRequest) String() string { func (*ListInvoicesRequest) ProtoMessage() {} func (x *ListInvoicesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *ListInvoicesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInvoicesRequest.ProtoReflect.Descriptor instead. func (*ListInvoicesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_invoice_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_invoice_service_proto_rawDescGZIP(), []int{0} } func (x *ListInvoicesRequest) GetCustomerId() string { @@ -116,7 +116,7 @@ func (x *ListInvoicesRequest) GetIssueMonth() enums.MonthOfYearEnum_MonthOfYear } // Response message for -// [InvoiceService.ListInvoices][google.ads.googleads.v21.services.InvoiceService.ListInvoices]. +// [InvoiceService.ListInvoices][google.ads.googleads.v22.services.InvoiceService.ListInvoices]. type ListInvoicesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of invoices that match the billing setup and time period. @@ -127,7 +127,7 @@ type ListInvoicesResponse struct { func (x *ListInvoicesResponse) Reset() { *x = ListInvoicesResponse{} - mi := &file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -139,7 +139,7 @@ func (x *ListInvoicesResponse) String() string { func (*ListInvoicesResponse) ProtoMessage() {} func (x *ListInvoicesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -152,7 +152,7 @@ func (x *ListInvoicesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListInvoicesResponse.ProtoReflect.Descriptor instead. func (*ListInvoicesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_invoice_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_invoice_service_proto_rawDescGZIP(), []int{1} } func (x *ListInvoicesResponse) GetInvoices() []*resources.Invoice { @@ -162,20 +162,20 @@ func (x *ListInvoicesResponse) GetInvoices() []*resources.Invoice { return nil } -var File_google_ads_googleads_v21_services_invoice_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_invoice_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_invoice_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x32, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6d, 0x6f, 0x6e, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -194,29 +194,29 @@ var file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4d, 0x6f, 0x6e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x49, + 0x32, 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, 0x32, 0x31, + 0x6f, 0x6e, 0x74, 0x68, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x29, 0x12, 0x27, 0x2f, 0x76, 0x32, 0x32, 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, @@ -225,48 +225,48 @@ var file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc = strin 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, + 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_invoice_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_invoice_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_invoice_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_invoice_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_invoice_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_invoice_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_invoice_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_invoice_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_invoice_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_invoice_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_invoice_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_invoice_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_invoice_service_proto_rawDescData + return file_google_ads_googleads_v22_services_invoice_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_services_invoice_service_proto_goTypes = []any{ - (*ListInvoicesRequest)(nil), // 0: google.ads.googleads.v21.services.ListInvoicesRequest - (*ListInvoicesResponse)(nil), // 1: google.ads.googleads.v21.services.ListInvoicesResponse - (enums.MonthOfYearEnum_MonthOfYear)(0), // 2: google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - (*resources.Invoice)(nil), // 3: google.ads.googleads.v21.resources.Invoice +var file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_services_invoice_service_proto_goTypes = []any{ + (*ListInvoicesRequest)(nil), // 0: google.ads.googleads.v22.services.ListInvoicesRequest + (*ListInvoicesResponse)(nil), // 1: google.ads.googleads.v22.services.ListInvoicesResponse + (enums.MonthOfYearEnum_MonthOfYear)(0), // 2: google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + (*resources.Invoice)(nil), // 3: google.ads.googleads.v22.resources.Invoice } -var file_google_ads_googleads_v21_services_invoice_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.ListInvoicesRequest.issue_month:type_name -> google.ads.googleads.v21.enums.MonthOfYearEnum.MonthOfYear - 3, // 1: google.ads.googleads.v21.services.ListInvoicesResponse.invoices:type_name -> google.ads.googleads.v21.resources.Invoice - 0, // 2: google.ads.googleads.v21.services.InvoiceService.ListInvoices:input_type -> google.ads.googleads.v21.services.ListInvoicesRequest - 1, // 3: google.ads.googleads.v21.services.InvoiceService.ListInvoices:output_type -> google.ads.googleads.v21.services.ListInvoicesResponse +var file_google_ads_googleads_v22_services_invoice_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.ListInvoicesRequest.issue_month:type_name -> google.ads.googleads.v22.enums.MonthOfYearEnum.MonthOfYear + 3, // 1: google.ads.googleads.v22.services.ListInvoicesResponse.invoices:type_name -> google.ads.googleads.v22.resources.Invoice + 0, // 2: google.ads.googleads.v22.services.InvoiceService.ListInvoices:input_type -> google.ads.googleads.v22.services.ListInvoicesRequest + 1, // 3: google.ads.googleads.v22.services.InvoiceService.ListInvoices:output_type -> google.ads.googleads.v22.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 @@ -274,26 +274,26 @@ var file_google_ads_googleads_v21_services_invoice_service_proto_depIdxs = []int 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_invoice_service_proto_init() } -func file_google_ads_googleads_v21_services_invoice_service_proto_init() { - if File_google_ads_googleads_v21_services_invoice_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_invoice_service_proto_init() } +func file_google_ads_googleads_v22_services_invoice_service_proto_init() { + if File_google_ads_googleads_v22_services_invoice_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_invoice_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_invoice_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_invoice_service_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_invoice_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_invoice_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_invoice_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_invoice_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_invoice_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_invoice_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_invoice_service_proto = out.File - file_google_ads_googleads_v21_services_invoice_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_invoice_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_invoice_service_proto = out.File + file_google_ads_googleads_v22_services_invoice_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_invoice_service_proto_depIdxs = nil } diff --git a/services/invoice_service_grpc.pb.go b/services/invoice_service_grpc.pb.go index e295722b..f3acc84b 100644 --- a/services/invoice_service_grpc.pb.go +++ b/services/invoice_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/invoice_service.proto +// source: google/ads/googleads/v22/services/invoice_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - InvoiceService_ListInvoices_FullMethodName = "/google.ads.googleads.v21.services.InvoiceService/ListInvoices" + InvoiceService_ListInvoices_FullMethodName = "/google.ads.googleads.v22.services.InvoiceService/ListInvoices" ) // InvoiceServiceClient is the client API for InvoiceService service. @@ -150,7 +150,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.v21.services.InvoiceService", + ServiceName: "google.ads.googleads.v22.services.InvoiceService", HandlerType: (*InvoiceServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -159,5 +159,5 @@ var InvoiceService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/invoice_service.proto", + Metadata: "google/ads/googleads/v22/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 e7ac3a29..4bf46d9b 100644 --- a/services/keyword_plan_ad_group_keyword_service.pb.go +++ b/services/keyword_plan_ad_group_keyword_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_ad_group_keyword_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_ad_group_keyword_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords][google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords]. +// [KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords][google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords]. type MutateKeywordPlanAdGroupKeywordsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose Keyword Plan ad group keywords are @@ -63,7 +63,7 @@ type MutateKeywordPlanAdGroupKeywordsRequest struct { func (x *MutateKeywordPlanAdGroupKeywordsRequest) Reset() { *x = MutateKeywordPlanAdGroupKeywordsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsRequest) String() string { func (*MutateKeywordPlanAdGroupKeywordsRequest) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MutateKeywordPlanAdGroupKeywordsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanAdGroupKeywordsRequest) GetCustomerId() string { @@ -140,7 +140,7 @@ type KeywordPlanAdGroupKeywordOperation struct { func (x *KeywordPlanAdGroupKeywordOperation) Reset() { *x = KeywordPlanAdGroupKeywordOperation{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *KeywordPlanAdGroupKeywordOperation) String() string { func (*KeywordPlanAdGroupKeywordOperation) ProtoMessage() {} func (x *KeywordPlanAdGroupKeywordOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,7 +165,7 @@ func (x *KeywordPlanAdGroupKeywordOperation) ProtoReflect() protoreflect.Message // Deprecated: Use KeywordPlanAdGroupKeywordOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupKeywordOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanAdGroupKeywordOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -255,7 +255,7 @@ type MutateKeywordPlanAdGroupKeywordsResponse struct { func (x *MutateKeywordPlanAdGroupKeywordsResponse) Reset() { *x = MutateKeywordPlanAdGroupKeywordsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -267,7 +267,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsResponse) String() string { func (*MutateKeywordPlanAdGroupKeywordsResponse) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -280,7 +280,7 @@ func (x *MutateKeywordPlanAdGroupKeywordsResponse) ProtoReflect() protoreflect.M // Deprecated: Use MutateKeywordPlanAdGroupKeywordsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanAdGroupKeywordsResponse) GetPartialFailureError() *status.Status { @@ -308,7 +308,7 @@ type MutateKeywordPlanAdGroupKeywordResult struct { func (x *MutateKeywordPlanAdGroupKeywordResult) Reset() { *x = MutateKeywordPlanAdGroupKeywordResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -320,7 +320,7 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) String() string { func (*MutateKeywordPlanAdGroupKeywordResult) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupKeywordResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -333,7 +333,7 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) ProtoReflect() protoreflect.Mess // Deprecated: Use MutateKeywordPlanAdGroupKeywordResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupKeywordResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanAdGroupKeywordResult) GetResourceName() string { @@ -343,18 +343,18 @@ func (x *MutateKeywordPlanAdGroupKeywordResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -376,7 +376,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -394,12 +394,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,7 +418,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -436,18 +436,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x32, 0x32, 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, @@ -457,56 +457,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_goTypes = []any{ - (*MutateKeywordPlanAdGroupKeywordsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsRequest - (*KeywordPlanAdGroupKeywordOperation)(nil), // 1: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation - (*MutateKeywordPlanAdGroupKeywordsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse - (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 3: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordResult +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_goTypes = []any{ + (*MutateKeywordPlanAdGroupKeywordsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsRequest + (*KeywordPlanAdGroupKeywordOperation)(nil), // 1: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation + (*MutateKeywordPlanAdGroupKeywordsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsResponse + (*MutateKeywordPlanAdGroupKeywordResult)(nil), // 3: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanAdGroupKeyword)(nil), // 5: google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword + (*resources.KeywordPlanAdGroupKeyword)(nil), // 5: google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsRequest.operations:type_name -> google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation - 4, // 1: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation.create:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword - 5, // 3: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordOperation.update:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroupKeyword - 6, // 4: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse.results:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordResult - 0, // 6: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:input_type -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsRequest - 2, // 7: google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:output_type -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupKeywordsResponse +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsRequest.operations:type_name -> google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation + 4, // 1: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation.create:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword + 5, // 3: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordOperation.update:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroupKeyword + 6, // 4: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsResponse.results:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordResult + 0, // 6: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:input_type -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupKeywordsRequest + 2, // 7: google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordService.MutateKeywordPlanAdGroupKeywords:output_type -> google.ads.googleads.v22.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 @@ -515,13 +515,13 @@ var file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service } func init() { - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto != nil { +func file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanAdGroupKeywordOperation_Create)(nil), (*KeywordPlanAdGroupKeywordOperation_Update)(nil), (*KeywordPlanAdGroupKeywordOperation_Remove)(nil), @@ -530,17 +530,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_ad_group_keyword_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_ad_group_keyword_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ab6388bb..666c3388 100644 --- a/services/keyword_plan_ad_group_keyword_service_grpc.pb.go +++ b/services/keyword_plan_ad_group_keyword_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_ad_group_keyword_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_ad_group_keyword_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanAdGroupKeywordService/MutateKeywordPlanAdGroupKeywords" + KeywordPlanAdGroupKeywordService_MutateKeywordPlanAdGroupKeywords_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordService/MutateKeywordPlanAdGroupKeywords" ) // KeywordPlanAdGroupKeywordServiceClient is the client API for KeywordPlanAdGroupKeywordService service. @@ -169,7 +169,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.v21.services.KeywordPlanAdGroupKeywordService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanAdGroupKeywordService", HandlerType: (*KeywordPlanAdGroupKeywordServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -178,5 +178,5 @@ var KeywordPlanAdGroupKeywordService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_ad_group_keyword_service.proto", + Metadata: "google/ads/googleads/v22/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 db2ebd0f..7586084d 100644 --- a/services/keyword_plan_ad_group_service.pb.go +++ b/services/keyword_plan_ad_group_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_ad_group_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_ad_group_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [KeywordPlanAdGroupService.MutateKeywordPlanAdGroups][google.ads.googleads.v21.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups]. +// [KeywordPlanAdGroupService.MutateKeywordPlanAdGroups][google.ads.googleads.v22.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups]. type MutateKeywordPlanAdGroupsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose Keyword Plan ad groups are being @@ -63,7 +63,7 @@ type MutateKeywordPlanAdGroupsRequest struct { func (x *MutateKeywordPlanAdGroupsRequest) Reset() { *x = MutateKeywordPlanAdGroupsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateKeywordPlanAdGroupsRequest) String() string { func (*MutateKeywordPlanAdGroupsRequest) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateKeywordPlanAdGroupsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanAdGroupsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanAdGroupsRequest) GetCustomerId() string { @@ -139,7 +139,7 @@ type KeywordPlanAdGroupOperation struct { func (x *KeywordPlanAdGroupOperation) Reset() { *x = KeywordPlanAdGroupOperation{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *KeywordPlanAdGroupOperation) String() string { func (*KeywordPlanAdGroupOperation) ProtoMessage() {} func (x *KeywordPlanAdGroupOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *KeywordPlanAdGroupOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanAdGroupOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanAdGroupOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanAdGroupOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -255,7 +255,7 @@ type MutateKeywordPlanAdGroupsResponse struct { func (x *MutateKeywordPlanAdGroupsResponse) Reset() { *x = MutateKeywordPlanAdGroupsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -267,7 +267,7 @@ func (x *MutateKeywordPlanAdGroupsResponse) String() string { func (*MutateKeywordPlanAdGroupsResponse) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -280,7 +280,7 @@ func (x *MutateKeywordPlanAdGroupsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanAdGroupsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanAdGroupsResponse) GetPartialFailureError() *status.Status { @@ -308,7 +308,7 @@ type MutateKeywordPlanAdGroupResult struct { func (x *MutateKeywordPlanAdGroupResult) Reset() { *x = MutateKeywordPlanAdGroupResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -320,7 +320,7 @@ func (x *MutateKeywordPlanAdGroupResult) String() string { func (*MutateKeywordPlanAdGroupResult) ProtoMessage() {} func (x *MutateKeywordPlanAdGroupResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -333,7 +333,7 @@ func (x *MutateKeywordPlanAdGroupResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanAdGroupResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanAdGroupResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanAdGroupResult) GetResourceName() string { @@ -343,18 +343,18 @@ func (x *MutateKeywordPlanAdGroupResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -375,7 +375,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, + 0x32, 0x32, 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, @@ -391,12 +391,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -414,7 +414,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -430,17 +430,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x39, 0x2f, 0x76, 0x32, 0x32, 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, @@ -450,55 +450,55 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1e, 0x4b, 0x65, 0x79, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_goTypes = []any{ - (*MutateKeywordPlanAdGroupsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsRequest - (*KeywordPlanAdGroupOperation)(nil), // 1: google.ads.googleads.v21.services.KeywordPlanAdGroupOperation - (*MutateKeywordPlanAdGroupsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse - (*MutateKeywordPlanAdGroupResult)(nil), // 3: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupResult +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_goTypes = []any{ + (*MutateKeywordPlanAdGroupsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsRequest + (*KeywordPlanAdGroupOperation)(nil), // 1: google.ads.googleads.v22.services.KeywordPlanAdGroupOperation + (*MutateKeywordPlanAdGroupsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsResponse + (*MutateKeywordPlanAdGroupResult)(nil), // 3: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanAdGroup)(nil), // 5: google.ads.googleads.v21.resources.KeywordPlanAdGroup + (*resources.KeywordPlanAdGroup)(nil), // 5: google.ads.googleads.v22.resources.KeywordPlanAdGroup (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsRequest.operations:type_name -> google.ads.googleads.v21.services.KeywordPlanAdGroupOperation - 4, // 1: google.ads.googleads.v21.services.KeywordPlanAdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.KeywordPlanAdGroupOperation.create:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroup - 5, // 3: google.ads.googleads.v21.services.KeywordPlanAdGroupOperation.update:type_name -> google.ads.googleads.v21.resources.KeywordPlanAdGroup - 6, // 4: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse.results:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupResult - 0, // 6: google.ads.googleads.v21.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:input_type -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsRequest - 2, // 7: google.ads.googleads.v21.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:output_type -> google.ads.googleads.v21.services.MutateKeywordPlanAdGroupsResponse +var file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsRequest.operations:type_name -> google.ads.googleads.v22.services.KeywordPlanAdGroupOperation + 4, // 1: google.ads.googleads.v22.services.KeywordPlanAdGroupOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.KeywordPlanAdGroupOperation.create:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroup + 5, // 3: google.ads.googleads.v22.services.KeywordPlanAdGroupOperation.update:type_name -> google.ads.googleads.v22.resources.KeywordPlanAdGroup + 6, // 4: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsResponse.results:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupResult + 0, // 6: google.ads.googleads.v22.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:input_type -> google.ads.googleads.v22.services.MutateKeywordPlanAdGroupsRequest + 2, // 7: google.ads.googleads.v22.services.KeywordPlanAdGroupService.MutateKeywordPlanAdGroups:output_type -> google.ads.googleads.v22.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 @@ -506,12 +506,12 @@ var file_google_ads_googleads_v21_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_v21_services_keyword_plan_ad_group_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_init() } +func file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanAdGroupOperation_Create)(nil), (*KeywordPlanAdGroupOperation_Update)(nil), (*KeywordPlanAdGroupOperation_Remove)(nil), @@ -520,17 +520,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_ad_group_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_ad_group_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 c2fbc691..a8fb171c 100644 --- a/services/keyword_plan_ad_group_service_grpc.pb.go +++ b/services/keyword_plan_ad_group_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_ad_group_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_ad_group_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanAdGroupService/MutateKeywordPlanAdGroups" + KeywordPlanAdGroupService_MutateKeywordPlanAdGroups_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanAdGroupService/MutateKeywordPlanAdGroups" ) // KeywordPlanAdGroupServiceClient is the client API for KeywordPlanAdGroupService service. @@ -165,7 +165,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.v21.services.KeywordPlanAdGroupService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanAdGroupService", HandlerType: (*KeywordPlanAdGroupServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -174,5 +174,5 @@ var KeywordPlanAdGroupService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_ad_group_service.proto", + Metadata: "google/ads/googleads/v22/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 08d2ea40..49ca8e72 100644 --- a/services/keyword_plan_campaign_keyword_service.pb.go +++ b/services/keyword_plan_campaign_keyword_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_campaign_keyword_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_campaign_keyword_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords][google.ads.googleads.v21.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords]. +// [KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords][google.ads.googleads.v22.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords]. type MutateKeywordPlanCampaignKeywordsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose campaign keywords are being @@ -63,7 +63,7 @@ type MutateKeywordPlanCampaignKeywordsRequest struct { func (x *MutateKeywordPlanCampaignKeywordsRequest) Reset() { *x = MutateKeywordPlanCampaignKeywordsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateKeywordPlanCampaignKeywordsRequest) String() string { func (*MutateKeywordPlanCampaignKeywordsRequest) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateKeywordPlanCampaignKeywordsRequest) ProtoReflect() protoreflect.M // Deprecated: Use MutateKeywordPlanCampaignKeywordsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanCampaignKeywordsRequest) GetCustomerId() string { @@ -140,7 +140,7 @@ type KeywordPlanCampaignKeywordOperation struct { func (x *KeywordPlanCampaignKeywordOperation) Reset() { *x = KeywordPlanCampaignKeywordOperation{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -152,7 +152,7 @@ func (x *KeywordPlanCampaignKeywordOperation) String() string { func (*KeywordPlanCampaignKeywordOperation) ProtoMessage() {} func (x *KeywordPlanCampaignKeywordOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -165,7 +165,7 @@ func (x *KeywordPlanCampaignKeywordOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use KeywordPlanCampaignKeywordOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignKeywordOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanCampaignKeywordOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -258,7 +258,7 @@ type MutateKeywordPlanCampaignKeywordsResponse struct { func (x *MutateKeywordPlanCampaignKeywordsResponse) Reset() { *x = MutateKeywordPlanCampaignKeywordsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -270,7 +270,7 @@ func (x *MutateKeywordPlanCampaignKeywordsResponse) String() string { func (*MutateKeywordPlanCampaignKeywordsResponse) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -283,7 +283,7 @@ func (x *MutateKeywordPlanCampaignKeywordsResponse) ProtoReflect() protoreflect. // Deprecated: Use MutateKeywordPlanCampaignKeywordsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanCampaignKeywordsResponse) GetPartialFailureError() *status.Status { @@ -311,7 +311,7 @@ type MutateKeywordPlanCampaignKeywordResult struct { func (x *MutateKeywordPlanCampaignKeywordResult) Reset() { *x = MutateKeywordPlanCampaignKeywordResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -323,7 +323,7 @@ func (x *MutateKeywordPlanCampaignKeywordResult) String() string { func (*MutateKeywordPlanCampaignKeywordResult) ProtoMessage() {} func (x *MutateKeywordPlanCampaignKeywordResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -336,7 +336,7 @@ func (x *MutateKeywordPlanCampaignKeywordResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateKeywordPlanCampaignKeywordResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignKeywordResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanCampaignKeywordResult) GetResourceName() string { @@ -346,18 +346,18 @@ func (x *MutateKeywordPlanCampaignKeywordResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -379,7 +379,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -397,12 +397,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -422,7 +422,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, @@ -440,18 +440,18 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x41, 0x2f, 0x76, 0x32, 0x32, 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, @@ -461,56 +461,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_goTypes = []any{ - (*MutateKeywordPlanCampaignKeywordsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsRequest - (*KeywordPlanCampaignKeywordOperation)(nil), // 1: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation - (*MutateKeywordPlanCampaignKeywordsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse - (*MutateKeywordPlanCampaignKeywordResult)(nil), // 3: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordResult +var file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_goTypes = []any{ + (*MutateKeywordPlanCampaignKeywordsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsRequest + (*KeywordPlanCampaignKeywordOperation)(nil), // 1: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation + (*MutateKeywordPlanCampaignKeywordsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsResponse + (*MutateKeywordPlanCampaignKeywordResult)(nil), // 3: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanCampaignKeyword)(nil), // 5: google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword + (*resources.KeywordPlanCampaignKeyword)(nil), // 5: google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsRequest.operations:type_name -> google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation - 4, // 1: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation.create:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword - 5, // 3: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordOperation.update:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaignKeyword - 6, // 4: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse.results:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordResult - 0, // 6: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:input_type -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsRequest - 2, // 7: google.ads.googleads.v21.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:output_type -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignKeywordsResponse +var file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsRequest.operations:type_name -> google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation + 4, // 1: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation.create:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword + 5, // 3: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordOperation.update:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaignKeyword + 6, // 4: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsResponse.results:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordResult + 0, // 6: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:input_type -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignKeywordsRequest + 2, // 7: google.ads.googleads.v22.services.KeywordPlanCampaignKeywordService.MutateKeywordPlanCampaignKeywords:output_type -> google.ads.googleads.v22.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 @@ -519,13 +519,13 @@ var file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service } func init() { - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_init() + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto != nil { +func file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanCampaignKeywordOperation_Create)(nil), (*KeywordPlanCampaignKeywordOperation_Update)(nil), (*KeywordPlanCampaignKeywordOperation_Remove)(nil), @@ -534,17 +534,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_servic out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_campaign_keyword_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_campaign_keyword_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 f840821c..ea4c7a26 100644 --- a/services/keyword_plan_campaign_keyword_service_grpc.pb.go +++ b/services/keyword_plan_campaign_keyword_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_campaign_keyword_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_campaign_keyword_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanCampaignKeywordService/MutateKeywordPlanCampaignKeywords" + KeywordPlanCampaignKeywordService_MutateKeywordPlanCampaignKeywords_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanCampaignKeywordService/MutateKeywordPlanCampaignKeywords" ) // KeywordPlanCampaignKeywordServiceClient is the client API for KeywordPlanCampaignKeywordService service. @@ -165,7 +165,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.v21.services.KeywordPlanCampaignKeywordService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanCampaignKeywordService", HandlerType: (*KeywordPlanCampaignKeywordServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -174,5 +174,5 @@ var KeywordPlanCampaignKeywordService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_campaign_keyword_service.proto", + Metadata: "google/ads/googleads/v22/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 d5afbe44..83c1cfcd 100644 --- a/services/keyword_plan_campaign_service.pb.go +++ b/services/keyword_plan_campaign_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_campaign_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_campaign_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [KeywordPlanCampaignService.MutateKeywordPlanCampaigns][google.ads.googleads.v21.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns]. +// [KeywordPlanCampaignService.MutateKeywordPlanCampaigns][google.ads.googleads.v22.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns]. type MutateKeywordPlanCampaignsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose Keyword Plan campaigns are being @@ -63,7 +63,7 @@ type MutateKeywordPlanCampaignsRequest struct { func (x *MutateKeywordPlanCampaignsRequest) Reset() { *x = MutateKeywordPlanCampaignsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateKeywordPlanCampaignsRequest) String() string { func (*MutateKeywordPlanCampaignsRequest) ProtoMessage() {} func (x *MutateKeywordPlanCampaignsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateKeywordPlanCampaignsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanCampaignsRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlanCampaignsRequest) GetCustomerId() string { @@ -139,7 +139,7 @@ type KeywordPlanCampaignOperation struct { func (x *KeywordPlanCampaignOperation) Reset() { *x = KeywordPlanCampaignOperation{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -151,7 +151,7 @@ func (x *KeywordPlanCampaignOperation) String() string { func (*KeywordPlanCampaignOperation) ProtoMessage() {} func (x *KeywordPlanCampaignOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -164,7 +164,7 @@ func (x *KeywordPlanCampaignOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanCampaignOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanCampaignOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanCampaignOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -254,7 +254,7 @@ type MutateKeywordPlanCampaignsResponse struct { func (x *MutateKeywordPlanCampaignsResponse) Reset() { *x = MutateKeywordPlanCampaignsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -266,7 +266,7 @@ func (x *MutateKeywordPlanCampaignsResponse) String() string { func (*MutateKeywordPlanCampaignsResponse) ProtoMessage() {} func (x *MutateKeywordPlanCampaignsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -279,7 +279,7 @@ func (x *MutateKeywordPlanCampaignsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use MutateKeywordPlanCampaignsResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlanCampaignsResponse) GetPartialFailureError() *status.Status { @@ -307,7 +307,7 @@ type MutateKeywordPlanCampaignResult struct { func (x *MutateKeywordPlanCampaignResult) Reset() { *x = MutateKeywordPlanCampaignResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -319,7 +319,7 @@ func (x *MutateKeywordPlanCampaignResult) String() string { func (*MutateKeywordPlanCampaignResult) ProtoMessage() {} func (x *MutateKeywordPlanCampaignResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -332,7 +332,7 @@ func (x *MutateKeywordPlanCampaignResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlanCampaignResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlanCampaignResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlanCampaignResult) GetResourceName() string { @@ -342,18 +342,18 @@ func (x *MutateKeywordPlanCampaignResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3e, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x6b, + 0x2f, 0x76, 0x32, 0x32, 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, @@ -374,7 +374,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, + 0x76, 0x32, 0x32, 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, @@ -391,12 +391,12 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, + 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -414,7 +414,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, @@ -430,17 +430,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -450,55 +450,55 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1f, 0x4b, 0x65, 0x79, 0x77, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_goTypes = []any{ - (*MutateKeywordPlanCampaignsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateKeywordPlanCampaignsRequest - (*KeywordPlanCampaignOperation)(nil), // 1: google.ads.googleads.v21.services.KeywordPlanCampaignOperation - (*MutateKeywordPlanCampaignsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse - (*MutateKeywordPlanCampaignResult)(nil), // 3: google.ads.googleads.v21.services.MutateKeywordPlanCampaignResult +var file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_goTypes = []any{ + (*MutateKeywordPlanCampaignsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateKeywordPlanCampaignsRequest + (*KeywordPlanCampaignOperation)(nil), // 1: google.ads.googleads.v22.services.KeywordPlanCampaignOperation + (*MutateKeywordPlanCampaignsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateKeywordPlanCampaignsResponse + (*MutateKeywordPlanCampaignResult)(nil), // 3: google.ads.googleads.v22.services.MutateKeywordPlanCampaignResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlanCampaign)(nil), // 5: google.ads.googleads.v21.resources.KeywordPlanCampaign + (*resources.KeywordPlanCampaign)(nil), // 5: google.ads.googleads.v22.resources.KeywordPlanCampaign (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateKeywordPlanCampaignsRequest.operations:type_name -> google.ads.googleads.v21.services.KeywordPlanCampaignOperation - 4, // 1: google.ads.googleads.v21.services.KeywordPlanCampaignOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.KeywordPlanCampaignOperation.create:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaign - 5, // 3: google.ads.googleads.v21.services.KeywordPlanCampaignOperation.update:type_name -> google.ads.googleads.v21.resources.KeywordPlanCampaign - 6, // 4: google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse.results:type_name -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignResult - 0, // 6: google.ads.googleads.v21.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:input_type -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignsRequest - 2, // 7: google.ads.googleads.v21.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:output_type -> google.ads.googleads.v21.services.MutateKeywordPlanCampaignsResponse +var file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateKeywordPlanCampaignsRequest.operations:type_name -> google.ads.googleads.v22.services.KeywordPlanCampaignOperation + 4, // 1: google.ads.googleads.v22.services.KeywordPlanCampaignOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.KeywordPlanCampaignOperation.create:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaign + 5, // 3: google.ads.googleads.v22.services.KeywordPlanCampaignOperation.update:type_name -> google.ads.googleads.v22.resources.KeywordPlanCampaign + 6, // 4: google.ads.googleads.v22.services.MutateKeywordPlanCampaignsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateKeywordPlanCampaignsResponse.results:type_name -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignResult + 0, // 6: google.ads.googleads.v22.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:input_type -> google.ads.googleads.v22.services.MutateKeywordPlanCampaignsRequest + 2, // 7: google.ads.googleads.v22.services.KeywordPlanCampaignService.MutateKeywordPlanCampaigns:output_type -> google.ads.googleads.v22.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 @@ -506,12 +506,12 @@ var file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_d 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_init() } +func file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanCampaignOperation_Create)(nil), (*KeywordPlanCampaignOperation_Update)(nil), (*KeywordPlanCampaignOperation_Remove)(nil), @@ -520,17 +520,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_campaign_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_campaign_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 35f8e1f4..1fc945fb 100644 --- a/services/keyword_plan_campaign_service_grpc.pb.go +++ b/services/keyword_plan_campaign_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_campaign_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_campaign_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanCampaignService/MutateKeywordPlanCampaigns" + KeywordPlanCampaignService_MutateKeywordPlanCampaigns_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanCampaignService/MutateKeywordPlanCampaigns" ) // KeywordPlanCampaignServiceClient is the client API for KeywordPlanCampaignService service. @@ -167,7 +167,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.v21.services.KeywordPlanCampaignService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanCampaignService", HandlerType: (*KeywordPlanCampaignServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -176,5 +176,5 @@ var KeywordPlanCampaignService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_campaign_service.proto", + Metadata: "google/ads/googleads/v22/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 e5d9b381..a9d8f09e 100644 --- a/services/keyword_plan_idea_service.pb.go +++ b/services/keyword_plan_idea_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_idea_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_idea_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. +// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. type GenerateKeywordIdeasRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The ID of the customer with the recommendation. @@ -70,9 +70,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.v21.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.v22.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.v21.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.v22.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. @@ -92,7 +92,7 @@ type GenerateKeywordIdeasRequest struct { func (x *GenerateKeywordIdeasRequest) Reset() { *x = GenerateKeywordIdeasRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -104,7 +104,7 @@ func (x *GenerateKeywordIdeasRequest) String() string { func (*GenerateKeywordIdeasRequest) ProtoMessage() {} func (x *GenerateKeywordIdeasRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -117,7 +117,7 @@ func (x *GenerateKeywordIdeasRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeasRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeasRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateKeywordIdeasRequest) GetCustomerId() string { @@ -279,7 +279,7 @@ type KeywordAndUrlSeed struct { func (x *KeywordAndUrlSeed) Reset() { *x = KeywordAndUrlSeed{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *KeywordAndUrlSeed) String() string { func (*KeywordAndUrlSeed) ProtoMessage() {} func (x *KeywordAndUrlSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *KeywordAndUrlSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordAndUrlSeed.ProtoReflect.Descriptor instead. func (*KeywordAndUrlSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordAndUrlSeed) GetUrl() string { @@ -332,7 +332,7 @@ type KeywordSeed struct { func (x *KeywordSeed) Reset() { *x = KeywordSeed{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_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_v21_services_keyword_plan_idea_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[2] if 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_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{2} } func (x *KeywordSeed) GetKeywords() []string { @@ -379,7 +379,7 @@ type SiteSeed struct { func (x *SiteSeed) Reset() { *x = SiteSeed{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -391,7 +391,7 @@ func (x *SiteSeed) String() string { func (*SiteSeed) ProtoMessage() {} func (x *SiteSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -404,7 +404,7 @@ func (x *SiteSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use SiteSeed.ProtoReflect.Descriptor instead. func (*SiteSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{3} } func (x *SiteSeed) GetSite() string { @@ -425,7 +425,7 @@ type UrlSeed struct { func (x *UrlSeed) Reset() { *x = UrlSeed{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -437,7 +437,7 @@ func (x *UrlSeed) String() string { func (*UrlSeed) ProtoMessage() {} func (x *UrlSeed) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -450,7 +450,7 @@ func (x *UrlSeed) ProtoReflect() protoreflect.Message { // Deprecated: Use UrlSeed.ProtoReflect.Descriptor instead. func (*UrlSeed) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{4} } func (x *UrlSeed) GetUrl() string { @@ -461,7 +461,7 @@ func (x *UrlSeed) GetUrl() string { } // Response message for -// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. +// [KeywordPlanIdeaService.GenerateKeywordIdeas][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordIdeas]. type GenerateKeywordIdeaResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Results of generating keyword ideas. @@ -481,7 +481,7 @@ type GenerateKeywordIdeaResponse struct { func (x *GenerateKeywordIdeaResponse) Reset() { *x = GenerateKeywordIdeaResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -493,7 +493,7 @@ func (x *GenerateKeywordIdeaResponse) String() string { func (*GenerateKeywordIdeaResponse) ProtoMessage() {} func (x *GenerateKeywordIdeaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -506,7 +506,7 @@ func (x *GenerateKeywordIdeaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeaResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{5} } func (x *GenerateKeywordIdeaResponse) GetResults() []*GenerateKeywordIdeaResult { @@ -561,7 +561,7 @@ type GenerateKeywordIdeaResult struct { func (x *GenerateKeywordIdeaResult) Reset() { *x = GenerateKeywordIdeaResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -573,7 +573,7 @@ func (x *GenerateKeywordIdeaResult) String() string { func (*GenerateKeywordIdeaResult) ProtoMessage() {} func (x *GenerateKeywordIdeaResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -586,7 +586,7 @@ func (x *GenerateKeywordIdeaResult) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateKeywordIdeaResult.ProtoReflect.Descriptor instead. func (*GenerateKeywordIdeaResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{6} } func (x *GenerateKeywordIdeaResult) GetText() string { @@ -618,7 +618,7 @@ func (x *GenerateKeywordIdeaResult) GetCloseVariants() []string { } // Request message for -// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. +// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. type GenerateKeywordHistoricalMetricsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The ID of the customer with the recommendation. @@ -642,7 +642,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.v21.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.v22.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. @@ -653,7 +653,7 @@ type GenerateKeywordHistoricalMetricsRequest struct { func (x *GenerateKeywordHistoricalMetricsRequest) Reset() { *x = GenerateKeywordHistoricalMetricsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -665,7 +665,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) String() string { func (*GenerateKeywordHistoricalMetricsRequest) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -678,7 +678,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) ProtoReflect() protoreflect.Me // Deprecated: Use GenerateKeywordHistoricalMetricsRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{7} } func (x *GenerateKeywordHistoricalMetricsRequest) GetCustomerId() string { @@ -738,7 +738,7 @@ func (x *GenerateKeywordHistoricalMetricsRequest) GetHistoricalMetricsOptions() } // Response message for -// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. +// [KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics]. type GenerateKeywordHistoricalMetricsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // List of keywords and their historical metrics. @@ -751,7 +751,7 @@ type GenerateKeywordHistoricalMetricsResponse struct { func (x *GenerateKeywordHistoricalMetricsResponse) Reset() { *x = GenerateKeywordHistoricalMetricsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -763,7 +763,7 @@ func (x *GenerateKeywordHistoricalMetricsResponse) String() string { func (*GenerateKeywordHistoricalMetricsResponse) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -776,7 +776,7 @@ func (x *GenerateKeywordHistoricalMetricsResponse) ProtoReflect() protoreflect.M // Deprecated: Use GenerateKeywordHistoricalMetricsResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{8} } func (x *GenerateKeywordHistoricalMetricsResponse) GetResults() []*GenerateKeywordHistoricalMetricsResult { @@ -814,7 +814,7 @@ type GenerateKeywordHistoricalMetricsResult struct { func (x *GenerateKeywordHistoricalMetricsResult) Reset() { *x = GenerateKeywordHistoricalMetricsResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -826,7 +826,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) String() string { func (*GenerateKeywordHistoricalMetricsResult) ProtoMessage() {} func (x *GenerateKeywordHistoricalMetricsResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -839,7 +839,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) ProtoReflect() protoreflect.Mes // Deprecated: Use GenerateKeywordHistoricalMetricsResult.ProtoReflect.Descriptor instead. func (*GenerateKeywordHistoricalMetricsResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{9} } func (x *GenerateKeywordHistoricalMetricsResult) GetText() string { @@ -864,7 +864,7 @@ func (x *GenerateKeywordHistoricalMetricsResult) GetKeywordMetrics() *common.Key } // Request message for -// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. +// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. type GenerateAdGroupThemesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -881,7 +881,7 @@ type GenerateAdGroupThemesRequest struct { func (x *GenerateAdGroupThemesRequest) Reset() { *x = GenerateAdGroupThemesRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -893,7 +893,7 @@ func (x *GenerateAdGroupThemesRequest) String() string { func (*GenerateAdGroupThemesRequest) ProtoMessage() {} func (x *GenerateAdGroupThemesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -906,7 +906,7 @@ func (x *GenerateAdGroupThemesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateAdGroupThemesRequest.ProtoReflect.Descriptor instead. func (*GenerateAdGroupThemesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{10} } func (x *GenerateAdGroupThemesRequest) GetCustomerId() string { @@ -931,7 +931,7 @@ func (x *GenerateAdGroupThemesRequest) GetAdGroups() []string { } // Response message for -// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. +// [KeywordPlanIdeaService.GenerateAdGroupThemes][google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateAdGroupThemes]. type GenerateAdGroupThemesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // A list of suggested AdGroup/keyword pairings. @@ -944,7 +944,7 @@ type GenerateAdGroupThemesResponse struct { func (x *GenerateAdGroupThemesResponse) Reset() { *x = GenerateAdGroupThemesResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -956,7 +956,7 @@ func (x *GenerateAdGroupThemesResponse) String() string { func (*GenerateAdGroupThemesResponse) ProtoMessage() {} func (x *GenerateAdGroupThemesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -969,7 +969,7 @@ func (x *GenerateAdGroupThemesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateAdGroupThemesResponse.ProtoReflect.Descriptor instead. func (*GenerateAdGroupThemesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{11} } func (x *GenerateAdGroupThemesResponse) GetAdGroupKeywordSuggestions() []*AdGroupKeywordSuggestion { @@ -994,7 +994,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.v21.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.v22.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"` @@ -1007,7 +1007,7 @@ type AdGroupKeywordSuggestion struct { func (x *AdGroupKeywordSuggestion) Reset() { *x = AdGroupKeywordSuggestion{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1019,7 +1019,7 @@ func (x *AdGroupKeywordSuggestion) String() string { func (*AdGroupKeywordSuggestion) ProtoMessage() {} func (x *AdGroupKeywordSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1032,7 +1032,7 @@ func (x *AdGroupKeywordSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use AdGroupKeywordSuggestion.ProtoReflect.Descriptor instead. func (*AdGroupKeywordSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{12} } func (x *AdGroupKeywordSuggestion) GetKeywordText() string { @@ -1090,7 +1090,7 @@ type UnusableAdGroup struct { func (x *UnusableAdGroup) Reset() { *x = UnusableAdGroup{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1102,7 +1102,7 @@ func (x *UnusableAdGroup) String() string { func (*UnusableAdGroup) ProtoMessage() {} func (x *UnusableAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1115,7 +1115,7 @@ func (x *UnusableAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use UnusableAdGroup.ProtoReflect.Descriptor instead. func (*UnusableAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{13} } func (x *UnusableAdGroup) GetAdGroup() string { @@ -1156,7 +1156,7 @@ type GenerateKeywordForecastMetricsRequest struct { func (x *GenerateKeywordForecastMetricsRequest) Reset() { *x = GenerateKeywordForecastMetricsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1168,7 +1168,7 @@ func (x *GenerateKeywordForecastMetricsRequest) String() string { func (*GenerateKeywordForecastMetricsRequest) ProtoMessage() {} func (x *GenerateKeywordForecastMetricsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1181,7 +1181,7 @@ func (x *GenerateKeywordForecastMetricsRequest) ProtoReflect() protoreflect.Mess // Deprecated: Use GenerateKeywordForecastMetricsRequest.ProtoReflect.Descriptor instead. func (*GenerateKeywordForecastMetricsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{14} } func (x *GenerateKeywordForecastMetricsRequest) GetCustomerId() string { @@ -1223,7 +1223,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.v21.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.v22.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"` @@ -1242,7 +1242,7 @@ type CampaignToForecast struct { func (x *CampaignToForecast) Reset() { *x = CampaignToForecast{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1254,7 +1254,7 @@ func (x *CampaignToForecast) String() string { func (*CampaignToForecast) ProtoMessage() {} func (x *CampaignToForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1267,7 +1267,7 @@ func (x *CampaignToForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignToForecast.ProtoReflect.Descriptor instead. func (*CampaignToForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15} } func (x *CampaignToForecast) GetLanguageConstants() []string { @@ -1338,7 +1338,7 @@ type ForecastAdGroup struct { func (x *ForecastAdGroup) Reset() { *x = ForecastAdGroup{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1350,7 +1350,7 @@ func (x *ForecastAdGroup) String() string { func (*ForecastAdGroup) ProtoMessage() {} func (x *ForecastAdGroup) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1363,7 +1363,7 @@ func (x *ForecastAdGroup) ProtoReflect() protoreflect.Message { // Deprecated: Use ForecastAdGroup.ProtoReflect.Descriptor instead. func (*ForecastAdGroup) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{16} } func (x *ForecastAdGroup) GetMaxCpcBidMicros() int64 { @@ -1403,7 +1403,7 @@ type BiddableKeyword struct { func (x *BiddableKeyword) Reset() { *x = BiddableKeyword{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1415,7 +1415,7 @@ func (x *BiddableKeyword) String() string { func (*BiddableKeyword) ProtoMessage() {} func (x *BiddableKeyword) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1428,7 +1428,7 @@ func (x *BiddableKeyword) ProtoReflect() protoreflect.Message { // Deprecated: Use BiddableKeyword.ProtoReflect.Descriptor instead. func (*BiddableKeyword) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{17} } func (x *BiddableKeyword) GetKeyword() *common.KeywordInfo { @@ -1460,7 +1460,7 @@ type CriterionBidModifier struct { func (x *CriterionBidModifier) Reset() { *x = CriterionBidModifier{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1472,7 +1472,7 @@ func (x *CriterionBidModifier) String() string { func (*CriterionBidModifier) ProtoMessage() {} func (x *CriterionBidModifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1485,7 +1485,7 @@ func (x *CriterionBidModifier) ProtoReflect() protoreflect.Message { // Deprecated: Use CriterionBidModifier.ProtoReflect.Descriptor instead. func (*CriterionBidModifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{18} } func (x *CriterionBidModifier) GetGeoTargetConstant() string { @@ -1518,7 +1518,7 @@ type ManualCpcBiddingStrategy struct { func (x *ManualCpcBiddingStrategy) Reset() { *x = ManualCpcBiddingStrategy{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1530,7 +1530,7 @@ func (x *ManualCpcBiddingStrategy) String() string { func (*ManualCpcBiddingStrategy) ProtoMessage() {} func (x *ManualCpcBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1543,7 +1543,7 @@ func (x *ManualCpcBiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use ManualCpcBiddingStrategy.ProtoReflect.Descriptor instead. func (*ManualCpcBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{19} } func (x *ManualCpcBiddingStrategy) GetDailyBudgetMicros() int64 { @@ -1575,7 +1575,7 @@ type MaximizeClicksBiddingStrategy struct { func (x *MaximizeClicksBiddingStrategy) Reset() { *x = MaximizeClicksBiddingStrategy{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1587,7 +1587,7 @@ func (x *MaximizeClicksBiddingStrategy) String() string { func (*MaximizeClicksBiddingStrategy) ProtoMessage() {} func (x *MaximizeClicksBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1600,7 +1600,7 @@ func (x *MaximizeClicksBiddingStrategy) ProtoReflect() protoreflect.Message { // Deprecated: Use MaximizeClicksBiddingStrategy.ProtoReflect.Descriptor instead. func (*MaximizeClicksBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{20} } func (x *MaximizeClicksBiddingStrategy) GetDailyTargetSpendMicros() int64 { @@ -1629,7 +1629,7 @@ type MaximizeConversionsBiddingStrategy struct { func (x *MaximizeConversionsBiddingStrategy) Reset() { *x = MaximizeConversionsBiddingStrategy{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1641,7 +1641,7 @@ func (x *MaximizeConversionsBiddingStrategy) String() string { func (*MaximizeConversionsBiddingStrategy) ProtoMessage() {} func (x *MaximizeConversionsBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1654,7 +1654,7 @@ func (x *MaximizeConversionsBiddingStrategy) ProtoReflect() protoreflect.Message // Deprecated: Use MaximizeConversionsBiddingStrategy.ProtoReflect.Descriptor instead. func (*MaximizeConversionsBiddingStrategy) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{21} } func (x *MaximizeConversionsBiddingStrategy) GetDailyTargetSpendMicros() int64 { @@ -1675,7 +1675,7 @@ type GenerateKeywordForecastMetricsResponse struct { func (x *GenerateKeywordForecastMetricsResponse) Reset() { *x = GenerateKeywordForecastMetricsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1687,7 +1687,7 @@ func (x *GenerateKeywordForecastMetricsResponse) String() string { func (*GenerateKeywordForecastMetricsResponse) ProtoMessage() {} func (x *GenerateKeywordForecastMetricsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1700,7 +1700,7 @@ func (x *GenerateKeywordForecastMetricsResponse) ProtoReflect() protoreflect.Mes // Deprecated: Use GenerateKeywordForecastMetricsResponse.ProtoReflect.Descriptor instead. func (*GenerateKeywordForecastMetricsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{22} } func (x *GenerateKeywordForecastMetricsResponse) GetCampaignForecastMetrics() *KeywordForecastMetrics { @@ -1735,7 +1735,7 @@ type KeywordForecastMetrics struct { func (x *KeywordForecastMetrics) Reset() { *x = KeywordForecastMetrics{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1747,7 +1747,7 @@ func (x *KeywordForecastMetrics) String() string { func (*KeywordForecastMetrics) ProtoMessage() {} func (x *KeywordForecastMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1760,7 +1760,7 @@ func (x *KeywordForecastMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordForecastMetrics.ProtoReflect.Descriptor instead. func (*KeywordForecastMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{23} } func (x *KeywordForecastMetrics) GetImpressions() float64 { @@ -1836,7 +1836,7 @@ type CampaignToForecast_CampaignBiddingStrategy struct { func (x *CampaignToForecast_CampaignBiddingStrategy) Reset() { *x = CampaignToForecast_CampaignBiddingStrategy{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1848,7 +1848,7 @@ func (x *CampaignToForecast_CampaignBiddingStrategy) String() string { func (*CampaignToForecast_CampaignBiddingStrategy) ProtoMessage() {} func (x *CampaignToForecast_CampaignBiddingStrategy) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1861,7 +1861,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_v21_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15, 0} + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP(), []int{15, 0} } func (x *CampaignToForecast_CampaignBiddingStrategy) GetBiddingStrategy() isCampaignToForecast_CampaignBiddingStrategy_BiddingStrategy { @@ -1926,35 +1926,35 @@ func (*CampaignToForecast_CampaignBiddingStrategy_MaximizeClicksBiddingStrategy) func (*CampaignToForecast_CampaignBiddingStrategy_MaximizeConversionsBiddingStrategy) isCampaignToForecast_CampaignBiddingStrategy_BiddingStrategy() { } -var File_google_ads_googleads_v21_services_keyword_plan_idea_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_idea_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x5f, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -1981,7 +1981,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1989,7 +1989,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1998,37 +1998,37 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x72, 0x6c, 0x53, 0x65, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2049,14 +2049,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2071,14 +2071,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2103,7 +2103,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2111,14 +2111,14 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, + 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x48, 0x69, 0x73, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2128,14 +2128,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2149,7 +2149,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2168,14 +2168,14 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2189,7 +2189,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, 0x72, + 0x76, 0x32, 0x32, 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, @@ -2214,12 +2214,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x44, 0x61, 0x74, 0x65, 0x52, + 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x32, 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, @@ -2230,13 +2230,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2244,13 +2244,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2260,7 +2260,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2268,7 +2268,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2276,7 +2276,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2286,7 +2286,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x61, 0x78, 0x69, 0x6d, + 0x32, 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, @@ -2301,13 +2301,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2315,7 +2315,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2365,7 +2365,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, 0x77, 0x6f, + 0x32, 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, @@ -2408,63 +2408,63 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x3f, 0x2f, 0x76, 0x32, 0x32, 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, 0xfc, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x60, 0xda, 0x41, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x6b, 0x65, 0x79, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x2c, 0x61, 0x64, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, 0x8a, 0x02, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x53, 0xda, 0x41, 0x08, 0x63, 0x61, 0x6d, 0x70, 0x61, 0x69, 0x67, 0x6e, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x42, 0x3a, 0x01, 0x2a, 0x22, - 0x3d, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x3d, 0x2f, 0x76, 0x32, 0x32, 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, 0x63, 0x73, 0x1a, 0x45, @@ -2474,118 +2474,118 @@ var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) -var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_goTypes = []any{ - (*GenerateKeywordIdeasRequest)(nil), // 0: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest - (*KeywordAndUrlSeed)(nil), // 1: google.ads.googleads.v21.services.KeywordAndUrlSeed - (*KeywordSeed)(nil), // 2: google.ads.googleads.v21.services.KeywordSeed - (*SiteSeed)(nil), // 3: google.ads.googleads.v21.services.SiteSeed - (*UrlSeed)(nil), // 4: google.ads.googleads.v21.services.UrlSeed - (*GenerateKeywordIdeaResponse)(nil), // 5: google.ads.googleads.v21.services.GenerateKeywordIdeaResponse - (*GenerateKeywordIdeaResult)(nil), // 6: google.ads.googleads.v21.services.GenerateKeywordIdeaResult - (*GenerateKeywordHistoricalMetricsRequest)(nil), // 7: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest - (*GenerateKeywordHistoricalMetricsResponse)(nil), // 8: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse - (*GenerateKeywordHistoricalMetricsResult)(nil), // 9: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResult - (*GenerateAdGroupThemesRequest)(nil), // 10: google.ads.googleads.v21.services.GenerateAdGroupThemesRequest - (*GenerateAdGroupThemesResponse)(nil), // 11: google.ads.googleads.v21.services.GenerateAdGroupThemesResponse - (*AdGroupKeywordSuggestion)(nil), // 12: google.ads.googleads.v21.services.AdGroupKeywordSuggestion - (*UnusableAdGroup)(nil), // 13: google.ads.googleads.v21.services.UnusableAdGroup - (*GenerateKeywordForecastMetricsRequest)(nil), // 14: google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest - (*CampaignToForecast)(nil), // 15: google.ads.googleads.v21.services.CampaignToForecast - (*ForecastAdGroup)(nil), // 16: google.ads.googleads.v21.services.ForecastAdGroup - (*BiddableKeyword)(nil), // 17: google.ads.googleads.v21.services.BiddableKeyword - (*CriterionBidModifier)(nil), // 18: google.ads.googleads.v21.services.CriterionBidModifier - (*ManualCpcBiddingStrategy)(nil), // 19: google.ads.googleads.v21.services.ManualCpcBiddingStrategy - (*MaximizeClicksBiddingStrategy)(nil), // 20: google.ads.googleads.v21.services.MaximizeClicksBiddingStrategy - (*MaximizeConversionsBiddingStrategy)(nil), // 21: google.ads.googleads.v21.services.MaximizeConversionsBiddingStrategy - (*GenerateKeywordForecastMetricsResponse)(nil), // 22: google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse - (*KeywordForecastMetrics)(nil), // 23: google.ads.googleads.v21.services.KeywordForecastMetrics - (*CampaignToForecast_CampaignBiddingStrategy)(nil), // 24: google.ads.googleads.v21.services.CampaignToForecast.CampaignBiddingStrategy - (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 25: google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - (enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 26: google.ads.googleads.v21.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation - (*common.KeywordPlanAggregateMetrics)(nil), // 27: google.ads.googleads.v21.common.KeywordPlanAggregateMetrics - (*common.HistoricalMetricsOptions)(nil), // 28: google.ads.googleads.v21.common.HistoricalMetricsOptions - (*common.KeywordPlanAggregateMetricResults)(nil), // 29: google.ads.googleads.v21.common.KeywordPlanAggregateMetricResults - (*common.KeywordPlanHistoricalMetrics)(nil), // 30: google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics - (*common.KeywordAnnotations)(nil), // 31: google.ads.googleads.v21.common.KeywordAnnotations - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 32: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - (*common.DateRange)(nil), // 33: google.ads.googleads.v21.common.DateRange - (*common.KeywordInfo)(nil), // 34: google.ads.googleads.v21.common.KeywordInfo -} -var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_depIdxs = []int32{ - 25, // 0: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.keyword_plan_network:type_name -> google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 26, // 1: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.keyword_annotation:type_name -> google.ads.googleads.v21.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation - 27, // 2: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.aggregate_metrics:type_name -> google.ads.googleads.v21.common.KeywordPlanAggregateMetrics - 28, // 3: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.historical_metrics_options:type_name -> google.ads.googleads.v21.common.HistoricalMetricsOptions - 1, // 4: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.keyword_and_url_seed:type_name -> google.ads.googleads.v21.services.KeywordAndUrlSeed - 2, // 5: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.keyword_seed:type_name -> google.ads.googleads.v21.services.KeywordSeed - 4, // 6: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.url_seed:type_name -> google.ads.googleads.v21.services.UrlSeed - 3, // 7: google.ads.googleads.v21.services.GenerateKeywordIdeasRequest.site_seed:type_name -> google.ads.googleads.v21.services.SiteSeed - 6, // 8: google.ads.googleads.v21.services.GenerateKeywordIdeaResponse.results:type_name -> google.ads.googleads.v21.services.GenerateKeywordIdeaResult - 29, // 9: google.ads.googleads.v21.services.GenerateKeywordIdeaResponse.aggregate_metric_results:type_name -> google.ads.googleads.v21.common.KeywordPlanAggregateMetricResults - 30, // 10: google.ads.googleads.v21.services.GenerateKeywordIdeaResult.keyword_idea_metrics:type_name -> google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics - 31, // 11: google.ads.googleads.v21.services.GenerateKeywordIdeaResult.keyword_annotations:type_name -> google.ads.googleads.v21.common.KeywordAnnotations - 25, // 12: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest.keyword_plan_network:type_name -> google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 27, // 13: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest.aggregate_metrics:type_name -> google.ads.googleads.v21.common.KeywordPlanAggregateMetrics - 28, // 14: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest.historical_metrics_options:type_name -> google.ads.googleads.v21.common.HistoricalMetricsOptions - 9, // 15: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse.results:type_name -> google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResult - 29, // 16: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse.aggregate_metric_results:type_name -> google.ads.googleads.v21.common.KeywordPlanAggregateMetricResults - 30, // 17: google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResult.keyword_metrics:type_name -> google.ads.googleads.v21.common.KeywordPlanHistoricalMetrics - 12, // 18: google.ads.googleads.v21.services.GenerateAdGroupThemesResponse.ad_group_keyword_suggestions:type_name -> google.ads.googleads.v21.services.AdGroupKeywordSuggestion - 13, // 19: google.ads.googleads.v21.services.GenerateAdGroupThemesResponse.unusable_ad_groups:type_name -> google.ads.googleads.v21.services.UnusableAdGroup - 32, // 20: google.ads.googleads.v21.services.AdGroupKeywordSuggestion.suggested_match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - 33, // 21: google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest.forecast_period:type_name -> google.ads.googleads.v21.common.DateRange - 15, // 22: google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest.campaign:type_name -> google.ads.googleads.v21.services.CampaignToForecast - 18, // 23: google.ads.googleads.v21.services.CampaignToForecast.geo_modifiers:type_name -> google.ads.googleads.v21.services.CriterionBidModifier - 25, // 24: google.ads.googleads.v21.services.CampaignToForecast.keyword_plan_network:type_name -> google.ads.googleads.v21.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork - 34, // 25: google.ads.googleads.v21.services.CampaignToForecast.negative_keywords:type_name -> google.ads.googleads.v21.common.KeywordInfo - 24, // 26: google.ads.googleads.v21.services.CampaignToForecast.bidding_strategy:type_name -> google.ads.googleads.v21.services.CampaignToForecast.CampaignBiddingStrategy - 16, // 27: google.ads.googleads.v21.services.CampaignToForecast.ad_groups:type_name -> google.ads.googleads.v21.services.ForecastAdGroup - 17, // 28: google.ads.googleads.v21.services.ForecastAdGroup.biddable_keywords:type_name -> google.ads.googleads.v21.services.BiddableKeyword - 34, // 29: google.ads.googleads.v21.services.ForecastAdGroup.negative_keywords:type_name -> google.ads.googleads.v21.common.KeywordInfo - 34, // 30: google.ads.googleads.v21.services.BiddableKeyword.keyword:type_name -> google.ads.googleads.v21.common.KeywordInfo - 23, // 31: google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse.campaign_forecast_metrics:type_name -> google.ads.googleads.v21.services.KeywordForecastMetrics - 19, // 32: google.ads.googleads.v21.services.CampaignToForecast.CampaignBiddingStrategy.manual_cpc_bidding_strategy:type_name -> google.ads.googleads.v21.services.ManualCpcBiddingStrategy - 20, // 33: google.ads.googleads.v21.services.CampaignToForecast.CampaignBiddingStrategy.maximize_clicks_bidding_strategy:type_name -> google.ads.googleads.v21.services.MaximizeClicksBiddingStrategy - 21, // 34: google.ads.googleads.v21.services.CampaignToForecast.CampaignBiddingStrategy.maximize_conversions_bidding_strategy:type_name -> google.ads.googleads.v21.services.MaximizeConversionsBiddingStrategy - 0, // 35: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordIdeas:input_type -> google.ads.googleads.v21.services.GenerateKeywordIdeasRequest - 7, // 36: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:input_type -> google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsRequest - 10, // 37: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateAdGroupThemes:input_type -> google.ads.googleads.v21.services.GenerateAdGroupThemesRequest - 14, // 38: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:input_type -> google.ads.googleads.v21.services.GenerateKeywordForecastMetricsRequest - 5, // 39: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordIdeas:output_type -> google.ads.googleads.v21.services.GenerateKeywordIdeaResponse - 8, // 40: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:output_type -> google.ads.googleads.v21.services.GenerateKeywordHistoricalMetricsResponse - 11, // 41: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateAdGroupThemes:output_type -> google.ads.googleads.v21.services.GenerateAdGroupThemesResponse - 22, // 42: google.ads.googleads.v21.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:output_type -> google.ads.googleads.v21.services.GenerateKeywordForecastMetricsResponse + return file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes = make([]protoimpl.MessageInfo, 25) +var file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_goTypes = []any{ + (*GenerateKeywordIdeasRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest + (*KeywordAndUrlSeed)(nil), // 1: google.ads.googleads.v22.services.KeywordAndUrlSeed + (*KeywordSeed)(nil), // 2: google.ads.googleads.v22.services.KeywordSeed + (*SiteSeed)(nil), // 3: google.ads.googleads.v22.services.SiteSeed + (*UrlSeed)(nil), // 4: google.ads.googleads.v22.services.UrlSeed + (*GenerateKeywordIdeaResponse)(nil), // 5: google.ads.googleads.v22.services.GenerateKeywordIdeaResponse + (*GenerateKeywordIdeaResult)(nil), // 6: google.ads.googleads.v22.services.GenerateKeywordIdeaResult + (*GenerateKeywordHistoricalMetricsRequest)(nil), // 7: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest + (*GenerateKeywordHistoricalMetricsResponse)(nil), // 8: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse + (*GenerateKeywordHistoricalMetricsResult)(nil), // 9: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResult + (*GenerateAdGroupThemesRequest)(nil), // 10: google.ads.googleads.v22.services.GenerateAdGroupThemesRequest + (*GenerateAdGroupThemesResponse)(nil), // 11: google.ads.googleads.v22.services.GenerateAdGroupThemesResponse + (*AdGroupKeywordSuggestion)(nil), // 12: google.ads.googleads.v22.services.AdGroupKeywordSuggestion + (*UnusableAdGroup)(nil), // 13: google.ads.googleads.v22.services.UnusableAdGroup + (*GenerateKeywordForecastMetricsRequest)(nil), // 14: google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest + (*CampaignToForecast)(nil), // 15: google.ads.googleads.v22.services.CampaignToForecast + (*ForecastAdGroup)(nil), // 16: google.ads.googleads.v22.services.ForecastAdGroup + (*BiddableKeyword)(nil), // 17: google.ads.googleads.v22.services.BiddableKeyword + (*CriterionBidModifier)(nil), // 18: google.ads.googleads.v22.services.CriterionBidModifier + (*ManualCpcBiddingStrategy)(nil), // 19: google.ads.googleads.v22.services.ManualCpcBiddingStrategy + (*MaximizeClicksBiddingStrategy)(nil), // 20: google.ads.googleads.v22.services.MaximizeClicksBiddingStrategy + (*MaximizeConversionsBiddingStrategy)(nil), // 21: google.ads.googleads.v22.services.MaximizeConversionsBiddingStrategy + (*GenerateKeywordForecastMetricsResponse)(nil), // 22: google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse + (*KeywordForecastMetrics)(nil), // 23: google.ads.googleads.v22.services.KeywordForecastMetrics + (*CampaignToForecast_CampaignBiddingStrategy)(nil), // 24: google.ads.googleads.v22.services.CampaignToForecast.CampaignBiddingStrategy + (enums.KeywordPlanNetworkEnum_KeywordPlanNetwork)(0), // 25: google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + (enums.KeywordPlanKeywordAnnotationEnum_KeywordPlanKeywordAnnotation)(0), // 26: google.ads.googleads.v22.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation + (*common.KeywordPlanAggregateMetrics)(nil), // 27: google.ads.googleads.v22.common.KeywordPlanAggregateMetrics + (*common.HistoricalMetricsOptions)(nil), // 28: google.ads.googleads.v22.common.HistoricalMetricsOptions + (*common.KeywordPlanAggregateMetricResults)(nil), // 29: google.ads.googleads.v22.common.KeywordPlanAggregateMetricResults + (*common.KeywordPlanHistoricalMetrics)(nil), // 30: google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics + (*common.KeywordAnnotations)(nil), // 31: google.ads.googleads.v22.common.KeywordAnnotations + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 32: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + (*common.DateRange)(nil), // 33: google.ads.googleads.v22.common.DateRange + (*common.KeywordInfo)(nil), // 34: google.ads.googleads.v22.common.KeywordInfo +} +var file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_depIdxs = []int32{ + 25, // 0: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.keyword_plan_network:type_name -> google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 26, // 1: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.keyword_annotation:type_name -> google.ads.googleads.v22.enums.KeywordPlanKeywordAnnotationEnum.KeywordPlanKeywordAnnotation + 27, // 2: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.aggregate_metrics:type_name -> google.ads.googleads.v22.common.KeywordPlanAggregateMetrics + 28, // 3: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.historical_metrics_options:type_name -> google.ads.googleads.v22.common.HistoricalMetricsOptions + 1, // 4: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.keyword_and_url_seed:type_name -> google.ads.googleads.v22.services.KeywordAndUrlSeed + 2, // 5: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.keyword_seed:type_name -> google.ads.googleads.v22.services.KeywordSeed + 4, // 6: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.url_seed:type_name -> google.ads.googleads.v22.services.UrlSeed + 3, // 7: google.ads.googleads.v22.services.GenerateKeywordIdeasRequest.site_seed:type_name -> google.ads.googleads.v22.services.SiteSeed + 6, // 8: google.ads.googleads.v22.services.GenerateKeywordIdeaResponse.results:type_name -> google.ads.googleads.v22.services.GenerateKeywordIdeaResult + 29, // 9: google.ads.googleads.v22.services.GenerateKeywordIdeaResponse.aggregate_metric_results:type_name -> google.ads.googleads.v22.common.KeywordPlanAggregateMetricResults + 30, // 10: google.ads.googleads.v22.services.GenerateKeywordIdeaResult.keyword_idea_metrics:type_name -> google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics + 31, // 11: google.ads.googleads.v22.services.GenerateKeywordIdeaResult.keyword_annotations:type_name -> google.ads.googleads.v22.common.KeywordAnnotations + 25, // 12: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest.keyword_plan_network:type_name -> google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 27, // 13: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest.aggregate_metrics:type_name -> google.ads.googleads.v22.common.KeywordPlanAggregateMetrics + 28, // 14: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest.historical_metrics_options:type_name -> google.ads.googleads.v22.common.HistoricalMetricsOptions + 9, // 15: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse.results:type_name -> google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResult + 29, // 16: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse.aggregate_metric_results:type_name -> google.ads.googleads.v22.common.KeywordPlanAggregateMetricResults + 30, // 17: google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResult.keyword_metrics:type_name -> google.ads.googleads.v22.common.KeywordPlanHistoricalMetrics + 12, // 18: google.ads.googleads.v22.services.GenerateAdGroupThemesResponse.ad_group_keyword_suggestions:type_name -> google.ads.googleads.v22.services.AdGroupKeywordSuggestion + 13, // 19: google.ads.googleads.v22.services.GenerateAdGroupThemesResponse.unusable_ad_groups:type_name -> google.ads.googleads.v22.services.UnusableAdGroup + 32, // 20: google.ads.googleads.v22.services.AdGroupKeywordSuggestion.suggested_match_type:type_name -> google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + 33, // 21: google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest.forecast_period:type_name -> google.ads.googleads.v22.common.DateRange + 15, // 22: google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest.campaign:type_name -> google.ads.googleads.v22.services.CampaignToForecast + 18, // 23: google.ads.googleads.v22.services.CampaignToForecast.geo_modifiers:type_name -> google.ads.googleads.v22.services.CriterionBidModifier + 25, // 24: google.ads.googleads.v22.services.CampaignToForecast.keyword_plan_network:type_name -> google.ads.googleads.v22.enums.KeywordPlanNetworkEnum.KeywordPlanNetwork + 34, // 25: google.ads.googleads.v22.services.CampaignToForecast.negative_keywords:type_name -> google.ads.googleads.v22.common.KeywordInfo + 24, // 26: google.ads.googleads.v22.services.CampaignToForecast.bidding_strategy:type_name -> google.ads.googleads.v22.services.CampaignToForecast.CampaignBiddingStrategy + 16, // 27: google.ads.googleads.v22.services.CampaignToForecast.ad_groups:type_name -> google.ads.googleads.v22.services.ForecastAdGroup + 17, // 28: google.ads.googleads.v22.services.ForecastAdGroup.biddable_keywords:type_name -> google.ads.googleads.v22.services.BiddableKeyword + 34, // 29: google.ads.googleads.v22.services.ForecastAdGroup.negative_keywords:type_name -> google.ads.googleads.v22.common.KeywordInfo + 34, // 30: google.ads.googleads.v22.services.BiddableKeyword.keyword:type_name -> google.ads.googleads.v22.common.KeywordInfo + 23, // 31: google.ads.googleads.v22.services.GenerateKeywordForecastMetricsResponse.campaign_forecast_metrics:type_name -> google.ads.googleads.v22.services.KeywordForecastMetrics + 19, // 32: google.ads.googleads.v22.services.CampaignToForecast.CampaignBiddingStrategy.manual_cpc_bidding_strategy:type_name -> google.ads.googleads.v22.services.ManualCpcBiddingStrategy + 20, // 33: google.ads.googleads.v22.services.CampaignToForecast.CampaignBiddingStrategy.maximize_clicks_bidding_strategy:type_name -> google.ads.googleads.v22.services.MaximizeClicksBiddingStrategy + 21, // 34: google.ads.googleads.v22.services.CampaignToForecast.CampaignBiddingStrategy.maximize_conversions_bidding_strategy:type_name -> google.ads.googleads.v22.services.MaximizeConversionsBiddingStrategy + 0, // 35: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordIdeas:input_type -> google.ads.googleads.v22.services.GenerateKeywordIdeasRequest + 7, // 36: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:input_type -> google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsRequest + 10, // 37: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateAdGroupThemes:input_type -> google.ads.googleads.v22.services.GenerateAdGroupThemesRequest + 14, // 38: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:input_type -> google.ads.googleads.v22.services.GenerateKeywordForecastMetricsRequest + 5, // 39: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordIdeas:output_type -> google.ads.googleads.v22.services.GenerateKeywordIdeaResponse + 8, // 40: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordHistoricalMetrics:output_type -> google.ads.googleads.v22.services.GenerateKeywordHistoricalMetricsResponse + 11, // 41: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateAdGroupThemes:output_type -> google.ads.googleads.v22.services.GenerateAdGroupThemesResponse + 22, // 42: google.ads.googleads.v22.services.KeywordPlanIdeaService.GenerateKeywordForecastMetrics:output_type -> google.ads.googleads.v22.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 @@ -2593,33 +2593,33 @@ var file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_depId 0, // [0:35] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_idea_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_init() } +func file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_idea_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[0].OneofWrappers = []any{ (*GenerateKeywordIdeasRequest_KeywordAndUrlSeed)(nil), (*GenerateKeywordIdeasRequest_KeywordSeed)(nil), (*GenerateKeywordIdeasRequest_UrlSeed)(nil), (*GenerateKeywordIdeasRequest_SiteSeed)(nil), } - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[7].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[14].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[15].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[16].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[17].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[18].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[19].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[20].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[22].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[23].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes[24].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[7].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[15].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[16].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[18].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[19].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[20].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[22].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[23].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes[24].OneofWrappers = []any{ (*CampaignToForecast_CampaignBiddingStrategy_ManualCpcBiddingStrategy)(nil), (*CampaignToForecast_CampaignBiddingStrategy_MaximizeClicksBiddingStrategy)(nil), (*CampaignToForecast_CampaignBiddingStrategy_MaximizeConversionsBiddingStrategy)(nil), @@ -2628,17 +2628,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_rawDesc)), NumEnums: 0, NumMessages: 25, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_idea_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_idea_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_idea_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_idea_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 b35feffd..58a16183 100644 --- a/services/keyword_plan_idea_service_grpc.pb.go +++ b/services/keyword_plan_idea_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_idea_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_idea_service.proto package services @@ -33,10 +33,10 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanIdeaService/GenerateKeywordIdeas" - KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanIdeaService/GenerateKeywordHistoricalMetrics" - KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanIdeaService/GenerateAdGroupThemes" - KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanIdeaService/GenerateKeywordForecastMetrics" + KeywordPlanIdeaService_GenerateKeywordIdeas_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanIdeaService/GenerateKeywordIdeas" + KeywordPlanIdeaService_GenerateKeywordHistoricalMetrics_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanIdeaService/GenerateKeywordHistoricalMetrics" + KeywordPlanIdeaService_GenerateAdGroupThemes_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanIdeaService/GenerateAdGroupThemes" + KeywordPlanIdeaService_GenerateKeywordForecastMetrics_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanIdeaService/GenerateKeywordForecastMetrics" ) // KeywordPlanIdeaServiceClient is the client API for KeywordPlanIdeaService service. @@ -323,7 +323,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.v21.services.KeywordPlanIdeaService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanIdeaService", HandlerType: (*KeywordPlanIdeaServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -344,5 +344,5 @@ var KeywordPlanIdeaService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_idea_service.proto", + Metadata: "google/ads/googleads/v22/services/keyword_plan_idea_service.proto", } diff --git a/services/keyword_plan_service.pb.go b/services/keyword_plan_service.pb.go index c021b68b..4ea46d5f 100644 --- a/services/keyword_plan_service.pb.go +++ b/services/keyword_plan_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [KeywordPlanService.MutateKeywordPlans][google.ads.googleads.v21.services.KeywordPlanService.MutateKeywordPlans]. +// [KeywordPlanService.MutateKeywordPlans][google.ads.googleads.v22.services.KeywordPlanService.MutateKeywordPlans]. type MutateKeywordPlansRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose keyword plans are being modified. @@ -61,7 +61,7 @@ type MutateKeywordPlansRequest struct { func (x *MutateKeywordPlansRequest) Reset() { *x = MutateKeywordPlansRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateKeywordPlansRequest) String() string { func (*MutateKeywordPlansRequest) ProtoMessage() {} func (x *MutateKeywordPlansRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MutateKeywordPlansRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansRequest.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescGZIP(), []int{0} } func (x *MutateKeywordPlansRequest) GetCustomerId() string { @@ -137,7 +137,7 @@ type KeywordPlanOperation struct { func (x *KeywordPlanOperation) Reset() { *x = KeywordPlanOperation{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *KeywordPlanOperation) String() string { func (*KeywordPlanOperation) ProtoMessage() {} func (x *KeywordPlanOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,7 +162,7 @@ func (x *KeywordPlanOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use KeywordPlanOperation.ProtoReflect.Descriptor instead. func (*KeywordPlanOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescGZIP(), []int{1} } func (x *KeywordPlanOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -251,7 +251,7 @@ type MutateKeywordPlansResponse struct { func (x *MutateKeywordPlansResponse) Reset() { *x = MutateKeywordPlansResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -263,7 +263,7 @@ func (x *MutateKeywordPlansResponse) String() string { func (*MutateKeywordPlansResponse) ProtoMessage() {} func (x *MutateKeywordPlansResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -276,7 +276,7 @@ func (x *MutateKeywordPlansResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansResponse.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescGZIP(), []int{2} } func (x *MutateKeywordPlansResponse) GetPartialFailureError() *status.Status { @@ -304,7 +304,7 @@ type MutateKeywordPlansResult struct { func (x *MutateKeywordPlansResult) Reset() { *x = MutateKeywordPlansResult{} - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -316,7 +316,7 @@ func (x *MutateKeywordPlansResult) String() string { func (*MutateKeywordPlansResult) ProtoMessage() {} func (x *MutateKeywordPlansResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -329,7 +329,7 @@ func (x *MutateKeywordPlansResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateKeywordPlansResult.ProtoReflect.Descriptor instead. func (*MutateKeywordPlansResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescGZIP(), []int{3} } func (x *MutateKeywordPlansResult) GetResourceName() string { @@ -339,17 +339,17 @@ func (x *MutateKeywordPlansResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_keyword_plan_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_plan_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -369,7 +369,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -385,12 +385,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4b, 0x65, 0x79, + 0x32, 0x32, 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, @@ -406,7 +406,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -420,16 +420,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -438,55 +438,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_keyword_plan_service_proto_goTypes = []any{ - (*MutateKeywordPlansRequest)(nil), // 0: google.ads.googleads.v21.services.MutateKeywordPlansRequest - (*KeywordPlanOperation)(nil), // 1: google.ads.googleads.v21.services.KeywordPlanOperation - (*MutateKeywordPlansResponse)(nil), // 2: google.ads.googleads.v21.services.MutateKeywordPlansResponse - (*MutateKeywordPlansResult)(nil), // 3: google.ads.googleads.v21.services.MutateKeywordPlansResult +var file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_keyword_plan_service_proto_goTypes = []any{ + (*MutateKeywordPlansRequest)(nil), // 0: google.ads.googleads.v22.services.MutateKeywordPlansRequest + (*KeywordPlanOperation)(nil), // 1: google.ads.googleads.v22.services.KeywordPlanOperation + (*MutateKeywordPlansResponse)(nil), // 2: google.ads.googleads.v22.services.MutateKeywordPlansResponse + (*MutateKeywordPlansResult)(nil), // 3: google.ads.googleads.v22.services.MutateKeywordPlansResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.KeywordPlan)(nil), // 5: google.ads.googleads.v21.resources.KeywordPlan + (*resources.KeywordPlan)(nil), // 5: google.ads.googleads.v22.resources.KeywordPlan (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_keyword_plan_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateKeywordPlansRequest.operations:type_name -> google.ads.googleads.v21.services.KeywordPlanOperation - 4, // 1: google.ads.googleads.v21.services.KeywordPlanOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.KeywordPlanOperation.create:type_name -> google.ads.googleads.v21.resources.KeywordPlan - 5, // 3: google.ads.googleads.v21.services.KeywordPlanOperation.update:type_name -> google.ads.googleads.v21.resources.KeywordPlan - 6, // 4: google.ads.googleads.v21.services.MutateKeywordPlansResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateKeywordPlansResponse.results:type_name -> google.ads.googleads.v21.services.MutateKeywordPlansResult - 0, // 6: google.ads.googleads.v21.services.KeywordPlanService.MutateKeywordPlans:input_type -> google.ads.googleads.v21.services.MutateKeywordPlansRequest - 2, // 7: google.ads.googleads.v21.services.KeywordPlanService.MutateKeywordPlans:output_type -> google.ads.googleads.v21.services.MutateKeywordPlansResponse +var file_google_ads_googleads_v22_services_keyword_plan_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateKeywordPlansRequest.operations:type_name -> google.ads.googleads.v22.services.KeywordPlanOperation + 4, // 1: google.ads.googleads.v22.services.KeywordPlanOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.KeywordPlanOperation.create:type_name -> google.ads.googleads.v22.resources.KeywordPlan + 5, // 3: google.ads.googleads.v22.services.KeywordPlanOperation.update:type_name -> google.ads.googleads.v22.resources.KeywordPlan + 6, // 4: google.ads.googleads.v22.services.MutateKeywordPlansResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateKeywordPlansResponse.results:type_name -> google.ads.googleads.v22.services.MutateKeywordPlansResult + 0, // 6: google.ads.googleads.v22.services.KeywordPlanService.MutateKeywordPlans:input_type -> google.ads.googleads.v22.services.MutateKeywordPlansRequest + 2, // 7: google.ads.googleads.v22.services.KeywordPlanService.MutateKeywordPlans:output_type -> google.ads.googleads.v22.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 @@ -494,12 +494,12 @@ var file_google_ads_googleads_v21_services_keyword_plan_service_proto_depIdxs = 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_keyword_plan_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_plan_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_plan_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_keyword_plan_service_proto_init() } +func file_google_ads_googleads_v22_services_keyword_plan_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_plan_service_proto != nil { return } - file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes[1].OneofWrappers = []any{ (*KeywordPlanOperation_Create)(nil), (*KeywordPlanOperation_Update)(nil), (*KeywordPlanOperation_Remove)(nil), @@ -508,17 +508,17 @@ func file_google_ads_googleads_v21_services_keyword_plan_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_plan_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_plan_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_plan_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_plan_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_plan_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_plan_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_plan_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_plan_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_plan_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_plan_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_plan_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_plan_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_plan_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 197b51e6..2a05e201 100644 --- a/services/keyword_plan_service_grpc.pb.go +++ b/services/keyword_plan_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_plan_service.proto +// source: google/ads/googleads/v22/services/keyword_plan_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordPlanService_MutateKeywordPlans_FullMethodName = "/google.ads.googleads.v21.services.KeywordPlanService/MutateKeywordPlans" + KeywordPlanService_MutateKeywordPlans_FullMethodName = "/google.ads.googleads.v22.services.KeywordPlanService/MutateKeywordPlans" ) // KeywordPlanServiceClient is the client API for KeywordPlanService service. @@ -162,7 +162,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.v21.services.KeywordPlanService", + ServiceName: "google.ads.googleads.v22.services.KeywordPlanService", HandlerType: (*KeywordPlanServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -171,5 +171,5 @@ var KeywordPlanService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_plan_service.proto", + Metadata: "google/ads/googleads/v22/services/keyword_plan_service.proto", } diff --git a/services/keyword_theme_constant_service.pb.go b/services/keyword_theme_constant_service.pb.go index 25ffcfeb..13de3863 100644 --- a/services/keyword_theme_constant_service.pb.go +++ b/services/keyword_theme_constant_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_theme_constant_service.proto +// source: google/ads/googleads/v22/services/keyword_theme_constant_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v21.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. +// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v22.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. type SuggestKeywordThemeConstantsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // The query text of a keyword theme that will be used to map to similar @@ -56,7 +56,7 @@ type SuggestKeywordThemeConstantsRequest struct { func (x *SuggestKeywordThemeConstantsRequest) Reset() { *x = SuggestKeywordThemeConstantsRequest{} - mi := &file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -68,7 +68,7 @@ func (x *SuggestKeywordThemeConstantsRequest) String() string { func (*SuggestKeywordThemeConstantsRequest) ProtoMessage() {} func (x *SuggestKeywordThemeConstantsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -81,7 +81,7 @@ func (x *SuggestKeywordThemeConstantsRequest) ProtoReflect() protoreflect.Messag // Deprecated: Use SuggestKeywordThemeConstantsRequest.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemeConstantsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestKeywordThemeConstantsRequest) GetQueryText() string { @@ -106,7 +106,7 @@ func (x *SuggestKeywordThemeConstantsRequest) GetLanguageCode() string { } // Response message for -// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v21.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. +// [KeywordThemeConstantService.SuggestKeywordThemeConstants][google.ads.googleads.v22.services.KeywordThemeConstantService.SuggestKeywordThemeConstants]. type SuggestKeywordThemeConstantsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Smart Campaign keyword theme suggestions. @@ -117,7 +117,7 @@ type SuggestKeywordThemeConstantsResponse struct { func (x *SuggestKeywordThemeConstantsResponse) Reset() { *x = SuggestKeywordThemeConstantsResponse{} - mi := &file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -129,7 +129,7 @@ func (x *SuggestKeywordThemeConstantsResponse) String() string { func (*SuggestKeywordThemeConstantsResponse) ProtoMessage() {} func (x *SuggestKeywordThemeConstantsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -142,7 +142,7 @@ func (x *SuggestKeywordThemeConstantsResponse) ProtoReflect() protoreflect.Messa // Deprecated: Use SuggestKeywordThemeConstantsResponse.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemeConstantsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestKeywordThemeConstantsResponse) GetKeywordThemeConstants() []*resources.KeywordThemeConstant { @@ -152,18 +152,18 @@ func (x *SuggestKeywordThemeConstantsResponse) GetKeywordThemeConstants() []*res return nil } -var File_google_ads_googleads_v21_services_keyword_theme_constant_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_keyword_theme_constant_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3f, 0x67, 0x6f, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -184,7 +184,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -193,15 +193,15 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, 0x65, + 0x32, 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, 0x32, 0x31, + 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a, 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x76, 0x32, 0x32, 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, @@ -210,46 +210,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDescData + return file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_goTypes = []any{ - (*SuggestKeywordThemeConstantsRequest)(nil), // 0: google.ads.googleads.v21.services.SuggestKeywordThemeConstantsRequest - (*SuggestKeywordThemeConstantsResponse)(nil), // 1: google.ads.googleads.v21.services.SuggestKeywordThemeConstantsResponse - (*resources.KeywordThemeConstant)(nil), // 2: google.ads.googleads.v21.resources.KeywordThemeConstant +var file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_goTypes = []any{ + (*SuggestKeywordThemeConstantsRequest)(nil), // 0: google.ads.googleads.v22.services.SuggestKeywordThemeConstantsRequest + (*SuggestKeywordThemeConstantsResponse)(nil), // 1: google.ads.googleads.v22.services.SuggestKeywordThemeConstantsResponse + (*resources.KeywordThemeConstant)(nil), // 2: google.ads.googleads.v22.resources.KeywordThemeConstant } -var file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.SuggestKeywordThemeConstantsResponse.keyword_theme_constants:type_name -> google.ads.googleads.v21.resources.KeywordThemeConstant - 0, // 1: google.ads.googleads.v21.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:input_type -> google.ads.googleads.v21.services.SuggestKeywordThemeConstantsRequest - 1, // 2: google.ads.googleads.v21.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:output_type -> google.ads.googleads.v21.services.SuggestKeywordThemeConstantsResponse +var file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.SuggestKeywordThemeConstantsResponse.keyword_theme_constants:type_name -> google.ads.googleads.v22.resources.KeywordThemeConstant + 0, // 1: google.ads.googleads.v22.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:input_type -> google.ads.googleads.v22.services.SuggestKeywordThemeConstantsRequest + 1, // 2: google.ads.googleads.v22.services.KeywordThemeConstantService.SuggestKeywordThemeConstants:output_type -> google.ads.googleads.v22.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 @@ -257,26 +257,26 @@ var file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_ 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_init() } -func file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_init() { - if File_google_ads_googleads_v21_services_keyword_theme_constant_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_init() } +func file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_init() { + if File_google_ads_googleads_v22_services_keyword_theme_constant_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_keyword_theme_constant_service_proto = out.File - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_keyword_theme_constant_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_keyword_theme_constant_service_proto = out.File + file_google_ads_googleads_v22_services_keyword_theme_constant_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 a9f6ef19..55d03178 100644 --- a/services/keyword_theme_constant_service_grpc.pb.go +++ b/services/keyword_theme_constant_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/keyword_theme_constant_service.proto +// source: google/ads/googleads/v22/services/keyword_theme_constant_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName = "/google.ads.googleads.v21.services.KeywordThemeConstantService/SuggestKeywordThemeConstants" + KeywordThemeConstantService_SuggestKeywordThemeConstants_FullMethodName = "/google.ads.googleads.v22.services.KeywordThemeConstantService/SuggestKeywordThemeConstants" ) // KeywordThemeConstantServiceClient is the client API for KeywordThemeConstantService service. @@ -147,7 +147,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.v21.services.KeywordThemeConstantService", + ServiceName: "google.ads.googleads.v22.services.KeywordThemeConstantService", HandlerType: (*KeywordThemeConstantServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -156,5 +156,5 @@ var KeywordThemeConstantService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/keyword_theme_constant_service.proto", + Metadata: "google/ads/googleads/v22/services/keyword_theme_constant_service.proto", } diff --git a/services/label_service.pb.go b/services/label_service.pb.go index 284125b5..9efbd6ad 100644 --- a/services/label_service.pb.go +++ b/services/label_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/label_service.proto +// source: google/ads/googleads/v22/services/label_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [LabelService.MutateLabels][google.ads.googleads.v21.services.LabelService.MutateLabels]. +// [LabelService.MutateLabels][google.ads.googleads.v22.services.LabelService.MutateLabels]. type MutateLabelsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. ID of the customer whose labels are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateLabelsRequest) Reset() { *x = MutateLabelsRequest{} - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateLabelsRequest) String() string { func (*MutateLabelsRequest) ProtoMessage() {} func (x *MutateLabelsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateLabelsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelsRequest.ProtoReflect.Descriptor instead. func (*MutateLabelsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_label_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_label_service_proto_rawDescGZIP(), []int{0} } func (x *MutateLabelsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type LabelOperation struct { func (x *LabelOperation) Reset() { *x = LabelOperation{} - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *LabelOperation) String() string { func (*LabelOperation) ProtoMessage() {} func (x *LabelOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *LabelOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use LabelOperation.ProtoReflect.Descriptor instead. func (*LabelOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_label_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_label_service_proto_rawDescGZIP(), []int{1} } func (x *LabelOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -260,7 +260,7 @@ type MutateLabelsResponse struct { func (x *MutateLabelsResponse) Reset() { *x = MutateLabelsResponse{} - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -272,7 +272,7 @@ func (x *MutateLabelsResponse) String() string { func (*MutateLabelsResponse) ProtoMessage() {} func (x *MutateLabelsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -285,7 +285,7 @@ func (x *MutateLabelsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelsResponse.ProtoReflect.Descriptor instead. func (*MutateLabelsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_label_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_label_service_proto_rawDescGZIP(), []int{2} } func (x *MutateLabelsResponse) GetPartialFailureError() *status.Status { @@ -316,7 +316,7 @@ type MutateLabelResult struct { func (x *MutateLabelResult) Reset() { *x = MutateLabelResult{} - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -328,7 +328,7 @@ func (x *MutateLabelResult) String() string { func (*MutateLabelResult) ProtoMessage() {} func (x *MutateLabelResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_label_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_label_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -341,7 +341,7 @@ func (x *MutateLabelResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateLabelResult.ProtoReflect.Descriptor instead. func (*MutateLabelResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_label_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_label_service_proto_rawDescGZIP(), []int{3} } func (x *MutateLabelResult) GetResourceName() string { @@ -358,20 +358,20 @@ func (x *MutateLabelResult) GetLabel() *resources.Label { return nil } -var File_google_ads_googleads_v21_services_label_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_label_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_label_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -391,7 +391,7 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, + 0x32, 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, @@ -402,7 +402,7 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, - 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x32, 0x32, 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, @@ -414,11 +414,11 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4c, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -433,7 +433,7 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -444,20 +444,20 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x31, 0x3a, 0x01, 0x2a, 0x22, 0x2c, 0x2f, 0x76, 0x32, 0x32, 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, @@ -466,58 +466,58 @@ var file_google_ads_googleads_v21_services_label_service_proto_rawDesc = string( 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_label_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_label_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_label_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_label_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_label_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_label_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_label_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_label_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_label_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_label_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_label_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_label_service_proto_rawDescData + return file_google_ads_googleads_v22_services_label_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_label_service_proto_goTypes = []any{ - (*MutateLabelsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateLabelsRequest - (*LabelOperation)(nil), // 1: google.ads.googleads.v21.services.LabelOperation - (*MutateLabelsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateLabelsResponse - (*MutateLabelResult)(nil), // 3: google.ads.googleads.v21.services.MutateLabelResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_label_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_label_service_proto_goTypes = []any{ + (*MutateLabelsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateLabelsRequest + (*LabelOperation)(nil), // 1: google.ads.googleads.v22.services.LabelOperation + (*MutateLabelsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateLabelsResponse + (*MutateLabelResult)(nil), // 3: google.ads.googleads.v22.services.MutateLabelResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.Label)(nil), // 6: google.ads.googleads.v21.resources.Label + (*resources.Label)(nil), // 6: google.ads.googleads.v22.resources.Label (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_label_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateLabelsRequest.operations:type_name -> google.ads.googleads.v21.services.LabelOperation - 4, // 1: google.ads.googleads.v21.services.MutateLabelsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.LabelOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.LabelOperation.create:type_name -> google.ads.googleads.v21.resources.Label - 6, // 4: google.ads.googleads.v21.services.LabelOperation.update:type_name -> google.ads.googleads.v21.resources.Label - 7, // 5: google.ads.googleads.v21.services.MutateLabelsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateLabelsResponse.results:type_name -> google.ads.googleads.v21.services.MutateLabelResult - 6, // 7: google.ads.googleads.v21.services.MutateLabelResult.label:type_name -> google.ads.googleads.v21.resources.Label - 0, // 8: google.ads.googleads.v21.services.LabelService.MutateLabels:input_type -> google.ads.googleads.v21.services.MutateLabelsRequest - 2, // 9: google.ads.googleads.v21.services.LabelService.MutateLabels:output_type -> google.ads.googleads.v21.services.MutateLabelsResponse +var file_google_ads_googleads_v22_services_label_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateLabelsRequest.operations:type_name -> google.ads.googleads.v22.services.LabelOperation + 4, // 1: google.ads.googleads.v22.services.MutateLabelsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.LabelOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.LabelOperation.create:type_name -> google.ads.googleads.v22.resources.Label + 6, // 4: google.ads.googleads.v22.services.LabelOperation.update:type_name -> google.ads.googleads.v22.resources.Label + 7, // 5: google.ads.googleads.v22.services.MutateLabelsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateLabelsResponse.results:type_name -> google.ads.googleads.v22.services.MutateLabelResult + 6, // 7: google.ads.googleads.v22.services.MutateLabelResult.label:type_name -> google.ads.googleads.v22.resources.Label + 0, // 8: google.ads.googleads.v22.services.LabelService.MutateLabels:input_type -> google.ads.googleads.v22.services.MutateLabelsRequest + 2, // 9: google.ads.googleads.v22.services.LabelService.MutateLabels:output_type -> google.ads.googleads.v22.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 @@ -525,12 +525,12 @@ var file_google_ads_googleads_v21_services_label_service_proto_depIdxs = []int32 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_label_service_proto_init() } -func file_google_ads_googleads_v21_services_label_service_proto_init() { - if File_google_ads_googleads_v21_services_label_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_label_service_proto_init() } +func file_google_ads_googleads_v22_services_label_service_proto_init() { + if File_google_ads_googleads_v22_services_label_service_proto != nil { return } - file_google_ads_googleads_v21_services_label_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_label_service_proto_msgTypes[1].OneofWrappers = []any{ (*LabelOperation_Create)(nil), (*LabelOperation_Update)(nil), (*LabelOperation_Remove)(nil), @@ -539,17 +539,17 @@ func file_google_ads_googleads_v21_services_label_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_label_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_label_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_label_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_label_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_label_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_label_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_label_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_label_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_label_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_label_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_label_service_proto = out.File - file_google_ads_googleads_v21_services_label_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_label_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_label_service_proto = out.File + file_google_ads_googleads_v22_services_label_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_label_service_proto_depIdxs = nil } diff --git a/services/label_service_grpc.pb.go b/services/label_service_grpc.pb.go index 9072cd0f..f47c82ce 100644 --- a/services/label_service_grpc.pb.go +++ b/services/label_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/label_service.proto +// source: google/ads/googleads/v22/services/label_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - LabelService_MutateLabels_FullMethodName = "/google.ads.googleads.v21.services.LabelService/MutateLabels" + LabelService_MutateLabels_FullMethodName = "/google.ads.googleads.v22.services.LabelService/MutateLabels" ) // LabelServiceClient is the client API for LabelService service. @@ -180,7 +180,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.v21.services.LabelService", + ServiceName: "google.ads.googleads.v22.services.LabelService", HandlerType: (*LabelServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -189,5 +189,5 @@ var LabelService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/label_service.proto", + Metadata: "google/ads/googleads/v22/services/label_service.proto", } diff --git a/services/local_services_lead_service.pb.go b/services/local_services_lead_service.pb.go index 8f7d1e60..57b72b4a 100644 --- a/services/local_services_lead_service.pb.go +++ b/services/local_services_lead_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/local_services_lead_service.proto +// source: google/ads/googleads/v22/services/local_services_lead_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v21.services.LocalServicesLeadService.AppendLeadConversation]. +// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v22.services.LocalServicesLeadService.AppendLeadConversation]. type AppendLeadConversationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The Id of the customer which owns the leads onto which the @@ -53,7 +53,7 @@ type AppendLeadConversationRequest struct { func (x *AppendLeadConversationRequest) Reset() { *x = AppendLeadConversationRequest{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *AppendLeadConversationRequest) String() string { func (*AppendLeadConversationRequest) ProtoMessage() {} func (x *AppendLeadConversationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *AppendLeadConversationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use AppendLeadConversationRequest.ProtoReflect.Descriptor instead. func (*AppendLeadConversationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{0} } func (x *AppendLeadConversationRequest) GetCustomerId() string { @@ -96,7 +96,7 @@ func (x *AppendLeadConversationRequest) GetConversations() []*Conversation { } // Response message for -// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v21.services.LocalServicesLeadService.AppendLeadConversation]. +// [LocalServicesLeadService.AppendLeadConversation][google.ads.googleads.v22.services.LocalServicesLeadService.AppendLeadConversation]. type AppendLeadConversationResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. List of append conversation operation results. @@ -107,7 +107,7 @@ type AppendLeadConversationResponse struct { func (x *AppendLeadConversationResponse) Reset() { *x = AppendLeadConversationResponse{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -119,7 +119,7 @@ func (x *AppendLeadConversationResponse) String() string { func (*AppendLeadConversationResponse) ProtoMessage() {} func (x *AppendLeadConversationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -132,7 +132,7 @@ func (x *AppendLeadConversationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use AppendLeadConversationResponse.ProtoReflect.Descriptor instead. func (*AppendLeadConversationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{1} } func (x *AppendLeadConversationResponse) GetResponses() []*ConversationOrError { @@ -156,7 +156,7 @@ type Conversation struct { func (x *Conversation) Reset() { *x = Conversation{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *Conversation) String() string { func (*Conversation) ProtoMessage() {} func (x *Conversation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *Conversation) ProtoReflect() protoreflect.Message { // Deprecated: Use Conversation.ProtoReflect.Descriptor instead. func (*Conversation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{2} } func (x *Conversation) GetLocalServicesLead() string { @@ -214,7 +214,7 @@ type ConversationOrError struct { func (x *ConversationOrError) Reset() { *x = ConversationOrError{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -226,7 +226,7 @@ func (x *ConversationOrError) String() string { func (*ConversationOrError) ProtoMessage() {} func (x *ConversationOrError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -239,7 +239,7 @@ func (x *ConversationOrError) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversationOrError.ProtoReflect.Descriptor instead. func (*ConversationOrError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{3} } func (x *ConversationOrError) GetAppendLeadConversationResponse() isConversationOrError_AppendLeadConversationResponse { @@ -291,7 +291,7 @@ func (*ConversationOrError_PartialFailureError) isConversationOrError_AppendLead type SurveySatisfied struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. Provider's reason for being satisfied with the lead. - SurveySatisfiedReason enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason `protobuf:"varint,1,opt,name=survey_satisfied_reason,json=surveySatisfiedReason,proto3,enum=google.ads.googleads.v21.enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason" json:"survey_satisfied_reason,omitempty"` + SurveySatisfiedReason enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason `protobuf:"varint,1,opt,name=survey_satisfied_reason,json=surveySatisfiedReason,proto3,enum=google.ads.googleads.v22.enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason" json:"survey_satisfied_reason,omitempty"` // Optional. Provider's free form comments. This field is required when // OTHER_SATISFIED_REASON is selected as the reason. OtherReasonComment string `protobuf:"bytes,2,opt,name=other_reason_comment,json=otherReasonComment,proto3" json:"other_reason_comment,omitempty"` @@ -301,7 +301,7 @@ type SurveySatisfied struct { func (x *SurveySatisfied) Reset() { *x = SurveySatisfied{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -313,7 +313,7 @@ func (x *SurveySatisfied) String() string { func (*SurveySatisfied) ProtoMessage() {} func (x *SurveySatisfied) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -326,7 +326,7 @@ func (x *SurveySatisfied) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveySatisfied.ProtoReflect.Descriptor instead. func (*SurveySatisfied) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{4} } func (x *SurveySatisfied) GetSurveySatisfiedReason() enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason { @@ -347,7 +347,7 @@ func (x *SurveySatisfied) GetOtherReasonComment() string { type SurveyDissatisfied struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. Provider's reason for not being satisfied with the lead. - SurveyDissatisfiedReason enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason `protobuf:"varint,1,opt,name=survey_dissatisfied_reason,json=surveyDissatisfiedReason,proto3,enum=google.ads.googleads.v21.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason" json:"survey_dissatisfied_reason,omitempty"` + SurveyDissatisfiedReason enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason `protobuf:"varint,1,opt,name=survey_dissatisfied_reason,json=surveyDissatisfiedReason,proto3,enum=google.ads.googleads.v22.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason" json:"survey_dissatisfied_reason,omitempty"` // Optional. Provider's free form comments. This field is required when // OTHER_DISSATISFIED_REASON is selected as the reason. OtherReasonComment string `protobuf:"bytes,2,opt,name=other_reason_comment,json=otherReasonComment,proto3" json:"other_reason_comment,omitempty"` @@ -357,7 +357,7 @@ type SurveyDissatisfied struct { func (x *SurveyDissatisfied) Reset() { *x = SurveyDissatisfied{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -369,7 +369,7 @@ func (x *SurveyDissatisfied) String() string { func (*SurveyDissatisfied) ProtoMessage() {} func (x *SurveyDissatisfied) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -382,7 +382,7 @@ func (x *SurveyDissatisfied) ProtoReflect() protoreflect.Message { // Deprecated: Use SurveyDissatisfied.ProtoReflect.Descriptor instead. func (*SurveyDissatisfied) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{5} } func (x *SurveyDissatisfied) GetSurveyDissatisfiedReason() enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason { @@ -400,14 +400,14 @@ func (x *SurveyDissatisfied) GetOtherReasonComment() string { } // Request message for -// [LocalServicesLeadService.ProvideLeadFeedback][google.ads.googleads.v21.services.LocalServicesLeadService.ProvideLeadFeedback]. +// [LocalServicesLeadService.ProvideLeadFeedback][google.ads.googleads.v22.services.LocalServicesLeadService.ProvideLeadFeedback]. type ProvideLeadFeedbackRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the local services lead that for which the // feedback is being provided. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"` // Required. Survey answer for Local Services Ads Lead. - SurveyAnswer enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer `protobuf:"varint,2,opt,name=survey_answer,json=surveyAnswer,proto3,enum=google.ads.googleads.v21.enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer" json:"survey_answer,omitempty"` + SurveyAnswer enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer `protobuf:"varint,2,opt,name=survey_answer,json=surveyAnswer,proto3,enum=google.ads.googleads.v22.enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer" json:"survey_answer,omitempty"` // Details about various factors for being satisfied or dissatisfied with the // lead. // @@ -422,7 +422,7 @@ type ProvideLeadFeedbackRequest struct { func (x *ProvideLeadFeedbackRequest) Reset() { *x = ProvideLeadFeedbackRequest{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -434,7 +434,7 @@ func (x *ProvideLeadFeedbackRequest) String() string { func (*ProvideLeadFeedbackRequest) ProtoMessage() {} func (x *ProvideLeadFeedbackRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -447,7 +447,7 @@ func (x *ProvideLeadFeedbackRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvideLeadFeedbackRequest.ProtoReflect.Descriptor instead. func (*ProvideLeadFeedbackRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{6} } func (x *ProvideLeadFeedbackRequest) GetResourceName() string { @@ -508,19 +508,19 @@ func (*ProvideLeadFeedbackRequest_SurveySatisfied) isProvideLeadFeedbackRequest_ func (*ProvideLeadFeedbackRequest_SurveyDissatisfied) isProvideLeadFeedbackRequest_SurveyDetails() {} // Response message for -// [LocalServicesLeadService.ProvideLeadFeedback][google.ads.googleads.v21.services.LocalServicesLeadService.ProvideLeadFeedback]. +// [LocalServicesLeadService.ProvideLeadFeedback][google.ads.googleads.v22.services.LocalServicesLeadService.ProvideLeadFeedback]. type ProvideLeadFeedbackResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. Decision of bonus credit issued or rejected. If a bonus credit is // issued, it will be available for use in about two months. - CreditIssuanceDecision enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision `protobuf:"varint,1,opt,name=credit_issuance_decision,json=creditIssuanceDecision,proto3,enum=google.ads.googleads.v21.enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision" json:"credit_issuance_decision,omitempty"` + CreditIssuanceDecision enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision `protobuf:"varint,1,opt,name=credit_issuance_decision,json=creditIssuanceDecision,proto3,enum=google.ads.googleads.v22.enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision" json:"credit_issuance_decision,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ProvideLeadFeedbackResponse) Reset() { *x = ProvideLeadFeedbackResponse{} - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -532,7 +532,7 @@ func (x *ProvideLeadFeedbackResponse) String() string { func (*ProvideLeadFeedbackResponse) ProtoMessage() {} func (x *ProvideLeadFeedbackResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -545,7 +545,7 @@ func (x *ProvideLeadFeedbackResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ProvideLeadFeedbackResponse.ProtoReflect.Descriptor instead. func (*ProvideLeadFeedbackResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP(), []int{7} } func (x *ProvideLeadFeedbackResponse) GetCreditIssuanceDecision() enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision { @@ -555,33 +555,33 @@ func (x *ProvideLeadFeedbackResponse) GetCreditIssuanceDecision() enums.LocalSer return enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision(0) } -var File_google_ads_googleads_v21_services_local_services_lead_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_local_services_lead_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x51, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, + 0x32, 0x32, 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, 0x69, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x63, 0x69, 0x73, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x64, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x5f, 0x73, + 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1c, 0x67, 0x6f, 0x6f, 0x67, @@ -600,7 +600,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -608,7 +608,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -638,7 +638,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x53, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, @@ -653,7 +653,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 0x72, 0x76, 0x65, 0x79, 0x5f, 0x64, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x5f, 0x72, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x18, 0x01, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x44, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x52, 0x65, 0x61, 0x73, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x75, @@ -674,7 +674,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x78, 0x0a, 0x0d, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x61, 0x6e, 0x73, 0x77, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x4c, 0x6f, 0x63, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02, @@ -682,13 +682,13 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 0x0a, 0x10, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, + 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x53, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x48, 0x00, 0x52, 0x0f, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x53, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x12, 0x68, 0x0a, 0x13, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x5f, 0x64, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x72, 0x76, 0x65, 0x79, 0x44, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x48, 0x00, 0x52, 0x12, 0x73, 0x75, 0x72, 0x76, 0x65, 0x79, 0x44, 0x69, 0x73, 0x73, 0x61, 0x74, 0x69, 0x73, 0x66, 0x69, 0x65, 0x64, 0x42, 0x10, 0x0a, 0x0e, 0x73, 0x75, 0x72, @@ -698,7 +698,7 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x69, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x64, 0x65, 0x63, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x18, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x72, 0x65, 0x64, 0x69, 0x74, 0x49, 0x73, 0x73, 0x75, 0x61, 0x6e, 0x63, 0x65, 0x44, 0x65, 0x63, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x43, 0x72, 0x65, 0x64, @@ -710,30 +710,30 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x43, 0x2f, 0x76, 0x32, 0x32, 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, 0x12, 0xea, 0x01, 0x0a, 0x13, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x65, 0x65, 0x64, 0x62, 0x61, 0x63, 0x6b, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x65, 0x65, 0x64, 0x62, 0x61, 0x63, 0x6b, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x72, 0x6f, 0x76, 0x69, 0x64, 0x65, 0x4c, 0x65, 0x61, 0x64, 0x46, 0x65, 0x65, 0x64, 0x62, 0x61, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, - 0x54, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x4e, 0x3a, 0x01, 0x2a, 0x22, 0x49, 0x2f, 0x76, 0x32, 0x31, + 0x54, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x4e, 0x3a, 0x01, 0x2a, 0x22, 0x49, 0x2f, 0x76, 0x32, 0x32, 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, 0x6c, 0x6f, 0x63, 0x61, 0x6c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x4c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x2a, @@ -744,66 +744,66 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_raw 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) -var file_google_ads_googleads_v21_services_local_services_lead_service_proto_goTypes = []any{ - (*AppendLeadConversationRequest)(nil), // 0: google.ads.googleads.v21.services.AppendLeadConversationRequest - (*AppendLeadConversationResponse)(nil), // 1: google.ads.googleads.v21.services.AppendLeadConversationResponse - (*Conversation)(nil), // 2: google.ads.googleads.v21.services.Conversation - (*ConversationOrError)(nil), // 3: google.ads.googleads.v21.services.ConversationOrError - (*SurveySatisfied)(nil), // 4: google.ads.googleads.v21.services.SurveySatisfied - (*SurveyDissatisfied)(nil), // 5: google.ads.googleads.v21.services.SurveyDissatisfied - (*ProvideLeadFeedbackRequest)(nil), // 6: google.ads.googleads.v21.services.ProvideLeadFeedbackRequest - (*ProvideLeadFeedbackResponse)(nil), // 7: google.ads.googleads.v21.services.ProvideLeadFeedbackResponse + return file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes = make([]protoimpl.MessageInfo, 8) +var file_google_ads_googleads_v22_services_local_services_lead_service_proto_goTypes = []any{ + (*AppendLeadConversationRequest)(nil), // 0: google.ads.googleads.v22.services.AppendLeadConversationRequest + (*AppendLeadConversationResponse)(nil), // 1: google.ads.googleads.v22.services.AppendLeadConversationResponse + (*Conversation)(nil), // 2: google.ads.googleads.v22.services.Conversation + (*ConversationOrError)(nil), // 3: google.ads.googleads.v22.services.ConversationOrError + (*SurveySatisfied)(nil), // 4: google.ads.googleads.v22.services.SurveySatisfied + (*SurveyDissatisfied)(nil), // 5: google.ads.googleads.v22.services.SurveyDissatisfied + (*ProvideLeadFeedbackRequest)(nil), // 6: google.ads.googleads.v22.services.ProvideLeadFeedbackRequest + (*ProvideLeadFeedbackResponse)(nil), // 7: google.ads.googleads.v22.services.ProvideLeadFeedbackResponse (*status.Status)(nil), // 8: google.rpc.Status - (enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason)(0), // 9: google.ads.googleads.v21.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason - (enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason)(0), // 10: google.ads.googleads.v21.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason - (enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer)(0), // 11: google.ads.googleads.v21.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer - (enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision)(0), // 12: google.ads.googleads.v21.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision -} -var file_google_ads_googleads_v21_services_local_services_lead_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.AppendLeadConversationRequest.conversations:type_name -> google.ads.googleads.v21.services.Conversation - 3, // 1: google.ads.googleads.v21.services.AppendLeadConversationResponse.responses:type_name -> google.ads.googleads.v21.services.ConversationOrError - 8, // 2: google.ads.googleads.v21.services.ConversationOrError.partial_failure_error:type_name -> google.rpc.Status - 9, // 3: google.ads.googleads.v21.services.SurveySatisfied.survey_satisfied_reason:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason - 10, // 4: google.ads.googleads.v21.services.SurveyDissatisfied.survey_dissatisfied_reason:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason - 11, // 5: google.ads.googleads.v21.services.ProvideLeadFeedbackRequest.survey_answer:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer - 4, // 6: google.ads.googleads.v21.services.ProvideLeadFeedbackRequest.survey_satisfied:type_name -> google.ads.googleads.v21.services.SurveySatisfied - 5, // 7: google.ads.googleads.v21.services.ProvideLeadFeedbackRequest.survey_dissatisfied:type_name -> google.ads.googleads.v21.services.SurveyDissatisfied - 12, // 8: google.ads.googleads.v21.services.ProvideLeadFeedbackResponse.credit_issuance_decision:type_name -> google.ads.googleads.v21.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision - 0, // 9: google.ads.googleads.v21.services.LocalServicesLeadService.AppendLeadConversation:input_type -> google.ads.googleads.v21.services.AppendLeadConversationRequest - 6, // 10: google.ads.googleads.v21.services.LocalServicesLeadService.ProvideLeadFeedback:input_type -> google.ads.googleads.v21.services.ProvideLeadFeedbackRequest - 1, // 11: google.ads.googleads.v21.services.LocalServicesLeadService.AppendLeadConversation:output_type -> google.ads.googleads.v21.services.AppendLeadConversationResponse - 7, // 12: google.ads.googleads.v21.services.LocalServicesLeadService.ProvideLeadFeedback:output_type -> google.ads.googleads.v21.services.ProvideLeadFeedbackResponse + (enums.LocalServicesLeadSurveySatisfiedReasonEnum_SurveySatisfiedReason)(0), // 9: google.ads.googleads.v22.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason + (enums.LocalServicesLeadSurveyDissatisfiedReasonEnum_SurveyDissatisfiedReason)(0), // 10: google.ads.googleads.v22.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason + (enums.LocalServicesLeadSurveyAnswerEnum_SurveyAnswer)(0), // 11: google.ads.googleads.v22.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer + (enums.LocalServicesLeadCreditIssuanceDecisionEnum_CreditIssuanceDecision)(0), // 12: google.ads.googleads.v22.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision +} +var file_google_ads_googleads_v22_services_local_services_lead_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.AppendLeadConversationRequest.conversations:type_name -> google.ads.googleads.v22.services.Conversation + 3, // 1: google.ads.googleads.v22.services.AppendLeadConversationResponse.responses:type_name -> google.ads.googleads.v22.services.ConversationOrError + 8, // 2: google.ads.googleads.v22.services.ConversationOrError.partial_failure_error:type_name -> google.rpc.Status + 9, // 3: google.ads.googleads.v22.services.SurveySatisfied.survey_satisfied_reason:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadSurveySatisfiedReasonEnum.SurveySatisfiedReason + 10, // 4: google.ads.googleads.v22.services.SurveyDissatisfied.survey_dissatisfied_reason:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadSurveyDissatisfiedReasonEnum.SurveyDissatisfiedReason + 11, // 5: google.ads.googleads.v22.services.ProvideLeadFeedbackRequest.survey_answer:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadSurveyAnswerEnum.SurveyAnswer + 4, // 6: google.ads.googleads.v22.services.ProvideLeadFeedbackRequest.survey_satisfied:type_name -> google.ads.googleads.v22.services.SurveySatisfied + 5, // 7: google.ads.googleads.v22.services.ProvideLeadFeedbackRequest.survey_dissatisfied:type_name -> google.ads.googleads.v22.services.SurveyDissatisfied + 12, // 8: google.ads.googleads.v22.services.ProvideLeadFeedbackResponse.credit_issuance_decision:type_name -> google.ads.googleads.v22.enums.LocalServicesLeadCreditIssuanceDecisionEnum.CreditIssuanceDecision + 0, // 9: google.ads.googleads.v22.services.LocalServicesLeadService.AppendLeadConversation:input_type -> google.ads.googleads.v22.services.AppendLeadConversationRequest + 6, // 10: google.ads.googleads.v22.services.LocalServicesLeadService.ProvideLeadFeedback:input_type -> google.ads.googleads.v22.services.ProvideLeadFeedbackRequest + 1, // 11: google.ads.googleads.v22.services.LocalServicesLeadService.AppendLeadConversation:output_type -> google.ads.googleads.v22.services.AppendLeadConversationResponse + 7, // 12: google.ads.googleads.v22.services.LocalServicesLeadService.ProvideLeadFeedback:output_type -> google.ads.googleads.v22.services.ProvideLeadFeedbackResponse 11, // [11:13] is the sub-list for method output_type 9, // [9:11] is the sub-list for method input_type 9, // [9:9] is the sub-list for extension type_name @@ -811,16 +811,16 @@ var file_google_ads_googleads_v21_services_local_services_lead_service_proto_dep 0, // [0:9] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_local_services_lead_service_proto_init() } -func file_google_ads_googleads_v21_services_local_services_lead_service_proto_init() { - if File_google_ads_googleads_v21_services_local_services_lead_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_local_services_lead_service_proto_init() } +func file_google_ads_googleads_v22_services_local_services_lead_service_proto_init() { + if File_google_ads_googleads_v22_services_local_services_lead_service_proto != nil { return } - file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[3].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[3].OneofWrappers = []any{ (*ConversationOrError_LocalServicesLeadConversation)(nil), (*ConversationOrError_PartialFailureError)(nil), } - file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes[6].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes[6].OneofWrappers = []any{ (*ProvideLeadFeedbackRequest_SurveySatisfied)(nil), (*ProvideLeadFeedbackRequest_SurveyDissatisfied)(nil), } @@ -828,17 +828,17 @@ func file_google_ads_googleads_v21_services_local_services_lead_service_proto_in out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_local_services_lead_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_local_services_lead_service_proto_rawDesc)), NumEnums: 0, NumMessages: 8, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_local_services_lead_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_local_services_lead_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_local_services_lead_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_local_services_lead_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_local_services_lead_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_local_services_lead_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_local_services_lead_service_proto = out.File - file_google_ads_googleads_v21_services_local_services_lead_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_local_services_lead_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_local_services_lead_service_proto = out.File + file_google_ads_googleads_v22_services_local_services_lead_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 40729753..dadd48c7 100644 --- a/services/local_services_lead_service_grpc.pb.go +++ b/services/local_services_lead_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/local_services_lead_service.proto +// source: google/ads/googleads/v22/services/local_services_lead_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - LocalServicesLeadService_AppendLeadConversation_FullMethodName = "/google.ads.googleads.v21.services.LocalServicesLeadService/AppendLeadConversation" - LocalServicesLeadService_ProvideLeadFeedback_FullMethodName = "/google.ads.googleads.v21.services.LocalServicesLeadService/ProvideLeadFeedback" + LocalServicesLeadService_AppendLeadConversation_FullMethodName = "/google.ads.googleads.v22.services.LocalServicesLeadService/AppendLeadConversation" + LocalServicesLeadService_ProvideLeadFeedback_FullMethodName = "/google.ads.googleads.v22.services.LocalServicesLeadService/ProvideLeadFeedback" ) // LocalServicesLeadServiceClient is the client API for LocalServicesLeadService service. @@ -167,7 +167,7 @@ func _LocalServicesLeadService_ProvideLeadFeedback_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 LocalServicesLeadService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.LocalServicesLeadService", + ServiceName: "google.ads.googleads.v22.services.LocalServicesLeadService", HandlerType: (*LocalServicesLeadServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -180,5 +180,5 @@ var LocalServicesLeadService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/local_services_lead_service.proto", + Metadata: "google/ads/googleads/v22/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 8021f7b8..da1f0d51 100644 --- a/services/offline_user_data_job_service.pb.go +++ b/services/offline_user_data_job_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/offline_user_data_job_service.proto +// source: google/ads/googleads/v22/services/offline_user_data_job_service.proto package services @@ -42,7 +42,7 @@ const ( ) // Request message for -// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v21.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. +// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v22.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. type CreateOfflineUserDataJobRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which to create an offline user data @@ -62,7 +62,7 @@ type CreateOfflineUserDataJobRequest struct { func (x *CreateOfflineUserDataJobRequest) Reset() { *x = CreateOfflineUserDataJobRequest{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *CreateOfflineUserDataJobRequest) String() string { func (*CreateOfflineUserDataJobRequest) ProtoMessage() {} func (x *CreateOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *CreateOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOfflineUserDataJobRequest.ProtoReflect.Descriptor instead. func (*CreateOfflineUserDataJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{0} } func (x *CreateOfflineUserDataJobRequest) GetCustomerId() string { @@ -119,7 +119,7 @@ func (x *CreateOfflineUserDataJobRequest) GetEnableMatchRateRangePreview() bool } // Response message for -// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v21.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. +// [OfflineUserDataJobService.CreateOfflineUserDataJob][google.ads.googleads.v22.services.OfflineUserDataJobService.CreateOfflineUserDataJob]. type CreateOfflineUserDataJobResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The resource name of the OfflineUserDataJob. @@ -130,7 +130,7 @@ type CreateOfflineUserDataJobResponse struct { func (x *CreateOfflineUserDataJobResponse) Reset() { *x = CreateOfflineUserDataJobResponse{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -142,7 +142,7 @@ func (x *CreateOfflineUserDataJobResponse) String() string { func (*CreateOfflineUserDataJobResponse) ProtoMessage() {} func (x *CreateOfflineUserDataJobResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -155,7 +155,7 @@ func (x *CreateOfflineUserDataJobResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateOfflineUserDataJobResponse.ProtoReflect.Descriptor instead. func (*CreateOfflineUserDataJobResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{1} } func (x *CreateOfflineUserDataJobResponse) GetResourceName() string { @@ -166,7 +166,7 @@ func (x *CreateOfflineUserDataJobResponse) GetResourceName() string { } // Request message for -// [OfflineUserDataJobService.RunOfflineUserDataJob][google.ads.googleads.v21.services.OfflineUserDataJobService.RunOfflineUserDataJob]. +// [OfflineUserDataJobService.RunOfflineUserDataJob][google.ads.googleads.v22.services.OfflineUserDataJobService.RunOfflineUserDataJob]. type RunOfflineUserDataJobRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the OfflineUserDataJob to run. @@ -180,7 +180,7 @@ type RunOfflineUserDataJobRequest struct { func (x *RunOfflineUserDataJobRequest) Reset() { *x = RunOfflineUserDataJobRequest{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -192,7 +192,7 @@ func (x *RunOfflineUserDataJobRequest) String() string { func (*RunOfflineUserDataJobRequest) ProtoMessage() {} func (x *RunOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -205,7 +205,7 @@ func (x *RunOfflineUserDataJobRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RunOfflineUserDataJobRequest.ProtoReflect.Descriptor instead. func (*RunOfflineUserDataJobRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{2} } func (x *RunOfflineUserDataJobRequest) GetResourceName() string { @@ -223,7 +223,7 @@ func (x *RunOfflineUserDataJobRequest) GetValidateOnly() bool { } // Request message for -// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v21.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. +// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v22.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. type AddOfflineUserDataJobOperationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the OfflineUserDataJob. @@ -245,7 +245,7 @@ type AddOfflineUserDataJobOperationsRequest struct { func (x *AddOfflineUserDataJobOperationsRequest) Reset() { *x = AddOfflineUserDataJobOperationsRequest{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -257,7 +257,7 @@ func (x *AddOfflineUserDataJobOperationsRequest) String() string { func (*AddOfflineUserDataJobOperationsRequest) ProtoMessage() {} func (x *AddOfflineUserDataJobOperationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -270,7 +270,7 @@ func (x *AddOfflineUserDataJobOperationsRequest) ProtoReflect() protoreflect.Mes // Deprecated: Use AddOfflineUserDataJobOperationsRequest.ProtoReflect.Descriptor instead. func (*AddOfflineUserDataJobOperationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{3} } func (x *AddOfflineUserDataJobOperationsRequest) GetResourceName() string { @@ -325,7 +325,7 @@ type OfflineUserDataJobOperation struct { func (x *OfflineUserDataJobOperation) Reset() { *x = OfflineUserDataJobOperation{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -337,7 +337,7 @@ func (x *OfflineUserDataJobOperation) String() string { func (*OfflineUserDataJobOperation) ProtoMessage() {} func (x *OfflineUserDataJobOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -350,7 +350,7 @@ func (x *OfflineUserDataJobOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use OfflineUserDataJobOperation.ProtoReflect.Descriptor instead. func (*OfflineUserDataJobOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{4} } func (x *OfflineUserDataJobOperation) GetOperation() isOfflineUserDataJobOperation_Operation { @@ -416,7 +416,7 @@ func (*OfflineUserDataJobOperation_Remove) isOfflineUserDataJobOperation_Operati func (*OfflineUserDataJobOperation_RemoveAll) isOfflineUserDataJobOperation_Operation() {} // Response message for -// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v21.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. +// [OfflineUserDataJobService.AddOfflineUserDataJobOperations][google.ads.googleads.v22.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations]. type AddOfflineUserDataJobOperationsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Errors that pertain to operation failures in the partial failure mode. @@ -433,7 +433,7 @@ type AddOfflineUserDataJobOperationsResponse struct { func (x *AddOfflineUserDataJobOperationsResponse) Reset() { *x = AddOfflineUserDataJobOperationsResponse{} - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -445,7 +445,7 @@ func (x *AddOfflineUserDataJobOperationsResponse) String() string { func (*AddOfflineUserDataJobOperationsResponse) ProtoMessage() {} func (x *AddOfflineUserDataJobOperationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -458,7 +458,7 @@ func (x *AddOfflineUserDataJobOperationsResponse) ProtoReflect() protoreflect.Me // Deprecated: Use AddOfflineUserDataJobOperationsResponse.ProtoReflect.Descriptor instead. func (*AddOfflineUserDataJobOperationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP(), []int{5} } func (x *AddOfflineUserDataJobOperationsResponse) GetPartialFailureError() *status.Status { @@ -475,21 +475,21 @@ func (x *AddOfflineUserDataJobOperationsResponse) GetWarning() *status.Status { return nil } -var File_google_ads_googleads_v21_services_offline_user_data_job_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_offline_user_data_job_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x37, 0x67, 0x6f, 0x6f, 0x67, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x6f, 0x66, 0x66, 0x6c, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -512,7 +512,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x4f, 0x66, + 0x76, 0x32, 0x32, 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, @@ -556,7 +556,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -570,11 +570,11 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x44, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -594,41 +594,41 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x39, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x5f, 0x6e, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -636,11 +636,11 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x3a, 0x01, 0x2a, 0x22, 0x3a, 0x2f, 0x76, 0x32, 0x32, 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, @@ -650,62 +650,62 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, + 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, - 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_goTypes = []any{ - (*CreateOfflineUserDataJobRequest)(nil), // 0: google.ads.googleads.v21.services.CreateOfflineUserDataJobRequest - (*CreateOfflineUserDataJobResponse)(nil), // 1: google.ads.googleads.v21.services.CreateOfflineUserDataJobResponse - (*RunOfflineUserDataJobRequest)(nil), // 2: google.ads.googleads.v21.services.RunOfflineUserDataJobRequest - (*AddOfflineUserDataJobOperationsRequest)(nil), // 3: google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsRequest - (*OfflineUserDataJobOperation)(nil), // 4: google.ads.googleads.v21.services.OfflineUserDataJobOperation - (*AddOfflineUserDataJobOperationsResponse)(nil), // 5: google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse - (*resources.OfflineUserDataJob)(nil), // 6: google.ads.googleads.v21.resources.OfflineUserDataJob - (*common.UserData)(nil), // 7: google.ads.googleads.v21.common.UserData + return file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_goTypes = []any{ + (*CreateOfflineUserDataJobRequest)(nil), // 0: google.ads.googleads.v22.services.CreateOfflineUserDataJobRequest + (*CreateOfflineUserDataJobResponse)(nil), // 1: google.ads.googleads.v22.services.CreateOfflineUserDataJobResponse + (*RunOfflineUserDataJobRequest)(nil), // 2: google.ads.googleads.v22.services.RunOfflineUserDataJobRequest + (*AddOfflineUserDataJobOperationsRequest)(nil), // 3: google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsRequest + (*OfflineUserDataJobOperation)(nil), // 4: google.ads.googleads.v22.services.OfflineUserDataJobOperation + (*AddOfflineUserDataJobOperationsResponse)(nil), // 5: google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse + (*resources.OfflineUserDataJob)(nil), // 6: google.ads.googleads.v22.resources.OfflineUserDataJob + (*common.UserData)(nil), // 7: google.ads.googleads.v22.common.UserData (*status.Status)(nil), // 8: google.rpc.Status (*longrunningpb.Operation)(nil), // 9: google.longrunning.Operation } -var file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.services.CreateOfflineUserDataJobRequest.job:type_name -> google.ads.googleads.v21.resources.OfflineUserDataJob - 4, // 1: google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsRequest.operations:type_name -> google.ads.googleads.v21.services.OfflineUserDataJobOperation - 7, // 2: google.ads.googleads.v21.services.OfflineUserDataJobOperation.create:type_name -> google.ads.googleads.v21.common.UserData - 7, // 3: google.ads.googleads.v21.services.OfflineUserDataJobOperation.remove:type_name -> google.ads.googleads.v21.common.UserData - 8, // 4: google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse.partial_failure_error:type_name -> google.rpc.Status - 8, // 5: google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse.warning:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v21.services.OfflineUserDataJobService.CreateOfflineUserDataJob:input_type -> google.ads.googleads.v21.services.CreateOfflineUserDataJobRequest - 3, // 7: google.ads.googleads.v21.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:input_type -> google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsRequest - 2, // 8: google.ads.googleads.v21.services.OfflineUserDataJobService.RunOfflineUserDataJob:input_type -> google.ads.googleads.v21.services.RunOfflineUserDataJobRequest - 1, // 9: google.ads.googleads.v21.services.OfflineUserDataJobService.CreateOfflineUserDataJob:output_type -> google.ads.googleads.v21.services.CreateOfflineUserDataJobResponse - 5, // 10: google.ads.googleads.v21.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:output_type -> google.ads.googleads.v21.services.AddOfflineUserDataJobOperationsResponse - 9, // 11: google.ads.googleads.v21.services.OfflineUserDataJobService.RunOfflineUserDataJob:output_type -> google.longrunning.Operation +var file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.services.CreateOfflineUserDataJobRequest.job:type_name -> google.ads.googleads.v22.resources.OfflineUserDataJob + 4, // 1: google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsRequest.operations:type_name -> google.ads.googleads.v22.services.OfflineUserDataJobOperation + 7, // 2: google.ads.googleads.v22.services.OfflineUserDataJobOperation.create:type_name -> google.ads.googleads.v22.common.UserData + 7, // 3: google.ads.googleads.v22.services.OfflineUserDataJobOperation.remove:type_name -> google.ads.googleads.v22.common.UserData + 8, // 4: google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse.partial_failure_error:type_name -> google.rpc.Status + 8, // 5: google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse.warning:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v22.services.OfflineUserDataJobService.CreateOfflineUserDataJob:input_type -> google.ads.googleads.v22.services.CreateOfflineUserDataJobRequest + 3, // 7: google.ads.googleads.v22.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:input_type -> google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsRequest + 2, // 8: google.ads.googleads.v22.services.OfflineUserDataJobService.RunOfflineUserDataJob:input_type -> google.ads.googleads.v22.services.RunOfflineUserDataJobRequest + 1, // 9: google.ads.googleads.v22.services.OfflineUserDataJobService.CreateOfflineUserDataJob:output_type -> google.ads.googleads.v22.services.CreateOfflineUserDataJobResponse + 5, // 10: google.ads.googleads.v22.services.OfflineUserDataJobService.AddOfflineUserDataJobOperations:output_type -> google.ads.googleads.v22.services.AddOfflineUserDataJobOperationsResponse + 9, // 11: google.ads.googleads.v22.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 @@ -713,13 +713,13 @@ var file_google_ads_googleads_v21_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_v21_services_offline_user_data_job_service_proto_init() } -func file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_init() { - if File_google_ads_googleads_v21_services_offline_user_data_job_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_init() } +func file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_init() { + if File_google_ads_googleads_v22_services_offline_user_data_job_service_proto != nil { return } - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes[4].OneofWrappers = []any{ (*OfflineUserDataJobOperation_Create)(nil), (*OfflineUserDataJobOperation_Remove)(nil), (*OfflineUserDataJobOperation_RemoveAll)(nil), @@ -728,17 +728,17 @@ func file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_offline_user_data_job_service_proto = out.File - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_offline_user_data_job_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_offline_user_data_job_service_proto = out.File + file_google_ads_googleads_v22_services_offline_user_data_job_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 36877790..6cd04f1a 100644 --- a/services/offline_user_data_job_service_grpc.pb.go +++ b/services/offline_user_data_job_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/offline_user_data_job_service.proto +// source: google/ads/googleads/v22/services/offline_user_data_job_service.proto package services @@ -34,9 +34,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v21.services.OfflineUserDataJobService/CreateOfflineUserDataJob" - OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName = "/google.ads.googleads.v21.services.OfflineUserDataJobService/AddOfflineUserDataJobOperations" - OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v21.services.OfflineUserDataJobService/RunOfflineUserDataJob" + OfflineUserDataJobService_CreateOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v22.services.OfflineUserDataJobService/CreateOfflineUserDataJob" + OfflineUserDataJobService_AddOfflineUserDataJobOperations_FullMethodName = "/google.ads.googleads.v22.services.OfflineUserDataJobService/AddOfflineUserDataJobOperations" + OfflineUserDataJobService_RunOfflineUserDataJob_FullMethodName = "/google.ads.googleads.v22.services.OfflineUserDataJobService/RunOfflineUserDataJob" ) // OfflineUserDataJobServiceClient is the client API for OfflineUserDataJobService service. @@ -282,7 +282,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.v21.services.OfflineUserDataJobService", + ServiceName: "google.ads.googleads.v22.services.OfflineUserDataJobService", HandlerType: (*OfflineUserDataJobServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -299,5 +299,5 @@ var OfflineUserDataJobService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/offline_user_data_job_service.proto", + Metadata: "google/ads/googleads/v22/services/offline_user_data_job_service.proto", } diff --git a/services/payments_account_service.pb.go b/services/payments_account_service.pb.go index 385e11f5..7826b3c4 100644 --- a/services/payments_account_service.pb.go +++ b/services/payments_account_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/payments_account_service.proto +// source: google/ads/googleads/v22/services/payments_account_service.proto package services @@ -49,7 +49,7 @@ type ListPaymentsAccountsRequest struct { func (x *ListPaymentsAccountsRequest) Reset() { *x = ListPaymentsAccountsRequest{} - mi := &file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -61,7 +61,7 @@ func (x *ListPaymentsAccountsRequest) String() string { func (*ListPaymentsAccountsRequest) ProtoMessage() {} func (x *ListPaymentsAccountsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -74,7 +74,7 @@ func (x *ListPaymentsAccountsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPaymentsAccountsRequest.ProtoReflect.Descriptor instead. func (*ListPaymentsAccountsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescGZIP(), []int{0} } func (x *ListPaymentsAccountsRequest) GetCustomerId() string { @@ -85,7 +85,7 @@ func (x *ListPaymentsAccountsRequest) GetCustomerId() string { } // Response message for -// [PaymentsAccountService.ListPaymentsAccounts][google.ads.googleads.v21.services.PaymentsAccountService.ListPaymentsAccounts]. +// [PaymentsAccountService.ListPaymentsAccounts][google.ads.googleads.v22.services.PaymentsAccountService.ListPaymentsAccounts]. type ListPaymentsAccountsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of accessible payments accounts. @@ -96,7 +96,7 @@ type ListPaymentsAccountsResponse struct { func (x *ListPaymentsAccountsResponse) Reset() { *x = ListPaymentsAccountsResponse{} - mi := &file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -108,7 +108,7 @@ func (x *ListPaymentsAccountsResponse) String() string { func (*ListPaymentsAccountsResponse) ProtoMessage() {} func (x *ListPaymentsAccountsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -121,7 +121,7 @@ func (x *ListPaymentsAccountsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPaymentsAccountsResponse.ProtoReflect.Descriptor instead. func (*ListPaymentsAccountsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescGZIP(), []int{1} } func (x *ListPaymentsAccountsResponse) GetPaymentsAccounts() []*resources.PaymentsAccount { @@ -131,17 +131,17 @@ func (x *ListPaymentsAccountsResponse) GetPaymentsAccounts() []*resources.Paymen return nil } -var File_google_ads_googleads_v21_services_payments_account_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_payments_account_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_payments_account_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_payments_account_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -159,23 +159,23 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x50, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, @@ -184,46 +184,46 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1b, 0x50, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_payments_account_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_payments_account_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_payments_account_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_payments_account_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_payments_account_service_proto_rawDescData + return file_google_ads_googleads_v22_services_payments_account_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_services_payments_account_service_proto_goTypes = []any{ - (*ListPaymentsAccountsRequest)(nil), // 0: google.ads.googleads.v21.services.ListPaymentsAccountsRequest - (*ListPaymentsAccountsResponse)(nil), // 1: google.ads.googleads.v21.services.ListPaymentsAccountsResponse - (*resources.PaymentsAccount)(nil), // 2: google.ads.googleads.v21.resources.PaymentsAccount +var file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_services_payments_account_service_proto_goTypes = []any{ + (*ListPaymentsAccountsRequest)(nil), // 0: google.ads.googleads.v22.services.ListPaymentsAccountsRequest + (*ListPaymentsAccountsResponse)(nil), // 1: google.ads.googleads.v22.services.ListPaymentsAccountsResponse + (*resources.PaymentsAccount)(nil), // 2: google.ads.googleads.v22.resources.PaymentsAccount } -var file_google_ads_googleads_v21_services_payments_account_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.ListPaymentsAccountsResponse.payments_accounts:type_name -> google.ads.googleads.v21.resources.PaymentsAccount - 0, // 1: google.ads.googleads.v21.services.PaymentsAccountService.ListPaymentsAccounts:input_type -> google.ads.googleads.v21.services.ListPaymentsAccountsRequest - 1, // 2: google.ads.googleads.v21.services.PaymentsAccountService.ListPaymentsAccounts:output_type -> google.ads.googleads.v21.services.ListPaymentsAccountsResponse +var file_google_ads_googleads_v22_services_payments_account_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.ListPaymentsAccountsResponse.payments_accounts:type_name -> google.ads.googleads.v22.resources.PaymentsAccount + 0, // 1: google.ads.googleads.v22.services.PaymentsAccountService.ListPaymentsAccounts:input_type -> google.ads.googleads.v22.services.ListPaymentsAccountsRequest + 1, // 2: google.ads.googleads.v22.services.PaymentsAccountService.ListPaymentsAccounts:output_type -> google.ads.googleads.v22.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 @@ -231,26 +231,26 @@ var file_google_ads_googleads_v21_services_payments_account_service_proto_depIdx 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_payments_account_service_proto_init() } -func file_google_ads_googleads_v21_services_payments_account_service_proto_init() { - if File_google_ads_googleads_v21_services_payments_account_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_payments_account_service_proto_init() } +func file_google_ads_googleads_v22_services_payments_account_service_proto_init() { + if File_google_ads_googleads_v22_services_payments_account_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_payments_account_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_payments_account_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_payments_account_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_payments_account_service_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_payments_account_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_payments_account_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_payments_account_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_payments_account_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_payments_account_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_payments_account_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_payments_account_service_proto = out.File - file_google_ads_googleads_v21_services_payments_account_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_payments_account_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_payments_account_service_proto = out.File + file_google_ads_googleads_v22_services_payments_account_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 c46b93f6..a667c42e 100644 --- a/services/payments_account_service_grpc.pb.go +++ b/services/payments_account_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/payments_account_service.proto +// source: google/ads/googleads/v22/services/payments_account_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - PaymentsAccountService_ListPaymentsAccounts_FullMethodName = "/google.ads.googleads.v21.services.PaymentsAccountService/ListPaymentsAccounts" + PaymentsAccountService_ListPaymentsAccounts_FullMethodName = "/google.ads.googleads.v22.services.PaymentsAccountService/ListPaymentsAccounts" ) // PaymentsAccountServiceClient is the client API for PaymentsAccountService service. @@ -155,7 +155,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.v21.services.PaymentsAccountService", + ServiceName: "google.ads.googleads.v22.services.PaymentsAccountService", HandlerType: (*PaymentsAccountServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -164,5 +164,5 @@ var PaymentsAccountService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/payments_account_service.proto", + Metadata: "google/ads/googleads/v22/services/payments_account_service.proto", } diff --git a/services/product_link_invitation_service.pb.go b/services/product_link_invitation_service.pb.go index ea2f62b1..8bfb2d04 100644 --- a/services/product_link_invitation_service.pb.go +++ b/services/product_link_invitation_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/product_link_invitation_service.proto +// source: google/ads/googleads/v22/services/product_link_invitation_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ProductLinkInvitationService.CreateProductLinkInvitation][google.ads.googleads.v21.services.ProductLinkInvitationService.CreateProductLinkInvitation]. +// [ProductLinkInvitationService.CreateProductLinkInvitation][google.ads.googleads.v22.services.ProductLinkInvitationService.CreateProductLinkInvitation]. type CreateProductLinkInvitationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being modified. @@ -52,7 +52,7 @@ type CreateProductLinkInvitationRequest struct { func (x *CreateProductLinkInvitationRequest) Reset() { *x = CreateProductLinkInvitationRequest{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -64,7 +64,7 @@ func (x *CreateProductLinkInvitationRequest) String() string { func (*CreateProductLinkInvitationRequest) ProtoMessage() {} func (x *CreateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -77,7 +77,7 @@ func (x *CreateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use CreateProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*CreateProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{0} } func (x *CreateProductLinkInvitationRequest) GetCustomerId() string { @@ -105,7 +105,7 @@ type CreateProductLinkInvitationResponse struct { func (x *CreateProductLinkInvitationResponse) Reset() { *x = CreateProductLinkInvitationResponse{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *CreateProductLinkInvitationResponse) String() string { func (*CreateProductLinkInvitationResponse) ProtoMessage() {} func (x *CreateProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,7 +130,7 @@ func (x *CreateProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use CreateProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*CreateProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{1} } func (x *CreateProductLinkInvitationResponse) GetResourceName() string { @@ -141,13 +141,13 @@ func (x *CreateProductLinkInvitationResponse) GetResourceName() string { } // Request message for -// [ProductLinkInvitationService.UpdateProductLinkInvitation][google.ads.googleads.v21.services.ProductLinkInvitationService.UpdateProductLinkInvitation]. +// [ProductLinkInvitationService.UpdateProductLinkInvitation][google.ads.googleads.v22.services.ProductLinkInvitationService.UpdateProductLinkInvitation]. type UpdateProductLinkInvitationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -156,7 +156,7 @@ type UpdateProductLinkInvitationRequest struct { func (x *UpdateProductLinkInvitationRequest) Reset() { *x = UpdateProductLinkInvitationRequest{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -168,7 +168,7 @@ func (x *UpdateProductLinkInvitationRequest) String() string { func (*UpdateProductLinkInvitationRequest) ProtoMessage() {} func (x *UpdateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -181,7 +181,7 @@ func (x *UpdateProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use UpdateProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*UpdateProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{2} } func (x *UpdateProductLinkInvitationRequest) GetCustomerId() string { @@ -216,7 +216,7 @@ type UpdateProductLinkInvitationResponse struct { func (x *UpdateProductLinkInvitationResponse) Reset() { *x = UpdateProductLinkInvitationResponse{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -228,7 +228,7 @@ func (x *UpdateProductLinkInvitationResponse) String() string { func (*UpdateProductLinkInvitationResponse) ProtoMessage() {} func (x *UpdateProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -241,7 +241,7 @@ func (x *UpdateProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use UpdateProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*UpdateProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{3} } func (x *UpdateProductLinkInvitationResponse) GetResourceName() string { @@ -268,7 +268,7 @@ type RemoveProductLinkInvitationRequest struct { func (x *RemoveProductLinkInvitationRequest) Reset() { *x = RemoveProductLinkInvitationRequest{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -280,7 +280,7 @@ func (x *RemoveProductLinkInvitationRequest) String() string { func (*RemoveProductLinkInvitationRequest) ProtoMessage() {} func (x *RemoveProductLinkInvitationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -293,7 +293,7 @@ func (x *RemoveProductLinkInvitationRequest) ProtoReflect() protoreflect.Message // Deprecated: Use RemoveProductLinkInvitationRequest.ProtoReflect.Descriptor instead. func (*RemoveProductLinkInvitationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{4} } func (x *RemoveProductLinkInvitationRequest) GetCustomerId() string { @@ -321,7 +321,7 @@ type RemoveProductLinkInvitationResponse struct { func (x *RemoveProductLinkInvitationResponse) Reset() { *x = RemoveProductLinkInvitationResponse{} - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -333,7 +333,7 @@ func (x *RemoveProductLinkInvitationResponse) String() string { func (*RemoveProductLinkInvitationResponse) ProtoMessage() {} func (x *RemoveProductLinkInvitationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -346,7 +346,7 @@ func (x *RemoveProductLinkInvitationResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use RemoveProductLinkInvitationResponse.ProtoReflect.Descriptor instead. func (*RemoveProductLinkInvitationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP(), []int{5} } func (x *RemoveProductLinkInvitationResponse) GetResourceName() string { @@ -356,22 +356,22 @@ func (x *RemoveProductLinkInvitationResponse) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_product_link_invitation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_product_link_invitation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x43, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x70, 0x72, 0x6f, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -389,7 +389,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -410,7 +410,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -455,29 +455,29 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -485,24 +485,24 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x3c, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x3a, 0x01, 0x2a, 0x22, 0x3c, 0x2f, 0x76, 0x32, 0x32, 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, @@ -512,56 +512,56 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_product_link_invitation_service_proto_goTypes = []any{ - (*CreateProductLinkInvitationRequest)(nil), // 0: google.ads.googleads.v21.services.CreateProductLinkInvitationRequest - (*CreateProductLinkInvitationResponse)(nil), // 1: google.ads.googleads.v21.services.CreateProductLinkInvitationResponse - (*UpdateProductLinkInvitationRequest)(nil), // 2: google.ads.googleads.v21.services.UpdateProductLinkInvitationRequest - (*UpdateProductLinkInvitationResponse)(nil), // 3: google.ads.googleads.v21.services.UpdateProductLinkInvitationResponse - (*RemoveProductLinkInvitationRequest)(nil), // 4: google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest - (*RemoveProductLinkInvitationResponse)(nil), // 5: google.ads.googleads.v21.services.RemoveProductLinkInvitationResponse - (*resources.ProductLinkInvitation)(nil), // 6: google.ads.googleads.v21.resources.ProductLinkInvitation - (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 7: google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus -} -var file_google_ads_googleads_v21_services_product_link_invitation_service_proto_depIdxs = []int32{ - 6, // 0: google.ads.googleads.v21.services.CreateProductLinkInvitationRequest.product_link_invitation:type_name -> google.ads.googleads.v21.resources.ProductLinkInvitation - 7, // 1: google.ads.googleads.v21.services.UpdateProductLinkInvitationRequest.product_link_invitation_status:type_name -> google.ads.googleads.v21.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus - 0, // 2: google.ads.googleads.v21.services.ProductLinkInvitationService.CreateProductLinkInvitation:input_type -> google.ads.googleads.v21.services.CreateProductLinkInvitationRequest - 2, // 3: google.ads.googleads.v21.services.ProductLinkInvitationService.UpdateProductLinkInvitation:input_type -> google.ads.googleads.v21.services.UpdateProductLinkInvitationRequest - 4, // 4: google.ads.googleads.v21.services.ProductLinkInvitationService.RemoveProductLinkInvitation:input_type -> google.ads.googleads.v21.services.RemoveProductLinkInvitationRequest - 1, // 5: google.ads.googleads.v21.services.ProductLinkInvitationService.CreateProductLinkInvitation:output_type -> google.ads.googleads.v21.services.CreateProductLinkInvitationResponse - 3, // 6: google.ads.googleads.v21.services.ProductLinkInvitationService.UpdateProductLinkInvitation:output_type -> google.ads.googleads.v21.services.UpdateProductLinkInvitationResponse - 5, // 7: google.ads.googleads.v21.services.ProductLinkInvitationService.RemoveProductLinkInvitation:output_type -> google.ads.googleads.v21.services.RemoveProductLinkInvitationResponse + return file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_product_link_invitation_service_proto_goTypes = []any{ + (*CreateProductLinkInvitationRequest)(nil), // 0: google.ads.googleads.v22.services.CreateProductLinkInvitationRequest + (*CreateProductLinkInvitationResponse)(nil), // 1: google.ads.googleads.v22.services.CreateProductLinkInvitationResponse + (*UpdateProductLinkInvitationRequest)(nil), // 2: google.ads.googleads.v22.services.UpdateProductLinkInvitationRequest + (*UpdateProductLinkInvitationResponse)(nil), // 3: google.ads.googleads.v22.services.UpdateProductLinkInvitationResponse + (*RemoveProductLinkInvitationRequest)(nil), // 4: google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest + (*RemoveProductLinkInvitationResponse)(nil), // 5: google.ads.googleads.v22.services.RemoveProductLinkInvitationResponse + (*resources.ProductLinkInvitation)(nil), // 6: google.ads.googleads.v22.resources.ProductLinkInvitation + (enums.ProductLinkInvitationStatusEnum_ProductLinkInvitationStatus)(0), // 7: google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus +} +var file_google_ads_googleads_v22_services_product_link_invitation_service_proto_depIdxs = []int32{ + 6, // 0: google.ads.googleads.v22.services.CreateProductLinkInvitationRequest.product_link_invitation:type_name -> google.ads.googleads.v22.resources.ProductLinkInvitation + 7, // 1: google.ads.googleads.v22.services.UpdateProductLinkInvitationRequest.product_link_invitation_status:type_name -> google.ads.googleads.v22.enums.ProductLinkInvitationStatusEnum.ProductLinkInvitationStatus + 0, // 2: google.ads.googleads.v22.services.ProductLinkInvitationService.CreateProductLinkInvitation:input_type -> google.ads.googleads.v22.services.CreateProductLinkInvitationRequest + 2, // 3: google.ads.googleads.v22.services.ProductLinkInvitationService.UpdateProductLinkInvitation:input_type -> google.ads.googleads.v22.services.UpdateProductLinkInvitationRequest + 4, // 4: google.ads.googleads.v22.services.ProductLinkInvitationService.RemoveProductLinkInvitation:input_type -> google.ads.googleads.v22.services.RemoveProductLinkInvitationRequest + 1, // 5: google.ads.googleads.v22.services.ProductLinkInvitationService.CreateProductLinkInvitation:output_type -> google.ads.googleads.v22.services.CreateProductLinkInvitationResponse + 3, // 6: google.ads.googleads.v22.services.ProductLinkInvitationService.UpdateProductLinkInvitation:output_type -> google.ads.googleads.v22.services.UpdateProductLinkInvitationResponse + 5, // 7: google.ads.googleads.v22.services.ProductLinkInvitationService.RemoveProductLinkInvitation:output_type -> google.ads.googleads.v22.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 @@ -569,26 +569,26 @@ var file_google_ads_googleads_v21_services_product_link_invitation_service_proto 0, // [0:2] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_product_link_invitation_service_proto_init() } -func file_google_ads_googleads_v21_services_product_link_invitation_service_proto_init() { - if File_google_ads_googleads_v21_services_product_link_invitation_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_product_link_invitation_service_proto_init() } +func file_google_ads_googleads_v22_services_product_link_invitation_service_proto_init() { + if File_google_ads_googleads_v22_services_product_link_invitation_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_product_link_invitation_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_product_link_invitation_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_product_link_invitation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_product_link_invitation_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_product_link_invitation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_product_link_invitation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_product_link_invitation_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_product_link_invitation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_product_link_invitation_service_proto = out.File - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_product_link_invitation_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_product_link_invitation_service_proto = out.File + file_google_ads_googleads_v22_services_product_link_invitation_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ab22e233..e9604b0d 100644 --- a/services/product_link_invitation_service_grpc.pb.go +++ b/services/product_link_invitation_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/product_link_invitation_service.proto +// source: google/ads/googleads/v22/services/product_link_invitation_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v21.services.ProductLinkInvitationService/CreateProductLinkInvitation" - ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v21.services.ProductLinkInvitationService/UpdateProductLinkInvitation" - ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName = "/google.ads.googleads.v21.services.ProductLinkInvitationService/RemoveProductLinkInvitation" + ProductLinkInvitationService_CreateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v22.services.ProductLinkInvitationService/CreateProductLinkInvitation" + ProductLinkInvitationService_UpdateProductLinkInvitation_FullMethodName = "/google.ads.googleads.v22.services.ProductLinkInvitationService/UpdateProductLinkInvitation" + ProductLinkInvitationService_RemoveProductLinkInvitation_FullMethodName = "/google.ads.googleads.v22.services.ProductLinkInvitationService/RemoveProductLinkInvitation" ) // ProductLinkInvitationServiceClient is the client API for ProductLinkInvitationService service. @@ -203,7 +203,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.v21.services.ProductLinkInvitationService", + ServiceName: "google.ads.googleads.v22.services.ProductLinkInvitationService", HandlerType: (*ProductLinkInvitationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -220,5 +220,5 @@ var ProductLinkInvitationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/product_link_invitation_service.proto", + Metadata: "google/ads/googleads/v22/services/product_link_invitation_service.proto", } diff --git a/services/product_link_service.pb.go b/services/product_link_service.pb.go index 298371be..35cdf865 100644 --- a/services/product_link_service.pb.go +++ b/services/product_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/product_link_service.proto +// source: google/ads/googleads/v22/services/product_link_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [ProductLinkService.CreateProductLink][google.ads.googleads.v21.services.ProductLinkService.CreateProductLink]. +// [ProductLinkService.CreateProductLink][google.ads.googleads.v22.services.ProductLinkService.CreateProductLink]. type CreateProductLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which the product link is created. @@ -51,7 +51,7 @@ type CreateProductLinkRequest struct { func (x *CreateProductLinkRequest) Reset() { *x = CreateProductLinkRequest{} - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *CreateProductLinkRequest) String() string { func (*CreateProductLinkRequest) ProtoMessage() {} func (x *CreateProductLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *CreateProductLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProductLinkRequest.ProtoReflect.Descriptor instead. func (*CreateProductLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_product_link_service_proto_rawDescGZIP(), []int{0} } func (x *CreateProductLinkRequest) GetCustomerId() string { @@ -94,7 +94,7 @@ func (x *CreateProductLinkRequest) GetProductLink() *resources.ProductLink { } // Response message for -// [ProductLinkService.CreateProductLink][google.ads.googleads.v21.services.ProductLinkService.CreateProductLink]. +// [ProductLinkService.CreateProductLink][google.ads.googleads.v22.services.ProductLinkService.CreateProductLink]. type CreateProductLinkResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Returned for successful operations. Resource name of the product link. @@ -105,7 +105,7 @@ type CreateProductLinkResponse struct { func (x *CreateProductLinkResponse) Reset() { *x = CreateProductLinkResponse{} - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -117,7 +117,7 @@ func (x *CreateProductLinkResponse) String() string { func (*CreateProductLinkResponse) ProtoMessage() {} func (x *CreateProductLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -130,7 +130,7 @@ func (x *CreateProductLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use CreateProductLinkResponse.ProtoReflect.Descriptor instead. func (*CreateProductLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_product_link_service_proto_rawDescGZIP(), []int{1} } func (x *CreateProductLinkResponse) GetResourceName() string { @@ -141,7 +141,7 @@ func (x *CreateProductLinkResponse) GetResourceName() string { } // Request message for -// [ProductLinkService.RemoveProductLink][google.ads.googleads.v21.services.ProductLinkService.RemoveProductLink]. +// [ProductLinkService.RemoveProductLink][google.ads.googleads.v22.services.ProductLinkService.RemoveProductLink]. type RemoveProductLinkRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer being modified. @@ -160,7 +160,7 @@ type RemoveProductLinkRequest struct { func (x *RemoveProductLinkRequest) Reset() { *x = RemoveProductLinkRequest{} - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -172,7 +172,7 @@ func (x *RemoveProductLinkRequest) String() string { func (*RemoveProductLinkRequest) ProtoMessage() {} func (x *RemoveProductLinkRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -185,7 +185,7 @@ func (x *RemoveProductLinkRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveProductLinkRequest.ProtoReflect.Descriptor instead. func (*RemoveProductLinkRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_product_link_service_proto_rawDescGZIP(), []int{2} } func (x *RemoveProductLinkRequest) GetCustomerId() string { @@ -220,7 +220,7 @@ type RemoveProductLinkResponse struct { func (x *RemoveProductLinkResponse) Reset() { *x = RemoveProductLinkResponse{} - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -232,7 +232,7 @@ func (x *RemoveProductLinkResponse) String() string { func (*RemoveProductLinkResponse) ProtoMessage() {} func (x *RemoveProductLinkResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -245,7 +245,7 @@ func (x *RemoveProductLinkResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use RemoveProductLinkResponse.ProtoReflect.Descriptor instead. func (*RemoveProductLinkResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_product_link_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_product_link_service_proto_rawDescGZIP(), []int{3} } func (x *RemoveProductLinkResponse) GetResourceName() string { @@ -255,17 +255,17 @@ func (x *RemoveProductLinkResponse) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_product_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_product_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_product_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_product_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -281,7 +281,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -314,30 +314,30 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x72, 0x65, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, + 0x6b, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x37, 0x3a, 0x01, 0x2a, 0x22, 0x32, 0x2f, 0x76, 0x32, 0x32, 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, @@ -347,49 +347,49 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x17, 0x50, 0x72, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, + 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_product_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_product_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_product_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_product_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_product_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_product_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_product_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_product_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_product_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_product_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_product_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_product_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_product_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_product_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_product_link_service_proto_rawDescData + return file_google_ads_googleads_v22_services_product_link_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_product_link_service_proto_goTypes = []any{ - (*CreateProductLinkRequest)(nil), // 0: google.ads.googleads.v21.services.CreateProductLinkRequest - (*CreateProductLinkResponse)(nil), // 1: google.ads.googleads.v21.services.CreateProductLinkResponse - (*RemoveProductLinkRequest)(nil), // 2: google.ads.googleads.v21.services.RemoveProductLinkRequest - (*RemoveProductLinkResponse)(nil), // 3: google.ads.googleads.v21.services.RemoveProductLinkResponse - (*resources.ProductLink)(nil), // 4: google.ads.googleads.v21.resources.ProductLink +var file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_product_link_service_proto_goTypes = []any{ + (*CreateProductLinkRequest)(nil), // 0: google.ads.googleads.v22.services.CreateProductLinkRequest + (*CreateProductLinkResponse)(nil), // 1: google.ads.googleads.v22.services.CreateProductLinkResponse + (*RemoveProductLinkRequest)(nil), // 2: google.ads.googleads.v22.services.RemoveProductLinkRequest + (*RemoveProductLinkResponse)(nil), // 3: google.ads.googleads.v22.services.RemoveProductLinkResponse + (*resources.ProductLink)(nil), // 4: google.ads.googleads.v22.resources.ProductLink } -var file_google_ads_googleads_v21_services_product_link_service_proto_depIdxs = []int32{ - 4, // 0: google.ads.googleads.v21.services.CreateProductLinkRequest.product_link:type_name -> google.ads.googleads.v21.resources.ProductLink - 0, // 1: google.ads.googleads.v21.services.ProductLinkService.CreateProductLink:input_type -> google.ads.googleads.v21.services.CreateProductLinkRequest - 2, // 2: google.ads.googleads.v21.services.ProductLinkService.RemoveProductLink:input_type -> google.ads.googleads.v21.services.RemoveProductLinkRequest - 1, // 3: google.ads.googleads.v21.services.ProductLinkService.CreateProductLink:output_type -> google.ads.googleads.v21.services.CreateProductLinkResponse - 3, // 4: google.ads.googleads.v21.services.ProductLinkService.RemoveProductLink:output_type -> google.ads.googleads.v21.services.RemoveProductLinkResponse +var file_google_ads_googleads_v22_services_product_link_service_proto_depIdxs = []int32{ + 4, // 0: google.ads.googleads.v22.services.CreateProductLinkRequest.product_link:type_name -> google.ads.googleads.v22.resources.ProductLink + 0, // 1: google.ads.googleads.v22.services.ProductLinkService.CreateProductLink:input_type -> google.ads.googleads.v22.services.CreateProductLinkRequest + 2, // 2: google.ads.googleads.v22.services.ProductLinkService.RemoveProductLink:input_type -> google.ads.googleads.v22.services.RemoveProductLinkRequest + 1, // 3: google.ads.googleads.v22.services.ProductLinkService.CreateProductLink:output_type -> google.ads.googleads.v22.services.CreateProductLinkResponse + 3, // 4: google.ads.googleads.v22.services.ProductLinkService.RemoveProductLink:output_type -> google.ads.googleads.v22.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 @@ -397,26 +397,26 @@ var file_google_ads_googleads_v21_services_product_link_service_proto_depIdxs = 0, // [0:1] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_product_link_service_proto_init() } -func file_google_ads_googleads_v21_services_product_link_service_proto_init() { - if File_google_ads_googleads_v21_services_product_link_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_product_link_service_proto_init() } +func file_google_ads_googleads_v22_services_product_link_service_proto_init() { + if File_google_ads_googleads_v22_services_product_link_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_product_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_product_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_product_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_product_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_product_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_product_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_product_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_product_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_product_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_product_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_product_link_service_proto = out.File - file_google_ads_googleads_v21_services_product_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_product_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_product_link_service_proto = out.File + file_google_ads_googleads_v22_services_product_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 7f102a10..fa2ff89c 100644 --- a/services/product_link_service_grpc.pb.go +++ b/services/product_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/product_link_service.proto +// source: google/ads/googleads/v22/services/product_link_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ProductLinkService_CreateProductLink_FullMethodName = "/google.ads.googleads.v21.services.ProductLinkService/CreateProductLink" - ProductLinkService_RemoveProductLink_FullMethodName = "/google.ads.googleads.v21.services.ProductLinkService/RemoveProductLink" + ProductLinkService_CreateProductLink_FullMethodName = "/google.ads.googleads.v22.services.ProductLinkService/CreateProductLink" + ProductLinkService_RemoveProductLink_FullMethodName = "/google.ads.googleads.v22.services.ProductLinkService/RemoveProductLink" ) // ProductLinkServiceClient is the client API for ProductLinkService service. @@ -212,7 +212,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.v21.services.ProductLinkService", + ServiceName: "google.ads.googleads.v22.services.ProductLinkService", HandlerType: (*ProductLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -225,5 +225,5 @@ var ProductLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/product_link_service.proto", + Metadata: "google/ads/googleads/v22/services/product_link_service.proto", } diff --git a/services/reach_plan_service.pb.go b/services/reach_plan_service.pb.go index b73afc05..0885d7ba 100644 --- a/services/reach_plan_service.pb.go +++ b/services/reach_plan_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/reach_plan_service.proto +// source: google/ads/googleads/v22/services/reach_plan_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [ReachPlanService.GenerateConversionRates][google.ads.googleads.v21.services.ReachPlanService.GenerateConversionRates]. +// [ReachPlanService.GenerateConversionRates][google.ads.googleads.v22.services.ReachPlanService.GenerateConversionRates]. type GenerateConversionRatesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. A conversion rate based on the historical @@ -55,7 +55,7 @@ type GenerateConversionRatesRequest struct { func (x *GenerateConversionRatesRequest) Reset() { *x = GenerateConversionRatesRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -67,7 +67,7 @@ func (x *GenerateConversionRatesRequest) String() string { func (*GenerateConversionRatesRequest) ProtoMessage() {} func (x *GenerateConversionRatesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -80,7 +80,7 @@ func (x *GenerateConversionRatesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateConversionRatesRequest.ProtoReflect.Descriptor instead. func (*GenerateConversionRatesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateConversionRatesRequest) GetCustomerId() string { @@ -105,7 +105,7 @@ func (x *GenerateConversionRatesRequest) GetReachApplicationInfo() *common.Addit } // Response message for -// [ReachPlanService.GenerateConversionRates][google.ads.googleads.v21.services.ReachPlanService.GenerateConversionRates], +// [ReachPlanService.GenerateConversionRates][google.ads.googleads.v22.services.ReachPlanService.GenerateConversionRates], // containing conversion rate suggestions for supported plannable products. type GenerateConversionRatesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -119,7 +119,7 @@ type GenerateConversionRatesResponse struct { func (x *GenerateConversionRatesResponse) Reset() { *x = GenerateConversionRatesResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -131,7 +131,7 @@ func (x *GenerateConversionRatesResponse) String() string { func (*GenerateConversionRatesResponse) ProtoMessage() {} func (x *GenerateConversionRatesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -144,7 +144,7 @@ func (x *GenerateConversionRatesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateConversionRatesResponse.ProtoReflect.Descriptor instead. func (*GenerateConversionRatesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{1} } func (x *GenerateConversionRatesResponse) GetConversionRateSuggestions() []*ConversionRateSuggestion { @@ -158,10 +158,10 @@ func (x *GenerateConversionRatesResponse) GetConversionRateSuggestions() []*Conv type ConversionRateSuggestion struct { state protoimpl.MessageState `protogen:"open.v1"` // Model type used to calculate the suggested conversion rate. - ConversionRateModel enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel `protobuf:"varint,1,opt,name=conversion_rate_model,json=conversionRateModel,proto3,enum=google.ads.googleads.v21.enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel" json:"conversion_rate_model,omitempty"` + ConversionRateModel enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel `protobuf:"varint,1,opt,name=conversion_rate_model,json=conversionRateModel,proto3,enum=google.ads.googleads.v22.enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel" json:"conversion_rate_model,omitempty"` // The code associated with the plannable product (for example: DEMAND_GEN). // To list all plannable product codes, use - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v21.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.services.ReachPlanService.ListPlannableProducts]. PlannableProductCode string `protobuf:"bytes,2,opt,name=plannable_product_code,json=plannableProductCode,proto3" json:"plannable_product_code,omitempty"` // The suggested conversion rate. The value is between 0 and 1 (exclusive). ConversionRate float64 `protobuf:"fixed64,3,opt,name=conversion_rate,json=conversionRate,proto3" json:"conversion_rate,omitempty"` @@ -171,7 +171,7 @@ type ConversionRateSuggestion struct { func (x *ConversionRateSuggestion) Reset() { *x = ConversionRateSuggestion{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -183,7 +183,7 @@ func (x *ConversionRateSuggestion) String() string { func (*ConversionRateSuggestion) ProtoMessage() {} func (x *ConversionRateSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -196,7 +196,7 @@ func (x *ConversionRateSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use ConversionRateSuggestion.ProtoReflect.Descriptor instead. func (*ConversionRateSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{2} } func (x *ConversionRateSuggestion) GetConversionRateModel() enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel { @@ -221,7 +221,7 @@ func (x *ConversionRateSuggestion) GetConversionRate() float64 { } // Request message for -// [ReachPlanService.ListPlannableLocations][google.ads.googleads.v21.services.ReachPlanService.ListPlannableLocations]. +// [ReachPlanService.ListPlannableLocations][google.ads.googleads.v22.services.ReachPlanService.ListPlannableLocations]. type ListPlannableLocationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Optional. Additional information on the application issuing the request. @@ -232,7 +232,7 @@ type ListPlannableLocationsRequest struct { func (x *ListPlannableLocationsRequest) Reset() { *x = ListPlannableLocationsRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -244,7 +244,7 @@ func (x *ListPlannableLocationsRequest) String() string { func (*ListPlannableLocationsRequest) ProtoMessage() {} func (x *ListPlannableLocationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -257,7 +257,7 @@ func (x *ListPlannableLocationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableLocationsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableLocationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{3} } func (x *ListPlannableLocationsRequest) GetReachApplicationInfo() *common.AdditionalApplicationInfo { @@ -281,7 +281,7 @@ type ListPlannableLocationsResponse struct { func (x *ListPlannableLocationsResponse) Reset() { *x = ListPlannableLocationsResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -293,7 +293,7 @@ func (x *ListPlannableLocationsResponse) String() string { func (*ListPlannableLocationsResponse) ProtoMessage() {} func (x *ListPlannableLocationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -306,7 +306,7 @@ func (x *ListPlannableLocationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableLocationsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableLocationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{4} } func (x *ListPlannableLocationsResponse) GetPlannableLocations() []*PlannableLocation { @@ -326,7 +326,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.v21.services.ReachPlanService.ListPlannableLocations] + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v22.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. @@ -340,7 +340,7 @@ type PlannableLocation struct { func (x *PlannableLocation) Reset() { *x = PlannableLocation{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -352,7 +352,7 @@ func (x *PlannableLocation) String() string { func (*PlannableLocation) ProtoMessage() {} func (x *PlannableLocation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -365,7 +365,7 @@ func (x *PlannableLocation) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableLocation.ProtoReflect.Descriptor instead. func (*PlannableLocation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{5} } func (x *PlannableLocation) GetId() string { @@ -408,7 +408,7 @@ type ListPlannableProductsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the selected location for planning. To list the // available plannable location IDs use - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v21.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v22.services.ReachPlanService.ListPlannableLocations]. PlannableLocationId string `protobuf:"bytes,2,opt,name=plannable_location_id,json=plannableLocationId,proto3" json:"plannable_location_id,omitempty"` // Optional. Additional information on the application issuing the request. ReachApplicationInfo *common.AdditionalApplicationInfo `protobuf:"bytes,3,opt,name=reach_application_info,json=reachApplicationInfo,proto3" json:"reach_application_info,omitempty"` @@ -418,7 +418,7 @@ type ListPlannableProductsRequest struct { func (x *ListPlannableProductsRequest) Reset() { *x = ListPlannableProductsRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -430,7 +430,7 @@ func (x *ListPlannableProductsRequest) String() string { func (*ListPlannableProductsRequest) ProtoMessage() {} func (x *ListPlannableProductsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -443,7 +443,7 @@ func (x *ListPlannableProductsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableProductsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableProductsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{6} } func (x *ListPlannableProductsRequest) GetPlannableLocationId() string { @@ -471,7 +471,7 @@ type ListPlannableProductsResponse struct { func (x *ListPlannableProductsResponse) Reset() { *x = ListPlannableProductsResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -483,7 +483,7 @@ func (x *ListPlannableProductsResponse) String() string { func (*ListPlannableProductsResponse) ProtoMessage() {} func (x *ListPlannableProductsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -496,7 +496,7 @@ func (x *ListPlannableProductsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableProductsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableProductsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{7} } func (x *ListPlannableProductsResponse) GetProductMetadata() []*ProductMetadata { @@ -512,7 +512,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.v21.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.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"` @@ -524,7 +524,7 @@ type ProductMetadata struct { func (x *ProductMetadata) Reset() { *x = ProductMetadata{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -536,7 +536,7 @@ func (x *ProductMetadata) String() string { func (*ProductMetadata) ProtoMessage() {} func (x *ProductMetadata) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -549,7 +549,7 @@ func (x *ProductMetadata) ProtoReflect() protoreflect.Message { // Deprecated: Use ProductMetadata.ProtoReflect.Descriptor instead. func (*ProductMetadata) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{8} } func (x *ProductMetadata) GetPlannableProductCode() string { @@ -574,7 +574,7 @@ func (x *ProductMetadata) GetPlannableTargeting() *PlannableTargeting { } // Request message for -// [ReachPlanService.ListPlannableUserLists][google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserLists] +// [ReachPlanService.ListPlannableUserLists][google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserLists] // that lists the available user lists for a customer. type ListPlannableUserListsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` @@ -590,7 +590,7 @@ type ListPlannableUserListsRequest struct { func (x *ListPlannableUserListsRequest) Reset() { *x = ListPlannableUserListsRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -602,7 +602,7 @@ func (x *ListPlannableUserListsRequest) String() string { func (*ListPlannableUserListsRequest) ProtoMessage() {} func (x *ListPlannableUserListsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -615,7 +615,7 @@ func (x *ListPlannableUserListsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableUserListsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableUserListsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{9} } func (x *ListPlannableUserListsRequest) GetCustomerId() string { @@ -651,7 +651,7 @@ type ListPlannableUserListsResponse struct { func (x *ListPlannableUserListsResponse) Reset() { *x = ListPlannableUserListsResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -663,7 +663,7 @@ func (x *ListPlannableUserListsResponse) String() string { func (*ListPlannableUserListsResponse) ProtoMessage() {} func (x *ListPlannableUserListsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -676,7 +676,7 @@ func (x *ListPlannableUserListsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ListPlannableUserListsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableUserListsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{10} } func (x *ListPlannableUserListsResponse) GetPlannableUserLists() []*PlannableUserList { @@ -694,16 +694,18 @@ type PlannableUserList struct { // The name of the user list. DisplayName string `protobuf:"bytes,2,opt,name=display_name,json=displayName,proto3" json:"display_name,omitempty"` // The user list type. - UserListType enums.UserListTypeEnum_UserListType `protobuf:"varint,3,opt,name=user_list_type,json=userListType,proto3,enum=google.ads.googleads.v21.enums.UserListTypeEnum_UserListType" json:"user_list_type,omitempty"` + UserListType enums.UserListTypeEnum_UserListType `protobuf:"varint,3,opt,name=user_list_type,json=userListType,proto3,enum=google.ads.googleads.v22.enums.UserListTypeEnum_UserListType" json:"user_list_type,omitempty"` // The plannable status of the user list. - PlannableStatus enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus `protobuf:"varint,4,opt,name=plannable_status,json=plannableStatus,proto3,enum=google.ads.googleads.v21.enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus" json:"plannable_status,omitempty"` - unknownFields protoimpl.UnknownFields - sizeCache protoimpl.SizeCache + PlannableStatus enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus `protobuf:"varint,4,opt,name=plannable_status,json=plannableStatus,proto3,enum=google.ads.googleads.v22.enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus" json:"plannable_status,omitempty"` + // The relevant metadata for this user list. + PlannableUserListMetadata *PlannableUserListMetadata `protobuf:"bytes,5,opt,name=plannable_user_list_metadata,json=plannableUserListMetadata,proto3" json:"plannable_user_list_metadata,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache } func (x *PlannableUserList) Reset() { *x = PlannableUserList{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -715,7 +717,7 @@ func (x *PlannableUserList) String() string { func (*PlannableUserList) ProtoMessage() {} func (x *PlannableUserList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -728,7 +730,7 @@ func (x *PlannableUserList) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableUserList.ProtoReflect.Descriptor instead. func (*PlannableUserList) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{11} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{11} } func (x *PlannableUserList) GetUserListInfo() *common.UserListInfo { @@ -759,13 +761,66 @@ func (x *PlannableUserList) GetPlannableStatus() enums.ReachPlanPlannableUserLis return enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus(0) } +func (x *PlannableUserList) GetPlannableUserListMetadata() *PlannableUserListMetadata { + if x != nil { + return x.PlannableUserListMetadata + } + return nil +} + +// The metadata associated with a plannable user list. +type PlannableUserListMetadata struct { + state protoimpl.MessageState `protogen:"open.v1"` + // The data source type of a CRM based user list. + UserListCrmDataSourceType enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType `protobuf:"varint,1,opt,name=user_list_crm_data_source_type,json=userListCrmDataSourceType,proto3,enum=google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType" json:"user_list_crm_data_source_type,omitempty"` + unknownFields protoimpl.UnknownFields + sizeCache protoimpl.SizeCache +} + +func (x *PlannableUserListMetadata) Reset() { + *x = PlannableUserListMetadata{} + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[12] + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + ms.StoreMessageInfo(mi) +} + +func (x *PlannableUserListMetadata) String() string { + return protoimpl.X.MessageStringOf(x) +} + +func (*PlannableUserListMetadata) ProtoMessage() {} + +func (x *PlannableUserListMetadata) ProtoReflect() protoreflect.Message { + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[12] + if x != nil { + ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) + if ms.LoadMessageInfo() == nil { + ms.StoreMessageInfo(mi) + } + return ms + } + return mi.MessageOf(x) +} + +// Deprecated: Use PlannableUserListMetadata.ProtoReflect.Descriptor instead. +func (*PlannableUserListMetadata) Descriptor() ([]byte, []int) { + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{12} +} + +func (x *PlannableUserListMetadata) GetUserListCrmDataSourceType() enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType { + if x != nil { + return x.UserListCrmDataSourceType + } + return enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType(0) +} + // The targeting for which traffic metrics will be reported. type PlannableTargeting struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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. @@ -774,7 +829,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.v21.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"networks,omitempty"` + Networks []enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,4,rep,packed,name=networks,proto3,enum=google.ads.googleads.v22.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. @@ -785,7 +840,7 @@ type PlannableTargeting struct { func (x *PlannableTargeting) Reset() { *x = PlannableTargeting{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -797,7 +852,7 @@ func (x *PlannableTargeting) String() string { func (*PlannableTargeting) ProtoMessage() {} func (x *PlannableTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -810,7 +865,7 @@ func (x *PlannableTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableTargeting.ProtoReflect.Descriptor instead. func (*PlannableTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{12} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{13} } func (x *PlannableTargeting) GetAgeRanges() []enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange { @@ -856,7 +911,7 @@ func (x *PlannableTargeting) GetSurfaceTargeting() *SurfaceTargetingCombinations } // Request message for -// [ReachPlanService.ListPlannableUserInterests][google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserInterests]. +// [ReachPlanService.ListPlannableUserInterests][google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserInterests]. type ListPlannableUserInterestsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -865,7 +920,7 @@ type ListPlannableUserInterestsRequest struct { // a type listed in the filter will be returned. If not set, user interests of // all supported types will be returned. Supported user interest types are // AFFINITY and IN_MARKET. Each type must be specified at most once. - UserInterestTaxonomyTypes []enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,rep,packed,name=user_interest_taxonomy_types,json=userInterestTaxonomyTypes,proto3,enum=google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"user_interest_taxonomy_types,omitempty"` + UserInterestTaxonomyTypes []enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,rep,packed,name=user_interest_taxonomy_types,json=userInterestTaxonomyTypes,proto3,enum=google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"user_interest_taxonomy_types,omitempty"` // A filter by user interest name. If set, only user interests with a name // containing the literal string (case insensitive) in the filter will be // returned. Maximum length is 200 characters. @@ -882,7 +937,7 @@ type ListPlannableUserInterestsRequest struct { func (x *ListPlannableUserInterestsRequest) Reset() { *x = ListPlannableUserInterestsRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -894,7 +949,7 @@ func (x *ListPlannableUserInterestsRequest) String() string { func (*ListPlannableUserInterestsRequest) ProtoMessage() {} func (x *ListPlannableUserInterestsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -907,7 +962,7 @@ func (x *ListPlannableUserInterestsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use ListPlannableUserInterestsRequest.ProtoReflect.Descriptor instead. func (*ListPlannableUserInterestsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{13} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{14} } func (x *ListPlannableUserInterestsRequest) GetCustomerId() string { @@ -946,7 +1001,7 @@ func (x *ListPlannableUserInterestsRequest) GetReachApplicationInfo() *common.Ad } // Response message for -// [ReachPlanService.ListPlannableUserInterests][google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserInterests]. +// [ReachPlanService.ListPlannableUserInterests][google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserInterests]. type ListPlannableUserInterestsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // The list of plannable user interests. @@ -957,7 +1012,7 @@ type ListPlannableUserInterestsResponse struct { func (x *ListPlannableUserInterestsResponse) Reset() { *x = ListPlannableUserInterestsResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -969,7 +1024,7 @@ func (x *ListPlannableUserInterestsResponse) String() string { func (*ListPlannableUserInterestsResponse) ProtoMessage() {} func (x *ListPlannableUserInterestsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -982,7 +1037,7 @@ func (x *ListPlannableUserInterestsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use ListPlannableUserInterestsResponse.ProtoReflect.Descriptor instead. func (*ListPlannableUserInterestsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{14} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{15} } func (x *ListPlannableUserInterestsResponse) GetPlannableUserInterests() []*PlannableUserInterest { @@ -993,13 +1048,13 @@ func (x *ListPlannableUserInterestsResponse) GetPlannableUserInterests() []*Plan } // A plannable user interest that can be targeted in a reach forecast using -// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast]. +// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast]. type PlannableUserInterest struct { state protoimpl.MessageState `protogen:"open.v1"` // The user interest id. UserInterest *common.UserInterestInfo `protobuf:"bytes,1,opt,name=user_interest,json=userInterest,proto3" json:"user_interest,omitempty"` // The user interest type. - UserInterestType enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,opt,name=user_interest_type,json=userInterestType,proto3,enum=google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"user_interest_type,omitempty"` + UserInterestType enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType `protobuf:"varint,2,opt,name=user_interest_type,json=userInterestType,proto3,enum=google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType" json:"user_interest_type,omitempty"` // The user interest display name. // For example, "Autos & Vehicles" UserInterestDisplayName string `protobuf:"bytes,3,opt,name=user_interest_display_name,json=userInterestDisplayName,proto3" json:"user_interest_display_name,omitempty"` @@ -1013,7 +1068,7 @@ type PlannableUserInterest struct { func (x *PlannableUserInterest) Reset() { *x = PlannableUserInterest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1025,7 +1080,7 @@ func (x *PlannableUserInterest) String() string { func (*PlannableUserInterest) ProtoMessage() {} func (x *PlannableUserInterest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1038,7 +1093,7 @@ func (x *PlannableUserInterest) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannableUserInterest.ProtoReflect.Descriptor instead. func (*PlannableUserInterest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{15} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{16} } func (x *PlannableUserInterest) GetUserInterest() *common.UserInterestInfo { @@ -1070,7 +1125,7 @@ func (x *PlannableUserInterest) GetUserInterestPath() string { } // Request message for -// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast]. +// [ReachPlanService.GenerateReachForecast][google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast]. type GenerateReachForecastRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -1137,7 +1192,7 @@ type GenerateReachForecastRequest struct { func (x *GenerateReachForecastRequest) Reset() { *x = GenerateReachForecastRequest{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1149,7 +1204,7 @@ func (x *GenerateReachForecastRequest) String() string { func (*GenerateReachForecastRequest) ProtoMessage() {} func (x *GenerateReachForecastRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1162,7 +1217,7 @@ func (x *GenerateReachForecastRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateReachForecastRequest.ProtoReflect.Descriptor instead. func (*GenerateReachForecastRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{16} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{17} } func (x *GenerateReachForecastRequest) GetCustomerId() string { @@ -1262,7 +1317,7 @@ type EffectiveFrequencyLimit struct { func (x *EffectiveFrequencyLimit) Reset() { *x = EffectiveFrequencyLimit{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1274,7 +1329,7 @@ func (x *EffectiveFrequencyLimit) String() string { func (*EffectiveFrequencyLimit) ProtoMessage() {} func (x *EffectiveFrequencyLimit) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1287,7 +1342,7 @@ func (x *EffectiveFrequencyLimit) ProtoReflect() protoreflect.Message { // Deprecated: Use EffectiveFrequencyLimit.ProtoReflect.Descriptor instead. func (*EffectiveFrequencyLimit) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{17} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{18} } func (x *EffectiveFrequencyLimit) GetEffectiveFrequencyBreakdownLimit() int32 { @@ -1304,14 +1359,14 @@ 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.v21.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.v22.enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit" json:"time_unit,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *FrequencyCap) Reset() { *x = FrequencyCap{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1323,7 +1378,7 @@ func (x *FrequencyCap) String() string { func (*FrequencyCap) ProtoMessage() {} func (x *FrequencyCap) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1336,7 +1391,7 @@ func (x *FrequencyCap) ProtoReflect() protoreflect.Message { // Deprecated: Use FrequencyCap.ProtoReflect.Descriptor instead. func (*FrequencyCap) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{18} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{19} } func (x *FrequencyCap) GetImpressions() int32 { @@ -1358,7 +1413,7 @@ type Targeting struct { state protoimpl.MessageState `protogen:"open.v1"` // The ID of the selected location. Plannable location IDs can be // obtained from - // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v21.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v22.services.ReachPlanService.ListPlannableLocations]. // // Requests must set either this field or `plannable_location_ids`. // @@ -1371,26 +1426,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.v21.services.ReachPlanService.ListPlannableLocations]. + // [ReachPlanService.ListPlannableLocations][google.ads.googleads.v22.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.v21.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.v22.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.v21.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.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.v21.services.ReachPlanService.ListPlannableProducts]. - Network enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,5,opt,name=network,proto3,enum=google.ads.googleads.v21.enums.ReachPlanNetworkEnum_ReachPlanNetwork" json:"network,omitempty"` + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.services.ReachPlanService.ListPlannableProducts]. + Network enums.ReachPlanNetworkEnum_ReachPlanNetwork `protobuf:"varint,5,opt,name=network,proto3,enum=google.ads.googleads.v22.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"` @@ -1400,7 +1455,7 @@ type Targeting struct { func (x *Targeting) Reset() { *x = Targeting{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1412,7 +1467,7 @@ func (x *Targeting) String() string { func (*Targeting) ProtoMessage() {} func (x *Targeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1425,7 +1480,7 @@ func (x *Targeting) ProtoReflect() protoreflect.Message { // Deprecated: Use Targeting.ProtoReflect.Descriptor instead. func (*Targeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{19} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{20} } func (x *Targeting) GetPlannableLocationId() string { @@ -1497,7 +1552,7 @@ type CampaignDuration struct { func (x *CampaignDuration) Reset() { *x = CampaignDuration{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1509,7 +1564,7 @@ func (x *CampaignDuration) String() string { func (*CampaignDuration) ProtoMessage() {} func (x *CampaignDuration) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1522,7 +1577,7 @@ func (x *CampaignDuration) ProtoReflect() protoreflect.Message { // Deprecated: Use CampaignDuration.ProtoReflect.Descriptor instead. func (*CampaignDuration) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{20} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{21} } func (x *CampaignDuration) GetDurationInDays() int32 { @@ -1545,7 +1600,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.v21.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.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. @@ -1559,7 +1614,7 @@ type PlannedProduct struct { ConversionRate *float64 `protobuf:"fixed64,6,opt,name=conversion_rate,json=conversionRate,proto3,oneof" json:"conversion_rate,omitempty"` // Targeting settings for the selected product. // To list the available targeting for each product use - // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v21.services.ReachPlanService.ListPlannableProducts]. + // [ReachPlanService.ListPlannableProducts][google.ads.googleads.v22.services.ReachPlanService.ListPlannableProducts]. AdvancedProductTargeting *AdvancedProductTargeting `protobuf:"bytes,5,opt,name=advanced_product_targeting,json=advancedProductTargeting,proto3" json:"advanced_product_targeting,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache @@ -1567,7 +1622,7 @@ type PlannedProduct struct { func (x *PlannedProduct) Reset() { *x = PlannedProduct{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1579,7 +1634,7 @@ func (x *PlannedProduct) String() string { func (*PlannedProduct) ProtoMessage() {} func (x *PlannedProduct) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1592,7 +1647,7 @@ func (x *PlannedProduct) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProduct.ProtoReflect.Descriptor instead. func (*PlannedProduct) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{21} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{22} } func (x *PlannedProduct) GetPlannableProductCode() string { @@ -1636,7 +1691,7 @@ type GenerateReachForecastResponse struct { func (x *GenerateReachForecastResponse) Reset() { *x = GenerateReachForecastResponse{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1648,7 +1703,7 @@ func (x *GenerateReachForecastResponse) String() string { func (*GenerateReachForecastResponse) ProtoMessage() {} func (x *GenerateReachForecastResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1661,7 +1716,7 @@ func (x *GenerateReachForecastResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateReachForecastResponse.ProtoReflect.Descriptor instead. func (*GenerateReachForecastResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{22} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{23} } func (x *GenerateReachForecastResponse) GetOnTargetAudienceMetrics() *OnTargetAudienceMetrics { @@ -1689,7 +1744,7 @@ type ReachCurve struct { func (x *ReachCurve) Reset() { *x = ReachCurve{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1701,7 +1756,7 @@ func (x *ReachCurve) String() string { func (*ReachCurve) ProtoMessage() {} func (x *ReachCurve) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1714,7 +1769,7 @@ func (x *ReachCurve) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachCurve.ProtoReflect.Descriptor instead. func (*ReachCurve) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{23} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{24} } func (x *ReachCurve) GetReachForecasts() []*ReachForecast { @@ -1740,7 +1795,7 @@ type ReachForecast struct { func (x *ReachForecast) Reset() { *x = ReachForecast{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1752,7 +1807,7 @@ func (x *ReachForecast) String() string { func (*ReachForecast) ProtoMessage() {} func (x *ReachForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1765,7 +1820,7 @@ func (x *ReachForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use ReachForecast.ProtoReflect.Descriptor instead. func (*ReachForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{24} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{25} } func (x *ReachForecast) GetCostMicros() int64 { @@ -1839,26 +1894,26 @@ type Forecast struct { // impressions that may fall outside the specified Targeting, due to // insufficient information on signed-in users. TotalCoviewImpressions *int64 `protobuf:"varint,14,opt,name=total_coview_impressions,json=totalCoviewImpressions,proto3,oneof" json:"total_coview_impressions,omitempty"` - // Number of ad views forecasted for the specified product and targeting. - // A view is counted when a viewer views a larger portion or the entirety of - // an ad beyond an impression. - // - // See https://support.google.com/google-ads/answer/2375431 for - // more information on views. - Views *int64 `protobuf:"varint,15,opt,name=views,proto3,oneof" json:"views,omitempty"` // The number of conversions. // This metric is only available for DEMAND_GEN plannable products. // // See https://support.google.com/google-ads/answer/2375431 for // more information on conversions. - Conversions *float64 `protobuf:"fixed64,16,opt,name=conversions,proto3,oneof" json:"conversions,omitempty"` + Conversions *float64 `protobuf:"fixed64,16,opt,name=conversions,proto3,oneof" json:"conversions,omitempty"` + // Number of ad views forecasted for the specified product and targeting. + // A TrueView View is counted when a viewer views a larger portion or the + // entirety of an ad beyond an impression. + // + // See https://support.google.com/google-ads/answer/2375431 for + // more information on TrueView Views. + TrueviewViews *int64 `protobuf:"varint,17,opt,name=trueview_views,json=trueviewViews,proto3,oneof" json:"trueview_views,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *Forecast) Reset() { *x = Forecast{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1870,7 +1925,7 @@ func (x *Forecast) String() string { func (*Forecast) ProtoMessage() {} func (x *Forecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1883,7 +1938,7 @@ func (x *Forecast) ProtoReflect() protoreflect.Message { // Deprecated: Use Forecast.ProtoReflect.Descriptor instead. func (*Forecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{25} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{26} } func (x *Forecast) GetOnTargetReach() int64 { @@ -1956,16 +2011,16 @@ func (x *Forecast) GetTotalCoviewImpressions() int64 { return 0 } -func (x *Forecast) GetViews() int64 { - if x != nil && x.Views != nil { - return *x.Views +func (x *Forecast) GetConversions() float64 { + if x != nil && x.Conversions != nil { + return *x.Conversions } return 0 } -func (x *Forecast) GetConversions() float64 { - if x != nil && x.Conversions != nil { - return *x.Conversions +func (x *Forecast) GetTrueviewViews() int64 { + if x != nil && x.TrueviewViews != nil { + return *x.TrueviewViews } return 0 } @@ -1990,7 +2045,7 @@ type PlannedProductReachForecast struct { func (x *PlannedProductReachForecast) Reset() { *x = PlannedProductReachForecast{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2002,7 +2057,7 @@ func (x *PlannedProductReachForecast) String() string { func (*PlannedProductReachForecast) ProtoMessage() {} func (x *PlannedProductReachForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2015,7 +2070,7 @@ func (x *PlannedProductReachForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProductReachForecast.ProtoReflect.Descriptor instead. func (*PlannedProductReachForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{26} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{27} } func (x *PlannedProductReachForecast) GetPlannableProductCode() string { @@ -2086,26 +2141,26 @@ type PlannedProductForecast struct { // See https://support.google.com/google-ads/answer/12400225 for more // information about Target Frequency campaigns. AverageFrequency *float64 `protobuf:"fixed64,10,opt,name=average_frequency,json=averageFrequency,proto3,oneof" json:"average_frequency,omitempty"` - // Number of ad views forecasted for the specified product and targeting. - // A view is counted when a viewer views a larger portion or the entirety of - // an ad beyond an impression. - // - // See https://support.google.com/google-ads/answer/2375431 for - // more information on views. - Views *int64 `protobuf:"varint,11,opt,name=views,proto3,oneof" json:"views,omitempty"` // The number of conversions. // This metric is only available for DEMAND_GEN plannable products. // // See https://support.google.com/google-ads/answer/2375431 for // more information on conversions. - Conversions *float64 `protobuf:"fixed64,12,opt,name=conversions,proto3,oneof" json:"conversions,omitempty"` + Conversions *float64 `protobuf:"fixed64,12,opt,name=conversions,proto3,oneof" json:"conversions,omitempty"` + // Number of ad views forecasted for the specified product and targeting. + // A TrueView View is counted when a viewer views a larger portion or the + // entirety of an ad beyond an impression. + // + // See https://support.google.com/google-ads/answer/2375431 for + // more information on TrueView Views. + TrueviewViews *int64 `protobuf:"varint,13,opt,name=trueview_views,json=trueviewViews,proto3,oneof" json:"trueview_views,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *PlannedProductForecast) Reset() { *x = PlannedProductForecast{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2117,7 +2172,7 @@ func (x *PlannedProductForecast) String() string { func (*PlannedProductForecast) ProtoMessage() {} func (x *PlannedProductForecast) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2130,7 +2185,7 @@ func (x *PlannedProductForecast) ProtoReflect() protoreflect.Message { // Deprecated: Use PlannedProductForecast.ProtoReflect.Descriptor instead. func (*PlannedProductForecast) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{27} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{28} } func (x *PlannedProductForecast) GetOnTargetReach() int64 { @@ -2203,16 +2258,16 @@ func (x *PlannedProductForecast) GetAverageFrequency() float64 { return 0 } -func (x *PlannedProductForecast) GetViews() int64 { - if x != nil && x.Views != nil { - return *x.Views +func (x *PlannedProductForecast) GetConversions() float64 { + if x != nil && x.Conversions != nil { + return *x.Conversions } return 0 } -func (x *PlannedProductForecast) GetConversions() float64 { - if x != nil && x.Conversions != nil { - return *x.Conversions +func (x *PlannedProductForecast) GetTrueviewViews() int64 { + if x != nil && x.TrueviewViews != nil { + return *x.TrueviewViews } return 0 } @@ -2236,7 +2291,7 @@ type OnTargetAudienceMetrics struct { func (x *OnTargetAudienceMetrics) Reset() { *x = OnTargetAudienceMetrics{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2248,7 +2303,7 @@ func (x *OnTargetAudienceMetrics) String() string { func (*OnTargetAudienceMetrics) ProtoMessage() {} func (x *OnTargetAudienceMetrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2261,7 +2316,7 @@ func (x *OnTargetAudienceMetrics) ProtoReflect() protoreflect.Message { // Deprecated: Use OnTargetAudienceMetrics.ProtoReflect.Descriptor instead. func (*OnTargetAudienceMetrics) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{28} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{29} } func (x *OnTargetAudienceMetrics) GetYoutubeAudienceSize() int64 { @@ -2310,7 +2365,7 @@ type EffectiveFrequencyBreakdown struct { func (x *EffectiveFrequencyBreakdown) Reset() { *x = EffectiveFrequencyBreakdown{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2322,7 +2377,7 @@ func (x *EffectiveFrequencyBreakdown) String() string { func (*EffectiveFrequencyBreakdown) ProtoMessage() {} func (x *EffectiveFrequencyBreakdown) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2335,7 +2390,7 @@ func (x *EffectiveFrequencyBreakdown) ProtoReflect() protoreflect.Message { // Deprecated: Use EffectiveFrequencyBreakdown.ProtoReflect.Descriptor instead. func (*EffectiveFrequencyBreakdown) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{29} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{30} } func (x *EffectiveFrequencyBreakdown) GetEffectiveFrequency() int32 { @@ -2384,7 +2439,7 @@ type ForecastMetricOptions struct { func (x *ForecastMetricOptions) Reset() { *x = ForecastMetricOptions{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2396,7 +2451,7 @@ func (x *ForecastMetricOptions) String() string { func (*ForecastMetricOptions) ProtoMessage() {} func (x *ForecastMetricOptions) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2409,7 +2464,7 @@ func (x *ForecastMetricOptions) ProtoReflect() protoreflect.Message { // Deprecated: Use ForecastMetricOptions.ProtoReflect.Descriptor instead. func (*ForecastMetricOptions) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{30} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{31} } func (x *ForecastMetricOptions) GetIncludeCoview() bool { @@ -2432,7 +2487,7 @@ type AudienceTargeting struct { func (x *AudienceTargeting) Reset() { *x = AudienceTargeting{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2444,7 +2499,7 @@ func (x *AudienceTargeting) String() string { func (*AudienceTargeting) ProtoMessage() {} func (x *AudienceTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2457,7 +2512,7 @@ func (x *AudienceTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use AudienceTargeting.ProtoReflect.Descriptor instead. func (*AudienceTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{31} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{32} } func (x *AudienceTargeting) GetUserInterest() []*common.UserInterestInfo { @@ -2497,7 +2552,7 @@ type AdvancedProductTargeting struct { func (x *AdvancedProductTargeting) Reset() { *x = AdvancedProductTargeting{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2509,7 +2564,7 @@ func (x *AdvancedProductTargeting) String() string { func (*AdvancedProductTargeting) ProtoMessage() {} func (x *AdvancedProductTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2522,7 +2577,7 @@ func (x *AdvancedProductTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use AdvancedProductTargeting.ProtoReflect.Descriptor instead. func (*AdvancedProductTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{32} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{33} } func (x *AdvancedProductTargeting) GetSurfaceTargetingSettings() *SurfaceTargeting { @@ -2578,7 +2633,7 @@ type YouTubeSelectSettings struct { func (x *YouTubeSelectSettings) Reset() { *x = YouTubeSelectSettings{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2590,7 +2645,7 @@ func (x *YouTubeSelectSettings) String() string { func (*YouTubeSelectSettings) ProtoMessage() {} func (x *YouTubeSelectSettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2603,7 +2658,7 @@ func (x *YouTubeSelectSettings) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeSelectSettings.ProtoReflect.Descriptor instead. func (*YouTubeSelectSettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{33} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{34} } func (x *YouTubeSelectSettings) GetLineupId() int64 { @@ -2626,7 +2681,7 @@ type YouTubeSelectLineUp struct { func (x *YouTubeSelectLineUp) Reset() { *x = YouTubeSelectLineUp{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2638,7 +2693,7 @@ func (x *YouTubeSelectLineUp) String() string { func (*YouTubeSelectLineUp) ProtoMessage() {} func (x *YouTubeSelectLineUp) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2651,7 +2706,7 @@ func (x *YouTubeSelectLineUp) ProtoReflect() protoreflect.Message { // Deprecated: Use YouTubeSelectLineUp.ProtoReflect.Descriptor instead. func (*YouTubeSelectLineUp) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{34} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{35} } func (x *YouTubeSelectLineUp) GetLineupId() int64 { @@ -2681,7 +2736,7 @@ type SurfaceTargetingCombinations struct { func (x *SurfaceTargetingCombinations) Reset() { *x = SurfaceTargetingCombinations{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2693,7 +2748,7 @@ func (x *SurfaceTargetingCombinations) String() string { func (*SurfaceTargetingCombinations) ProtoMessage() {} func (x *SurfaceTargetingCombinations) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2706,7 +2761,7 @@ func (x *SurfaceTargetingCombinations) ProtoReflect() protoreflect.Message { // Deprecated: Use SurfaceTargetingCombinations.ProtoReflect.Descriptor instead. func (*SurfaceTargetingCombinations) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{35} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{36} } func (x *SurfaceTargetingCombinations) GetDefaultTargeting() *SurfaceTargeting { @@ -2728,14 +2783,14 @@ func (x *SurfaceTargetingCombinations) GetAvailableTargetingCombinations() []*Su type SurfaceTargeting struct { state protoimpl.MessageState `protogen:"open.v1"` // List of surfaces available to target. - Surfaces []enums.ReachPlanSurfaceEnum_ReachPlanSurface `protobuf:"varint,1,rep,packed,name=surfaces,proto3,enum=google.ads.googleads.v21.enums.ReachPlanSurfaceEnum_ReachPlanSurface" json:"surfaces,omitempty"` + Surfaces []enums.ReachPlanSurfaceEnum_ReachPlanSurface `protobuf:"varint,1,rep,packed,name=surfaces,proto3,enum=google.ads.googleads.v22.enums.ReachPlanSurfaceEnum_ReachPlanSurface" json:"surfaces,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SurfaceTargeting) Reset() { *x = SurfaceTargeting{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2747,7 +2802,7 @@ func (x *SurfaceTargeting) String() string { func (*SurfaceTargeting) ProtoMessage() {} func (x *SurfaceTargeting) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2760,7 +2815,7 @@ func (x *SurfaceTargeting) ProtoReflect() protoreflect.Message { // Deprecated: Use SurfaceTargeting.ProtoReflect.Descriptor instead. func (*SurfaceTargeting) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{36} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{37} } func (x *SurfaceTargeting) GetSurfaces() []enums.ReachPlanSurfaceEnum_ReachPlanSurface { @@ -2775,7 +2830,7 @@ type TargetFrequencySettings struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.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"` unknownFields protoimpl.UnknownFields @@ -2784,7 +2839,7 @@ type TargetFrequencySettings struct { func (x *TargetFrequencySettings) Reset() { *x = TargetFrequencySettings{} - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2796,7 +2851,7 @@ func (x *TargetFrequencySettings) String() string { func (*TargetFrequencySettings) ProtoMessage() {} func (x *TargetFrequencySettings) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2809,7 +2864,7 @@ func (x *TargetFrequencySettings) ProtoReflect() protoreflect.Message { // Deprecated: Use TargetFrequencySettings.ProtoReflect.Descriptor instead. func (*TargetFrequencySettings) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP(), []int{37} + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP(), []int{38} } func (x *TargetFrequencySettings) GetTimeUnit() enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit { @@ -2826,571 +2881,596 @@ func (x *TargetFrequencySettings) GetTargetFrequency() int32 { return 0 } -var File_google_ads_googleads_v21_services_reach_plan_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_reach_plan_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x4a, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, + 0x32, 0x32, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x40, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, - 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x75, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, - 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 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, 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, 0x22, 0x8d, 0x02, - 0x0a, 0x1e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 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, 0x35, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, - 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, - 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, - 0x52, 0x65, 0x61, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, - 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, - 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, - 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, - 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x9e, 0x01, - 0x0a, 0x1f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, - 0x65, 0x12, 0x7b, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, - 0x72, 0x61, 0x74, 0x65, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, - 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, - 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, - 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0x8d, - 0x02, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, - 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x91, 0x01, 0x0a, 0x15, - 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x5f, - 0x6d, 0x6f, 0x64, 0x65, 0x6c, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0e, 0x32, 0x5d, 0x2e, 0x67, 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, 0x32, 0x32, 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, 0x33, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 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, 0x22, 0x8d, 0x02, 0x0a, 0x1e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 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, 0x35, 0x0a, 0x14, 0x63, + 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, + 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x12, 0x63, 0x75, 0x73, + 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x61, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, + 0x01, 0x01, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, + 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, + 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, + 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x22, 0x9e, 0x01, 0x0a, 0x1f, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, + 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x7b, 0x0a, 0x1b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, - 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, - 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, - 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, - 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, 0x13, 0x63, 0x6f, 0x6e, 0x76, - 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x12, - 0x34, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, - 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, - 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, - 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x01, 0x52, 0x0e, - 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x22, 0x96, - 0x01, 0x0a, 0x1d, 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, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x53, 0x75, + 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x19, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, + 0x6f, 0x6e, 0x73, 0x22, 0x8d, 0x02, 0x0a, 0x18, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, + 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x53, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, + 0x12, 0x91, 0x01, 0x0a, 0x15, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, + 0x72, 0x61, 0x74, 0x65, 0x5f, 0x6d, 0x6f, 0x64, 0x65, 0x6c, 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, 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, 0x65, + 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x45, 0x6e, + 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x43, 0x6f, 0x6e, 0x76, + 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, 0x6f, 0x64, 0x65, 0x6c, 0x52, + 0x13, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x4d, + 0x6f, 0x64, 0x65, 0x6c, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, + 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, + 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x27, 0x0a, 0x0f, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x01, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, + 0x61, 0x74, 0x65, 0x22, 0x96, 0x01, 0x0a, 0x1d, 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, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, + 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x32, + 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, + 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, + 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x87, 0x01, 0x0a, + 0x1e, 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, 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, 0x32, 0x32, 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, 0x50, 0x6c, 0x61, 0x6e, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x02, + 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, + 0x01, 0x12, 0x17, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, + 0x01, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11, 0x70, 0x61, + 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, + 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x63, + 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, + 0x09, 0x48, 0x03, 0x52, 0x0b, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, + 0x88, 0x01, 0x01, 0x12, 0x28, 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0c, 0x6c, 0x6f, + 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, + 0x03, 0x5f, 0x69, 0x64, 0x42, 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x14, 0x0a, + 0x12, 0x5f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, + 0x5f, 0x69, 0x64, 0x42, 0x0f, 0x0a, 0x0d, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, + 0x63, 0x6f, 0x64, 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x22, 0xce, 0x01, 0x0a, 0x1c, 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, 0x12, 0x37, 0x0a, 0x15, 0x70, 0x6c, 0x61, 0x6e, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, + 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x13, 0x70, 0x6c, 0x61, + 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, - 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x01, 0x20, 0x01, 0x28, 0x0b, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x87, 0x01, 0x0a, 0x1e, 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, 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, - 0x32, 0x31, 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, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, - 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x13, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x02, 0x69, 0x64, 0x88, 0x01, 0x01, 0x12, 0x17, 0x0a, 0x04, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x04, 0x6e, 0x61, - 0x6d, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2f, 0x0a, 0x11, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x5f, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, - 0x48, 0x02, 0x52, 0x0f, 0x70, 0x61, 0x72, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x75, 0x6e, 0x74, 0x72, - 0x79, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x26, 0x0a, 0x0c, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, - 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x48, 0x03, 0x52, 0x0b, - 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x28, - 0x0a, 0x0d, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, - 0x08, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x0c, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x54, 0x79, 0x70, 0x65, 0x88, 0x01, 0x01, 0x42, 0x05, 0x0a, 0x03, 0x5f, 0x69, 0x64, 0x42, - 0x07, 0x0a, 0x05, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x70, 0x61, 0x72, - 0x65, 0x6e, 0x74, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x69, 0x64, 0x42, 0x0f, - 0x0a, 0x0d, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x72, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, - 0x10, 0x0a, 0x0e, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x79, 0x70, - 0x65, 0x22, 0xce, 0x01, 0x0a, 0x1c, 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, 0x12, 0x37, 0x0a, 0x15, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, - 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, - 0x09, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x13, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x12, 0x75, 0x0a, 0x16, 0x72, - 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, - 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, - 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, - 0x66, 0x6f, 0x22, 0x7e, 0x0a, 0x1d, 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, 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, 0x32, 0x31, 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, 0x4d, 0x65, - 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, - 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, - 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, - 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, - 0x01, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, - 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, - 0x09, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, - 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x66, 0x0a, 0x13, 0x70, 0x6c, 0x61, 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, 0x32, 0x31, 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, 0x70, 0x72, - 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, 0x8c, 0x02, 0x0a, 0x1d, 0x4c, - 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, - 0x4c, 0x69, 0x73, 0x74, 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, 0x35, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, - 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, - 0x48, 0x00, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x61, 0x63, - 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, - 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, - 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, - 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, - 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, - 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, - 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x88, 0x01, 0x0a, 0x1e, 0x4c, 0x69, - 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x66, 0x0a, 0x14, - 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, - 0x69, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, - 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, - 0x52, 0x12, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x73, 0x22, 0x83, 0x03, 0x0a, 0x11, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, - 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x53, 0x0a, 0x0e, 0x75, 0x73, - 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, - 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, - 0x6f, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, - 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, - 0x6d, 0x65, 0x12, 0x63, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 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, 0x32, 0x31, 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, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x90, 0x01, 0x0a, 0x10, 0x70, 0x6c, 0x61, 0x6e, - 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x04, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, - 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x50, 0x6c, 0x61, - 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, - 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, - 0x61, 0x6e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, - 0x69, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xc9, 0x04, 0x0a, 0x12, 0x50, - 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x32, 0x31, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0xc4, 0x03, 0x0a, 0x21, 0x4c, 0x69, 0x73, 0x74, 0x50, - 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, - 0x72, 0x65, 0x73, 0x74, 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, 0x9b, 0x01, 0x0a, 0x1c, 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, 0x73, 0x18, 0x02, 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, 0x32, 0x31, 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, 0x54, 0x79, 0x70, 0x65, - 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x19, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, - 0x65, 0x73, 0x74, 0x54, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, 0x54, 0x79, 0x70, 0x65, 0x73, - 0x12, 0x22, 0x0a, 0x0a, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x51, 0x75, 0x65, 0x72, - 0x79, 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x71, 0x75, 0x65, - 0x72, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09, 0x70, 0x61, 0x74, 0x68, - 0x51, 0x75, 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, - 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, - 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, - 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, - 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, - 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, - 0x0d, 0x0a, 0x0b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x0d, - 0x0a, 0x0b, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x22, 0x98, 0x01, - 0x0a, 0x22, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, - 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x18, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, - 0x52, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x22, 0xe0, 0x02, 0x0a, 0x15, 0x50, 0x6c, 0x61, - 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, - 0x73, 0x74, 0x12, 0x56, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, - 0x65, 0x73, 0x74, 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, 0x32, 0x31, 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, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x75, - 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, - 0x32, 0x31, 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, 0x54, 0x79, 0x70, 0x65, 0x52, 0x10, - 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, - 0x12, 0x3b, 0x0a, 0x1a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, - 0x74, 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x17, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, - 0x73, 0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c, 0x0a, - 0x12, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x70, - 0x61, 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x73, 0x65, 0x72, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0x85, 0x09, 0x0a, 0x1c, - 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, 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, 0x28, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, - 0x6f, 0x64, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x72, - 0x72, 0x65, 0x6e, 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, - 0x32, 0x31, 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, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x66, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28, - 0x05, 0x48, 0x01, 0x52, 0x12, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, - 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x1c, 0x63, 0x6f, - 0x6f, 0x6b, 0x69, 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, 0x32, 0x31, 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, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, - 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, - 0x15, 0x6d, 0x69, 0x6e, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, - 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x19, 0x65, 0x66, 0x66, - 0x65, 0x63, 0x74, 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, 0x32, 0x31, 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, + 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x22, 0x7e, 0x0a, 0x1d, 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, 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, 0x32, 0x32, 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, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x39, 0x0a, 0x16, 0x70, + 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x14, 0x70, + 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, + 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, + 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, + 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x66, 0x0a, 0x13, + 0x70, 0x6c, 0x61, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 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, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x22, + 0x8c, 0x02, 0x0a, 0x1d, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, + 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 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, 0x35, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, - 0x0e, 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x02, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x52, 0x65, 0x61, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x3a, + 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, - 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, - 0x63, 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x6f, 0x6f, 0x6b, - 0x69, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, - 0x42, 0x1a, 0x0a, 0x18, 0x5f, 0x6d, 0x69, 0x6e, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x42, 0x1c, 0x0a, 0x1a, - 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, - 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, - 0x6f, 0x75, 0x70, 0x22, 0x68, 0x0a, 0x17, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4d, - 0x0a, 0x23, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, - 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x5f, - 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x20, 0x65, 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, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xa6, 0x01, - 0x0a, 0x0c, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x12, 0x25, - 0x0a, 0x0b, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 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, 0x32, 0x31, 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, 0x41, 0x02, 0x52, 0x08, 0x74, 0x69, - 0x6d, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x22, 0xce, 0x04, 0x0a, 0x09, 0x54, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x69, 0x6e, 0x67, 0x12, 0x37, 0x0a, 0x15, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, - 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x13, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, - 0x4c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, - 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, - 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x14, 0x70, - 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 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, 0x32, - 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, + 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x22, 0x88, + 0x01, 0x0a, 0x1e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, + 0x65, 0x12, 0x66, 0x0a, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, + 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, + 0x72, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x12, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x22, 0x82, 0x04, 0x0a, 0x11, 0x50, 0x6c, + 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x12, + 0x53, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x69, 0x6e, 0x66, + 0x6f, 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, + 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, + 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, + 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x21, 0x0a, 0x0c, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x64, 0x69, 0x73, 0x70, + 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x63, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x72, 0x5f, + 0x6c, 0x69, 0x73, 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, 0x32, 0x32, 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, 0x52, 0x0c, + 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, 0x90, 0x01, 0x0a, + 0x10, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, + 0x73, 0x18, 0x04, 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, + 0x32, 0x32, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, + 0x61, 0x6e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, + 0x69, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x45, 0x6e, 0x75, 0x6d, 0x2e, 0x52, 0x65, + 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x0f, + 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, + 0x7d, 0x0a, 0x1c, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x75, 0x73, 0x65, + 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x6d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x18, + 0x05, 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, 0x32, 0x32, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, + 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, + 0x61, 0x74, 0x61, 0x52, 0x19, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x22, 0xb8, + 0x01, 0x0a, 0x19, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, + 0x4c, 0x69, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x61, 0x64, 0x61, 0x74, 0x61, 0x12, 0x9a, 0x01, 0x0a, + 0x1e, 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, 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, 0x32, 0x32, + 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, 0x65, 0x52, 0x19, + 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x43, 0x72, 0x6d, 0x44, 0x61, 0x74, 0x61, 0x53, + 0x6f, 0x75, 0x72, 0x63, 0x65, 0x54, 0x79, 0x70, 0x65, 0x22, 0xc9, 0x04, 0x0a, 0x12, 0x50, 0x6c, + 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, - 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x10, 0x43, 0x61, 0x6d, 0x70, - 0x61, 0x69, 0x67, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x10, - 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, - 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0e, 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, 0x32, 0x31, 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, 0x73, 0x22, 0xe9, 0x02, 0x0a, 0x0e, - 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12, 0x3e, - 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, - 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, - 0xe0, 0x41, 0x02, 0x48, 0x00, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, - 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, - 0x0a, 0x0d, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x01, 0x52, 0x0c, 0x62, 0x75, - 0x64, 0x67, 0x65, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, - 0x0f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, - 0x18, 0x06, 0x20, 0x01, 0x28, 0x01, 0x48, 0x02, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x79, 0x0a, 0x1a, 0x61, - 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 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, 0x32, 0x31, 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, 0x0a, 0x17, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, - 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, - 0x65, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x69, 0x63, - 0x72, 0x6f, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, - 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x22, 0xe8, 0x01, 0x0a, 0x1d, 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, 0x12, 0x77, 0x0a, 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, + 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0xc4, 0x03, 0x0a, 0x21, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, + 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, + 0x65, 0x73, 0x74, 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, 0x9b, 0x01, 0x0a, 0x1c, 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, 0x73, 0x18, 0x02, 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, 0x32, 0x32, 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, 0x54, 0x79, 0x70, 0x65, 0x42, + 0x03, 0xe0, 0x41, 0x01, 0x52, 0x19, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, + 0x73, 0x74, 0x54, 0x61, 0x78, 0x6f, 0x6e, 0x6f, 0x6d, 0x79, 0x54, 0x79, 0x70, 0x65, 0x73, 0x12, + 0x22, 0x0a, 0x0a, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x09, 0x6e, 0x61, 0x6d, 0x65, 0x51, 0x75, 0x65, 0x72, 0x79, + 0x88, 0x01, 0x01, 0x12, 0x22, 0x0a, 0x0a, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x71, 0x75, 0x65, 0x72, + 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x01, 0x52, 0x09, 0x70, 0x61, 0x74, 0x68, 0x51, + 0x75, 0x65, 0x72, 0x79, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, + 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, + 0x6f, 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, + 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, + 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, + 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x0d, + 0x0a, 0x0b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x42, 0x0d, 0x0a, + 0x0b, 0x5f, 0x70, 0x61, 0x74, 0x68, 0x5f, 0x71, 0x75, 0x65, 0x72, 0x79, 0x22, 0x98, 0x01, 0x0a, + 0x22, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x6e, 0x73, 0x65, 0x12, 0x72, 0x0a, 0x18, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x5f, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 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, 0x32, 0x32, + 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, + 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x52, + 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x22, 0xe0, 0x02, 0x0a, 0x15, 0x50, 0x6c, 0x61, 0x6e, + 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, + 0x74, 0x12, 0x56, 0x0a, 0x0d, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, + 0x73, 0x74, 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, 0x32, 0x32, 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, 0x12, 0x83, 0x01, 0x0a, 0x12, 0x75, 0x73, + 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, + 0x32, 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, 0x54, 0x79, 0x70, 0x65, 0x52, 0x10, 0x75, + 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x54, 0x79, 0x70, 0x65, 0x12, + 0x3b, 0x0a, 0x1a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, + 0x5f, 0x64, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, + 0x01, 0x28, 0x09, 0x52, 0x17, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, + 0x74, 0x44, 0x69, 0x73, 0x70, 0x6c, 0x61, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c, 0x0a, 0x12, + 0x75, 0x73, 0x65, 0x72, 0x5f, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x5f, 0x70, 0x61, + 0x74, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x73, 0x65, 0x72, 0x49, 0x6e, + 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x50, 0x61, 0x74, 0x68, 0x22, 0x85, 0x09, 0x0a, 0x1c, 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, 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, 0x28, 0x0a, 0x0d, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x6f, + 0x64, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x75, 0x72, 0x72, + 0x65, 0x6e, 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, 0x32, + 0x32, 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, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x5f, 0x66, 0x72, 0x65, + 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, + 0x48, 0x01, 0x52, 0x12, 0x63, 0x6f, 0x6f, 0x6b, 0x69, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x88, 0x01, 0x01, 0x12, 0x70, 0x0a, 0x1c, 0x63, 0x6f, 0x6f, + 0x6b, 0x69, 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, 0x32, 0x32, 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, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, + 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x48, 0x02, 0x52, 0x15, + 0x6d, 0x69, 0x6e, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x6e, 0x63, 0x79, 0x88, 0x01, 0x01, 0x12, 0x7b, 0x0a, 0x19, 0x65, 0x66, 0x66, 0x65, + 0x63, 0x74, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, + 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, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, + 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x18, 0x0e, + 0x20, 0x01, 0x28, 0x09, 0x48, 0x04, 0x52, 0x12, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x52, 0x65, 0x61, 0x63, 0x68, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x88, 0x01, 0x01, 0x12, 0x75, 0x0a, + 0x16, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x61, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 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, 0x32, 0x31, 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, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, + 0x41, 0x64, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x61, 0x6c, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x52, 0x14, + 0x72, 0x65, 0x61, 0x63, 0x68, 0x41, 0x70, 0x70, 0x6c, 0x69, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e, 0x63, + 0x79, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x6f, 0x6f, 0x6b, 0x69, + 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x63, 0x61, 0x70, 0x42, + 0x1a, 0x0a, 0x18, 0x5f, 0x6d, 0x69, 0x6e, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, + 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x42, 0x1c, 0x0a, 0x1a, 0x5f, + 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, + 0x6e, 0x63, 0x79, 0x5f, 0x6c, 0x69, 0x6d, 0x69, 0x74, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x5f, 0x67, 0x72, 0x6f, + 0x75, 0x70, 0x22, 0x68, 0x0a, 0x17, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, + 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x12, 0x4d, 0x0a, + 0x23, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, + 0x65, 0x6e, 0x63, 0x79, 0x5f, 0x62, 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x5f, 0x6c, + 0x69, 0x6d, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x20, 0x65, 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, 0x4c, 0x69, 0x6d, 0x69, 0x74, 0x22, 0xa6, 0x01, 0x0a, + 0x0c, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x43, 0x61, 0x70, 0x12, 0x25, 0x0a, + 0x0b, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, + 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0b, 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, - 0x32, 0x31, 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, + 0x32, 0x32, 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, 0x41, 0x02, 0x52, 0x08, 0x74, 0x69, 0x6d, + 0x65, 0x55, 0x6e, 0x69, 0x74, 0x22, 0xce, 0x04, 0x0a, 0x09, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x69, 0x6e, 0x67, 0x12, 0x37, 0x0a, 0x15, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, + 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, + 0x28, 0x09, 0x48, 0x00, 0x52, 0x13, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, + 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x49, 0x64, 0x88, 0x01, 0x01, 0x12, 0x34, 0x0a, 0x16, + 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x14, 0x70, 0x6c, + 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x4c, 0x6f, 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, 0x32, 0x32, + 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, 0x32, 0x31, 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, 0x74, 0x12, 0x1f, 0x0a, - 0x0b, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 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, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x6f, 0x64, 0x75, 0x63, - 0x74, 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x73, 0x22, - 0xb2, 0x07, 0x0a, 0x08, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x0f, - 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, - 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0d, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x74, 0x6f, 0x74, - 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, - 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, - 0x37, 0x0a, 0x15, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, - 0x52, 0x13, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, - 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x72, - 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x76, 0x69, - 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, - 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x13, 0x76, 0x69, 0x65, 0x77, - 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, - 0x01, 0x01, 0x12, 0x84, 0x01, 0x0a, 0x1e, 0x65, 0x66, 0x66, 0x65, 0x63, 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, 0x32, 0x31, 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, 0x6e, 0x63, 0x79, 0x42, - 0x72, 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x12, 0x38, 0x0a, 0x16, 0x6f, 0x6e, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, - 0x61, 0x63, 0x68, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x13, 0x6f, 0x6e, 0x54, - 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, - 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, - 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x48, - 0x06, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, - 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1c, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, - 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x19, - 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, - 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, - 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x08, - 0x52, 0x16, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, - 0x69, 0x65, 0x77, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x48, 0x09, 0x52, 0x05, 0x76, 0x69, - 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x48, 0x0a, 0x52, 0x0b, 0x63, - 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x65, 0x5f, 0x6c, 0x6f, 0x63, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x22, 0xa1, 0x01, 0x0a, 0x10, 0x43, 0x61, 0x6d, 0x70, 0x61, + 0x69, 0x67, 0x6e, 0x44, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x2d, 0x0a, 0x10, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, + 0x02, 0x20, 0x01, 0x28, 0x05, 0x48, 0x00, 0x52, 0x0e, 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, 0x32, 0x32, 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, 0x73, 0x22, 0xe9, 0x02, 0x0a, 0x0e, 0x50, + 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x12, 0x3e, 0x0a, + 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x42, 0x03, 0xe0, + 0x41, 0x02, 0x48, 0x00, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, + 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x88, 0x01, 0x01, 0x12, 0x2d, 0x0a, + 0x0d, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x04, + 0x20, 0x01, 0x28, 0x03, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x48, 0x01, 0x52, 0x0c, 0x62, 0x75, 0x64, + 0x67, 0x65, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x88, 0x01, 0x01, 0x12, 0x2c, 0x0a, 0x0f, + 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x18, + 0x06, 0x20, 0x01, 0x28, 0x01, 0x48, 0x02, 0x52, 0x0e, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, + 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x88, 0x01, 0x01, 0x12, 0x79, 0x0a, 0x1a, 0x61, 0x64, + 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x5f, 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, 0x32, 0x32, 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, 0x0a, 0x17, 0x5f, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, + 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, + 0x42, 0x10, 0x0a, 0x0e, 0x5f, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x22, 0xe8, 0x01, 0x0a, 0x1d, 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, 0x12, 0x77, 0x0a, 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, 0x32, 0x32, 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, 0x74, 0x12, 0x1f, 0x0a, 0x0b, + 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x52, 0x65, 0x61, 0x63, 0x68, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x73, 0x22, 0xcc, + 0x07, 0x0a, 0x08, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x12, 0x2b, 0x0a, 0x0f, 0x6f, + 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x05, + 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x0d, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x24, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, + 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, + 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x37, + 0x0a, 0x15, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, + 0x13, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, + 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, + 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, + 0x28, 0x03, 0x48, 0x03, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x36, 0x0a, 0x14, 0x76, 0x69, 0x65, + 0x77, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x13, 0x76, 0x69, 0x65, 0x77, 0x61, + 0x62, 0x6c, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, + 0x01, 0x12, 0x84, 0x01, 0x0a, 0x1e, 0x65, 0x66, 0x66, 0x65, 0x63, 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, 0x32, 0x32, 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, 0x6e, 0x63, 0x79, 0x42, 0x72, + 0x65, 0x61, 0x6b, 0x64, 0x6f, 0x77, 0x6e, 0x73, 0x12, 0x38, 0x0a, 0x16, 0x6f, 0x6e, 0x5f, 0x74, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, + 0x63, 0x68, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x48, 0x05, 0x52, 0x13, 0x6f, 0x6e, 0x54, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, + 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, + 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x03, 0x48, 0x06, + 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, + 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1c, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x19, 0x6f, + 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x70, + 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x74, + 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03, 0x48, 0x08, 0x52, + 0x16, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x70, 0x72, + 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x01, 0x48, + 0x09, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, + 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, + 0x65, 0x77, 0x73, 0x18, 0x11, 0x20, 0x01, 0x28, 0x03, 0x48, 0x0a, 0x52, 0x0d, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x56, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x42, 0x12, 0x0a, 0x10, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, @@ -3404,481 +3484,487 @@ var file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc = st 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, - 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x76, - 0x69, 0x65, 0x77, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, - 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xe9, 0x01, 0x0a, 0x1b, 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, 0x12, 0x34, 0x0a, 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, - 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, - 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, - 0x0a, 0x63, 0x6f, 0x73, 0x74, 0x4d, 0x69, 0x63, 0x72, 0x6f, 0x73, 0x12, 0x73, 0x0a, 0x18, 0x70, - 0x6c, 0x61, 0x6e, 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, 0x32, 0x31, 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, 0x99, 0x06, 0x0a, 0x16, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, - 0x75, 0x63, 0x74, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x6f, - 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x01, - 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, - 0x61, 0x63, 0x68, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, - 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, - 0x65, 0x61, 0x63, 0x68, 0x12, 0x32, 0x0a, 0x15, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, - 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x13, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, - 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, - 0x01, 0x28, 0x03, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, - 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, 0x0a, 0x14, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, - 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, - 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x13, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, 0x49, - 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, - 0x16, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, - 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, - 0x13, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, - 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x31, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, - 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x07, 0x20, - 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x10, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, - 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1c, 0x6f, 0x6e, - 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, - 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, - 0x48, 0x03, 0x52, 0x19, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, - 0x65, 0x77, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, - 0x12, 0x3d, 0x0a, 0x18, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, - 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, - 0x28, 0x03, 0x48, 0x04, 0x52, 0x16, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, - 0x77, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, - 0x30, 0x0a, 0x11, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, - 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x01, 0x48, 0x05, 0x52, 0x10, 0x61, 0x76, - 0x65, 0x72, 0x61, 0x67, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x88, 0x01, - 0x01, 0x12, 0x19, 0x0a, 0x05, 0x76, 0x69, 0x65, 0x77, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, - 0x48, 0x06, 0x52, 0x05, 0x76, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, - 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, - 0x01, 0x48, 0x07, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, - 0x88, 0x01, 0x01, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, - 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x19, 0x0a, 0x17, - 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, - 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x74, 0x6f, 0x74, 0x61, - 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x1f, - 0x0a, 0x1d, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, - 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, - 0x1b, 0x0a, 0x19, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, - 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x14, 0x0a, 0x12, - 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, - 0x63, 0x79, 0x42, 0x08, 0x0a, 0x06, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x42, 0x0e, 0x0a, 0x0c, - 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x22, 0xbc, 0x01, 0x0a, - 0x17, 0x4f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x37, 0x0a, 0x15, 0x79, 0x6f, 0x75, 0x74, - 0x75, 0x62, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, - 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x13, 0x79, 0x6f, 0x75, 0x74, 0x75, - 0x62, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, - 0x01, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, 0x5f, 0x61, 0x75, 0x64, 0x69, - 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, - 0x01, 0x52, 0x12, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, - 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, 0x79, 0x6f, 0x75, - 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, - 0x7a, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, 0x5f, 0x61, 0x75, - 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x22, 0xdf, 0x02, 0x0a, 0x1b, - 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, 0x12, 0x2f, 0x0a, 0x13, 0x65, - 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, - 0x63, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, - 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, 0x26, 0x0a, 0x0f, - 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, - 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, - 0x65, 0x61, 0x63, 0x68, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, - 0x61, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, - 0x52, 0x65, 0x61, 0x63, 0x68, 0x12, 0x39, 0x0a, 0x16, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, - 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, - 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x14, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, + 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x0e, 0x0a, 0x0c, 0x5f, 0x63, + 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x11, 0x0a, 0x0f, 0x5f, 0x74, + 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x22, 0xe9, 0x01, + 0x0a, 0x1b, 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, 0x12, 0x34, 0x0a, + 0x16, 0x70, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, + 0x63, 0x74, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x14, 0x70, + 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x43, + 0x6f, 0x64, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x6f, 0x73, 0x74, 0x5f, 0x6d, 0x69, 0x63, 0x72, + 0x6f, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6f, 0x73, 0x74, 0x4d, 0x69, + 0x63, 0x72, 0x6f, 0x73, 0x12, 0x73, 0x0a, 0x18, 0x70, 0x6c, 0x61, 0x6e, 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, 0x32, + 0x32, 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, 0xb3, 0x06, 0x0a, 0x16, 0x50, 0x6c, + 0x61, 0x6e, 0x6e, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x46, 0x6f, 0x72, 0x65, + 0x63, 0x61, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, + 0x74, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, + 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x65, 0x61, 0x63, 0x68, 0x12, 0x1f, 0x0a, 0x0b, + 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, + 0x03, 0x52, 0x0a, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x63, 0x68, 0x12, 0x32, 0x0a, + 0x15, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x13, 0x6f, 0x6e, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, + 0x73, 0x12, 0x2b, 0x0a, 0x11, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x74, 0x6f, + 0x74, 0x61, 0x6c, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x36, + 0x0a, 0x14, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x13, + 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x38, 0x0a, 0x16, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, + 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, + 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x13, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, + 0x12, 0x31, 0x0a, 0x12, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, + 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x48, 0x02, 0x52, 0x10, + 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, + 0x88, 0x01, 0x01, 0x12, 0x44, 0x0a, 0x1c, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, + 0x6f, 0x6e, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x48, 0x03, 0x52, 0x19, 0x6f, 0x6e, 0x54, + 0x61, 0x72, 0x67, 0x65, 0x74, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x3d, 0x0a, 0x18, 0x74, 0x6f, 0x74, + 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x48, 0x04, 0x52, 0x16, 0x74, + 0x6f, 0x74, 0x61, 0x6c, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, + 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, 0x01, 0x12, 0x30, 0x0a, 0x11, 0x61, 0x76, 0x65, 0x72, + 0x61, 0x67, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x0a, 0x20, + 0x01, 0x28, 0x01, 0x48, 0x05, 0x52, 0x10, 0x61, 0x76, 0x65, 0x72, 0x61, 0x67, 0x65, 0x46, 0x72, + 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x88, 0x01, 0x01, 0x12, 0x25, 0x0a, 0x0b, 0x63, 0x6f, + 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x01, 0x48, + 0x06, 0x52, 0x0b, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x88, 0x01, + 0x01, 0x12, 0x2a, 0x0a, 0x0e, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, + 0x65, 0x77, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x48, 0x07, 0x52, 0x0d, 0x74, 0x72, 0x75, + 0x65, 0x76, 0x69, 0x65, 0x77, 0x56, 0x69, 0x65, 0x77, 0x73, 0x88, 0x01, 0x01, 0x42, 0x17, 0x0a, + 0x15, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, + 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, + 0x68, 0x42, 0x15, 0x0a, 0x13, 0x5f, 0x74, 0x6f, 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, + 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x1f, 0x0a, 0x1d, 0x5f, 0x6f, 0x6e, 0x5f, + 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, + 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x1b, 0x0a, 0x19, 0x5f, 0x74, 0x6f, + 0x74, 0x61, 0x6c, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, + 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x14, 0x0a, 0x12, 0x5f, 0x61, 0x76, 0x65, 0x72, 0x61, + 0x67, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x42, 0x0e, 0x0a, 0x0c, + 0x5f, 0x63, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x42, 0x11, 0x0a, 0x0f, + 0x5f, 0x74, 0x72, 0x75, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x69, 0x65, 0x77, 0x73, 0x22, + 0xbc, 0x01, 0x0a, 0x17, 0x4f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x73, 0x12, 0x37, 0x0a, 0x15, 0x79, + 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, + 0x73, 0x69, 0x7a, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x13, 0x79, 0x6f, + 0x75, 0x74, 0x75, 0x62, 0x65, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x53, 0x69, 0x7a, + 0x65, 0x88, 0x01, 0x01, 0x12, 0x35, 0x0a, 0x14, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, 0x5f, 0x61, + 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x04, 0x20, 0x01, + 0x28, 0x03, 0x48, 0x01, 0x52, 0x12, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, 0x41, 0x75, 0x64, 0x69, + 0x65, 0x6e, 0x63, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x88, 0x01, 0x01, 0x42, 0x18, 0x0a, 0x16, 0x5f, + 0x79, 0x6f, 0x75, 0x74, 0x75, 0x62, 0x65, 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, + 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x42, 0x17, 0x0a, 0x15, 0x5f, 0x63, 0x65, 0x6e, 0x73, 0x75, 0x73, + 0x5f, 0x61, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x22, 0xdf, + 0x02, 0x0a, 0x1b, 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, 0x12, 0x2f, + 0x0a, 0x13, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x12, 0x65, 0x66, 0x66, + 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x12, + 0x26, 0x0a, 0x0f, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x72, 0x65, 0x61, + 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, + 0x65, 0x74, 0x52, 0x65, 0x61, 0x63, 0x68, 0x12, 0x1f, 0x0a, 0x0b, 0x74, 0x6f, 0x74, 0x61, 0x6c, + 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x6f, + 0x74, 0x61, 0x6c, 0x52, 0x65, 0x61, 0x63, 0x68, 0x12, 0x39, 0x0a, 0x16, 0x65, 0x66, 0x66, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, + 0x63, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x48, 0x00, 0x52, 0x14, 0x65, 0x66, 0x66, 0x65, + 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, + 0x88, 0x01, 0x01, 0x12, 0x4b, 0x0a, 0x20, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, + 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, + 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, + 0x1c, 0x6f, 0x6e, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, - 0x12, 0x4b, 0x0a, 0x20, 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x66, - 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, - 0x65, 0x61, 0x63, 0x68, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x48, 0x01, 0x52, 0x1c, 0x6f, 0x6e, - 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x45, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x43, - 0x6f, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x61, 0x63, 0x68, 0x88, 0x01, 0x01, 0x42, 0x19, 0x0a, - 0x17, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, - 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x23, 0x0a, 0x21, 0x5f, 0x6f, 0x6e, 0x5f, - 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, - 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x22, 0x3e, 0x0a, - 0x15, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, 0x69, 0x63, 0x4f, - 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, - 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0d, - 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x22, 0xb9, 0x01, - 0x0a, 0x11, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 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, 0x32, 0x31, 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, 0x12, 0x4c, 0x0a, 0x0a, 0x75, - 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, - 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x09, - 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x22, 0x8f, 0x03, 0x0a, 0x18, 0x41, 0x64, - 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x61, 0x72, - 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x71, 0x0a, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x53, 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, - 0x73, 0x12, 0x72, 0x0a, 0x17, 0x79, 0x6f, 0x75, 0x74, 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, 0x32, 0x31, 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, 0x61, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, - 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x34, 0x0a, 0x15, 0x59, - 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x53, 0x65, 0x74, 0x74, - 0x69, 0x6e, 0x67, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, 0x69, - 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x49, - 0x64, 0x22, 0x53, 0x0a, 0x13, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, - 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x65, 0x55, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x69, 0x6e, 0x65, - 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6e, - 0x65, 0x75, 0x70, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, - 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, 0x69, 0x6e, 0x65, - 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xff, 0x01, 0x0a, 0x1c, 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, 0x12, 0x60, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x72, 0x66, 0x61, 0x63, 0x65, 0x73, 0x22, - 0xc0, 0x01, 0x0a, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 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, 0x32, 0x31, 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x74, 0x69, 0x6d, 0x65, 0x55, 0x6e, - 0x69, 0x74, 0x12, 0x2e, 0x0a, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x66, 0x72, 0x65, - 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, 0x03, 0xe0, 0x41, - 0x02, 0x52, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, - 0x63, 0x79, 0x32, 0xa2, 0x0b, 0x0a, 0x10, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, 0x6c, 0x61, 0x6e, - 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd7, 0x01, 0x0a, 0x17, 0x47, 0x65, 0x6e, 0x65, - 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, - 0x74, 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, 0x32, 0x31, 0x2e, 0x73, - 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, - 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x73, 0x52, - 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x42, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, + 0x42, 0x19, 0x0a, 0x17, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x69, 0x76, 0x65, 0x5f, 0x63, + 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, 0x42, 0x23, 0x0a, 0x21, 0x5f, + 0x6f, 0x6e, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, + 0x69, 0x76, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x61, 0x63, 0x68, + 0x22, 0x3e, 0x0a, 0x15, 0x46, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 0x74, 0x4d, 0x65, 0x74, 0x72, + 0x69, 0x63, 0x4f, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x25, 0x0a, 0x0e, 0x69, 0x6e, 0x63, + 0x6c, 0x75, 0x64, 0x65, 0x5f, 0x63, 0x6f, 0x76, 0x69, 0x65, 0x77, 0x18, 0x01, 0x20, 0x01, 0x28, + 0x08, 0x52, 0x0d, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x43, 0x6f, 0x76, 0x69, 0x65, 0x77, + 0x22, 0xb9, 0x01, 0x0a, 0x11, 0x41, 0x75, 0x64, 0x69, 0x65, 0x6e, 0x63, 0x65, 0x54, 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, 0x32, 0x32, 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, 0x12, 0x4c, + 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 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, 0x32, 0x32, 0x2e, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x49, 0x6e, 0x66, + 0x6f, 0x52, 0x09, 0x75, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x22, 0x8f, 0x03, 0x0a, + 0x18, 0x41, 0x64, 0x76, 0x61, 0x6e, 0x63, 0x65, 0x64, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, + 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x71, 0x0a, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x53, 0x65, 0x74, 0x74, + 0x69, 0x6e, 0x67, 0x73, 0x12, 0x72, 0x0a, 0x17, 0x79, 0x6f, 0x75, 0x74, 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, 0x32, 0x32, + 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, 0x61, 0x64, 0x76, 0x61, + 0x6e, 0x63, 0x65, 0x64, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x22, 0x34, + 0x0a, 0x15, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x53, + 0x65, 0x74, 0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x6c, 0x69, 0x6e, 0x65, 0x75, + 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x49, 0x64, 0x22, 0x53, 0x0a, 0x13, 0x59, 0x6f, 0x75, 0x54, 0x75, 0x62, 0x65, 0x53, + 0x65, 0x6c, 0x65, 0x63, 0x74, 0x4c, 0x69, 0x6e, 0x65, 0x55, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x6c, + 0x69, 0x6e, 0x65, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, + 0x6c, 0x69, 0x6e, 0x65, 0x75, 0x70, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x6c, 0x69, 0x6e, 0x65, + 0x75, 0x70, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x6c, + 0x69, 0x6e, 0x65, 0x75, 0x70, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xff, 0x01, 0x0a, 0x1c, 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, 0x12, 0x60, 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, 0x32, 0x32, + 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x32, 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, 0x32, 0x32, 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, 0x72, 0x66, 0x61, 0x63, + 0x65, 0x73, 0x22, 0xc0, 0x01, 0x0a, 0x17, 0x54, 0x61, 0x72, 0x67, 0x65, 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, 0x32, 0x32, 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, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x08, 0x74, 0x69, 0x6d, + 0x65, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x2e, 0x0a, 0x10, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x5f, + 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x42, + 0x03, 0xe0, 0x41, 0x02, 0x52, 0x0f, 0x74, 0x61, 0x72, 0x67, 0x65, 0x74, 0x46, 0x72, 0x65, 0x71, + 0x75, 0x65, 0x6e, 0x63, 0x79, 0x32, 0xa2, 0x0b, 0x0a, 0x10, 0x52, 0x65, 0x61, 0x63, 0x68, 0x50, + 0x6c, 0x61, 0x6e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0xd7, 0x01, 0x0a, 0x17, 0x47, + 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, + 0x6e, 0x52, 0x61, 0x74, 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, 0x32, + 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, - 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35, 0xda, 0x41, 0x0b, 0x63, - 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x21, - 0x3a, 0x01, 0x2a, 0x22, 0x1c, 0x2f, 0x76, 0x32, 0x31, 0x3a, 0x67, 0x65, 0x6e, 0x65, 0x72, 0x61, - 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, - 0x73, 0x12, 0xc5, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, - 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x12, 0xd3, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, - 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, + 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, + 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, + 0x52, 0x61, 0x74, 0x65, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x35, 0xda, + 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, + 0x93, 0x02, 0x21, 0x3a, 0x01, 0x2a, 0x22, 0x1c, 0x2f, 0x76, 0x32, 0x32, 0x3a, 0x67, 0x65, 0x6e, + 0x65, 0x72, 0x61, 0x74, 0x65, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, + 0x61, 0x74, 0x65, 0x73, 0x12, 0xc5, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, + 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, - 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, 0x65, 0x73, 0x70, - 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x34, 0xda, 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, - 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, 0x22, 0x1b, 0x2f, - 0x76, 0x32, 0x31, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 0xe3, 0x01, 0x0a, 0x1a, 0x4c, - 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, - 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, - 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, - 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, - 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, - 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, 0x52, 0x65, - 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0xda, 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, 0x6f, - 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x3a, 0x01, 0x2a, 0x22, - 0x1f, 0x2f, 0x76, 0x32, 0x31, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, - 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 0x73, - 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, 0x31, 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, 0x32, - 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, - 0x74, 0x6f, 0x33, + 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, 0x32, 0x32, 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, 0x32, + 0x32, 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, + 0x32, 0x32, 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, + 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x12, 0xd3, 0x01, 0x0a, 0x16, 0x4c, 0x69, 0x73, 0x74, + 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, + 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, 0x32, 0x32, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 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, 0x32, 0x32, 0x2e, + 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, + 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x52, + 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x34, 0xda, 0x41, 0x0b, 0x63, 0x75, 0x73, 0x74, + 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x20, 0x3a, 0x01, 0x2a, + 0x22, 0x1b, 0x2f, 0x76, 0x32, 0x32, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x4c, 0x69, 0x73, 0x74, 0x73, 0x12, 0xe3, 0x01, + 0x0a, 0x1a, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, + 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, + 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, 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, 0x32, 0x32, 0x2e, 0x73, 0x65, + 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, 0x6e, 0x6e, + 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, 0x73, 0x74, + 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x38, 0xda, 0x41, 0x0b, 0x63, 0x75, + 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x24, 0x3a, + 0x01, 0x2a, 0x22, 0x1f, 0x2f, 0x76, 0x32, 0x32, 0x3a, 0x6c, 0x69, 0x73, 0x74, 0x50, 0x6c, 0x61, + 0x6e, 0x6e, 0x61, 0x62, 0x6c, 0x65, 0x55, 0x73, 0x65, 0x72, 0x49, 0x6e, 0x74, 0x65, 0x72, 0x65, + 0x73, 0x74, 0x73, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 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, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 38) -var file_google_ads_googleads_v21_services_reach_plan_service_proto_goTypes = []any{ - (*GenerateConversionRatesRequest)(nil), // 0: google.ads.googleads.v21.services.GenerateConversionRatesRequest - (*GenerateConversionRatesResponse)(nil), // 1: google.ads.googleads.v21.services.GenerateConversionRatesResponse - (*ConversionRateSuggestion)(nil), // 2: google.ads.googleads.v21.services.ConversionRateSuggestion - (*ListPlannableLocationsRequest)(nil), // 3: google.ads.googleads.v21.services.ListPlannableLocationsRequest - (*ListPlannableLocationsResponse)(nil), // 4: google.ads.googleads.v21.services.ListPlannableLocationsResponse - (*PlannableLocation)(nil), // 5: google.ads.googleads.v21.services.PlannableLocation - (*ListPlannableProductsRequest)(nil), // 6: google.ads.googleads.v21.services.ListPlannableProductsRequest - (*ListPlannableProductsResponse)(nil), // 7: google.ads.googleads.v21.services.ListPlannableProductsResponse - (*ProductMetadata)(nil), // 8: google.ads.googleads.v21.services.ProductMetadata - (*ListPlannableUserListsRequest)(nil), // 9: google.ads.googleads.v21.services.ListPlannableUserListsRequest - (*ListPlannableUserListsResponse)(nil), // 10: google.ads.googleads.v21.services.ListPlannableUserListsResponse - (*PlannableUserList)(nil), // 11: google.ads.googleads.v21.services.PlannableUserList - (*PlannableTargeting)(nil), // 12: google.ads.googleads.v21.services.PlannableTargeting - (*ListPlannableUserInterestsRequest)(nil), // 13: google.ads.googleads.v21.services.ListPlannableUserInterestsRequest - (*ListPlannableUserInterestsResponse)(nil), // 14: google.ads.googleads.v21.services.ListPlannableUserInterestsResponse - (*PlannableUserInterest)(nil), // 15: google.ads.googleads.v21.services.PlannableUserInterest - (*GenerateReachForecastRequest)(nil), // 16: google.ads.googleads.v21.services.GenerateReachForecastRequest - (*EffectiveFrequencyLimit)(nil), // 17: google.ads.googleads.v21.services.EffectiveFrequencyLimit - (*FrequencyCap)(nil), // 18: google.ads.googleads.v21.services.FrequencyCap - (*Targeting)(nil), // 19: google.ads.googleads.v21.services.Targeting - (*CampaignDuration)(nil), // 20: google.ads.googleads.v21.services.CampaignDuration - (*PlannedProduct)(nil), // 21: google.ads.googleads.v21.services.PlannedProduct - (*GenerateReachForecastResponse)(nil), // 22: google.ads.googleads.v21.services.GenerateReachForecastResponse - (*ReachCurve)(nil), // 23: google.ads.googleads.v21.services.ReachCurve - (*ReachForecast)(nil), // 24: google.ads.googleads.v21.services.ReachForecast - (*Forecast)(nil), // 25: google.ads.googleads.v21.services.Forecast - (*PlannedProductReachForecast)(nil), // 26: google.ads.googleads.v21.services.PlannedProductReachForecast - (*PlannedProductForecast)(nil), // 27: google.ads.googleads.v21.services.PlannedProductForecast - (*OnTargetAudienceMetrics)(nil), // 28: google.ads.googleads.v21.services.OnTargetAudienceMetrics - (*EffectiveFrequencyBreakdown)(nil), // 29: google.ads.googleads.v21.services.EffectiveFrequencyBreakdown - (*ForecastMetricOptions)(nil), // 30: google.ads.googleads.v21.services.ForecastMetricOptions - (*AudienceTargeting)(nil), // 31: google.ads.googleads.v21.services.AudienceTargeting - (*AdvancedProductTargeting)(nil), // 32: google.ads.googleads.v21.services.AdvancedProductTargeting - (*YouTubeSelectSettings)(nil), // 33: google.ads.googleads.v21.services.YouTubeSelectSettings - (*YouTubeSelectLineUp)(nil), // 34: google.ads.googleads.v21.services.YouTubeSelectLineUp - (*SurfaceTargetingCombinations)(nil), // 35: google.ads.googleads.v21.services.SurfaceTargetingCombinations - (*SurfaceTargeting)(nil), // 36: google.ads.googleads.v21.services.SurfaceTargeting - (*TargetFrequencySettings)(nil), // 37: google.ads.googleads.v21.services.TargetFrequencySettings - (*common.AdditionalApplicationInfo)(nil), // 38: google.ads.googleads.v21.common.AdditionalApplicationInfo - (enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel)(0), // 39: google.ads.googleads.v21.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel - (*common.UserListInfo)(nil), // 40: google.ads.googleads.v21.common.UserListInfo - (enums.UserListTypeEnum_UserListType)(0), // 41: google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - (enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus)(0), // 42: google.ads.googleads.v21.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus - (enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 43: google.ads.googleads.v21.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - (*common.GenderInfo)(nil), // 44: google.ads.googleads.v21.common.GenderInfo - (*common.DeviceInfo)(nil), // 45: google.ads.googleads.v21.common.DeviceInfo - (enums.ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 46: google.ads.googleads.v21.enums.ReachPlanNetworkEnum.ReachPlanNetwork - (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 47: google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - (*common.UserInterestInfo)(nil), // 48: google.ads.googleads.v21.common.UserInterestInfo - (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 49: google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit - (*common.DateRange)(nil), // 50: google.ads.googleads.v21.common.DateRange - (enums.ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 51: google.ads.googleads.v21.enums.ReachPlanSurfaceEnum.ReachPlanSurface - (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 52: google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit -} -var file_google_ads_googleads_v21_services_reach_plan_service_proto_depIdxs = []int32{ - 38, // 0: google.ads.googleads.v21.services.GenerateConversionRatesRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 2, // 1: google.ads.googleads.v21.services.GenerateConversionRatesResponse.conversion_rate_suggestions:type_name -> google.ads.googleads.v21.services.ConversionRateSuggestion - 39, // 2: google.ads.googleads.v21.services.ConversionRateSuggestion.conversion_rate_model:type_name -> google.ads.googleads.v21.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel - 38, // 3: google.ads.googleads.v21.services.ListPlannableLocationsRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 5, // 4: google.ads.googleads.v21.services.ListPlannableLocationsResponse.plannable_locations:type_name -> google.ads.googleads.v21.services.PlannableLocation - 38, // 5: google.ads.googleads.v21.services.ListPlannableProductsRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 8, // 6: google.ads.googleads.v21.services.ListPlannableProductsResponse.product_metadata:type_name -> google.ads.googleads.v21.services.ProductMetadata - 12, // 7: google.ads.googleads.v21.services.ProductMetadata.plannable_targeting:type_name -> google.ads.googleads.v21.services.PlannableTargeting - 38, // 8: google.ads.googleads.v21.services.ListPlannableUserListsRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 11, // 9: google.ads.googleads.v21.services.ListPlannableUserListsResponse.plannable_user_lists:type_name -> google.ads.googleads.v21.services.PlannableUserList - 40, // 10: google.ads.googleads.v21.services.PlannableUserList.user_list_info:type_name -> google.ads.googleads.v21.common.UserListInfo - 41, // 11: google.ads.googleads.v21.services.PlannableUserList.user_list_type:type_name -> google.ads.googleads.v21.enums.UserListTypeEnum.UserListType - 42, // 12: google.ads.googleads.v21.services.PlannableUserList.plannable_status:type_name -> google.ads.googleads.v21.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus - 43, // 13: google.ads.googleads.v21.services.PlannableTargeting.age_ranges:type_name -> google.ads.googleads.v21.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - 44, // 14: google.ads.googleads.v21.services.PlannableTargeting.genders:type_name -> google.ads.googleads.v21.common.GenderInfo - 45, // 15: google.ads.googleads.v21.services.PlannableTargeting.devices:type_name -> google.ads.googleads.v21.common.DeviceInfo - 46, // 16: google.ads.googleads.v21.services.PlannableTargeting.networks:type_name -> google.ads.googleads.v21.enums.ReachPlanNetworkEnum.ReachPlanNetwork - 34, // 17: google.ads.googleads.v21.services.PlannableTargeting.youtube_select_lineups:type_name -> google.ads.googleads.v21.services.YouTubeSelectLineUp - 35, // 18: google.ads.googleads.v21.services.PlannableTargeting.surface_targeting:type_name -> google.ads.googleads.v21.services.SurfaceTargetingCombinations - 47, // 19: google.ads.googleads.v21.services.ListPlannableUserInterestsRequest.user_interest_taxonomy_types:type_name -> google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - 38, // 20: google.ads.googleads.v21.services.ListPlannableUserInterestsRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 15, // 21: google.ads.googleads.v21.services.ListPlannableUserInterestsResponse.plannable_user_interests:type_name -> google.ads.googleads.v21.services.PlannableUserInterest - 48, // 22: google.ads.googleads.v21.services.PlannableUserInterest.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 47, // 23: google.ads.googleads.v21.services.PlannableUserInterest.user_interest_type:type_name -> google.ads.googleads.v21.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType - 20, // 24: google.ads.googleads.v21.services.GenerateReachForecastRequest.campaign_duration:type_name -> google.ads.googleads.v21.services.CampaignDuration - 18, // 25: google.ads.googleads.v21.services.GenerateReachForecastRequest.cookie_frequency_cap_setting:type_name -> google.ads.googleads.v21.services.FrequencyCap - 17, // 26: google.ads.googleads.v21.services.GenerateReachForecastRequest.effective_frequency_limit:type_name -> google.ads.googleads.v21.services.EffectiveFrequencyLimit - 19, // 27: google.ads.googleads.v21.services.GenerateReachForecastRequest.targeting:type_name -> google.ads.googleads.v21.services.Targeting - 21, // 28: google.ads.googleads.v21.services.GenerateReachForecastRequest.planned_products:type_name -> google.ads.googleads.v21.services.PlannedProduct - 30, // 29: google.ads.googleads.v21.services.GenerateReachForecastRequest.forecast_metric_options:type_name -> google.ads.googleads.v21.services.ForecastMetricOptions - 38, // 30: google.ads.googleads.v21.services.GenerateReachForecastRequest.reach_application_info:type_name -> google.ads.googleads.v21.common.AdditionalApplicationInfo - 49, // 31: google.ads.googleads.v21.services.FrequencyCap.time_unit:type_name -> google.ads.googleads.v21.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit - 43, // 32: google.ads.googleads.v21.services.Targeting.age_range:type_name -> google.ads.googleads.v21.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange - 44, // 33: google.ads.googleads.v21.services.Targeting.genders:type_name -> google.ads.googleads.v21.common.GenderInfo - 45, // 34: google.ads.googleads.v21.services.Targeting.devices:type_name -> google.ads.googleads.v21.common.DeviceInfo - 46, // 35: google.ads.googleads.v21.services.Targeting.network:type_name -> google.ads.googleads.v21.enums.ReachPlanNetworkEnum.ReachPlanNetwork - 31, // 36: google.ads.googleads.v21.services.Targeting.audience_targeting:type_name -> google.ads.googleads.v21.services.AudienceTargeting - 50, // 37: google.ads.googleads.v21.services.CampaignDuration.date_range:type_name -> google.ads.googleads.v21.common.DateRange - 32, // 38: google.ads.googleads.v21.services.PlannedProduct.advanced_product_targeting:type_name -> google.ads.googleads.v21.services.AdvancedProductTargeting - 28, // 39: google.ads.googleads.v21.services.GenerateReachForecastResponse.on_target_audience_metrics:type_name -> google.ads.googleads.v21.services.OnTargetAudienceMetrics - 23, // 40: google.ads.googleads.v21.services.GenerateReachForecastResponse.reach_curve:type_name -> google.ads.googleads.v21.services.ReachCurve - 24, // 41: google.ads.googleads.v21.services.ReachCurve.reach_forecasts:type_name -> google.ads.googleads.v21.services.ReachForecast - 25, // 42: google.ads.googleads.v21.services.ReachForecast.forecast:type_name -> google.ads.googleads.v21.services.Forecast - 26, // 43: google.ads.googleads.v21.services.ReachForecast.planned_product_reach_forecasts:type_name -> google.ads.googleads.v21.services.PlannedProductReachForecast - 29, // 44: google.ads.googleads.v21.services.Forecast.effective_frequency_breakdowns:type_name -> google.ads.googleads.v21.services.EffectiveFrequencyBreakdown - 27, // 45: google.ads.googleads.v21.services.PlannedProductReachForecast.planned_product_forecast:type_name -> google.ads.googleads.v21.services.PlannedProductForecast - 48, // 46: google.ads.googleads.v21.services.AudienceTargeting.user_interest:type_name -> google.ads.googleads.v21.common.UserInterestInfo - 40, // 47: google.ads.googleads.v21.services.AudienceTargeting.user_lists:type_name -> google.ads.googleads.v21.common.UserListInfo - 36, // 48: google.ads.googleads.v21.services.AdvancedProductTargeting.surface_targeting_settings:type_name -> google.ads.googleads.v21.services.SurfaceTargeting - 37, // 49: google.ads.googleads.v21.services.AdvancedProductTargeting.target_frequency_settings:type_name -> google.ads.googleads.v21.services.TargetFrequencySettings - 33, // 50: google.ads.googleads.v21.services.AdvancedProductTargeting.youtube_select_settings:type_name -> google.ads.googleads.v21.services.YouTubeSelectSettings - 36, // 51: google.ads.googleads.v21.services.SurfaceTargetingCombinations.default_targeting:type_name -> google.ads.googleads.v21.services.SurfaceTargeting - 36, // 52: google.ads.googleads.v21.services.SurfaceTargetingCombinations.available_targeting_combinations:type_name -> google.ads.googleads.v21.services.SurfaceTargeting - 51, // 53: google.ads.googleads.v21.services.SurfaceTargeting.surfaces:type_name -> google.ads.googleads.v21.enums.ReachPlanSurfaceEnum.ReachPlanSurface - 52, // 54: google.ads.googleads.v21.services.TargetFrequencySettings.time_unit:type_name -> google.ads.googleads.v21.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit - 0, // 55: google.ads.googleads.v21.services.ReachPlanService.GenerateConversionRates:input_type -> google.ads.googleads.v21.services.GenerateConversionRatesRequest - 3, // 56: google.ads.googleads.v21.services.ReachPlanService.ListPlannableLocations:input_type -> google.ads.googleads.v21.services.ListPlannableLocationsRequest - 6, // 57: google.ads.googleads.v21.services.ReachPlanService.ListPlannableProducts:input_type -> google.ads.googleads.v21.services.ListPlannableProductsRequest - 16, // 58: google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast:input_type -> google.ads.googleads.v21.services.GenerateReachForecastRequest - 9, // 59: google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserLists:input_type -> google.ads.googleads.v21.services.ListPlannableUserListsRequest - 13, // 60: google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserInterests:input_type -> google.ads.googleads.v21.services.ListPlannableUserInterestsRequest - 1, // 61: google.ads.googleads.v21.services.ReachPlanService.GenerateConversionRates:output_type -> google.ads.googleads.v21.services.GenerateConversionRatesResponse - 4, // 62: google.ads.googleads.v21.services.ReachPlanService.ListPlannableLocations:output_type -> google.ads.googleads.v21.services.ListPlannableLocationsResponse - 7, // 63: google.ads.googleads.v21.services.ReachPlanService.ListPlannableProducts:output_type -> google.ads.googleads.v21.services.ListPlannableProductsResponse - 22, // 64: google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast:output_type -> google.ads.googleads.v21.services.GenerateReachForecastResponse - 10, // 65: google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserLists:output_type -> google.ads.googleads.v21.services.ListPlannableUserListsResponse - 14, // 66: google.ads.googleads.v21.services.ReachPlanService.ListPlannableUserInterests:output_type -> google.ads.googleads.v21.services.ListPlannableUserInterestsResponse - 61, // [61:67] is the sub-list for method output_type - 55, // [55:61] is the sub-list for method input_type - 55, // [55:55] is the sub-list for extension type_name - 55, // [55:55] is the sub-list for extension extendee - 0, // [0:55] is the sub-list for field type_name -} - -func init() { file_google_ads_googleads_v21_services_reach_plan_service_proto_init() } -func file_google_ads_googleads_v21_services_reach_plan_service_proto_init() { - if File_google_ads_googleads_v21_services_reach_plan_service_proto != nil { + return file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes = make([]protoimpl.MessageInfo, 39) +var file_google_ads_googleads_v22_services_reach_plan_service_proto_goTypes = []any{ + (*GenerateConversionRatesRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateConversionRatesRequest + (*GenerateConversionRatesResponse)(nil), // 1: google.ads.googleads.v22.services.GenerateConversionRatesResponse + (*ConversionRateSuggestion)(nil), // 2: google.ads.googleads.v22.services.ConversionRateSuggestion + (*ListPlannableLocationsRequest)(nil), // 3: google.ads.googleads.v22.services.ListPlannableLocationsRequest + (*ListPlannableLocationsResponse)(nil), // 4: google.ads.googleads.v22.services.ListPlannableLocationsResponse + (*PlannableLocation)(nil), // 5: google.ads.googleads.v22.services.PlannableLocation + (*ListPlannableProductsRequest)(nil), // 6: google.ads.googleads.v22.services.ListPlannableProductsRequest + (*ListPlannableProductsResponse)(nil), // 7: google.ads.googleads.v22.services.ListPlannableProductsResponse + (*ProductMetadata)(nil), // 8: google.ads.googleads.v22.services.ProductMetadata + (*ListPlannableUserListsRequest)(nil), // 9: google.ads.googleads.v22.services.ListPlannableUserListsRequest + (*ListPlannableUserListsResponse)(nil), // 10: google.ads.googleads.v22.services.ListPlannableUserListsResponse + (*PlannableUserList)(nil), // 11: google.ads.googleads.v22.services.PlannableUserList + (*PlannableUserListMetadata)(nil), // 12: google.ads.googleads.v22.services.PlannableUserListMetadata + (*PlannableTargeting)(nil), // 13: google.ads.googleads.v22.services.PlannableTargeting + (*ListPlannableUserInterestsRequest)(nil), // 14: google.ads.googleads.v22.services.ListPlannableUserInterestsRequest + (*ListPlannableUserInterestsResponse)(nil), // 15: google.ads.googleads.v22.services.ListPlannableUserInterestsResponse + (*PlannableUserInterest)(nil), // 16: google.ads.googleads.v22.services.PlannableUserInterest + (*GenerateReachForecastRequest)(nil), // 17: google.ads.googleads.v22.services.GenerateReachForecastRequest + (*EffectiveFrequencyLimit)(nil), // 18: google.ads.googleads.v22.services.EffectiveFrequencyLimit + (*FrequencyCap)(nil), // 19: google.ads.googleads.v22.services.FrequencyCap + (*Targeting)(nil), // 20: google.ads.googleads.v22.services.Targeting + (*CampaignDuration)(nil), // 21: google.ads.googleads.v22.services.CampaignDuration + (*PlannedProduct)(nil), // 22: google.ads.googleads.v22.services.PlannedProduct + (*GenerateReachForecastResponse)(nil), // 23: google.ads.googleads.v22.services.GenerateReachForecastResponse + (*ReachCurve)(nil), // 24: google.ads.googleads.v22.services.ReachCurve + (*ReachForecast)(nil), // 25: google.ads.googleads.v22.services.ReachForecast + (*Forecast)(nil), // 26: google.ads.googleads.v22.services.Forecast + (*PlannedProductReachForecast)(nil), // 27: google.ads.googleads.v22.services.PlannedProductReachForecast + (*PlannedProductForecast)(nil), // 28: google.ads.googleads.v22.services.PlannedProductForecast + (*OnTargetAudienceMetrics)(nil), // 29: google.ads.googleads.v22.services.OnTargetAudienceMetrics + (*EffectiveFrequencyBreakdown)(nil), // 30: google.ads.googleads.v22.services.EffectiveFrequencyBreakdown + (*ForecastMetricOptions)(nil), // 31: google.ads.googleads.v22.services.ForecastMetricOptions + (*AudienceTargeting)(nil), // 32: google.ads.googleads.v22.services.AudienceTargeting + (*AdvancedProductTargeting)(nil), // 33: google.ads.googleads.v22.services.AdvancedProductTargeting + (*YouTubeSelectSettings)(nil), // 34: google.ads.googleads.v22.services.YouTubeSelectSettings + (*YouTubeSelectLineUp)(nil), // 35: google.ads.googleads.v22.services.YouTubeSelectLineUp + (*SurfaceTargetingCombinations)(nil), // 36: google.ads.googleads.v22.services.SurfaceTargetingCombinations + (*SurfaceTargeting)(nil), // 37: google.ads.googleads.v22.services.SurfaceTargeting + (*TargetFrequencySettings)(nil), // 38: google.ads.googleads.v22.services.TargetFrequencySettings + (*common.AdditionalApplicationInfo)(nil), // 39: google.ads.googleads.v22.common.AdditionalApplicationInfo + (enums.ReachPlanConversionRateModelEnum_ReachPlanConversionRateModel)(0), // 40: google.ads.googleads.v22.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel + (*common.UserListInfo)(nil), // 41: google.ads.googleads.v22.common.UserListInfo + (enums.UserListTypeEnum_UserListType)(0), // 42: google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + (enums.ReachPlanPlannableUserListStatusEnum_ReachPlanPlannableUserListStatus)(0), // 43: google.ads.googleads.v22.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus + (enums.UserListCrmDataSourceTypeEnum_UserListCrmDataSourceType)(0), // 44: google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType + (enums.ReachPlanAgeRangeEnum_ReachPlanAgeRange)(0), // 45: google.ads.googleads.v22.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + (*common.GenderInfo)(nil), // 46: google.ads.googleads.v22.common.GenderInfo + (*common.DeviceInfo)(nil), // 47: google.ads.googleads.v22.common.DeviceInfo + (enums.ReachPlanNetworkEnum_ReachPlanNetwork)(0), // 48: google.ads.googleads.v22.enums.ReachPlanNetworkEnum.ReachPlanNetwork + (enums.UserInterestTaxonomyTypeEnum_UserInterestTaxonomyType)(0), // 49: google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + (*common.UserInterestInfo)(nil), // 50: google.ads.googleads.v22.common.UserInterestInfo + (enums.FrequencyCapTimeUnitEnum_FrequencyCapTimeUnit)(0), // 51: google.ads.googleads.v22.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit + (*common.DateRange)(nil), // 52: google.ads.googleads.v22.common.DateRange + (enums.ReachPlanSurfaceEnum_ReachPlanSurface)(0), // 53: google.ads.googleads.v22.enums.ReachPlanSurfaceEnum.ReachPlanSurface + (enums.TargetFrequencyTimeUnitEnum_TargetFrequencyTimeUnit)(0), // 54: google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit +} +var file_google_ads_googleads_v22_services_reach_plan_service_proto_depIdxs = []int32{ + 39, // 0: google.ads.googleads.v22.services.GenerateConversionRatesRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 2, // 1: google.ads.googleads.v22.services.GenerateConversionRatesResponse.conversion_rate_suggestions:type_name -> google.ads.googleads.v22.services.ConversionRateSuggestion + 40, // 2: google.ads.googleads.v22.services.ConversionRateSuggestion.conversion_rate_model:type_name -> google.ads.googleads.v22.enums.ReachPlanConversionRateModelEnum.ReachPlanConversionRateModel + 39, // 3: google.ads.googleads.v22.services.ListPlannableLocationsRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 5, // 4: google.ads.googleads.v22.services.ListPlannableLocationsResponse.plannable_locations:type_name -> google.ads.googleads.v22.services.PlannableLocation + 39, // 5: google.ads.googleads.v22.services.ListPlannableProductsRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 8, // 6: google.ads.googleads.v22.services.ListPlannableProductsResponse.product_metadata:type_name -> google.ads.googleads.v22.services.ProductMetadata + 13, // 7: google.ads.googleads.v22.services.ProductMetadata.plannable_targeting:type_name -> google.ads.googleads.v22.services.PlannableTargeting + 39, // 8: google.ads.googleads.v22.services.ListPlannableUserListsRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 11, // 9: google.ads.googleads.v22.services.ListPlannableUserListsResponse.plannable_user_lists:type_name -> google.ads.googleads.v22.services.PlannableUserList + 41, // 10: google.ads.googleads.v22.services.PlannableUserList.user_list_info:type_name -> google.ads.googleads.v22.common.UserListInfo + 42, // 11: google.ads.googleads.v22.services.PlannableUserList.user_list_type:type_name -> google.ads.googleads.v22.enums.UserListTypeEnum.UserListType + 43, // 12: google.ads.googleads.v22.services.PlannableUserList.plannable_status:type_name -> google.ads.googleads.v22.enums.ReachPlanPlannableUserListStatusEnum.ReachPlanPlannableUserListStatus + 12, // 13: google.ads.googleads.v22.services.PlannableUserList.plannable_user_list_metadata:type_name -> google.ads.googleads.v22.services.PlannableUserListMetadata + 44, // 14: google.ads.googleads.v22.services.PlannableUserListMetadata.user_list_crm_data_source_type:type_name -> google.ads.googleads.v22.enums.UserListCrmDataSourceTypeEnum.UserListCrmDataSourceType + 45, // 15: google.ads.googleads.v22.services.PlannableTargeting.age_ranges:type_name -> google.ads.googleads.v22.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + 46, // 16: google.ads.googleads.v22.services.PlannableTargeting.genders:type_name -> google.ads.googleads.v22.common.GenderInfo + 47, // 17: google.ads.googleads.v22.services.PlannableTargeting.devices:type_name -> google.ads.googleads.v22.common.DeviceInfo + 48, // 18: google.ads.googleads.v22.services.PlannableTargeting.networks:type_name -> google.ads.googleads.v22.enums.ReachPlanNetworkEnum.ReachPlanNetwork + 35, // 19: google.ads.googleads.v22.services.PlannableTargeting.youtube_select_lineups:type_name -> google.ads.googleads.v22.services.YouTubeSelectLineUp + 36, // 20: google.ads.googleads.v22.services.PlannableTargeting.surface_targeting:type_name -> google.ads.googleads.v22.services.SurfaceTargetingCombinations + 49, // 21: google.ads.googleads.v22.services.ListPlannableUserInterestsRequest.user_interest_taxonomy_types:type_name -> google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + 39, // 22: google.ads.googleads.v22.services.ListPlannableUserInterestsRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 16, // 23: google.ads.googleads.v22.services.ListPlannableUserInterestsResponse.plannable_user_interests:type_name -> google.ads.googleads.v22.services.PlannableUserInterest + 50, // 24: google.ads.googleads.v22.services.PlannableUserInterest.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestInfo + 49, // 25: google.ads.googleads.v22.services.PlannableUserInterest.user_interest_type:type_name -> google.ads.googleads.v22.enums.UserInterestTaxonomyTypeEnum.UserInterestTaxonomyType + 21, // 26: google.ads.googleads.v22.services.GenerateReachForecastRequest.campaign_duration:type_name -> google.ads.googleads.v22.services.CampaignDuration + 19, // 27: google.ads.googleads.v22.services.GenerateReachForecastRequest.cookie_frequency_cap_setting:type_name -> google.ads.googleads.v22.services.FrequencyCap + 18, // 28: google.ads.googleads.v22.services.GenerateReachForecastRequest.effective_frequency_limit:type_name -> google.ads.googleads.v22.services.EffectiveFrequencyLimit + 20, // 29: google.ads.googleads.v22.services.GenerateReachForecastRequest.targeting:type_name -> google.ads.googleads.v22.services.Targeting + 22, // 30: google.ads.googleads.v22.services.GenerateReachForecastRequest.planned_products:type_name -> google.ads.googleads.v22.services.PlannedProduct + 31, // 31: google.ads.googleads.v22.services.GenerateReachForecastRequest.forecast_metric_options:type_name -> google.ads.googleads.v22.services.ForecastMetricOptions + 39, // 32: google.ads.googleads.v22.services.GenerateReachForecastRequest.reach_application_info:type_name -> google.ads.googleads.v22.common.AdditionalApplicationInfo + 51, // 33: google.ads.googleads.v22.services.FrequencyCap.time_unit:type_name -> google.ads.googleads.v22.enums.FrequencyCapTimeUnitEnum.FrequencyCapTimeUnit + 45, // 34: google.ads.googleads.v22.services.Targeting.age_range:type_name -> google.ads.googleads.v22.enums.ReachPlanAgeRangeEnum.ReachPlanAgeRange + 46, // 35: google.ads.googleads.v22.services.Targeting.genders:type_name -> google.ads.googleads.v22.common.GenderInfo + 47, // 36: google.ads.googleads.v22.services.Targeting.devices:type_name -> google.ads.googleads.v22.common.DeviceInfo + 48, // 37: google.ads.googleads.v22.services.Targeting.network:type_name -> google.ads.googleads.v22.enums.ReachPlanNetworkEnum.ReachPlanNetwork + 32, // 38: google.ads.googleads.v22.services.Targeting.audience_targeting:type_name -> google.ads.googleads.v22.services.AudienceTargeting + 52, // 39: google.ads.googleads.v22.services.CampaignDuration.date_range:type_name -> google.ads.googleads.v22.common.DateRange + 33, // 40: google.ads.googleads.v22.services.PlannedProduct.advanced_product_targeting:type_name -> google.ads.googleads.v22.services.AdvancedProductTargeting + 29, // 41: google.ads.googleads.v22.services.GenerateReachForecastResponse.on_target_audience_metrics:type_name -> google.ads.googleads.v22.services.OnTargetAudienceMetrics + 24, // 42: google.ads.googleads.v22.services.GenerateReachForecastResponse.reach_curve:type_name -> google.ads.googleads.v22.services.ReachCurve + 25, // 43: google.ads.googleads.v22.services.ReachCurve.reach_forecasts:type_name -> google.ads.googleads.v22.services.ReachForecast + 26, // 44: google.ads.googleads.v22.services.ReachForecast.forecast:type_name -> google.ads.googleads.v22.services.Forecast + 27, // 45: google.ads.googleads.v22.services.ReachForecast.planned_product_reach_forecasts:type_name -> google.ads.googleads.v22.services.PlannedProductReachForecast + 30, // 46: google.ads.googleads.v22.services.Forecast.effective_frequency_breakdowns:type_name -> google.ads.googleads.v22.services.EffectiveFrequencyBreakdown + 28, // 47: google.ads.googleads.v22.services.PlannedProductReachForecast.planned_product_forecast:type_name -> google.ads.googleads.v22.services.PlannedProductForecast + 50, // 48: google.ads.googleads.v22.services.AudienceTargeting.user_interest:type_name -> google.ads.googleads.v22.common.UserInterestInfo + 41, // 49: google.ads.googleads.v22.services.AudienceTargeting.user_lists:type_name -> google.ads.googleads.v22.common.UserListInfo + 37, // 50: google.ads.googleads.v22.services.AdvancedProductTargeting.surface_targeting_settings:type_name -> google.ads.googleads.v22.services.SurfaceTargeting + 38, // 51: google.ads.googleads.v22.services.AdvancedProductTargeting.target_frequency_settings:type_name -> google.ads.googleads.v22.services.TargetFrequencySettings + 34, // 52: google.ads.googleads.v22.services.AdvancedProductTargeting.youtube_select_settings:type_name -> google.ads.googleads.v22.services.YouTubeSelectSettings + 37, // 53: google.ads.googleads.v22.services.SurfaceTargetingCombinations.default_targeting:type_name -> google.ads.googleads.v22.services.SurfaceTargeting + 37, // 54: google.ads.googleads.v22.services.SurfaceTargetingCombinations.available_targeting_combinations:type_name -> google.ads.googleads.v22.services.SurfaceTargeting + 53, // 55: google.ads.googleads.v22.services.SurfaceTargeting.surfaces:type_name -> google.ads.googleads.v22.enums.ReachPlanSurfaceEnum.ReachPlanSurface + 54, // 56: google.ads.googleads.v22.services.TargetFrequencySettings.time_unit:type_name -> google.ads.googleads.v22.enums.TargetFrequencyTimeUnitEnum.TargetFrequencyTimeUnit + 0, // 57: google.ads.googleads.v22.services.ReachPlanService.GenerateConversionRates:input_type -> google.ads.googleads.v22.services.GenerateConversionRatesRequest + 3, // 58: google.ads.googleads.v22.services.ReachPlanService.ListPlannableLocations:input_type -> google.ads.googleads.v22.services.ListPlannableLocationsRequest + 6, // 59: google.ads.googleads.v22.services.ReachPlanService.ListPlannableProducts:input_type -> google.ads.googleads.v22.services.ListPlannableProductsRequest + 17, // 60: google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast:input_type -> google.ads.googleads.v22.services.GenerateReachForecastRequest + 9, // 61: google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserLists:input_type -> google.ads.googleads.v22.services.ListPlannableUserListsRequest + 14, // 62: google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserInterests:input_type -> google.ads.googleads.v22.services.ListPlannableUserInterestsRequest + 1, // 63: google.ads.googleads.v22.services.ReachPlanService.GenerateConversionRates:output_type -> google.ads.googleads.v22.services.GenerateConversionRatesResponse + 4, // 64: google.ads.googleads.v22.services.ReachPlanService.ListPlannableLocations:output_type -> google.ads.googleads.v22.services.ListPlannableLocationsResponse + 7, // 65: google.ads.googleads.v22.services.ReachPlanService.ListPlannableProducts:output_type -> google.ads.googleads.v22.services.ListPlannableProductsResponse + 23, // 66: google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast:output_type -> google.ads.googleads.v22.services.GenerateReachForecastResponse + 10, // 67: google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserLists:output_type -> google.ads.googleads.v22.services.ListPlannableUserListsResponse + 15, // 68: google.ads.googleads.v22.services.ReachPlanService.ListPlannableUserInterests:output_type -> google.ads.googleads.v22.services.ListPlannableUserInterestsResponse + 63, // [63:69] is the sub-list for method output_type + 57, // [57:63] is the sub-list for method input_type + 57, // [57:57] is the sub-list for extension type_name + 57, // [57:57] is the sub-list for extension extendee + 0, // [0:57] is the sub-list for field type_name +} + +func init() { file_google_ads_googleads_v22_services_reach_plan_service_proto_init() } +func file_google_ads_googleads_v22_services_reach_plan_service_proto_init() { + if File_google_ads_googleads_v22_services_reach_plan_service_proto != nil { return } - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[0].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[16].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[19].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[20].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[21].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[25].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[27].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[28].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[29].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes[32].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[0].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[14].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[17].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[20].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[21].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[22].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[26].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[28].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[29].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[30].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes[33].OneofWrappers = []any{ (*AdvancedProductTargeting_YoutubeSelectSettings)(nil), } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_reach_plan_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_reach_plan_service_proto_rawDesc)), NumEnums: 0, - NumMessages: 38, + NumMessages: 39, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_reach_plan_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_reach_plan_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_reach_plan_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_reach_plan_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_reach_plan_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_reach_plan_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_reach_plan_service_proto = out.File - file_google_ads_googleads_v21_services_reach_plan_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_reach_plan_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_reach_plan_service_proto = out.File + file_google_ads_googleads_v22_services_reach_plan_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 8cd67a2e..a8b8d0ad 100644 --- a/services/reach_plan_service_grpc.pb.go +++ b/services/reach_plan_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/reach_plan_service.proto +// source: google/ads/googleads/v22/services/reach_plan_service.proto package services @@ -33,12 +33,12 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ReachPlanService_GenerateConversionRates_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/GenerateConversionRates" - ReachPlanService_ListPlannableLocations_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/ListPlannableLocations" - ReachPlanService_ListPlannableProducts_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/ListPlannableProducts" - ReachPlanService_GenerateReachForecast_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/GenerateReachForecast" - ReachPlanService_ListPlannableUserLists_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/ListPlannableUserLists" - ReachPlanService_ListPlannableUserInterests_FullMethodName = "/google.ads.googleads.v21.services.ReachPlanService/ListPlannableUserInterests" + ReachPlanService_GenerateConversionRates_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/GenerateConversionRates" + ReachPlanService_ListPlannableLocations_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/ListPlannableLocations" + ReachPlanService_ListPlannableProducts_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/ListPlannableProducts" + ReachPlanService_GenerateReachForecast_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/GenerateReachForecast" + ReachPlanService_ListPlannableUserLists_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/ListPlannableUserLists" + ReachPlanService_ListPlannableUserInterests_FullMethodName = "/google.ads.googleads.v22.services.ReachPlanService/ListPlannableUserInterests" ) // ReachPlanServiceClient is the client API for ReachPlanService service. @@ -121,7 +121,7 @@ type ReachPlanServiceClient interface { // Returns the list of plannable user interests. // A plannable user interest is one that can be targeted in a reach forecast // using - // [ReachPlanService.GenerateReachForecast][google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast]. + // [ReachPlanService.GenerateReachForecast][google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast]. // // List of thrown errors: // @@ -285,7 +285,7 @@ type ReachPlanServiceServer interface { // Returns the list of plannable user interests. // A plannable user interest is one that can be targeted in a reach forecast // using - // [ReachPlanService.GenerateReachForecast][google.ads.googleads.v21.services.ReachPlanService.GenerateReachForecast]. + // [ReachPlanService.GenerateReachForecast][google.ads.googleads.v22.services.ReachPlanService.GenerateReachForecast]. // // List of thrown errors: // @@ -460,7 +460,7 @@ func _ReachPlanService_ListPlannableUserInterests_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 ReachPlanService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.ReachPlanService", + ServiceName: "google.ads.googleads.v22.services.ReachPlanService", HandlerType: (*ReachPlanServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -489,5 +489,5 @@ var ReachPlanService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/reach_plan_service.proto", + Metadata: "google/ads/googleads/v22/services/reach_plan_service.proto", } diff --git a/services/recommendation_service.pb.go b/services/recommendation_service.pb.go index 8eb272af..eebfcdf4 100644 --- a/services/recommendation_service.pb.go +++ b/services/recommendation_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/recommendation_service.proto +// source: google/ads/googleads/v22/services/recommendation_service.proto package services @@ -81,11 +81,11 @@ func (x ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) String() } func (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Descriptor() protoreflect.EnumDescriptor { - return file_google_ads_googleads_v21_services_recommendation_service_proto_enumTypes[0].Descriptor() + return file_google_ads_googleads_v22_services_recommendation_service_proto_enumTypes[0].Descriptor() } func (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Type() protoreflect.EnumType { - return &file_google_ads_googleads_v21_services_recommendation_service_proto_enumTypes[0] + return &file_google_ads_googleads_v22_services_recommendation_service_proto_enumTypes[0] } func (x ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope) Number() protoreflect.EnumNumber { @@ -94,11 +94,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14, 0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14, 0} } // Request message for -// [RecommendationService.ApplyRecommendation][google.ads.googleads.v21.services.RecommendationService.ApplyRecommendation]. +// [RecommendationService.ApplyRecommendation][google.ads.googleads.v22.services.RecommendationService.ApplyRecommendation]. type ApplyRecommendationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer with the recommendation. @@ -118,7 +118,7 @@ type ApplyRecommendationRequest struct { func (x *ApplyRecommendationRequest) Reset() { *x = ApplyRecommendationRequest{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *ApplyRecommendationRequest) String() string { func (*ApplyRecommendationRequest) ProtoMessage() {} func (x *ApplyRecommendationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +143,7 @@ func (x *ApplyRecommendationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationRequest.ProtoReflect.Descriptor instead. func (*ApplyRecommendationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{0} } func (x *ApplyRecommendationRequest) GetCustomerId() string { @@ -208,7 +208,7 @@ type ApplyRecommendationOperation struct { func (x *ApplyRecommendationOperation) Reset() { *x = ApplyRecommendationOperation{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -220,7 +220,7 @@ func (x *ApplyRecommendationOperation) String() string { func (*ApplyRecommendationOperation) ProtoMessage() {} func (x *ApplyRecommendationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -233,7 +233,7 @@ func (x *ApplyRecommendationOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationOperation.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1} } func (x *ApplyRecommendationOperation) GetResourceName() string { @@ -665,7 +665,7 @@ func (*ApplyRecommendationOperation_SetTargetRoas) isApplyRecommendationOperatio func (*ApplyRecommendationOperation_LeadFormAsset) isApplyRecommendationOperation_ApplyParameters() {} // Response message for -// [RecommendationService.ApplyRecommendation][google.ads.googleads.v21.services.RecommendationService.ApplyRecommendation]. +// [RecommendationService.ApplyRecommendation][google.ads.googleads.v22.services.RecommendationService.ApplyRecommendation]. type ApplyRecommendationResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Results of operations to apply recommendations. @@ -681,7 +681,7 @@ type ApplyRecommendationResponse struct { func (x *ApplyRecommendationResponse) Reset() { *x = ApplyRecommendationResponse{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -693,7 +693,7 @@ func (x *ApplyRecommendationResponse) String() string { func (*ApplyRecommendationResponse) ProtoMessage() {} func (x *ApplyRecommendationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -706,7 +706,7 @@ func (x *ApplyRecommendationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationResponse.ProtoReflect.Descriptor instead. func (*ApplyRecommendationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{2} } func (x *ApplyRecommendationResponse) GetResults() []*ApplyRecommendationResult { @@ -734,7 +734,7 @@ type ApplyRecommendationResult struct { func (x *ApplyRecommendationResult) Reset() { *x = ApplyRecommendationResult{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -746,7 +746,7 @@ func (x *ApplyRecommendationResult) String() string { func (*ApplyRecommendationResult) ProtoMessage() {} func (x *ApplyRecommendationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -759,7 +759,7 @@ func (x *ApplyRecommendationResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ApplyRecommendationResult.ProtoReflect.Descriptor instead. func (*ApplyRecommendationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{3} } func (x *ApplyRecommendationResult) GetResourceName() string { @@ -770,7 +770,7 @@ func (x *ApplyRecommendationResult) GetResourceName() string { } // Request message for -// [RecommendationService.DismissRecommendation][google.ads.googleads.v21.services.RecommendationService.DismissRecommendation]. +// [RecommendationService.DismissRecommendation][google.ads.googleads.v22.services.RecommendationService.DismissRecommendation]. type DismissRecommendationRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer with the recommendation. @@ -790,7 +790,7 @@ type DismissRecommendationRequest struct { func (x *DismissRecommendationRequest) Reset() { *x = DismissRecommendationRequest{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -802,7 +802,7 @@ func (x *DismissRecommendationRequest) String() string { func (*DismissRecommendationRequest) ProtoMessage() {} func (x *DismissRecommendationRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -815,7 +815,7 @@ func (x *DismissRecommendationRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use DismissRecommendationRequest.ProtoReflect.Descriptor instead. func (*DismissRecommendationRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{4} } func (x *DismissRecommendationRequest) GetCustomerId() string { @@ -840,7 +840,7 @@ func (x *DismissRecommendationRequest) GetPartialFailure() bool { } // Response message for -// [RecommendationService.DismissRecommendation][google.ads.googleads.v21.services.RecommendationService.DismissRecommendation]. +// [RecommendationService.DismissRecommendation][google.ads.googleads.v22.services.RecommendationService.DismissRecommendation]. type DismissRecommendationResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Results of operations to dismiss recommendations. @@ -856,7 +856,7 @@ type DismissRecommendationResponse struct { func (x *DismissRecommendationResponse) Reset() { *x = DismissRecommendationResponse{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -868,7 +868,7 @@ func (x *DismissRecommendationResponse) String() string { func (*DismissRecommendationResponse) ProtoMessage() {} func (x *DismissRecommendationResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -881,7 +881,7 @@ func (x *DismissRecommendationResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use DismissRecommendationResponse.ProtoReflect.Descriptor instead. func (*DismissRecommendationResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{5} } func (x *DismissRecommendationResponse) GetResults() []*DismissRecommendationResponse_DismissRecommendationResult { @@ -899,7 +899,7 @@ func (x *DismissRecommendationResponse) GetPartialFailureError() *status.Status } // Request message for -// [RecommendationService.GenerateRecommendations][google.ads.googleads.v21.services.RecommendationService.GenerateRecommendations]. +// [RecommendationService.GenerateRecommendations][google.ads.googleads.v22.services.RecommendationService.GenerateRecommendations]. type GenerateRecommendationsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer generating recommendations. @@ -917,12 +917,12 @@ type GenerateRecommendationsRequest struct { // 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.v21.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.v22.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.v21.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.v22.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 @@ -932,7 +932,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.v21.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.v22.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: // CAMPAIGN_BUDGET, MAXIMIZE_CLICKS_OPT_IN, MAXIMIZE_CONVERSIONS_OPT_IN, @@ -1004,7 +1004,7 @@ type GenerateRecommendationsRequest struct { func (x *GenerateRecommendationsRequest) Reset() { *x = GenerateRecommendationsRequest{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1016,7 +1016,7 @@ func (x *GenerateRecommendationsRequest) String() string { func (*GenerateRecommendationsRequest) ProtoMessage() {} func (x *GenerateRecommendationsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1029,7 +1029,7 @@ func (x *GenerateRecommendationsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateRecommendationsRequest.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6} } func (x *GenerateRecommendationsRequest) GetCustomerId() string { @@ -1166,7 +1166,7 @@ func (x *GenerateRecommendationsRequest) GetMerchantCenterAccountId() int64 { } // Response message for -// [RecommendationService.GenerateRecommendations][google.ads.googleads.v21.services.RecommendationService.GenerateRecommendations]. +// [RecommendationService.GenerateRecommendations][google.ads.googleads.v22.services.RecommendationService.GenerateRecommendations]. type GenerateRecommendationsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // List of generated recommendations from the passed in set of requested @@ -1180,7 +1180,7 @@ type GenerateRecommendationsResponse struct { func (x *GenerateRecommendationsResponse) Reset() { *x = GenerateRecommendationsResponse{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1192,7 +1192,7 @@ func (x *GenerateRecommendationsResponse) String() string { func (*GenerateRecommendationsResponse) ProtoMessage() {} func (x *GenerateRecommendationsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1205,7 +1205,7 @@ func (x *GenerateRecommendationsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateRecommendationsResponse.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{7} } func (x *GenerateRecommendationsResponse) GetRecommendations() []*resources.Recommendation { @@ -1227,7 +1227,7 @@ type ApplyRecommendationOperation_CampaignBudgetParameters struct { func (x *ApplyRecommendationOperation_CampaignBudgetParameters) Reset() { *x = ApplyRecommendationOperation_CampaignBudgetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1239,7 +1239,7 @@ func (x *ApplyRecommendationOperation_CampaignBudgetParameters) String() string func (*ApplyRecommendationOperation_CampaignBudgetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CampaignBudgetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1252,7 +1252,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 0} } func (x *ApplyRecommendationOperation_CampaignBudgetParameters) GetNewBudgetAmountMicros() int64 { @@ -1278,7 +1278,7 @@ type ApplyRecommendationOperation_ForecastingSetTargetRoasParameters struct { func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) Reset() { *x = ApplyRecommendationOperation_ForecastingSetTargetRoasParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1290,7 +1290,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) String func (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1303,7 +1303,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) ProtoR // Deprecated: Use ApplyRecommendationOperation_ForecastingSetTargetRoasParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 1} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 1} } func (x *ApplyRecommendationOperation_ForecastingSetTargetRoasParameters) GetTargetRoas() float64 { @@ -1332,7 +1332,7 @@ type ApplyRecommendationOperation_TextAdParameters struct { func (x *ApplyRecommendationOperation_TextAdParameters) Reset() { *x = ApplyRecommendationOperation_TextAdParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1344,7 +1344,7 @@ func (x *ApplyRecommendationOperation_TextAdParameters) String() string { func (*ApplyRecommendationOperation_TextAdParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TextAdParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1357,7 +1357,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 2} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 2} } func (x *ApplyRecommendationOperation_TextAdParameters) GetAd() *resources.Ad { @@ -1373,7 +1373,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.v21.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.v22.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"` @@ -1383,7 +1383,7 @@ type ApplyRecommendationOperation_KeywordParameters struct { func (x *ApplyRecommendationOperation_KeywordParameters) Reset() { *x = ApplyRecommendationOperation_KeywordParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1395,7 +1395,7 @@ func (x *ApplyRecommendationOperation_KeywordParameters) String() string { func (*ApplyRecommendationOperation_KeywordParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_KeywordParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1408,7 +1408,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 3} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 3} } func (x *ApplyRecommendationOperation_KeywordParameters) GetAdGroup() string { @@ -1446,7 +1446,7 @@ type ApplyRecommendationOperation_TargetCpaOptInParameters struct { func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) Reset() { *x = ApplyRecommendationOperation_TargetCpaOptInParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[12] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1458,7 +1458,7 @@ func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) String() string func (*ApplyRecommendationOperation_TargetCpaOptInParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[12] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[12] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1471,7 +1471,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 4} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 4} } func (x *ApplyRecommendationOperation_TargetCpaOptInParameters) GetTargetCpaMicros() int64 { @@ -1503,7 +1503,7 @@ type ApplyRecommendationOperation_TargetRoasOptInParameters struct { func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) Reset() { *x = ApplyRecommendationOperation_TargetRoasOptInParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[13] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1515,7 +1515,7 @@ func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) String() string func (*ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[13] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[13] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1528,7 +1528,7 @@ func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_TargetRoasOptInParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_TargetRoasOptInParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 5} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 5} } func (x *ApplyRecommendationOperation_TargetRoasOptInParameters) GetTargetRoas() float64 { @@ -1556,7 +1556,7 @@ type ApplyRecommendationOperation_CalloutExtensionParameters struct { func (x *ApplyRecommendationOperation_CalloutExtensionParameters) Reset() { *x = ApplyRecommendationOperation_CalloutExtensionParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[14] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1568,7 +1568,7 @@ func (x *ApplyRecommendationOperation_CalloutExtensionParameters) String() strin func (*ApplyRecommendationOperation_CalloutExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CalloutExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[14] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[14] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1581,7 +1581,7 @@ func (x *ApplyRecommendationOperation_CalloutExtensionParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_CalloutExtensionParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_CalloutExtensionParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 6} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 6} } func (x *ApplyRecommendationOperation_CalloutExtensionParameters) GetCalloutExtensions() []*common.CalloutFeedItem { @@ -1602,7 +1602,7 @@ type ApplyRecommendationOperation_CallExtensionParameters struct { func (x *ApplyRecommendationOperation_CallExtensionParameters) Reset() { *x = ApplyRecommendationOperation_CallExtensionParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[15] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1614,7 +1614,7 @@ func (x *ApplyRecommendationOperation_CallExtensionParameters) String() string { func (*ApplyRecommendationOperation_CallExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CallExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[15] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[15] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1627,7 +1627,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 7} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 7} } func (x *ApplyRecommendationOperation_CallExtensionParameters) GetCallExtensions() []*common.CallFeedItem { @@ -1648,7 +1648,7 @@ type ApplyRecommendationOperation_SitelinkExtensionParameters struct { func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) Reset() { *x = ApplyRecommendationOperation_SitelinkExtensionParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[16] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1660,7 +1660,7 @@ func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) String() stri func (*ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[16] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[16] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1673,7 +1673,7 @@ func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) ProtoReflect( // Deprecated: Use ApplyRecommendationOperation_SitelinkExtensionParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_SitelinkExtensionParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 8} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 8} } func (x *ApplyRecommendationOperation_SitelinkExtensionParameters) GetSitelinkExtensions() []*common.SitelinkFeedItem { @@ -1694,7 +1694,7 @@ type ApplyRecommendationOperation_CalloutAssetParameters struct { func (x *ApplyRecommendationOperation_CalloutAssetParameters) Reset() { *x = ApplyRecommendationOperation_CalloutAssetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[17] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1706,7 +1706,7 @@ func (x *ApplyRecommendationOperation_CalloutAssetParameters) String() string { func (*ApplyRecommendationOperation_CalloutAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CalloutAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[17] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[17] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1719,7 +1719,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 9} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 9} } func (x *ApplyRecommendationOperation_CalloutAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1740,7 +1740,7 @@ type ApplyRecommendationOperation_CallAssetParameters struct { func (x *ApplyRecommendationOperation_CallAssetParameters) Reset() { *x = ApplyRecommendationOperation_CallAssetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[18] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1752,7 +1752,7 @@ func (x *ApplyRecommendationOperation_CallAssetParameters) String() string { func (*ApplyRecommendationOperation_CallAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_CallAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[18] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[18] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1765,7 +1765,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 10} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 10} } func (x *ApplyRecommendationOperation_CallAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1786,7 +1786,7 @@ type ApplyRecommendationOperation_SitelinkAssetParameters struct { func (x *ApplyRecommendationOperation_SitelinkAssetParameters) Reset() { *x = ApplyRecommendationOperation_SitelinkAssetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[19] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1798,7 +1798,7 @@ func (x *ApplyRecommendationOperation_SitelinkAssetParameters) String() string { func (*ApplyRecommendationOperation_SitelinkAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_SitelinkAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[19] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[19] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1811,7 +1811,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 11} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 11} } func (x *ApplyRecommendationOperation_SitelinkAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -1832,7 +1832,7 @@ type ApplyRecommendationOperation_RaiseTargetCpaParameters struct { func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) Reset() { *x = ApplyRecommendationOperation_RaiseTargetCpaParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[20] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1844,7 +1844,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) String() string func (*ApplyRecommendationOperation_RaiseTargetCpaParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[20] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[20] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1857,7 +1857,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 12} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 12} } func (x *ApplyRecommendationOperation_RaiseTargetCpaParameters) GetTargetCpaMultiplier() float64 { @@ -1878,7 +1878,7 @@ type ApplyRecommendationOperation_LowerTargetRoasParameters struct { func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) Reset() { *x = ApplyRecommendationOperation_LowerTargetRoasParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[21] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1890,7 +1890,7 @@ func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) String() string func (*ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[21] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[21] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1903,7 +1903,7 @@ func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_LowerTargetRoasParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_LowerTargetRoasParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 13} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 13} } func (x *ApplyRecommendationOperation_LowerTargetRoasParameters) GetTargetRoasMultiplier() float64 { @@ -1927,14 +1927,14 @@ 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.v21.services.ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope" json:"scope,omitempty"` + Scope ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope `protobuf:"varint,3,opt,name=scope,proto3,enum=google.ads.googleads.v22.services.ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope" json:"scope,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *ApplyRecommendationOperation_AdAssetApplyParameters) Reset() { *x = ApplyRecommendationOperation_AdAssetApplyParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[22] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -1946,7 +1946,7 @@ func (x *ApplyRecommendationOperation_AdAssetApplyParameters) String() string { func (*ApplyRecommendationOperation_AdAssetApplyParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_AdAssetApplyParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[22] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[22] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -1959,7 +1959,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 14} } func (x *ApplyRecommendationOperation_AdAssetApplyParameters) GetNewAssets() []*resources.Asset { @@ -1995,7 +1995,7 @@ type ApplyRecommendationOperation_MoveUnusedBudgetParameters struct { func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) Reset() { *x = ApplyRecommendationOperation_MoveUnusedBudgetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[23] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2007,7 +2007,7 @@ func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) String() strin func (*ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[23] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[23] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2020,7 +2020,7 @@ func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) ProtoReflect() // Deprecated: Use ApplyRecommendationOperation_MoveUnusedBudgetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_MoveUnusedBudgetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 15} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 15} } func (x *ApplyRecommendationOperation_MoveUnusedBudgetParameters) GetBudgetMicrosToMove() int64 { @@ -2042,7 +2042,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters struct { func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[24] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2054,7 +2054,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) String( func (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[24] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[24] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2067,7 +2067,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 16} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 16} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters) GetUpdatedAd() *resources.Ad { @@ -2089,7 +2089,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[25] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2101,7 +2101,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParamet func (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[25] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[25] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2114,7 +2114,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParamet // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 17} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 17} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters) GetUpdatedAd() *resources.Ad { @@ -2135,7 +2135,7 @@ type ApplyRecommendationOperation_ResponsiveSearchAdParameters struct { func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) Reset() { *x = ApplyRecommendationOperation_ResponsiveSearchAdParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[26] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2147,7 +2147,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) String() str func (*ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[26] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[26] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2160,7 +2160,7 @@ func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) ProtoReflect // Deprecated: Use ApplyRecommendationOperation_ResponsiveSearchAdParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ResponsiveSearchAdParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 18} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 18} } func (x *ApplyRecommendationOperation_ResponsiveSearchAdParameters) GetAd() *resources.Ad { @@ -2184,7 +2184,7 @@ type ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters struct { func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) Reset() { *x = ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[27] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2196,7 +2196,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) String( func (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[27] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[27] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2209,7 +2209,7 @@ func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 19} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 19} } func (x *ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters) GetTargetMultiplier() float64 { @@ -2230,7 +2230,7 @@ type ApplyRecommendationOperation_UseBroadMatchKeywordParameters struct { func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) Reset() { *x = ApplyRecommendationOperation_UseBroadMatchKeywordParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[28] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2242,7 +2242,7 @@ func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) String() s func (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[28] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[28] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2255,7 +2255,7 @@ func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) ProtoRefle // Deprecated: Use ApplyRecommendationOperation_UseBroadMatchKeywordParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 20} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 20} } func (x *ApplyRecommendationOperation_UseBroadMatchKeywordParameters) GetNewBudgetAmountMicros() int64 { @@ -2278,7 +2278,7 @@ type ApplyRecommendationOperation_ForecastingSetTargetCpaParameters struct { func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) Reset() { *x = ApplyRecommendationOperation_ForecastingSetTargetCpaParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[29] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2290,7 +2290,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) String( func (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[29] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[29] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2303,7 +2303,7 @@ func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) ProtoRe // Deprecated: Use ApplyRecommendationOperation_ForecastingSetTargetCpaParameters.ProtoReflect.Descriptor instead. func (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 21} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 21} } func (x *ApplyRecommendationOperation_ForecastingSetTargetCpaParameters) GetTargetCpaMicros() int64 { @@ -2336,7 +2336,7 @@ type ApplyRecommendationOperation_LeadFormAssetParameters struct { func (x *ApplyRecommendationOperation_LeadFormAssetParameters) Reset() { *x = ApplyRecommendationOperation_LeadFormAssetParameters{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[30] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2348,7 +2348,7 @@ func (x *ApplyRecommendationOperation_LeadFormAssetParameters) String() string { func (*ApplyRecommendationOperation_LeadFormAssetParameters) ProtoMessage() {} func (x *ApplyRecommendationOperation_LeadFormAssetParameters) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[30] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[30] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2361,7 +2361,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{1, 22} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{1, 22} } func (x *ApplyRecommendationOperation_LeadFormAssetParameters) GetAdAssetApplyParameters() *ApplyRecommendationOperation_AdAssetApplyParameters { @@ -2389,7 +2389,7 @@ type DismissRecommendationRequest_DismissRecommendationOperation struct { func (x *DismissRecommendationRequest_DismissRecommendationOperation) Reset() { *x = DismissRecommendationRequest_DismissRecommendationOperation{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[31] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2401,7 +2401,7 @@ func (x *DismissRecommendationRequest_DismissRecommendationOperation) String() s func (*DismissRecommendationRequest_DismissRecommendationOperation) ProtoMessage() {} func (x *DismissRecommendationRequest_DismissRecommendationOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[31] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[31] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2414,7 +2414,7 @@ func (x *DismissRecommendationRequest_DismissRecommendationOperation) ProtoRefle // Deprecated: Use DismissRecommendationRequest_DismissRecommendationOperation.ProtoReflect.Descriptor instead. func (*DismissRecommendationRequest_DismissRecommendationOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{4, 0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{4, 0} } func (x *DismissRecommendationRequest_DismissRecommendationOperation) GetResourceName() string { @@ -2435,7 +2435,7 @@ type DismissRecommendationResponse_DismissRecommendationResult struct { func (x *DismissRecommendationResponse_DismissRecommendationResult) Reset() { *x = DismissRecommendationResponse_DismissRecommendationResult{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[32] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2447,7 +2447,7 @@ func (x *DismissRecommendationResponse_DismissRecommendationResult) String() str func (*DismissRecommendationResponse_DismissRecommendationResult) ProtoMessage() {} func (x *DismissRecommendationResponse_DismissRecommendationResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[32] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[32] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2460,7 +2460,7 @@ func (x *DismissRecommendationResponse_DismissRecommendationResult) ProtoReflect // Deprecated: Use DismissRecommendationResponse_DismissRecommendationResult.ProtoReflect.Descriptor instead. func (*DismissRecommendationResponse_DismissRecommendationResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{5, 0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{5, 0} } func (x *DismissRecommendationResponse_DismissRecommendationResult) GetResourceName() string { @@ -2479,7 +2479,7 @@ type GenerateRecommendationsRequest_BiddingInfo struct { // CAMPAIGN_BUDGET, 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.v21.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.v22.enums.BiddingStrategyTypeEnum_BiddingStrategyType,oneof" json:"bidding_strategy_type,omitempty"` // Optional details related to the bidding_strategy_type. // // Types that are valid to be assigned to BiddingStrategyTargetInfo: @@ -2494,7 +2494,7 @@ type GenerateRecommendationsRequest_BiddingInfo struct { func (x *GenerateRecommendationsRequest_BiddingInfo) Reset() { *x = GenerateRecommendationsRequest_BiddingInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[33] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2506,7 +2506,7 @@ func (x *GenerateRecommendationsRequest_BiddingInfo) String() string { func (*GenerateRecommendationsRequest_BiddingInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_BiddingInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[33] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[33] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2519,7 +2519,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 0} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 0} } func (x *GenerateRecommendationsRequest_BiddingInfo) GetBiddingStrategyType() enums.BiddingStrategyTypeEnum_BiddingStrategyType { @@ -2604,7 +2604,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.v21.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.v22.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: @@ -2618,7 +2618,7 @@ type GenerateRecommendationsRequest_AdGroupInfo struct { func (x *GenerateRecommendationsRequest_AdGroupInfo) Reset() { *x = GenerateRecommendationsRequest_AdGroupInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[34] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2630,7 +2630,7 @@ func (x *GenerateRecommendationsRequest_AdGroupInfo) String() string { func (*GenerateRecommendationsRequest_AdGroupInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_AdGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[34] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[34] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2643,7 +2643,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 1} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 1} } func (x *GenerateRecommendationsRequest_AdGroupInfo) GetAdGroupType() enums.AdGroupTypeEnum_AdGroupType { @@ -2674,7 +2674,7 @@ type GenerateRecommendationsRequest_SeedInfo struct { func (x *GenerateRecommendationsRequest_SeedInfo) Reset() { *x = GenerateRecommendationsRequest_SeedInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[35] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2686,7 +2686,7 @@ func (x *GenerateRecommendationsRequest_SeedInfo) String() string { func (*GenerateRecommendationsRequest_SeedInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_SeedInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[35] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[35] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2699,7 +2699,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_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 2} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 2} } func (x *GenerateRecommendationsRequest_SeedInfo) GetUrlSeed() string { @@ -2730,7 +2730,7 @@ type GenerateRecommendationsRequest_BudgetInfo struct { func (x *GenerateRecommendationsRequest_BudgetInfo) Reset() { *x = GenerateRecommendationsRequest_BudgetInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[36] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2742,7 +2742,7 @@ func (x *GenerateRecommendationsRequest_BudgetInfo) String() string { func (*GenerateRecommendationsRequest_BudgetInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_BudgetInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[36] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[36] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2755,7 +2755,7 @@ func (x *GenerateRecommendationsRequest_BudgetInfo) ProtoReflect() protoreflect. // Deprecated: Use GenerateRecommendationsRequest_BudgetInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_BudgetInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 3} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 3} } func (x *GenerateRecommendationsRequest_BudgetInfo) GetCurrentBudget() int64 { @@ -2789,7 +2789,7 @@ type GenerateRecommendationsRequest_AssetGroupInfo struct { func (x *GenerateRecommendationsRequest_AssetGroupInfo) Reset() { *x = GenerateRecommendationsRequest_AssetGroupInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[37] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2801,7 +2801,7 @@ func (x *GenerateRecommendationsRequest_AssetGroupInfo) String() string { func (*GenerateRecommendationsRequest_AssetGroupInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_AssetGroupInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[37] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[37] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2814,7 +2814,7 @@ func (x *GenerateRecommendationsRequest_AssetGroupInfo) ProtoReflect() protorefl // Deprecated: Use GenerateRecommendationsRequest_AssetGroupInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_AssetGroupInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 4} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 4} } func (x *GenerateRecommendationsRequest_AssetGroupInfo) GetFinalUrl() string { @@ -2844,7 +2844,7 @@ type GenerateRecommendationsRequest_TargetImpressionShareInfo struct { // Required. The targeted location on the search results page. // This is required for campaigns where the AdvertisingChannelType is SEARCH // and the bidding strategy type is TARGET_IMPRESSION_SHARE. - Location *enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation,oneof" json:"location,omitempty"` + Location *enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation `protobuf:"varint,1,opt,name=location,proto3,enum=google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation,oneof" json:"location,omitempty"` // Required. The chosen fraction of targeted impression share in micros. For // example, 1% equals 10,000. It must be a value between 1 and 1,000,000. // This is required for campaigns with an AdvertisingChannelType of SEARCH @@ -2860,7 +2860,7 @@ type GenerateRecommendationsRequest_TargetImpressionShareInfo struct { func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) Reset() { *x = GenerateRecommendationsRequest_TargetImpressionShareInfo{} - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[38] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -2872,7 +2872,7 @@ func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) String() stri func (*GenerateRecommendationsRequest_TargetImpressionShareInfo) ProtoMessage() {} func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[38] + mi := &file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[38] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -2885,7 +2885,7 @@ func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) ProtoReflect( // Deprecated: Use GenerateRecommendationsRequest_TargetImpressionShareInfo.ProtoReflect.Descriptor instead. func (*GenerateRecommendationsRequest_TargetImpressionShareInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP(), []int{6, 5} + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP(), []int{6, 5} } func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) GetLocation() enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation { @@ -2909,56 +2909,56 @@ func (x *GenerateRecommendationsRequest_TargetImpressionShareInfo) GetMaxCpcBidC return 0 } -var File_google_ads_googleads_v21_services_recommendation_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_recommendation_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_recommendation_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x64, 0x76, 0x65, 0x72, 0x74, + 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x62, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x6b, 0x65, 0x79, 0x77, 0x6f, + 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x45, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, - 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x74, 0x61, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x2b, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x64, 0x73, - 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x72, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -2976,7 +2976,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -2993,21 +2993,21 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x32, 0x32, 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, 0x74, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52, 0x0e, 0x63, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3015,7 +3015,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x4f, 0x70, 0x74, 0x49, 0x6e, 0x50, 0x61, 0x72, 0x61, @@ -3023,7 +3023,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x43, 0x70, 0x61, 0x4f, 0x70, 0x74, 0x49, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3032,7 +3032,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x74, 0x49, 0x6e, 0x12, 0x89, 0x01, 0x0a, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3041,7 +3041,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, + 0x76, 0x32, 0x32, 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, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, @@ -3049,7 +3049,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x6f, 0x6e, 0x12, 0x8c, 0x01, 0x0a, 0x12, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3058,7 +3058,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x6e, 0x12, 0x8a, 0x01, 0x0a, 0x12, 0x6d, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3067,7 +3067,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x01, 0x0a, 0x14, 0x72, 0x65, 0x73, 0x70, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3076,7 +3076,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x64, 0x12, 0x97, 0x01, 0x0a, 0x17, 0x75, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3086,7 +3086,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3097,7 +3097,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x61, 0x72, 0x63, 0x68, 0x5f, 0x61, 0x64, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3109,7 +3109,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x65, 0x5f, 0x74, 0x61, 0x72, 0x67, 0x65, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3119,7 +3119,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x1b, 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3129,14 +3129,14 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, + 0x2e, 0x76, 0x32, 0x32, 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, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x48, 0x00, 0x52, 0x0c, 0x63, 0x61, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3144,7 +3144,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x6c, 0x6c, 0x41, 0x73, 0x73, 0x65, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3152,7 +3152,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x65, 0x6c, 0x69, 0x6e, 0x6b, 0x41, 0x73, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3161,7 +3161,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x61, 0x12, 0x87, 0x01, 0x0a, 0x11, 0x6c, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3170,7 +3170,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x66, 0x6f, 0x72, 0x65, 0x63, 0x61, 0x73, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3180,7 +3180,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, + 0x32, 0x32, 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, 0x70, 0x61, @@ -3188,7 +3188,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x74, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3197,7 +3197,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x61, 0x72, 0x67, 0x65, 0x74, 0x52, 0x6f, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3226,14 +3226,14 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x75, 0x70, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x48, 0x00, 0x52, 0x07, 0x61, 0x64, 0x47, 0x72, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3273,14 +3273,14 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x61, 0x6c, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x45, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69, 0x6f, 0x6e, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 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, 0x32, 0x31, 0x2e, 0x63, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3288,7 +3288,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x72, 0x73, 0x12, 0x62, 0x0a, 0x13, 0x73, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3296,7 +3296,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x73, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3308,7 +3308,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x70, 0x70, 0x6c, 0x79, + 0x32, 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, @@ -3319,7 +3319,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3340,14 +3340,14 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3369,20 +3369,20 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x6f, 0x76, 0x65, 0x41, 0x64, 0x53, 0x74, 0x72, 0x65, 0x6e, 0x67, 0x74, 0x68, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3416,7 +3416,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3436,7 +3436,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x64, 0x61, 0x74, 0x69, 0x6f, 0x6e, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3458,7 +3458,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x61, 0x74, 0x69, 0x6f, @@ -3475,7 +3475,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3497,7 +3497,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x02, 0x52, 0x13, 0x72, 0x65, 0x63, 0x6f, 0x6d, @@ -3505,7 +3505,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3519,7 +3519,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x43, 0x6f, 0x6e, 0x76, 0x65, 0x72, + 0x76, 0x32, 0x32, 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, @@ -3528,7 +3528,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, + 0x2e, 0x76, 0x32, 0x32, 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, 0x6f, 0x42, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x02, 0x52, @@ -3536,21 +3536,21 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x03, 0xe0, 0x41, 0x01, 0x48, 0x03, 0x52, 0x08, 0x73, 0x65, 0x65, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x88, 0x01, 0x01, 0x12, 0x77, 0x0a, 0x0b, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x09, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x75, 0x64, 0x67, 0x65, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x42, 0x03, 0xe0, @@ -3579,7 +3579,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x6f, 0x63, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x49, 0x64, 0x73, 0x12, 0x7f, 0x0a, 0x10, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x11, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, @@ -3602,7 +3602,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x48, 0x01, 0x52, @@ -3616,7 +3616,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x67, 0x65, 0x74, 0x5f, 0x69, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x18, 0x04, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x54, 0x61, 0x72, 0x67, 0x65, 0x74, 0x49, 0x6d, 0x70, 0x72, 0x65, 0x73, 0x73, @@ -3630,13 +3630,13 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x72, 0x6f, 0x75, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -3665,7 +3665,7 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x61, 0x72, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x85, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x54, 0x61, 0x72, 0x67, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x68, @@ -3705,57 +3705,57 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 0x70, 0x6f, 0x6e, 0x73, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, + 0xd3, 0xe4, 0x93, 0x02, 0x39, 0x3a, 0x01, 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, 0x73, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x44, 0x69, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, + 0x36, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, + 0x32, 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, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x72, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x37, 0x2f, 0x76, 0x32, 0x32, 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, @@ -3765,160 +3765,160 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1a, 0x52, 0x65, 0x63, + 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_recommendation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_recommendation_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_recommendation_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_recommendation_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) -var file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 39) -var file_google_ads_googleads_v21_services_recommendation_service_proto_goTypes = []any{ - (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope)(0), // 0: google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope - (*ApplyRecommendationRequest)(nil), // 1: google.ads.googleads.v21.services.ApplyRecommendationRequest - (*ApplyRecommendationOperation)(nil), // 2: google.ads.googleads.v21.services.ApplyRecommendationOperation - (*ApplyRecommendationResponse)(nil), // 3: google.ads.googleads.v21.services.ApplyRecommendationResponse - (*ApplyRecommendationResult)(nil), // 4: google.ads.googleads.v21.services.ApplyRecommendationResult - (*DismissRecommendationRequest)(nil), // 5: google.ads.googleads.v21.services.DismissRecommendationRequest - (*DismissRecommendationResponse)(nil), // 6: google.ads.googleads.v21.services.DismissRecommendationResponse - (*GenerateRecommendationsRequest)(nil), // 7: google.ads.googleads.v21.services.GenerateRecommendationsRequest - (*GenerateRecommendationsResponse)(nil), // 8: google.ads.googleads.v21.services.GenerateRecommendationsResponse - (*ApplyRecommendationOperation_CampaignBudgetParameters)(nil), // 9: google.ads.googleads.v21.services.ApplyRecommendationOperation.CampaignBudgetParameters - (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters)(nil), // 10: google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - (*ApplyRecommendationOperation_TextAdParameters)(nil), // 11: google.ads.googleads.v21.services.ApplyRecommendationOperation.TextAdParameters - (*ApplyRecommendationOperation_KeywordParameters)(nil), // 12: google.ads.googleads.v21.services.ApplyRecommendationOperation.KeywordParameters - (*ApplyRecommendationOperation_TargetCpaOptInParameters)(nil), // 13: google.ads.googleads.v21.services.ApplyRecommendationOperation.TargetCpaOptInParameters - (*ApplyRecommendationOperation_TargetRoasOptInParameters)(nil), // 14: google.ads.googleads.v21.services.ApplyRecommendationOperation.TargetRoasOptInParameters - (*ApplyRecommendationOperation_CalloutExtensionParameters)(nil), // 15: google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutExtensionParameters - (*ApplyRecommendationOperation_CallExtensionParameters)(nil), // 16: google.ads.googleads.v21.services.ApplyRecommendationOperation.CallExtensionParameters - (*ApplyRecommendationOperation_SitelinkExtensionParameters)(nil), // 17: google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkExtensionParameters - (*ApplyRecommendationOperation_CalloutAssetParameters)(nil), // 18: google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutAssetParameters - (*ApplyRecommendationOperation_CallAssetParameters)(nil), // 19: google.ads.googleads.v21.services.ApplyRecommendationOperation.CallAssetParameters - (*ApplyRecommendationOperation_SitelinkAssetParameters)(nil), // 20: google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkAssetParameters - (*ApplyRecommendationOperation_RaiseTargetCpaParameters)(nil), // 21: google.ads.googleads.v21.services.ApplyRecommendationOperation.RaiseTargetCpaParameters - (*ApplyRecommendationOperation_LowerTargetRoasParameters)(nil), // 22: google.ads.googleads.v21.services.ApplyRecommendationOperation.LowerTargetRoasParameters - (*ApplyRecommendationOperation_AdAssetApplyParameters)(nil), // 23: google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters - (*ApplyRecommendationOperation_MoveUnusedBudgetParameters)(nil), // 24: google.ads.googleads.v21.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters)(nil), // 25: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters)(nil), // 26: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters - (*ApplyRecommendationOperation_ResponsiveSearchAdParameters)(nil), // 27: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters - (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters)(nil), // 28: google.ads.googleads.v21.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters - (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters)(nil), // 29: google.ads.googleads.v21.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters - (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters)(nil), // 30: google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - (*ApplyRecommendationOperation_LeadFormAssetParameters)(nil), // 31: google.ads.googleads.v21.services.ApplyRecommendationOperation.LeadFormAssetParameters - (*DismissRecommendationRequest_DismissRecommendationOperation)(nil), // 32: google.ads.googleads.v21.services.DismissRecommendationRequest.DismissRecommendationOperation - (*DismissRecommendationResponse_DismissRecommendationResult)(nil), // 33: google.ads.googleads.v21.services.DismissRecommendationResponse.DismissRecommendationResult - (*GenerateRecommendationsRequest_BiddingInfo)(nil), // 34: google.ads.googleads.v21.services.GenerateRecommendationsRequest.BiddingInfo - (*GenerateRecommendationsRequest_AdGroupInfo)(nil), // 35: google.ads.googleads.v21.services.GenerateRecommendationsRequest.AdGroupInfo - (*GenerateRecommendationsRequest_SeedInfo)(nil), // 36: google.ads.googleads.v21.services.GenerateRecommendationsRequest.SeedInfo - (*GenerateRecommendationsRequest_BudgetInfo)(nil), // 37: google.ads.googleads.v21.services.GenerateRecommendationsRequest.BudgetInfo - (*GenerateRecommendationsRequest_AssetGroupInfo)(nil), // 38: google.ads.googleads.v21.services.GenerateRecommendationsRequest.AssetGroupInfo - (*GenerateRecommendationsRequest_TargetImpressionShareInfo)(nil), // 39: google.ads.googleads.v21.services.GenerateRecommendationsRequest.TargetImpressionShareInfo + return file_google_ads_googleads_v22_services_recommendation_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_recommendation_service_proto_enumTypes = make([]protoimpl.EnumInfo, 1) +var file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes = make([]protoimpl.MessageInfo, 39) +var file_google_ads_googleads_v22_services_recommendation_service_proto_goTypes = []any{ + (ApplyRecommendationOperation_AdAssetApplyParameters_ApplyScope)(0), // 0: google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope + (*ApplyRecommendationRequest)(nil), // 1: google.ads.googleads.v22.services.ApplyRecommendationRequest + (*ApplyRecommendationOperation)(nil), // 2: google.ads.googleads.v22.services.ApplyRecommendationOperation + (*ApplyRecommendationResponse)(nil), // 3: google.ads.googleads.v22.services.ApplyRecommendationResponse + (*ApplyRecommendationResult)(nil), // 4: google.ads.googleads.v22.services.ApplyRecommendationResult + (*DismissRecommendationRequest)(nil), // 5: google.ads.googleads.v22.services.DismissRecommendationRequest + (*DismissRecommendationResponse)(nil), // 6: google.ads.googleads.v22.services.DismissRecommendationResponse + (*GenerateRecommendationsRequest)(nil), // 7: google.ads.googleads.v22.services.GenerateRecommendationsRequest + (*GenerateRecommendationsResponse)(nil), // 8: google.ads.googleads.v22.services.GenerateRecommendationsResponse + (*ApplyRecommendationOperation_CampaignBudgetParameters)(nil), // 9: google.ads.googleads.v22.services.ApplyRecommendationOperation.CampaignBudgetParameters + (*ApplyRecommendationOperation_ForecastingSetTargetRoasParameters)(nil), // 10: google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + (*ApplyRecommendationOperation_TextAdParameters)(nil), // 11: google.ads.googleads.v22.services.ApplyRecommendationOperation.TextAdParameters + (*ApplyRecommendationOperation_KeywordParameters)(nil), // 12: google.ads.googleads.v22.services.ApplyRecommendationOperation.KeywordParameters + (*ApplyRecommendationOperation_TargetCpaOptInParameters)(nil), // 13: google.ads.googleads.v22.services.ApplyRecommendationOperation.TargetCpaOptInParameters + (*ApplyRecommendationOperation_TargetRoasOptInParameters)(nil), // 14: google.ads.googleads.v22.services.ApplyRecommendationOperation.TargetRoasOptInParameters + (*ApplyRecommendationOperation_CalloutExtensionParameters)(nil), // 15: google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutExtensionParameters + (*ApplyRecommendationOperation_CallExtensionParameters)(nil), // 16: google.ads.googleads.v22.services.ApplyRecommendationOperation.CallExtensionParameters + (*ApplyRecommendationOperation_SitelinkExtensionParameters)(nil), // 17: google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkExtensionParameters + (*ApplyRecommendationOperation_CalloutAssetParameters)(nil), // 18: google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutAssetParameters + (*ApplyRecommendationOperation_CallAssetParameters)(nil), // 19: google.ads.googleads.v22.services.ApplyRecommendationOperation.CallAssetParameters + (*ApplyRecommendationOperation_SitelinkAssetParameters)(nil), // 20: google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkAssetParameters + (*ApplyRecommendationOperation_RaiseTargetCpaParameters)(nil), // 21: google.ads.googleads.v22.services.ApplyRecommendationOperation.RaiseTargetCpaParameters + (*ApplyRecommendationOperation_LowerTargetRoasParameters)(nil), // 22: google.ads.googleads.v22.services.ApplyRecommendationOperation.LowerTargetRoasParameters + (*ApplyRecommendationOperation_AdAssetApplyParameters)(nil), // 23: google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters + (*ApplyRecommendationOperation_MoveUnusedBudgetParameters)(nil), // 24: google.ads.googleads.v22.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdAssetParameters)(nil), // 25: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdImproveAdStrengthParameters)(nil), // 26: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters + (*ApplyRecommendationOperation_ResponsiveSearchAdParameters)(nil), // 27: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters + (*ApplyRecommendationOperation_RaiseTargetCpaBidTooLowParameters)(nil), // 28: google.ads.googleads.v22.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters + (*ApplyRecommendationOperation_UseBroadMatchKeywordParameters)(nil), // 29: google.ads.googleads.v22.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters + (*ApplyRecommendationOperation_ForecastingSetTargetCpaParameters)(nil), // 30: google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + (*ApplyRecommendationOperation_LeadFormAssetParameters)(nil), // 31: google.ads.googleads.v22.services.ApplyRecommendationOperation.LeadFormAssetParameters + (*DismissRecommendationRequest_DismissRecommendationOperation)(nil), // 32: google.ads.googleads.v22.services.DismissRecommendationRequest.DismissRecommendationOperation + (*DismissRecommendationResponse_DismissRecommendationResult)(nil), // 33: google.ads.googleads.v22.services.DismissRecommendationResponse.DismissRecommendationResult + (*GenerateRecommendationsRequest_BiddingInfo)(nil), // 34: google.ads.googleads.v22.services.GenerateRecommendationsRequest.BiddingInfo + (*GenerateRecommendationsRequest_AdGroupInfo)(nil), // 35: google.ads.googleads.v22.services.GenerateRecommendationsRequest.AdGroupInfo + (*GenerateRecommendationsRequest_SeedInfo)(nil), // 36: google.ads.googleads.v22.services.GenerateRecommendationsRequest.SeedInfo + (*GenerateRecommendationsRequest_BudgetInfo)(nil), // 37: google.ads.googleads.v22.services.GenerateRecommendationsRequest.BudgetInfo + (*GenerateRecommendationsRequest_AssetGroupInfo)(nil), // 38: google.ads.googleads.v22.services.GenerateRecommendationsRequest.AssetGroupInfo + (*GenerateRecommendationsRequest_TargetImpressionShareInfo)(nil), // 39: google.ads.googleads.v22.services.GenerateRecommendationsRequest.TargetImpressionShareInfo (*status.Status)(nil), // 40: google.rpc.Status - (enums.RecommendationTypeEnum_RecommendationType)(0), // 41: google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 42: google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 43: google.ads.googleads.v21.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - (*resources.Recommendation)(nil), // 44: google.ads.googleads.v21.resources.Recommendation - (*resources.Ad)(nil), // 45: google.ads.googleads.v21.resources.Ad - (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 46: google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - (*common.CalloutFeedItem)(nil), // 47: google.ads.googleads.v21.common.CalloutFeedItem - (*common.CallFeedItem)(nil), // 48: google.ads.googleads.v21.common.CallFeedItem - (*common.SitelinkFeedItem)(nil), // 49: google.ads.googleads.v21.common.SitelinkFeedItem - (*resources.Asset)(nil), // 50: google.ads.googleads.v21.resources.Asset - (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 51: google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - (enums.AdGroupTypeEnum_AdGroupType)(0), // 52: google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - (*common.KeywordInfo)(nil), // 53: google.ads.googleads.v21.common.KeywordInfo - (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 54: google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation -} -var file_google_ads_googleads_v21_services_recommendation_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.ApplyRecommendationRequest.operations:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation - 9, // 1: google.ads.googleads.v21.services.ApplyRecommendationOperation.campaign_budget:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.CampaignBudgetParameters - 11, // 2: google.ads.googleads.v21.services.ApplyRecommendationOperation.text_ad:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.TextAdParameters - 12, // 3: google.ads.googleads.v21.services.ApplyRecommendationOperation.keyword:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.KeywordParameters - 13, // 4: google.ads.googleads.v21.services.ApplyRecommendationOperation.target_cpa_opt_in:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.TargetCpaOptInParameters - 14, // 5: google.ads.googleads.v21.services.ApplyRecommendationOperation.target_roas_opt_in:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.TargetRoasOptInParameters - 15, // 6: google.ads.googleads.v21.services.ApplyRecommendationOperation.callout_extension:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutExtensionParameters - 16, // 7: google.ads.googleads.v21.services.ApplyRecommendationOperation.call_extension:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.CallExtensionParameters - 17, // 8: google.ads.googleads.v21.services.ApplyRecommendationOperation.sitelink_extension:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkExtensionParameters - 24, // 9: google.ads.googleads.v21.services.ApplyRecommendationOperation.move_unused_budget:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters - 27, // 10: google.ads.googleads.v21.services.ApplyRecommendationOperation.responsive_search_ad:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters - 29, // 11: google.ads.googleads.v21.services.ApplyRecommendationOperation.use_broad_match_keyword:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters - 25, // 12: google.ads.googleads.v21.services.ApplyRecommendationOperation.responsive_search_ad_asset:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters - 26, // 13: google.ads.googleads.v21.services.ApplyRecommendationOperation.responsive_search_ad_improve_ad_strength:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters - 28, // 14: google.ads.googleads.v21.services.ApplyRecommendationOperation.raise_target_cpa_bid_too_low:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters - 10, // 15: google.ads.googleads.v21.services.ApplyRecommendationOperation.forecasting_set_target_roas:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - 18, // 16: google.ads.googleads.v21.services.ApplyRecommendationOperation.callout_asset:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutAssetParameters - 19, // 17: google.ads.googleads.v21.services.ApplyRecommendationOperation.call_asset:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.CallAssetParameters - 20, // 18: google.ads.googleads.v21.services.ApplyRecommendationOperation.sitelink_asset:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkAssetParameters - 21, // 19: google.ads.googleads.v21.services.ApplyRecommendationOperation.raise_target_cpa:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.RaiseTargetCpaParameters - 22, // 20: google.ads.googleads.v21.services.ApplyRecommendationOperation.lower_target_roas:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.LowerTargetRoasParameters - 30, // 21: google.ads.googleads.v21.services.ApplyRecommendationOperation.forecasting_set_target_cpa:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - 30, // 22: google.ads.googleads.v21.services.ApplyRecommendationOperation.set_target_cpa:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters - 10, // 23: google.ads.googleads.v21.services.ApplyRecommendationOperation.set_target_roas:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters - 31, // 24: google.ads.googleads.v21.services.ApplyRecommendationOperation.lead_form_asset:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.LeadFormAssetParameters - 4, // 25: google.ads.googleads.v21.services.ApplyRecommendationResponse.results:type_name -> google.ads.googleads.v21.services.ApplyRecommendationResult - 40, // 26: google.ads.googleads.v21.services.ApplyRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status - 32, // 27: google.ads.googleads.v21.services.DismissRecommendationRequest.operations:type_name -> google.ads.googleads.v21.services.DismissRecommendationRequest.DismissRecommendationOperation - 33, // 28: google.ads.googleads.v21.services.DismissRecommendationResponse.results:type_name -> google.ads.googleads.v21.services.DismissRecommendationResponse.DismissRecommendationResult - 40, // 29: google.ads.googleads.v21.services.DismissRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status - 41, // 30: google.ads.googleads.v21.services.GenerateRecommendationsRequest.recommendation_types:type_name -> google.ads.googleads.v21.enums.RecommendationTypeEnum.RecommendationType - 42, // 31: google.ads.googleads.v21.services.GenerateRecommendationsRequest.advertising_channel_type:type_name -> google.ads.googleads.v21.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType - 43, // 32: google.ads.googleads.v21.services.GenerateRecommendationsRequest.conversion_tracking_status:type_name -> google.ads.googleads.v21.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus - 34, // 33: google.ads.googleads.v21.services.GenerateRecommendationsRequest.bidding_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.BiddingInfo - 35, // 34: google.ads.googleads.v21.services.GenerateRecommendationsRequest.ad_group_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.AdGroupInfo - 36, // 35: google.ads.googleads.v21.services.GenerateRecommendationsRequest.seed_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.SeedInfo - 37, // 36: google.ads.googleads.v21.services.GenerateRecommendationsRequest.budget_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.BudgetInfo - 38, // 37: google.ads.googleads.v21.services.GenerateRecommendationsRequest.asset_group_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.AssetGroupInfo - 44, // 38: google.ads.googleads.v21.services.GenerateRecommendationsResponse.recommendations:type_name -> google.ads.googleads.v21.resources.Recommendation - 45, // 39: google.ads.googleads.v21.services.ApplyRecommendationOperation.TextAdParameters.ad:type_name -> google.ads.googleads.v21.resources.Ad - 46, // 40: google.ads.googleads.v21.services.ApplyRecommendationOperation.KeywordParameters.match_type:type_name -> google.ads.googleads.v21.enums.KeywordMatchTypeEnum.KeywordMatchType - 47, // 41: google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutExtensionParameters.callout_extensions:type_name -> google.ads.googleads.v21.common.CalloutFeedItem - 48, // 42: google.ads.googleads.v21.services.ApplyRecommendationOperation.CallExtensionParameters.call_extensions:type_name -> google.ads.googleads.v21.common.CallFeedItem - 49, // 43: google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkExtensionParameters.sitelink_extensions:type_name -> google.ads.googleads.v21.common.SitelinkFeedItem - 23, // 44: google.ads.googleads.v21.services.ApplyRecommendationOperation.CalloutAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters - 23, // 45: google.ads.googleads.v21.services.ApplyRecommendationOperation.CallAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters - 23, // 46: google.ads.googleads.v21.services.ApplyRecommendationOperation.SitelinkAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters - 50, // 47: google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters.new_assets:type_name -> google.ads.googleads.v21.resources.Asset - 0, // 48: google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters.scope:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope - 45, // 49: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters.updated_ad:type_name -> google.ads.googleads.v21.resources.Ad - 45, // 50: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters.updated_ad:type_name -> google.ads.googleads.v21.resources.Ad - 45, // 51: google.ads.googleads.v21.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters.ad:type_name -> google.ads.googleads.v21.resources.Ad - 23, // 52: google.ads.googleads.v21.services.ApplyRecommendationOperation.LeadFormAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v21.services.ApplyRecommendationOperation.AdAssetApplyParameters - 51, // 53: google.ads.googleads.v21.services.GenerateRecommendationsRequest.BiddingInfo.bidding_strategy_type:type_name -> google.ads.googleads.v21.enums.BiddingStrategyTypeEnum.BiddingStrategyType - 39, // 54: google.ads.googleads.v21.services.GenerateRecommendationsRequest.BiddingInfo.target_impression_share_info:type_name -> google.ads.googleads.v21.services.GenerateRecommendationsRequest.TargetImpressionShareInfo - 52, // 55: google.ads.googleads.v21.services.GenerateRecommendationsRequest.AdGroupInfo.ad_group_type:type_name -> google.ads.googleads.v21.enums.AdGroupTypeEnum.AdGroupType - 53, // 56: google.ads.googleads.v21.services.GenerateRecommendationsRequest.AdGroupInfo.keywords:type_name -> google.ads.googleads.v21.common.KeywordInfo - 54, // 57: google.ads.googleads.v21.services.GenerateRecommendationsRequest.TargetImpressionShareInfo.location:type_name -> google.ads.googleads.v21.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation - 1, // 58: google.ads.googleads.v21.services.RecommendationService.ApplyRecommendation:input_type -> google.ads.googleads.v21.services.ApplyRecommendationRequest - 5, // 59: google.ads.googleads.v21.services.RecommendationService.DismissRecommendation:input_type -> google.ads.googleads.v21.services.DismissRecommendationRequest - 7, // 60: google.ads.googleads.v21.services.RecommendationService.GenerateRecommendations:input_type -> google.ads.googleads.v21.services.GenerateRecommendationsRequest - 3, // 61: google.ads.googleads.v21.services.RecommendationService.ApplyRecommendation:output_type -> google.ads.googleads.v21.services.ApplyRecommendationResponse - 6, // 62: google.ads.googleads.v21.services.RecommendationService.DismissRecommendation:output_type -> google.ads.googleads.v21.services.DismissRecommendationResponse - 8, // 63: google.ads.googleads.v21.services.RecommendationService.GenerateRecommendations:output_type -> google.ads.googleads.v21.services.GenerateRecommendationsResponse + (enums.RecommendationTypeEnum_RecommendationType)(0), // 41: google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + (enums.AdvertisingChannelTypeEnum_AdvertisingChannelType)(0), // 42: google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + (enums.ConversionTrackingStatusEnum_ConversionTrackingStatus)(0), // 43: google.ads.googleads.v22.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + (*resources.Recommendation)(nil), // 44: google.ads.googleads.v22.resources.Recommendation + (*resources.Ad)(nil), // 45: google.ads.googleads.v22.resources.Ad + (enums.KeywordMatchTypeEnum_KeywordMatchType)(0), // 46: google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + (*common.CalloutFeedItem)(nil), // 47: google.ads.googleads.v22.common.CalloutFeedItem + (*common.CallFeedItem)(nil), // 48: google.ads.googleads.v22.common.CallFeedItem + (*common.SitelinkFeedItem)(nil), // 49: google.ads.googleads.v22.common.SitelinkFeedItem + (*resources.Asset)(nil), // 50: google.ads.googleads.v22.resources.Asset + (enums.BiddingStrategyTypeEnum_BiddingStrategyType)(0), // 51: google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + (enums.AdGroupTypeEnum_AdGroupType)(0), // 52: google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + (*common.KeywordInfo)(nil), // 53: google.ads.googleads.v22.common.KeywordInfo + (enums.TargetImpressionShareLocationEnum_TargetImpressionShareLocation)(0), // 54: google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation +} +var file_google_ads_googleads_v22_services_recommendation_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.ApplyRecommendationRequest.operations:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation + 9, // 1: google.ads.googleads.v22.services.ApplyRecommendationOperation.campaign_budget:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.CampaignBudgetParameters + 11, // 2: google.ads.googleads.v22.services.ApplyRecommendationOperation.text_ad:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.TextAdParameters + 12, // 3: google.ads.googleads.v22.services.ApplyRecommendationOperation.keyword:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.KeywordParameters + 13, // 4: google.ads.googleads.v22.services.ApplyRecommendationOperation.target_cpa_opt_in:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.TargetCpaOptInParameters + 14, // 5: google.ads.googleads.v22.services.ApplyRecommendationOperation.target_roas_opt_in:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.TargetRoasOptInParameters + 15, // 6: google.ads.googleads.v22.services.ApplyRecommendationOperation.callout_extension:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutExtensionParameters + 16, // 7: google.ads.googleads.v22.services.ApplyRecommendationOperation.call_extension:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.CallExtensionParameters + 17, // 8: google.ads.googleads.v22.services.ApplyRecommendationOperation.sitelink_extension:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkExtensionParameters + 24, // 9: google.ads.googleads.v22.services.ApplyRecommendationOperation.move_unused_budget:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.MoveUnusedBudgetParameters + 27, // 10: google.ads.googleads.v22.services.ApplyRecommendationOperation.responsive_search_ad:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters + 29, // 11: google.ads.googleads.v22.services.ApplyRecommendationOperation.use_broad_match_keyword:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.UseBroadMatchKeywordParameters + 25, // 12: google.ads.googleads.v22.services.ApplyRecommendationOperation.responsive_search_ad_asset:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters + 26, // 13: google.ads.googleads.v22.services.ApplyRecommendationOperation.responsive_search_ad_improve_ad_strength:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters + 28, // 14: google.ads.googleads.v22.services.ApplyRecommendationOperation.raise_target_cpa_bid_too_low:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.RaiseTargetCpaBidTooLowParameters + 10, // 15: google.ads.googleads.v22.services.ApplyRecommendationOperation.forecasting_set_target_roas:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + 18, // 16: google.ads.googleads.v22.services.ApplyRecommendationOperation.callout_asset:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutAssetParameters + 19, // 17: google.ads.googleads.v22.services.ApplyRecommendationOperation.call_asset:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.CallAssetParameters + 20, // 18: google.ads.googleads.v22.services.ApplyRecommendationOperation.sitelink_asset:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkAssetParameters + 21, // 19: google.ads.googleads.v22.services.ApplyRecommendationOperation.raise_target_cpa:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.RaiseTargetCpaParameters + 22, // 20: google.ads.googleads.v22.services.ApplyRecommendationOperation.lower_target_roas:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.LowerTargetRoasParameters + 30, // 21: google.ads.googleads.v22.services.ApplyRecommendationOperation.forecasting_set_target_cpa:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + 30, // 22: google.ads.googleads.v22.services.ApplyRecommendationOperation.set_target_cpa:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetCpaParameters + 10, // 23: google.ads.googleads.v22.services.ApplyRecommendationOperation.set_target_roas:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.ForecastingSetTargetRoasParameters + 31, // 24: google.ads.googleads.v22.services.ApplyRecommendationOperation.lead_form_asset:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.LeadFormAssetParameters + 4, // 25: google.ads.googleads.v22.services.ApplyRecommendationResponse.results:type_name -> google.ads.googleads.v22.services.ApplyRecommendationResult + 40, // 26: google.ads.googleads.v22.services.ApplyRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status + 32, // 27: google.ads.googleads.v22.services.DismissRecommendationRequest.operations:type_name -> google.ads.googleads.v22.services.DismissRecommendationRequest.DismissRecommendationOperation + 33, // 28: google.ads.googleads.v22.services.DismissRecommendationResponse.results:type_name -> google.ads.googleads.v22.services.DismissRecommendationResponse.DismissRecommendationResult + 40, // 29: google.ads.googleads.v22.services.DismissRecommendationResponse.partial_failure_error:type_name -> google.rpc.Status + 41, // 30: google.ads.googleads.v22.services.GenerateRecommendationsRequest.recommendation_types:type_name -> google.ads.googleads.v22.enums.RecommendationTypeEnum.RecommendationType + 42, // 31: google.ads.googleads.v22.services.GenerateRecommendationsRequest.advertising_channel_type:type_name -> google.ads.googleads.v22.enums.AdvertisingChannelTypeEnum.AdvertisingChannelType + 43, // 32: google.ads.googleads.v22.services.GenerateRecommendationsRequest.conversion_tracking_status:type_name -> google.ads.googleads.v22.enums.ConversionTrackingStatusEnum.ConversionTrackingStatus + 34, // 33: google.ads.googleads.v22.services.GenerateRecommendationsRequest.bidding_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.BiddingInfo + 35, // 34: google.ads.googleads.v22.services.GenerateRecommendationsRequest.ad_group_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.AdGroupInfo + 36, // 35: google.ads.googleads.v22.services.GenerateRecommendationsRequest.seed_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.SeedInfo + 37, // 36: google.ads.googleads.v22.services.GenerateRecommendationsRequest.budget_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.BudgetInfo + 38, // 37: google.ads.googleads.v22.services.GenerateRecommendationsRequest.asset_group_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.AssetGroupInfo + 44, // 38: google.ads.googleads.v22.services.GenerateRecommendationsResponse.recommendations:type_name -> google.ads.googleads.v22.resources.Recommendation + 45, // 39: google.ads.googleads.v22.services.ApplyRecommendationOperation.TextAdParameters.ad:type_name -> google.ads.googleads.v22.resources.Ad + 46, // 40: google.ads.googleads.v22.services.ApplyRecommendationOperation.KeywordParameters.match_type:type_name -> google.ads.googleads.v22.enums.KeywordMatchTypeEnum.KeywordMatchType + 47, // 41: google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutExtensionParameters.callout_extensions:type_name -> google.ads.googleads.v22.common.CalloutFeedItem + 48, // 42: google.ads.googleads.v22.services.ApplyRecommendationOperation.CallExtensionParameters.call_extensions:type_name -> google.ads.googleads.v22.common.CallFeedItem + 49, // 43: google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkExtensionParameters.sitelink_extensions:type_name -> google.ads.googleads.v22.common.SitelinkFeedItem + 23, // 44: google.ads.googleads.v22.services.ApplyRecommendationOperation.CalloutAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters + 23, // 45: google.ads.googleads.v22.services.ApplyRecommendationOperation.CallAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters + 23, // 46: google.ads.googleads.v22.services.ApplyRecommendationOperation.SitelinkAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters + 50, // 47: google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters.new_assets:type_name -> google.ads.googleads.v22.resources.Asset + 0, // 48: google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters.scope:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters.ApplyScope + 45, // 49: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdAssetParameters.updated_ad:type_name -> google.ads.googleads.v22.resources.Ad + 45, // 50: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdImproveAdStrengthParameters.updated_ad:type_name -> google.ads.googleads.v22.resources.Ad + 45, // 51: google.ads.googleads.v22.services.ApplyRecommendationOperation.ResponsiveSearchAdParameters.ad:type_name -> google.ads.googleads.v22.resources.Ad + 23, // 52: google.ads.googleads.v22.services.ApplyRecommendationOperation.LeadFormAssetParameters.ad_asset_apply_parameters:type_name -> google.ads.googleads.v22.services.ApplyRecommendationOperation.AdAssetApplyParameters + 51, // 53: google.ads.googleads.v22.services.GenerateRecommendationsRequest.BiddingInfo.bidding_strategy_type:type_name -> google.ads.googleads.v22.enums.BiddingStrategyTypeEnum.BiddingStrategyType + 39, // 54: google.ads.googleads.v22.services.GenerateRecommendationsRequest.BiddingInfo.target_impression_share_info:type_name -> google.ads.googleads.v22.services.GenerateRecommendationsRequest.TargetImpressionShareInfo + 52, // 55: google.ads.googleads.v22.services.GenerateRecommendationsRequest.AdGroupInfo.ad_group_type:type_name -> google.ads.googleads.v22.enums.AdGroupTypeEnum.AdGroupType + 53, // 56: google.ads.googleads.v22.services.GenerateRecommendationsRequest.AdGroupInfo.keywords:type_name -> google.ads.googleads.v22.common.KeywordInfo + 54, // 57: google.ads.googleads.v22.services.GenerateRecommendationsRequest.TargetImpressionShareInfo.location:type_name -> google.ads.googleads.v22.enums.TargetImpressionShareLocationEnum.TargetImpressionShareLocation + 1, // 58: google.ads.googleads.v22.services.RecommendationService.ApplyRecommendation:input_type -> google.ads.googleads.v22.services.ApplyRecommendationRequest + 5, // 59: google.ads.googleads.v22.services.RecommendationService.DismissRecommendation:input_type -> google.ads.googleads.v22.services.DismissRecommendationRequest + 7, // 60: google.ads.googleads.v22.services.RecommendationService.GenerateRecommendations:input_type -> google.ads.googleads.v22.services.GenerateRecommendationsRequest + 3, // 61: google.ads.googleads.v22.services.RecommendationService.ApplyRecommendation:output_type -> google.ads.googleads.v22.services.ApplyRecommendationResponse + 6, // 62: google.ads.googleads.v22.services.RecommendationService.DismissRecommendation:output_type -> google.ads.googleads.v22.services.DismissRecommendationResponse + 8, // 63: google.ads.googleads.v22.services.RecommendationService.GenerateRecommendations:output_type -> google.ads.googleads.v22.services.GenerateRecommendationsResponse 61, // [61:64] is the sub-list for method output_type 58, // [58:61] is the sub-list for method input_type 58, // [58:58] is the sub-list for extension type_name @@ -3926,12 +3926,12 @@ var file_google_ads_googleads_v21_services_recommendation_service_proto_depIdxs 0, // [0:58] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_recommendation_service_proto_init() } -func file_google_ads_googleads_v21_services_recommendation_service_proto_init() { - if File_google_ads_googleads_v21_services_recommendation_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_recommendation_service_proto_init() } +func file_google_ads_googleads_v22_services_recommendation_service_proto_init() { + if File_google_ads_googleads_v22_services_recommendation_service_proto != nil { return } - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[1].OneofWrappers = []any{ (*ApplyRecommendationOperation_CampaignBudget)(nil), (*ApplyRecommendationOperation_TextAd)(nil), (*ApplyRecommendationOperation_Keyword)(nil), @@ -3957,42 +3957,42 @@ func file_google_ads_googleads_v21_services_recommendation_service_proto_init() (*ApplyRecommendationOperation_SetTargetRoas)(nil), (*ApplyRecommendationOperation_LeadFormAsset)(nil), } - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[6].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[8].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[9].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[11].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[12].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[13].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[23].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[28].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[29].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[30].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[33].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[6].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[8].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[9].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[11].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[12].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[13].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[23].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[28].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[29].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[30].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[33].OneofWrappers = []any{ (*GenerateRecommendationsRequest_BiddingInfo_TargetCpaMicros)(nil), (*GenerateRecommendationsRequest_BiddingInfo_TargetRoas)(nil), (*GenerateRecommendationsRequest_BiddingInfo_TargetImpressionShareInfo)(nil), } - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[34].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[35].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[36].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[37].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes[38].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[34].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[35].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[36].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[37].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes[38].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_recommendation_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_recommendation_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_recommendation_service_proto_rawDesc)), NumEnums: 1, NumMessages: 39, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_recommendation_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_recommendation_service_proto_depIdxs, - EnumInfos: file_google_ads_googleads_v21_services_recommendation_service_proto_enumTypes, - MessageInfos: file_google_ads_googleads_v21_services_recommendation_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_recommendation_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_recommendation_service_proto_depIdxs, + EnumInfos: file_google_ads_googleads_v22_services_recommendation_service_proto_enumTypes, + MessageInfos: file_google_ads_googleads_v22_services_recommendation_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_recommendation_service_proto = out.File - file_google_ads_googleads_v21_services_recommendation_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_recommendation_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_recommendation_service_proto = out.File + file_google_ads_googleads_v22_services_recommendation_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_recommendation_service_proto_depIdxs = nil } diff --git a/services/recommendation_service_grpc.pb.go b/services/recommendation_service_grpc.pb.go index b9dd6517..30a43896 100644 --- a/services/recommendation_service_grpc.pb.go +++ b/services/recommendation_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/recommendation_service.proto +// source: google/ads/googleads/v22/services/recommendation_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - RecommendationService_ApplyRecommendation_FullMethodName = "/google.ads.googleads.v21.services.RecommendationService/ApplyRecommendation" - RecommendationService_DismissRecommendation_FullMethodName = "/google.ads.googleads.v21.services.RecommendationService/DismissRecommendation" - RecommendationService_GenerateRecommendations_FullMethodName = "/google.ads.googleads.v21.services.RecommendationService/GenerateRecommendations" + RecommendationService_ApplyRecommendation_FullMethodName = "/google.ads.googleads.v22.services.RecommendationService/ApplyRecommendation" + RecommendationService_DismissRecommendation_FullMethodName = "/google.ads.googleads.v22.services.RecommendationService/DismissRecommendation" + RecommendationService_GenerateRecommendations_FullMethodName = "/google.ads.googleads.v22.services.RecommendationService/GenerateRecommendations" ) // RecommendationServiceClient is the client API for RecommendationService service. @@ -268,7 +268,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.v21.services.RecommendationService", + ServiceName: "google.ads.googleads.v22.services.RecommendationService", HandlerType: (*RecommendationServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -285,5 +285,5 @@ var RecommendationService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/recommendation_service.proto", + Metadata: "google/ads/googleads/v22/services/recommendation_service.proto", } diff --git a/services/recommendation_subscription_service.pb.go b/services/recommendation_subscription_service.pb.go index d09d3f1a..85ad31eb 100644 --- a/services/recommendation_subscription_service.pb.go +++ b/services/recommendation_subscription_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/recommendation_subscription_service.proto +// source: google/ads/googleads/v22/services/recommendation_subscription_service.proto package services @@ -60,14 +60,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateRecommendationSubscriptionRequest) Reset() { *x = MutateRecommendationSubscriptionRequest{} - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -79,7 +79,7 @@ func (x *MutateRecommendationSubscriptionRequest) String() string { func (*MutateRecommendationSubscriptionRequest) ProtoMessage() {} func (x *MutateRecommendationSubscriptionRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -92,7 +92,7 @@ func (x *MutateRecommendationSubscriptionRequest) ProtoReflect() protoreflect.Me // Deprecated: Use MutateRecommendationSubscriptionRequest.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{0} } func (x *MutateRecommendationSubscriptionRequest) GetCustomerId() string { @@ -150,7 +150,7 @@ type RecommendationSubscriptionOperation struct { func (x *RecommendationSubscriptionOperation) Reset() { *x = RecommendationSubscriptionOperation{} - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *RecommendationSubscriptionOperation) String() string { func (*RecommendationSubscriptionOperation) ProtoMessage() {} func (x *RecommendationSubscriptionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *RecommendationSubscriptionOperation) ProtoReflect() protoreflect.Messag // Deprecated: Use RecommendationSubscriptionOperation.ProtoReflect.Descriptor instead. func (*RecommendationSubscriptionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{1} } func (x *RecommendationSubscriptionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -248,7 +248,7 @@ type MutateRecommendationSubscriptionResponse struct { func (x *MutateRecommendationSubscriptionResponse) Reset() { *x = MutateRecommendationSubscriptionResponse{} - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -260,7 +260,7 @@ func (x *MutateRecommendationSubscriptionResponse) String() string { func (*MutateRecommendationSubscriptionResponse) ProtoMessage() {} func (x *MutateRecommendationSubscriptionResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -273,7 +273,7 @@ func (x *MutateRecommendationSubscriptionResponse) ProtoReflect() protoreflect.M // Deprecated: Use MutateRecommendationSubscriptionResponse.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{2} } func (x *MutateRecommendationSubscriptionResponse) GetResults() []*MutateRecommendationSubscriptionResult { @@ -306,7 +306,7 @@ type MutateRecommendationSubscriptionResult struct { func (x *MutateRecommendationSubscriptionResult) Reset() { *x = MutateRecommendationSubscriptionResult{} - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -318,7 +318,7 @@ func (x *MutateRecommendationSubscriptionResult) String() string { func (*MutateRecommendationSubscriptionResult) ProtoMessage() {} func (x *MutateRecommendationSubscriptionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -331,7 +331,7 @@ func (x *MutateRecommendationSubscriptionResult) ProtoReflect() protoreflect.Mes // Deprecated: Use MutateRecommendationSubscriptionResult.ProtoReflect.Descriptor instead. func (*MutateRecommendationSubscriptionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescGZIP(), []int{3} } func (x *MutateRecommendationSubscriptionResult) GetResourceName() string { @@ -348,22 +348,22 @@ func (x *MutateRecommendationSubscriptionResult) GetRecommendationSubscription() return nil } -var File_google_ads_googleads_v21_services_recommendation_subscription_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_recommendation_subscription_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -385,7 +385,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, + 0x32, 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, @@ -397,7 +397,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -411,12 +411,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -426,7 +426,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -457,17 +457,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x60, 0x3a, 0x01, 0x2a, 0x22, 0x5b, 0x2f, 0x76, 0x32, 0x32, 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, @@ -479,59 +479,59 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, + 0x5c, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, + 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDescData + return file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_goTypes = []any{ - (*MutateRecommendationSubscriptionRequest)(nil), // 0: google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest - (*RecommendationSubscriptionOperation)(nil), // 1: google.ads.googleads.v21.services.RecommendationSubscriptionOperation - (*MutateRecommendationSubscriptionResponse)(nil), // 2: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse - (*MutateRecommendationSubscriptionResult)(nil), // 3: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_goTypes = []any{ + (*MutateRecommendationSubscriptionRequest)(nil), // 0: google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest + (*RecommendationSubscriptionOperation)(nil), // 1: google.ads.googleads.v22.services.RecommendationSubscriptionOperation + (*MutateRecommendationSubscriptionResponse)(nil), // 2: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse + (*MutateRecommendationSubscriptionResult)(nil), // 3: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.RecommendationSubscription)(nil), // 6: google.ads.googleads.v21.resources.RecommendationSubscription + (*resources.RecommendationSubscription)(nil), // 6: google.ads.googleads.v22.resources.RecommendationSubscription (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest.operations:type_name -> google.ads.googleads.v21.services.RecommendationSubscriptionOperation - 4, // 1: google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.RecommendationSubscriptionOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.RecommendationSubscriptionOperation.create:type_name -> google.ads.googleads.v21.resources.RecommendationSubscription - 6, // 4: google.ads.googleads.v21.services.RecommendationSubscriptionOperation.update:type_name -> google.ads.googleads.v21.resources.RecommendationSubscription - 3, // 5: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse.results:type_name -> google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult - 7, // 6: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse.partial_failure_error:type_name -> google.rpc.Status - 6, // 7: google.ads.googleads.v21.services.MutateRecommendationSubscriptionResult.recommendation_subscription:type_name -> google.ads.googleads.v21.resources.RecommendationSubscription - 0, // 8: google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription:input_type -> google.ads.googleads.v21.services.MutateRecommendationSubscriptionRequest - 2, // 9: google.ads.googleads.v21.services.RecommendationSubscriptionService.MutateRecommendationSubscription:output_type -> google.ads.googleads.v21.services.MutateRecommendationSubscriptionResponse +var file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest.operations:type_name -> google.ads.googleads.v22.services.RecommendationSubscriptionOperation + 4, // 1: google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.RecommendationSubscriptionOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.RecommendationSubscriptionOperation.create:type_name -> google.ads.googleads.v22.resources.RecommendationSubscription + 6, // 4: google.ads.googleads.v22.services.RecommendationSubscriptionOperation.update:type_name -> google.ads.googleads.v22.resources.RecommendationSubscription + 3, // 5: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse.results:type_name -> google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult + 7, // 6: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResponse.partial_failure_error:type_name -> google.rpc.Status + 6, // 7: google.ads.googleads.v22.services.MutateRecommendationSubscriptionResult.recommendation_subscription:type_name -> google.ads.googleads.v22.resources.RecommendationSubscription + 0, // 8: google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription:input_type -> google.ads.googleads.v22.services.MutateRecommendationSubscriptionRequest + 2, // 9: google.ads.googleads.v22.services.RecommendationSubscriptionService.MutateRecommendationSubscription:output_type -> google.ads.googleads.v22.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 @@ -539,12 +539,12 @@ var file_google_ads_googleads_v21_services_recommendation_subscription_service_p 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_init() } -func file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_init() { - if File_google_ads_googleads_v21_services_recommendation_subscription_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_init() } +func file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_init() { + if File_google_ads_googleads_v22_services_recommendation_subscription_service_proto != nil { return } - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes[1].OneofWrappers = []any{ (*RecommendationSubscriptionOperation_Create)(nil), (*RecommendationSubscriptionOperation_Update)(nil), } @@ -552,17 +552,17 @@ func file_google_ads_googleads_v21_services_recommendation_subscription_service_ out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_recommendation_subscription_service_proto = out.File - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_recommendation_subscription_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_recommendation_subscription_service_proto = out.File + file_google_ads_googleads_v22_services_recommendation_subscription_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 41ad612a..daac0972 100644 --- a/services/recommendation_subscription_service_grpc.pb.go +++ b/services/recommendation_subscription_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/recommendation_subscription_service.proto +// source: google/ads/googleads/v22/services/recommendation_subscription_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName = "/google.ads.googleads.v21.services.RecommendationSubscriptionService/MutateRecommendationSubscription" + RecommendationSubscriptionService_MutateRecommendationSubscription_FullMethodName = "/google.ads.googleads.v22.services.RecommendationSubscriptionService/MutateRecommendationSubscription" ) // RecommendationSubscriptionServiceClient is the client API for RecommendationSubscriptionService service. @@ -157,7 +157,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.v21.services.RecommendationSubscriptionService", + ServiceName: "google.ads.googleads.v22.services.RecommendationSubscriptionService", HandlerType: (*RecommendationSubscriptionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -166,5 +166,5 @@ var RecommendationSubscriptionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/recommendation_subscription_service.proto", + Metadata: "google/ads/googleads/v22/services/recommendation_subscription_service.proto", } diff --git a/services/remarketing_action_service.pb.go b/services/remarketing_action_service.pb.go index 70eeb2b4..fc7669b2 100644 --- a/services/remarketing_action_service.pb.go +++ b/services/remarketing_action_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/remarketing_action_service.proto +// source: google/ads/googleads/v22/services/remarketing_action_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [RemarketingActionService.MutateRemarketingActions][google.ads.googleads.v21.services.RemarketingActionService.MutateRemarketingActions]. +// [RemarketingActionService.MutateRemarketingActions][google.ads.googleads.v22.services.RemarketingActionService.MutateRemarketingActions]. type MutateRemarketingActionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose remarketing actions are being @@ -63,7 +63,7 @@ type MutateRemarketingActionsRequest struct { func (x *MutateRemarketingActionsRequest) Reset() { *x = MutateRemarketingActionsRequest{} - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -75,7 +75,7 @@ func (x *MutateRemarketingActionsRequest) String() string { func (*MutateRemarketingActionsRequest) ProtoMessage() {} func (x *MutateRemarketingActionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -88,7 +88,7 @@ func (x *MutateRemarketingActionsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionsRequest.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescGZIP(), []int{0} } func (x *MutateRemarketingActionsRequest) GetCustomerId() string { @@ -137,7 +137,7 @@ type RemarketingActionOperation struct { func (x *RemarketingActionOperation) Reset() { *x = RemarketingActionOperation{} - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -149,7 +149,7 @@ func (x *RemarketingActionOperation) String() string { func (*RemarketingActionOperation) ProtoMessage() {} func (x *RemarketingActionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -162,7 +162,7 @@ func (x *RemarketingActionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use RemarketingActionOperation.ProtoReflect.Descriptor instead. func (*RemarketingActionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescGZIP(), []int{1} } func (x *RemarketingActionOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -233,7 +233,7 @@ type MutateRemarketingActionsResponse struct { func (x *MutateRemarketingActionsResponse) Reset() { *x = MutateRemarketingActionsResponse{} - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -245,7 +245,7 @@ func (x *MutateRemarketingActionsResponse) String() string { func (*MutateRemarketingActionsResponse) ProtoMessage() {} func (x *MutateRemarketingActionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -258,7 +258,7 @@ func (x *MutateRemarketingActionsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionsResponse.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescGZIP(), []int{2} } func (x *MutateRemarketingActionsResponse) GetPartialFailureError() *status.Status { @@ -286,7 +286,7 @@ type MutateRemarketingActionResult struct { func (x *MutateRemarketingActionResult) Reset() { *x = MutateRemarketingActionResult{} - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -298,7 +298,7 @@ func (x *MutateRemarketingActionResult) String() string { func (*MutateRemarketingActionResult) ProtoMessage() {} func (x *MutateRemarketingActionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -311,7 +311,7 @@ func (x *MutateRemarketingActionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateRemarketingActionResult.ProtoReflect.Descriptor instead. func (*MutateRemarketingActionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescGZIP(), []int{3} } func (x *MutateRemarketingActionResult) GetResourceName() string { @@ -321,18 +321,18 @@ func (x *MutateRemarketingActionResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_remarketing_action_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_remarketing_action_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, 0x72, 0x65, 0x6d, 0x61, + 0x32, 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, @@ -352,7 +352,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -369,12 +369,12 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -387,7 +387,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, @@ -402,17 +402,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, + 0x22, 0x38, 0x2f, 0x76, 0x32, 0x32, 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, @@ -422,55 +422,55 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1d, 0x52, 0x65, 0x6d, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, + 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDescData + return file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_remarketing_action_service_proto_goTypes = []any{ - (*MutateRemarketingActionsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateRemarketingActionsRequest - (*RemarketingActionOperation)(nil), // 1: google.ads.googleads.v21.services.RemarketingActionOperation - (*MutateRemarketingActionsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateRemarketingActionsResponse - (*MutateRemarketingActionResult)(nil), // 3: google.ads.googleads.v21.services.MutateRemarketingActionResult +var file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_remarketing_action_service_proto_goTypes = []any{ + (*MutateRemarketingActionsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateRemarketingActionsRequest + (*RemarketingActionOperation)(nil), // 1: google.ads.googleads.v22.services.RemarketingActionOperation + (*MutateRemarketingActionsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateRemarketingActionsResponse + (*MutateRemarketingActionResult)(nil), // 3: google.ads.googleads.v22.services.MutateRemarketingActionResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.RemarketingAction)(nil), // 5: google.ads.googleads.v21.resources.RemarketingAction + (*resources.RemarketingAction)(nil), // 5: google.ads.googleads.v22.resources.RemarketingAction (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_remarketing_action_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateRemarketingActionsRequest.operations:type_name -> google.ads.googleads.v21.services.RemarketingActionOperation - 4, // 1: google.ads.googleads.v21.services.RemarketingActionOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.RemarketingActionOperation.create:type_name -> google.ads.googleads.v21.resources.RemarketingAction - 5, // 3: google.ads.googleads.v21.services.RemarketingActionOperation.update:type_name -> google.ads.googleads.v21.resources.RemarketingAction - 6, // 4: google.ads.googleads.v21.services.MutateRemarketingActionsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateRemarketingActionsResponse.results:type_name -> google.ads.googleads.v21.services.MutateRemarketingActionResult - 0, // 6: google.ads.googleads.v21.services.RemarketingActionService.MutateRemarketingActions:input_type -> google.ads.googleads.v21.services.MutateRemarketingActionsRequest - 2, // 7: google.ads.googleads.v21.services.RemarketingActionService.MutateRemarketingActions:output_type -> google.ads.googleads.v21.services.MutateRemarketingActionsResponse +var file_google_ads_googleads_v22_services_remarketing_action_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateRemarketingActionsRequest.operations:type_name -> google.ads.googleads.v22.services.RemarketingActionOperation + 4, // 1: google.ads.googleads.v22.services.RemarketingActionOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.RemarketingActionOperation.create:type_name -> google.ads.googleads.v22.resources.RemarketingAction + 5, // 3: google.ads.googleads.v22.services.RemarketingActionOperation.update:type_name -> google.ads.googleads.v22.resources.RemarketingAction + 6, // 4: google.ads.googleads.v22.services.MutateRemarketingActionsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateRemarketingActionsResponse.results:type_name -> google.ads.googleads.v22.services.MutateRemarketingActionResult + 0, // 6: google.ads.googleads.v22.services.RemarketingActionService.MutateRemarketingActions:input_type -> google.ads.googleads.v22.services.MutateRemarketingActionsRequest + 2, // 7: google.ads.googleads.v22.services.RemarketingActionService.MutateRemarketingActions:output_type -> google.ads.googleads.v22.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 @@ -478,12 +478,12 @@ var file_google_ads_googleads_v21_services_remarketing_action_service_proto_depI 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_remarketing_action_service_proto_init() } -func file_google_ads_googleads_v21_services_remarketing_action_service_proto_init() { - if File_google_ads_googleads_v21_services_remarketing_action_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_remarketing_action_service_proto_init() } +func file_google_ads_googleads_v22_services_remarketing_action_service_proto_init() { + if File_google_ads_googleads_v22_services_remarketing_action_service_proto != nil { return } - file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes[1].OneofWrappers = []any{ (*RemarketingActionOperation_Create)(nil), (*RemarketingActionOperation_Update)(nil), } @@ -491,17 +491,17 @@ func file_google_ads_googleads_v21_services_remarketing_action_service_proto_ini out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_remarketing_action_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_remarketing_action_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_remarketing_action_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_remarketing_action_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_remarketing_action_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_remarketing_action_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_remarketing_action_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_remarketing_action_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_remarketing_action_service_proto = out.File - file_google_ads_googleads_v21_services_remarketing_action_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_remarketing_action_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_remarketing_action_service_proto = out.File + file_google_ads_googleads_v22_services_remarketing_action_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 5fba7129..991c37e0 100644 --- a/services/remarketing_action_service_grpc.pb.go +++ b/services/remarketing_action_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/remarketing_action_service.proto +// source: google/ads/googleads/v22/services/remarketing_action_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - RemarketingActionService_MutateRemarketingActions_FullMethodName = "/google.ads.googleads.v21.services.RemarketingActionService/MutateRemarketingActions" + RemarketingActionService_MutateRemarketingActions_FullMethodName = "/google.ads.googleads.v22.services.RemarketingActionService/MutateRemarketingActions" ) // RemarketingActionServiceClient is the client API for RemarketingActionService service. @@ -149,7 +149,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.v21.services.RemarketingActionService", + ServiceName: "google.ads.googleads.v22.services.RemarketingActionService", HandlerType: (*RemarketingActionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -158,5 +158,5 @@ var RemarketingActionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/remarketing_action_service.proto", + Metadata: "google/ads/googleads/v22/services/remarketing_action_service.proto", } diff --git a/services/shareable_preview_service.pb.go b/services/shareable_preview_service.pb.go index 55c1479c..c5189121 100644 --- a/services/shareable_preview_service.pb.go +++ b/services/shareable_preview_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/shareable_preview_service.proto +// source: google/ads/googleads/v22/services/shareable_preview_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [ShareablePreviewService.GenerateShareablePreviews][google.ads.googleads.v21.services.ShareablePreviewService.GenerateShareablePreviews]. +// [ShareablePreviewService.GenerateShareablePreviews][google.ads.googleads.v22.services.ShareablePreviewService.GenerateShareablePreviews]. type GenerateShareablePreviewsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The customer creating the shareable previews request. @@ -51,7 +51,7 @@ type GenerateShareablePreviewsRequest struct { func (x *GenerateShareablePreviewsRequest) Reset() { *x = GenerateShareablePreviewsRequest{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -63,7 +63,7 @@ func (x *GenerateShareablePreviewsRequest) String() string { func (*GenerateShareablePreviewsRequest) ProtoMessage() {} func (x *GenerateShareablePreviewsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -76,7 +76,7 @@ func (x *GenerateShareablePreviewsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GenerateShareablePreviewsRequest.ProtoReflect.Descriptor instead. func (*GenerateShareablePreviewsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{0} } func (x *GenerateShareablePreviewsRequest) GetCustomerId() string { @@ -104,7 +104,7 @@ type ShareablePreview struct { func (x *ShareablePreview) Reset() { *x = ShareablePreview{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -116,7 +116,7 @@ func (x *ShareablePreview) String() string { func (*ShareablePreview) ProtoMessage() {} func (x *ShareablePreview) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -129,7 +129,7 @@ func (x *ShareablePreview) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareablePreview.ProtoReflect.Descriptor instead. func (*ShareablePreview) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{1} } func (x *ShareablePreview) GetAssetGroupIdentifier() *AssetGroupIdentifier { @@ -150,7 +150,7 @@ type AssetGroupIdentifier struct { func (x *AssetGroupIdentifier) Reset() { *x = AssetGroupIdentifier{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -162,7 +162,7 @@ func (x *AssetGroupIdentifier) String() string { func (*AssetGroupIdentifier) ProtoMessage() {} func (x *AssetGroupIdentifier) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -175,7 +175,7 @@ func (x *AssetGroupIdentifier) ProtoReflect() protoreflect.Message { // Deprecated: Use AssetGroupIdentifier.ProtoReflect.Descriptor instead. func (*AssetGroupIdentifier) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{2} } func (x *AssetGroupIdentifier) GetAssetGroupId() int64 { @@ -186,7 +186,7 @@ func (x *AssetGroupIdentifier) GetAssetGroupId() int64 { } // Response message for -// [ShareablePreviewService.GenerateShareablePreviews][google.ads.googleads.v21.services.ShareablePreviewService.GenerateShareablePreviews]. +// [ShareablePreviewService.GenerateShareablePreviews][google.ads.googleads.v22.services.ShareablePreviewService.GenerateShareablePreviews]. type GenerateShareablePreviewsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // List of generate shareable preview results. @@ -197,7 +197,7 @@ type GenerateShareablePreviewsResponse struct { func (x *GenerateShareablePreviewsResponse) Reset() { *x = GenerateShareablePreviewsResponse{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -209,7 +209,7 @@ func (x *GenerateShareablePreviewsResponse) String() string { func (*GenerateShareablePreviewsResponse) ProtoMessage() {} func (x *GenerateShareablePreviewsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -222,7 +222,7 @@ func (x *GenerateShareablePreviewsResponse) ProtoReflect() protoreflect.Message // Deprecated: Use GenerateShareablePreviewsResponse.ProtoReflect.Descriptor instead. func (*GenerateShareablePreviewsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{3} } func (x *GenerateShareablePreviewsResponse) GetResponses() []*ShareablePreviewOrError { @@ -250,7 +250,7 @@ type ShareablePreviewOrError struct { func (x *ShareablePreviewOrError) Reset() { *x = ShareablePreviewOrError{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -262,7 +262,7 @@ func (x *ShareablePreviewOrError) String() string { func (*ShareablePreviewOrError) ProtoMessage() {} func (x *ShareablePreviewOrError) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -275,7 +275,7 @@ func (x *ShareablePreviewOrError) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareablePreviewOrError.ProtoReflect.Descriptor instead. func (*ShareablePreviewOrError) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{4} } func (x *ShareablePreviewOrError) GetAssetGroupIdentifier() *AssetGroupIdentifier { @@ -343,7 +343,7 @@ type ShareablePreviewResult struct { func (x *ShareablePreviewResult) Reset() { *x = ShareablePreviewResult{} - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -355,7 +355,7 @@ func (x *ShareablePreviewResult) String() string { func (*ShareablePreviewResult) ProtoMessage() {} func (x *ShareablePreviewResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -368,7 +368,7 @@ func (x *ShareablePreviewResult) ProtoReflect() protoreflect.Message { // Deprecated: Use ShareablePreviewResult.ProtoReflect.Descriptor instead. func (*ShareablePreviewResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP(), []int{5} } func (x *ShareablePreviewResult) GetShareablePreviewUrl() string { @@ -385,15 +385,15 @@ func (x *ShareablePreviewResult) GetExpirationDateTime() string { return "" } -var File_google_ads_googleads_v21_services_shareable_preview_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_shareable_preview_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2f, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -409,7 +409,7 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 0x49, 0x64, 0x12, 0x67, 0x0a, 0x12, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x11, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x73, 0x22, 0x86, 0x01, 0x0a, 0x10, @@ -417,7 +417,7 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 0x12, 0x72, 0x0a, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x42, 0x03, 0xe0, 0x41, 0x02, 0x52, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, @@ -430,7 +430,7 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 0x69, 0x65, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x58, 0x0a, 0x09, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x4f, 0x72, 0x45, 0x72, 0x72, 0x6f, 0x72, 0x52, 0x09, 0x72, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x73, 0x22, 0xf0, 0x02, 0x0a, 0x17, 0x53, 0x68, 0x61, 0x72, 0x65, @@ -438,14 +438,14 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 0x6f, 0x72, 0x12, 0x6d, 0x0a, 0x16, 0x61, 0x73, 0x73, 0x65, 0x74, 0x5f, 0x67, 0x72, 0x6f, 0x75, 0x70, 0x5f, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x18, 0x03, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x52, 0x14, 0x61, 0x73, 0x73, 0x65, 0x74, 0x47, 0x72, 0x6f, 0x75, 0x70, 0x49, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x69, 0x65, 0x72, 0x12, 0x75, 0x0a, 0x18, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x52, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x48, 0x00, 0x52, 0x16, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, @@ -469,17 +469,17 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 0x72, 0x76, 0x69, 0x63, 0x65, 0x12, 0x8c, 0x02, 0x0a, 0x19, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, + 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x6e, 0x65, 0x72, 0x61, 0x74, 0x65, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x73, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x22, 0x64, 0xda, 0x41, 0x1e, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x73, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x70, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, - 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x32, 0x31, + 0x73, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3d, 0x3a, 0x01, 0x2a, 0x22, 0x38, 0x2f, 0x76, 0x32, 0x32, 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, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, @@ -489,55 +489,55 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDe 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x1c, 0x53, 0x68, 0x61, 0x72, 0x65, 0x61, 0x62, 0x6c, 0x65, 0x50, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDescData + return file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) -var file_google_ads_googleads_v21_services_shareable_preview_service_proto_goTypes = []any{ - (*GenerateShareablePreviewsRequest)(nil), // 0: google.ads.googleads.v21.services.GenerateShareablePreviewsRequest - (*ShareablePreview)(nil), // 1: google.ads.googleads.v21.services.ShareablePreview - (*AssetGroupIdentifier)(nil), // 2: google.ads.googleads.v21.services.AssetGroupIdentifier - (*GenerateShareablePreviewsResponse)(nil), // 3: google.ads.googleads.v21.services.GenerateShareablePreviewsResponse - (*ShareablePreviewOrError)(nil), // 4: google.ads.googleads.v21.services.ShareablePreviewOrError - (*ShareablePreviewResult)(nil), // 5: google.ads.googleads.v21.services.ShareablePreviewResult +var file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes = make([]protoimpl.MessageInfo, 6) +var file_google_ads_googleads_v22_services_shareable_preview_service_proto_goTypes = []any{ + (*GenerateShareablePreviewsRequest)(nil), // 0: google.ads.googleads.v22.services.GenerateShareablePreviewsRequest + (*ShareablePreview)(nil), // 1: google.ads.googleads.v22.services.ShareablePreview + (*AssetGroupIdentifier)(nil), // 2: google.ads.googleads.v22.services.AssetGroupIdentifier + (*GenerateShareablePreviewsResponse)(nil), // 3: google.ads.googleads.v22.services.GenerateShareablePreviewsResponse + (*ShareablePreviewOrError)(nil), // 4: google.ads.googleads.v22.services.ShareablePreviewOrError + (*ShareablePreviewResult)(nil), // 5: google.ads.googleads.v22.services.ShareablePreviewResult (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_shareable_preview_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.GenerateShareablePreviewsRequest.shareable_previews:type_name -> google.ads.googleads.v21.services.ShareablePreview - 2, // 1: google.ads.googleads.v21.services.ShareablePreview.asset_group_identifier:type_name -> google.ads.googleads.v21.services.AssetGroupIdentifier - 4, // 2: google.ads.googleads.v21.services.GenerateShareablePreviewsResponse.responses:type_name -> google.ads.googleads.v21.services.ShareablePreviewOrError - 2, // 3: google.ads.googleads.v21.services.ShareablePreviewOrError.asset_group_identifier:type_name -> google.ads.googleads.v21.services.AssetGroupIdentifier - 5, // 4: google.ads.googleads.v21.services.ShareablePreviewOrError.shareable_preview_result:type_name -> google.ads.googleads.v21.services.ShareablePreviewResult - 6, // 5: google.ads.googleads.v21.services.ShareablePreviewOrError.partial_failure_error:type_name -> google.rpc.Status - 0, // 6: google.ads.googleads.v21.services.ShareablePreviewService.GenerateShareablePreviews:input_type -> google.ads.googleads.v21.services.GenerateShareablePreviewsRequest - 3, // 7: google.ads.googleads.v21.services.ShareablePreviewService.GenerateShareablePreviews:output_type -> google.ads.googleads.v21.services.GenerateShareablePreviewsResponse +var file_google_ads_googleads_v22_services_shareable_preview_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.GenerateShareablePreviewsRequest.shareable_previews:type_name -> google.ads.googleads.v22.services.ShareablePreview + 2, // 1: google.ads.googleads.v22.services.ShareablePreview.asset_group_identifier:type_name -> google.ads.googleads.v22.services.AssetGroupIdentifier + 4, // 2: google.ads.googleads.v22.services.GenerateShareablePreviewsResponse.responses:type_name -> google.ads.googleads.v22.services.ShareablePreviewOrError + 2, // 3: google.ads.googleads.v22.services.ShareablePreviewOrError.asset_group_identifier:type_name -> google.ads.googleads.v22.services.AssetGroupIdentifier + 5, // 4: google.ads.googleads.v22.services.ShareablePreviewOrError.shareable_preview_result:type_name -> google.ads.googleads.v22.services.ShareablePreviewResult + 6, // 5: google.ads.googleads.v22.services.ShareablePreviewOrError.partial_failure_error:type_name -> google.rpc.Status + 0, // 6: google.ads.googleads.v22.services.ShareablePreviewService.GenerateShareablePreviews:input_type -> google.ads.googleads.v22.services.GenerateShareablePreviewsRequest + 3, // 7: google.ads.googleads.v22.services.ShareablePreviewService.GenerateShareablePreviews:output_type -> google.ads.googleads.v22.services.GenerateShareablePreviewsResponse 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 @@ -545,12 +545,12 @@ var file_google_ads_googleads_v21_services_shareable_preview_service_proto_depId 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_shareable_preview_service_proto_init() } -func file_google_ads_googleads_v21_services_shareable_preview_service_proto_init() { - if File_google_ads_googleads_v21_services_shareable_preview_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_shareable_preview_service_proto_init() } +func file_google_ads_googleads_v22_services_shareable_preview_service_proto_init() { + if File_google_ads_googleads_v22_services_shareable_preview_service_proto != nil { return } - file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes[4].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes[4].OneofWrappers = []any{ (*ShareablePreviewOrError_ShareablePreviewResult)(nil), (*ShareablePreviewOrError_PartialFailureError)(nil), } @@ -558,17 +558,17 @@ func file_google_ads_googleads_v21_services_shareable_preview_service_proto_init out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shareable_preview_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shareable_preview_service_proto_rawDesc)), NumEnums: 0, NumMessages: 6, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_shareable_preview_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_shareable_preview_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_shareable_preview_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_shareable_preview_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_shareable_preview_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_shareable_preview_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_shareable_preview_service_proto = out.File - file_google_ads_googleads_v21_services_shareable_preview_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_shareable_preview_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_shareable_preview_service_proto = out.File + file_google_ads_googleads_v22_services_shareable_preview_service_proto_goTypes = nil + file_google_ads_googleads_v22_services_shareable_preview_service_proto_depIdxs = nil } diff --git a/services/shareable_preview_service_grpc.pb.go b/services/shareable_preview_service_grpc.pb.go index 0f0a62c7..855b57bc 100644 --- a/services/shareable_preview_service_grpc.pb.go +++ b/services/shareable_preview_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/shareable_preview_service.proto +// source: google/ads/googleads/v22/services/shareable_preview_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ShareablePreviewService_GenerateShareablePreviews_FullMethodName = "/google.ads.googleads.v21.services.ShareablePreviewService/GenerateShareablePreviews" + ShareablePreviewService_GenerateShareablePreviews_FullMethodName = "/google.ads.googleads.v22.services.ShareablePreviewService/GenerateShareablePreviews" ) // ShareablePreviewServiceClient is the client API for ShareablePreviewService service. @@ -129,7 +129,7 @@ func _ShareablePreviewService_GenerateShareablePreviews_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 ShareablePreviewService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.ShareablePreviewService", + ServiceName: "google.ads.googleads.v22.services.ShareablePreviewService", HandlerType: (*ShareablePreviewServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -138,5 +138,5 @@ var ShareablePreviewService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/shareable_preview_service.proto", + Metadata: "google/ads/googleads/v22/services/shareable_preview_service.proto", } diff --git a/services/shared_criterion_service.pb.go b/services/shared_criterion_service.pb.go index abb8c995..dcbbd228 100644 --- a/services/shared_criterion_service.pb.go +++ b/services/shared_criterion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/shared_criterion_service.proto +// source: google/ads/googleads/v22/services/shared_criterion_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v21.services.SharedCriterionService.MutateSharedCriteria]. +// [SharedCriterionService.MutateSharedCriteria][google.ads.googleads.v22.services.SharedCriterionService.MutateSharedCriteria]. type MutateSharedCriteriaRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose shared criteria are being modified. @@ -57,14 +57,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateSharedCriteriaRequest) Reset() { *x = MutateSharedCriteriaRequest{} - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -76,7 +76,7 @@ func (x *MutateSharedCriteriaRequest) String() string { func (*MutateSharedCriteriaRequest) ProtoMessage() {} func (x *MutateSharedCriteriaRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -89,7 +89,7 @@ func (x *MutateSharedCriteriaRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriteriaRequest.ProtoReflect.Descriptor instead. func (*MutateSharedCriteriaRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescGZIP(), []int{0} } func (x *MutateSharedCriteriaRequest) GetCustomerId() string { @@ -143,7 +143,7 @@ type SharedCriterionOperation struct { func (x *SharedCriterionOperation) Reset() { *x = SharedCriterionOperation{} - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -155,7 +155,7 @@ func (x *SharedCriterionOperation) String() string { func (*SharedCriterionOperation) ProtoMessage() {} func (x *SharedCriterionOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -168,7 +168,7 @@ func (x *SharedCriterionOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedCriterionOperation.ProtoReflect.Descriptor instead. func (*SharedCriterionOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescGZIP(), []int{1} } func (x *SharedCriterionOperation) GetOperation() isSharedCriterionOperation_Operation { @@ -234,7 +234,7 @@ type MutateSharedCriteriaResponse struct { func (x *MutateSharedCriteriaResponse) Reset() { *x = MutateSharedCriteriaResponse{} - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -246,7 +246,7 @@ func (x *MutateSharedCriteriaResponse) String() string { func (*MutateSharedCriteriaResponse) ProtoMessage() {} func (x *MutateSharedCriteriaResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -259,7 +259,7 @@ func (x *MutateSharedCriteriaResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriteriaResponse.ProtoReflect.Descriptor instead. func (*MutateSharedCriteriaResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescGZIP(), []int{2} } func (x *MutateSharedCriteriaResponse) GetPartialFailureError() *status.Status { @@ -291,7 +291,7 @@ type MutateSharedCriterionResult struct { func (x *MutateSharedCriterionResult) Reset() { *x = MutateSharedCriterionResult{} - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -303,7 +303,7 @@ func (x *MutateSharedCriterionResult) String() string { func (*MutateSharedCriterionResult) ProtoMessage() {} func (x *MutateSharedCriterionResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -316,7 +316,7 @@ func (x *MutateSharedCriterionResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedCriterionResult.ProtoReflect.Descriptor instead. func (*MutateSharedCriterionResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescGZIP(), []int{3} } func (x *MutateSharedCriterionResult) GetResourceName() string { @@ -333,21 +333,21 @@ func (x *MutateSharedCriterionResult) GetSharedCriterion() *resources.SharedCrit return nil } -var File_google_ads_googleads_v21_services_shared_criterion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_shared_criterion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, + 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -365,7 +365,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -377,7 +377,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -386,7 +386,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -416,7 +416,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -424,16 +424,16 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, + 0x2a, 0x22, 0x34, 0x2f, 0x76, 0x32, 0x32, 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, @@ -442,55 +442,55 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDescData + return file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_shared_criterion_service_proto_goTypes = []any{ - (*MutateSharedCriteriaRequest)(nil), // 0: google.ads.googleads.v21.services.MutateSharedCriteriaRequest - (*SharedCriterionOperation)(nil), // 1: google.ads.googleads.v21.services.SharedCriterionOperation - (*MutateSharedCriteriaResponse)(nil), // 2: google.ads.googleads.v21.services.MutateSharedCriteriaResponse - (*MutateSharedCriterionResult)(nil), // 3: google.ads.googleads.v21.services.MutateSharedCriterionResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.SharedCriterion)(nil), // 5: google.ads.googleads.v21.resources.SharedCriterion +var file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_shared_criterion_service_proto_goTypes = []any{ + (*MutateSharedCriteriaRequest)(nil), // 0: google.ads.googleads.v22.services.MutateSharedCriteriaRequest + (*SharedCriterionOperation)(nil), // 1: google.ads.googleads.v22.services.SharedCriterionOperation + (*MutateSharedCriteriaResponse)(nil), // 2: google.ads.googleads.v22.services.MutateSharedCriteriaResponse + (*MutateSharedCriterionResult)(nil), // 3: google.ads.googleads.v22.services.MutateSharedCriterionResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.SharedCriterion)(nil), // 5: google.ads.googleads.v22.resources.SharedCriterion (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_shared_criterion_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateSharedCriteriaRequest.operations:type_name -> google.ads.googleads.v21.services.SharedCriterionOperation - 4, // 1: google.ads.googleads.v21.services.MutateSharedCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.SharedCriterionOperation.create:type_name -> google.ads.googleads.v21.resources.SharedCriterion - 6, // 3: google.ads.googleads.v21.services.MutateSharedCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 4: google.ads.googleads.v21.services.MutateSharedCriteriaResponse.results:type_name -> google.ads.googleads.v21.services.MutateSharedCriterionResult - 5, // 5: google.ads.googleads.v21.services.MutateSharedCriterionResult.shared_criterion:type_name -> google.ads.googleads.v21.resources.SharedCriterion - 0, // 6: google.ads.googleads.v21.services.SharedCriterionService.MutateSharedCriteria:input_type -> google.ads.googleads.v21.services.MutateSharedCriteriaRequest - 2, // 7: google.ads.googleads.v21.services.SharedCriterionService.MutateSharedCriteria:output_type -> google.ads.googleads.v21.services.MutateSharedCriteriaResponse +var file_google_ads_googleads_v22_services_shared_criterion_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateSharedCriteriaRequest.operations:type_name -> google.ads.googleads.v22.services.SharedCriterionOperation + 4, // 1: google.ads.googleads.v22.services.MutateSharedCriteriaRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.SharedCriterionOperation.create:type_name -> google.ads.googleads.v22.resources.SharedCriterion + 6, // 3: google.ads.googleads.v22.services.MutateSharedCriteriaResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 4: google.ads.googleads.v22.services.MutateSharedCriteriaResponse.results:type_name -> google.ads.googleads.v22.services.MutateSharedCriterionResult + 5, // 5: google.ads.googleads.v22.services.MutateSharedCriterionResult.shared_criterion:type_name -> google.ads.googleads.v22.resources.SharedCriterion + 0, // 6: google.ads.googleads.v22.services.SharedCriterionService.MutateSharedCriteria:input_type -> google.ads.googleads.v22.services.MutateSharedCriteriaRequest + 2, // 7: google.ads.googleads.v22.services.SharedCriterionService.MutateSharedCriteria:output_type -> google.ads.googleads.v22.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 @@ -498,12 +498,12 @@ var file_google_ads_googleads_v21_services_shared_criterion_service_proto_depIdx 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_shared_criterion_service_proto_init() } -func file_google_ads_googleads_v21_services_shared_criterion_service_proto_init() { - if File_google_ads_googleads_v21_services_shared_criterion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_shared_criterion_service_proto_init() } +func file_google_ads_googleads_v22_services_shared_criterion_service_proto_init() { + if File_google_ads_googleads_v22_services_shared_criterion_service_proto != nil { return } - file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes[1].OneofWrappers = []any{ (*SharedCriterionOperation_Create)(nil), (*SharedCriterionOperation_Remove)(nil), } @@ -511,17 +511,17 @@ func file_google_ads_googleads_v21_services_shared_criterion_service_proto_init( out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shared_criterion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shared_criterion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_shared_criterion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_shared_criterion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_shared_criterion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_shared_criterion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_shared_criterion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_shared_criterion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_shared_criterion_service_proto = out.File - file_google_ads_googleads_v21_services_shared_criterion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_shared_criterion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_shared_criterion_service_proto = out.File + file_google_ads_googleads_v22_services_shared_criterion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 7e9fae59..5995c942 100644 --- a/services/shared_criterion_service_grpc.pb.go +++ b/services/shared_criterion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/shared_criterion_service.proto +// source: google/ads/googleads/v22/services/shared_criterion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - SharedCriterionService_MutateSharedCriteria_FullMethodName = "/google.ads.googleads.v21.services.SharedCriterionService/MutateSharedCriteria" + SharedCriterionService_MutateSharedCriteria_FullMethodName = "/google.ads.googleads.v22.services.SharedCriterionService/MutateSharedCriteria" ) // SharedCriterionServiceClient is the client API for SharedCriterionService service. @@ -175,7 +175,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.v21.services.SharedCriterionService", + ServiceName: "google.ads.googleads.v22.services.SharedCriterionService", HandlerType: (*SharedCriterionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -184,5 +184,5 @@ var SharedCriterionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/shared_criterion_service.proto", + Metadata: "google/ads/googleads/v22/services/shared_criterion_service.proto", } diff --git a/services/shared_set_service.pb.go b/services/shared_set_service.pb.go index 9886cb28..8dab5de4 100644 --- a/services/shared_set_service.pb.go +++ b/services/shared_set_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/shared_set_service.proto +// source: google/ads/googleads/v22/services/shared_set_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [SharedSetService.MutateSharedSets][google.ads.googleads.v21.services.SharedSetService.MutateSharedSets]. +// [SharedSetService.MutateSharedSets][google.ads.googleads.v22.services.SharedSetService.MutateSharedSets]. type MutateSharedSetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose shared sets are being modified. @@ -58,14 +58,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateSharedSetsRequest) Reset() { *x = MutateSharedSetsRequest{} - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -77,7 +77,7 @@ func (x *MutateSharedSetsRequest) String() string { func (*MutateSharedSetsRequest) ProtoMessage() {} func (x *MutateSharedSetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -90,7 +90,7 @@ func (x *MutateSharedSetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetsRequest.ProtoReflect.Descriptor instead. func (*MutateSharedSetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescGZIP(), []int{0} } func (x *MutateSharedSetsRequest) GetCustomerId() string { @@ -147,7 +147,7 @@ type SharedSetOperation struct { func (x *SharedSetOperation) Reset() { *x = SharedSetOperation{} - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -159,7 +159,7 @@ func (x *SharedSetOperation) String() string { func (*SharedSetOperation) ProtoMessage() {} func (x *SharedSetOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -172,7 +172,7 @@ func (x *SharedSetOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SharedSetOperation.ProtoReflect.Descriptor instead. func (*SharedSetOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescGZIP(), []int{1} } func (x *SharedSetOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -261,7 +261,7 @@ type MutateSharedSetsResponse struct { func (x *MutateSharedSetsResponse) Reset() { *x = MutateSharedSetsResponse{} - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -273,7 +273,7 @@ func (x *MutateSharedSetsResponse) String() string { func (*MutateSharedSetsResponse) ProtoMessage() {} func (x *MutateSharedSetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -286,7 +286,7 @@ func (x *MutateSharedSetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetsResponse.ProtoReflect.Descriptor instead. func (*MutateSharedSetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescGZIP(), []int{2} } func (x *MutateSharedSetsResponse) GetPartialFailureError() *status.Status { @@ -318,7 +318,7 @@ type MutateSharedSetResult struct { func (x *MutateSharedSetResult) Reset() { *x = MutateSharedSetResult{} - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -330,7 +330,7 @@ func (x *MutateSharedSetResult) String() string { func (*MutateSharedSetResult) ProtoMessage() {} func (x *MutateSharedSetResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -343,7 +343,7 @@ func (x *MutateSharedSetResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSharedSetResult.ProtoReflect.Descriptor instead. func (*MutateSharedSetResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescGZIP(), []int{3} } func (x *MutateSharedSetResult) GetResourceName() string { @@ -360,21 +360,21 @@ func (x *MutateSharedSetResult) GetSharedSet() *resources.SharedSet { return nil } -var File_google_ads_googleads_v21_services_shared_set_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_shared_set_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_shared_set_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -393,7 +393,7 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x6f, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -417,12 +417,12 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, + 0x76, 0x32, 0x32, 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, @@ -438,7 +438,7 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, + 0x32, 0x32, 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, @@ -450,21 +450,21 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, 0x32, - 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x68, 0x61, 0x72, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, 0x61, 0x74, + 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x35, 0x3a, 0x01, 0x2a, 0x22, 0x30, 0x2f, 0x76, 0x32, 0x32, 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, @@ -474,57 +474,57 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc = st 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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x15, 0x53, 0x68, 0x61, 0x72, + 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shared_set_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_shared_set_service_proto_rawDescData + return file_google_ads_googleads_v22_services_shared_set_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_shared_set_service_proto_goTypes = []any{ - (*MutateSharedSetsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateSharedSetsRequest - (*SharedSetOperation)(nil), // 1: google.ads.googleads.v21.services.SharedSetOperation - (*MutateSharedSetsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateSharedSetsResponse - (*MutateSharedSetResult)(nil), // 3: google.ads.googleads.v21.services.MutateSharedSetResult - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType +var file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_shared_set_service_proto_goTypes = []any{ + (*MutateSharedSetsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateSharedSetsRequest + (*SharedSetOperation)(nil), // 1: google.ads.googleads.v22.services.SharedSetOperation + (*MutateSharedSetsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateSharedSetsResponse + (*MutateSharedSetResult)(nil), // 3: google.ads.googleads.v22.services.MutateSharedSetResult + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 4: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType (*fieldmaskpb.FieldMask)(nil), // 5: google.protobuf.FieldMask - (*resources.SharedSet)(nil), // 6: google.ads.googleads.v21.resources.SharedSet + (*resources.SharedSet)(nil), // 6: google.ads.googleads.v22.resources.SharedSet (*status.Status)(nil), // 7: google.rpc.Status } -var file_google_ads_googleads_v21_services_shared_set_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateSharedSetsRequest.operations:type_name -> google.ads.googleads.v21.services.SharedSetOperation - 4, // 1: google.ads.googleads.v21.services.MutateSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 5, // 2: google.ads.googleads.v21.services.SharedSetOperation.update_mask:type_name -> google.protobuf.FieldMask - 6, // 3: google.ads.googleads.v21.services.SharedSetOperation.create:type_name -> google.ads.googleads.v21.resources.SharedSet - 6, // 4: google.ads.googleads.v21.services.SharedSetOperation.update:type_name -> google.ads.googleads.v21.resources.SharedSet - 7, // 5: google.ads.googleads.v21.services.MutateSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 6: google.ads.googleads.v21.services.MutateSharedSetsResponse.results:type_name -> google.ads.googleads.v21.services.MutateSharedSetResult - 6, // 7: google.ads.googleads.v21.services.MutateSharedSetResult.shared_set:type_name -> google.ads.googleads.v21.resources.SharedSet - 0, // 8: google.ads.googleads.v21.services.SharedSetService.MutateSharedSets:input_type -> google.ads.googleads.v21.services.MutateSharedSetsRequest - 2, // 9: google.ads.googleads.v21.services.SharedSetService.MutateSharedSets:output_type -> google.ads.googleads.v21.services.MutateSharedSetsResponse +var file_google_ads_googleads_v22_services_shared_set_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateSharedSetsRequest.operations:type_name -> google.ads.googleads.v22.services.SharedSetOperation + 4, // 1: google.ads.googleads.v22.services.MutateSharedSetsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 5, // 2: google.ads.googleads.v22.services.SharedSetOperation.update_mask:type_name -> google.protobuf.FieldMask + 6, // 3: google.ads.googleads.v22.services.SharedSetOperation.create:type_name -> google.ads.googleads.v22.resources.SharedSet + 6, // 4: google.ads.googleads.v22.services.SharedSetOperation.update:type_name -> google.ads.googleads.v22.resources.SharedSet + 7, // 5: google.ads.googleads.v22.services.MutateSharedSetsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 6: google.ads.googleads.v22.services.MutateSharedSetsResponse.results:type_name -> google.ads.googleads.v22.services.MutateSharedSetResult + 6, // 7: google.ads.googleads.v22.services.MutateSharedSetResult.shared_set:type_name -> google.ads.googleads.v22.resources.SharedSet + 0, // 8: google.ads.googleads.v22.services.SharedSetService.MutateSharedSets:input_type -> google.ads.googleads.v22.services.MutateSharedSetsRequest + 2, // 9: google.ads.googleads.v22.services.SharedSetService.MutateSharedSets:output_type -> google.ads.googleads.v22.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 @@ -532,12 +532,12 @@ var file_google_ads_googleads_v21_services_shared_set_service_proto_depIdxs = [] 0, // [0:8] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_shared_set_service_proto_init() } -func file_google_ads_googleads_v21_services_shared_set_service_proto_init() { - if File_google_ads_googleads_v21_services_shared_set_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_shared_set_service_proto_init() } +func file_google_ads_googleads_v22_services_shared_set_service_proto_init() { + if File_google_ads_googleads_v22_services_shared_set_service_proto != nil { return } - file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes[1].OneofWrappers = []any{ (*SharedSetOperation_Create)(nil), (*SharedSetOperation_Update)(nil), (*SharedSetOperation_Remove)(nil), @@ -546,17 +546,17 @@ func file_google_ads_googleads_v21_services_shared_set_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_shared_set_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_shared_set_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_shared_set_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_shared_set_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_shared_set_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_shared_set_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_shared_set_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_shared_set_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_shared_set_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_shared_set_service_proto = out.File - file_google_ads_googleads_v21_services_shared_set_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_shared_set_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_shared_set_service_proto = out.File + file_google_ads_googleads_v22_services_shared_set_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 ac926f8d..7244ba89 100644 --- a/services/shared_set_service_grpc.pb.go +++ b/services/shared_set_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/shared_set_service.proto +// source: google/ads/googleads/v22/services/shared_set_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - SharedSetService_MutateSharedSets_FullMethodName = "/google.ads.googleads.v21.services.SharedSetService/MutateSharedSets" + SharedSetService_MutateSharedSets_FullMethodName = "/google.ads.googleads.v22.services.SharedSetService/MutateSharedSets" ) // SharedSetServiceClient is the client API for SharedSetService service. @@ -180,7 +180,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.v21.services.SharedSetService", + ServiceName: "google.ads.googleads.v22.services.SharedSetService", HandlerType: (*SharedSetServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -189,5 +189,5 @@ var SharedSetService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/shared_set_service.proto", + Metadata: "google/ads/googleads/v22/services/shared_set_service.proto", } diff --git a/services/smart_campaign_setting_service.pb.go b/services/smart_campaign_setting_service.pb.go index a07cc848..b8cd3b21 100644 --- a/services/smart_campaign_setting_service.pb.go +++ b/services/smart_campaign_setting_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/smart_campaign_setting_service.proto +// source: google/ads/googleads/v22/services/smart_campaign_setting_service.proto package services @@ -41,7 +41,7 @@ const ( ) // Request message for -// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v21.services.SmartCampaignSettingService.GetSmartCampaignStatus]. +// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v22.services.SmartCampaignSettingService.GetSmartCampaignStatus]. type GetSmartCampaignStatusRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The resource name of the Smart campaign setting belonging to the @@ -53,7 +53,7 @@ type GetSmartCampaignStatusRequest struct { func (x *GetSmartCampaignStatusRequest) Reset() { *x = GetSmartCampaignStatusRequest{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -65,7 +65,7 @@ func (x *GetSmartCampaignStatusRequest) String() string { func (*GetSmartCampaignStatusRequest) ProtoMessage() {} func (x *GetSmartCampaignStatusRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -78,7 +78,7 @@ func (x *GetSmartCampaignStatusRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSmartCampaignStatusRequest.ProtoReflect.Descriptor instead. func (*GetSmartCampaignStatusRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{0} } func (x *GetSmartCampaignStatusRequest) GetResourceName() string { @@ -92,14 +92,14 @@ func (x *GetSmartCampaignStatusRequest) GetResourceName() string { type SmartCampaignNotEligibleDetails struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason,oneof" json:"not_eligible_reason,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *SmartCampaignNotEligibleDetails) Reset() { *x = SmartCampaignNotEligibleDetails{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -111,7 +111,7 @@ func (x *SmartCampaignNotEligibleDetails) String() string { func (*SmartCampaignNotEligibleDetails) ProtoMessage() {} func (x *SmartCampaignNotEligibleDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -124,7 +124,7 @@ func (x *SmartCampaignNotEligibleDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignNotEligibleDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignNotEligibleDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{1} } func (x *SmartCampaignNotEligibleDetails) GetNotEligibleReason() enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason { @@ -152,7 +152,7 @@ type SmartCampaignEligibleDetails struct { func (x *SmartCampaignEligibleDetails) Reset() { *x = SmartCampaignEligibleDetails{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -164,7 +164,7 @@ func (x *SmartCampaignEligibleDetails) String() string { func (*SmartCampaignEligibleDetails) ProtoMessage() {} func (x *SmartCampaignEligibleDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -177,7 +177,7 @@ func (x *SmartCampaignEligibleDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignEligibleDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignEligibleDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{2} } func (x *SmartCampaignEligibleDetails) GetLastImpressionDateTime() string { @@ -207,7 +207,7 @@ type SmartCampaignPausedDetails struct { func (x *SmartCampaignPausedDetails) Reset() { *x = SmartCampaignPausedDetails{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -219,7 +219,7 @@ func (x *SmartCampaignPausedDetails) String() string { func (*SmartCampaignPausedDetails) ProtoMessage() {} func (x *SmartCampaignPausedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -232,7 +232,7 @@ func (x *SmartCampaignPausedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignPausedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignPausedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{3} } func (x *SmartCampaignPausedDetails) GetPausedDateTime() string { @@ -255,7 +255,7 @@ type SmartCampaignRemovedDetails struct { func (x *SmartCampaignRemovedDetails) Reset() { *x = SmartCampaignRemovedDetails{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -267,7 +267,7 @@ func (x *SmartCampaignRemovedDetails) String() string { func (*SmartCampaignRemovedDetails) ProtoMessage() {} func (x *SmartCampaignRemovedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -280,7 +280,7 @@ func (x *SmartCampaignRemovedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignRemovedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignRemovedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{4} } func (x *SmartCampaignRemovedDetails) GetRemovedDateTime() string { @@ -303,7 +303,7 @@ type SmartCampaignEndedDetails struct { func (x *SmartCampaignEndedDetails) Reset() { *x = SmartCampaignEndedDetails{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -315,7 +315,7 @@ func (x *SmartCampaignEndedDetails) String() string { func (*SmartCampaignEndedDetails) ProtoMessage() {} func (x *SmartCampaignEndedDetails) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -328,7 +328,7 @@ func (x *SmartCampaignEndedDetails) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignEndedDetails.ProtoReflect.Descriptor instead. func (*SmartCampaignEndedDetails) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{5} } func (x *SmartCampaignEndedDetails) GetEndDateTime() string { @@ -339,11 +339,11 @@ func (x *SmartCampaignEndedDetails) GetEndDateTime() string { } // Response message for -// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v21.services.SmartCampaignSettingService.GetSmartCampaignStatus]. +// [SmartCampaignSettingService.GetSmartCampaignStatus][google.ads.googleads.v22.services.SmartCampaignSettingService.GetSmartCampaignStatus]. type GetSmartCampaignStatusResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // 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.v21.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.v22.enums.SmartCampaignStatusEnum_SmartCampaignStatus" json:"smart_campaign_status,omitempty"` // Additional details accompanying the status of a Smart campaign. // // Types that are valid to be assigned to SmartCampaignStatusDetails: @@ -360,7 +360,7 @@ type GetSmartCampaignStatusResponse struct { func (x *GetSmartCampaignStatusResponse) Reset() { *x = GetSmartCampaignStatusResponse{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -372,7 +372,7 @@ func (x *GetSmartCampaignStatusResponse) String() string { func (*GetSmartCampaignStatusResponse) ProtoMessage() {} func (x *GetSmartCampaignStatusResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -385,7 +385,7 @@ func (x *GetSmartCampaignStatusResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use GetSmartCampaignStatusResponse.ProtoReflect.Descriptor instead. func (*GetSmartCampaignStatusResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{6} } func (x *GetSmartCampaignStatusResponse) GetSmartCampaignStatus() enums.SmartCampaignStatusEnum_SmartCampaignStatus { @@ -492,7 +492,7 @@ func (*GetSmartCampaignStatusResponse_EndedDetails) isGetSmartCampaignStatusResp } // Request message for -// [SmartCampaignSettingService.MutateSmartCampaignSettings][google.ads.googleads.v21.services.SmartCampaignSettingService.MutateSmartCampaignSettings]. +// [SmartCampaignSettingService.MutateSmartCampaignSettings][google.ads.googleads.v22.services.SmartCampaignSettingService.MutateSmartCampaignSettings]. type MutateSmartCampaignSettingsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose Smart campaign settings are being @@ -511,14 +511,14 @@ 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.v21.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.v22.enums.ResponseContentTypeEnum_ResponseContentType" json:"response_content_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *MutateSmartCampaignSettingsRequest) Reset() { *x = MutateSmartCampaignSettingsRequest{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -530,7 +530,7 @@ func (x *MutateSmartCampaignSettingsRequest) String() string { func (*MutateSmartCampaignSettingsRequest) ProtoMessage() {} func (x *MutateSmartCampaignSettingsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -543,7 +543,7 @@ func (x *MutateSmartCampaignSettingsRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateSmartCampaignSettingsRequest.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{7} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{7} } func (x *MutateSmartCampaignSettingsRequest) GetCustomerId() string { @@ -595,7 +595,7 @@ type SmartCampaignSettingOperation struct { func (x *SmartCampaignSettingOperation) Reset() { *x = SmartCampaignSettingOperation{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -607,7 +607,7 @@ func (x *SmartCampaignSettingOperation) String() string { func (*SmartCampaignSettingOperation) ProtoMessage() {} func (x *SmartCampaignSettingOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -620,7 +620,7 @@ func (x *SmartCampaignSettingOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSettingOperation.ProtoReflect.Descriptor instead. func (*SmartCampaignSettingOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{8} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{8} } func (x *SmartCampaignSettingOperation) GetUpdate() *resources.SmartCampaignSetting { @@ -653,7 +653,7 @@ type MutateSmartCampaignSettingsResponse struct { func (x *MutateSmartCampaignSettingsResponse) Reset() { *x = MutateSmartCampaignSettingsResponse{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -665,7 +665,7 @@ func (x *MutateSmartCampaignSettingsResponse) String() string { func (*MutateSmartCampaignSettingsResponse) ProtoMessage() {} func (x *MutateSmartCampaignSettingsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -678,7 +678,7 @@ func (x *MutateSmartCampaignSettingsResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateSmartCampaignSettingsResponse.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{9} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{9} } func (x *MutateSmartCampaignSettingsResponse) GetPartialFailureError() *status.Status { @@ -710,7 +710,7 @@ type MutateSmartCampaignSettingResult struct { func (x *MutateSmartCampaignSettingResult) Reset() { *x = MutateSmartCampaignSettingResult{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -722,7 +722,7 @@ func (x *MutateSmartCampaignSettingResult) String() string { func (*MutateSmartCampaignSettingResult) ProtoMessage() {} func (x *MutateSmartCampaignSettingResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -735,7 +735,7 @@ func (x *MutateSmartCampaignSettingResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateSmartCampaignSettingResult.ProtoReflect.Descriptor instead. func (*MutateSmartCampaignSettingResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{10} + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP(), []int{10} } func (x *MutateSmartCampaignSettingResult) GetResourceName() string { @@ -752,30 +752,30 @@ func (x *MutateSmartCampaignSettingResult) GetSmartCampaignSetting() *resources. return nil } -var File_google_ads_googleads_v21_services_smart_campaign_setting_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_smart_campaign_setting_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x3a, 0x67, 0x6f, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x72, 0x65, 0x73, 0x70, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x73, 0x6d, 0x61, 0x72, 0x74, 0x5f, 0x63, 0x61, + 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -802,7 +802,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -845,7 +845,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x53, 0x6d, 0x61, 0x72, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -853,34 +853,34 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -893,7 +893,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -905,7 +905,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x52, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -914,7 +914,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -930,7 +930,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -945,7 +945,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -954,15 +954,15 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, 0x53, 0x6d, + 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x47, 0x65, 0x74, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x93, 0x02, 0x51, 0x12, 0x4f, 0x2f, 0x76, 0x32, 0x32, 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, @@ -970,17 +970,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x32, 0x32, 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, @@ -990,76 +990,76 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, + 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, + 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, + 0x3a, 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) -var file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_goTypes = []any{ - (*GetSmartCampaignStatusRequest)(nil), // 0: google.ads.googleads.v21.services.GetSmartCampaignStatusRequest - (*SmartCampaignNotEligibleDetails)(nil), // 1: google.ads.googleads.v21.services.SmartCampaignNotEligibleDetails - (*SmartCampaignEligibleDetails)(nil), // 2: google.ads.googleads.v21.services.SmartCampaignEligibleDetails - (*SmartCampaignPausedDetails)(nil), // 3: google.ads.googleads.v21.services.SmartCampaignPausedDetails - (*SmartCampaignRemovedDetails)(nil), // 4: google.ads.googleads.v21.services.SmartCampaignRemovedDetails - (*SmartCampaignEndedDetails)(nil), // 5: google.ads.googleads.v21.services.SmartCampaignEndedDetails - (*GetSmartCampaignStatusResponse)(nil), // 6: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse - (*MutateSmartCampaignSettingsRequest)(nil), // 7: google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest - (*SmartCampaignSettingOperation)(nil), // 8: google.ads.googleads.v21.services.SmartCampaignSettingOperation - (*MutateSmartCampaignSettingsResponse)(nil), // 9: google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse - (*MutateSmartCampaignSettingResult)(nil), // 10: google.ads.googleads.v21.services.MutateSmartCampaignSettingResult - (enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 11: google.ads.googleads.v21.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason - (enums.SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 12: google.ads.googleads.v21.enums.SmartCampaignStatusEnum.SmartCampaignStatus - (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 13: google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - (*resources.SmartCampaignSetting)(nil), // 14: google.ads.googleads.v21.resources.SmartCampaignSetting + return file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes = make([]protoimpl.MessageInfo, 11) +var file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_goTypes = []any{ + (*GetSmartCampaignStatusRequest)(nil), // 0: google.ads.googleads.v22.services.GetSmartCampaignStatusRequest + (*SmartCampaignNotEligibleDetails)(nil), // 1: google.ads.googleads.v22.services.SmartCampaignNotEligibleDetails + (*SmartCampaignEligibleDetails)(nil), // 2: google.ads.googleads.v22.services.SmartCampaignEligibleDetails + (*SmartCampaignPausedDetails)(nil), // 3: google.ads.googleads.v22.services.SmartCampaignPausedDetails + (*SmartCampaignRemovedDetails)(nil), // 4: google.ads.googleads.v22.services.SmartCampaignRemovedDetails + (*SmartCampaignEndedDetails)(nil), // 5: google.ads.googleads.v22.services.SmartCampaignEndedDetails + (*GetSmartCampaignStatusResponse)(nil), // 6: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse + (*MutateSmartCampaignSettingsRequest)(nil), // 7: google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest + (*SmartCampaignSettingOperation)(nil), // 8: google.ads.googleads.v22.services.SmartCampaignSettingOperation + (*MutateSmartCampaignSettingsResponse)(nil), // 9: google.ads.googleads.v22.services.MutateSmartCampaignSettingsResponse + (*MutateSmartCampaignSettingResult)(nil), // 10: google.ads.googleads.v22.services.MutateSmartCampaignSettingResult + (enums.SmartCampaignNotEligibleReasonEnum_SmartCampaignNotEligibleReason)(0), // 11: google.ads.googleads.v22.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason + (enums.SmartCampaignStatusEnum_SmartCampaignStatus)(0), // 12: google.ads.googleads.v22.enums.SmartCampaignStatusEnum.SmartCampaignStatus + (enums.ResponseContentTypeEnum_ResponseContentType)(0), // 13: google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + (*resources.SmartCampaignSetting)(nil), // 14: google.ads.googleads.v22.resources.SmartCampaignSetting (*fieldmaskpb.FieldMask)(nil), // 15: google.protobuf.FieldMask (*status.Status)(nil), // 16: google.rpc.Status } -var file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_depIdxs = []int32{ - 11, // 0: google.ads.googleads.v21.services.SmartCampaignNotEligibleDetails.not_eligible_reason:type_name -> google.ads.googleads.v21.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason - 12, // 1: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.smart_campaign_status:type_name -> google.ads.googleads.v21.enums.SmartCampaignStatusEnum.SmartCampaignStatus - 1, // 2: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.not_eligible_details:type_name -> google.ads.googleads.v21.services.SmartCampaignNotEligibleDetails - 2, // 3: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.eligible_details:type_name -> google.ads.googleads.v21.services.SmartCampaignEligibleDetails - 3, // 4: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.paused_details:type_name -> google.ads.googleads.v21.services.SmartCampaignPausedDetails - 4, // 5: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.removed_details:type_name -> google.ads.googleads.v21.services.SmartCampaignRemovedDetails - 5, // 6: google.ads.googleads.v21.services.GetSmartCampaignStatusResponse.ended_details:type_name -> google.ads.googleads.v21.services.SmartCampaignEndedDetails - 8, // 7: google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest.operations:type_name -> google.ads.googleads.v21.services.SmartCampaignSettingOperation - 13, // 8: google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest.response_content_type:type_name -> google.ads.googleads.v21.enums.ResponseContentTypeEnum.ResponseContentType - 14, // 9: google.ads.googleads.v21.services.SmartCampaignSettingOperation.update:type_name -> google.ads.googleads.v21.resources.SmartCampaignSetting - 15, // 10: google.ads.googleads.v21.services.SmartCampaignSettingOperation.update_mask:type_name -> google.protobuf.FieldMask - 16, // 11: google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse.partial_failure_error:type_name -> google.rpc.Status - 10, // 12: google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse.results:type_name -> google.ads.googleads.v21.services.MutateSmartCampaignSettingResult - 14, // 13: google.ads.googleads.v21.services.MutateSmartCampaignSettingResult.smart_campaign_setting:type_name -> google.ads.googleads.v21.resources.SmartCampaignSetting - 0, // 14: google.ads.googleads.v21.services.SmartCampaignSettingService.GetSmartCampaignStatus:input_type -> google.ads.googleads.v21.services.GetSmartCampaignStatusRequest - 7, // 15: google.ads.googleads.v21.services.SmartCampaignSettingService.MutateSmartCampaignSettings:input_type -> google.ads.googleads.v21.services.MutateSmartCampaignSettingsRequest - 6, // 16: google.ads.googleads.v21.services.SmartCampaignSettingService.GetSmartCampaignStatus:output_type -> google.ads.googleads.v21.services.GetSmartCampaignStatusResponse - 9, // 17: google.ads.googleads.v21.services.SmartCampaignSettingService.MutateSmartCampaignSettings:output_type -> google.ads.googleads.v21.services.MutateSmartCampaignSettingsResponse +var file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_depIdxs = []int32{ + 11, // 0: google.ads.googleads.v22.services.SmartCampaignNotEligibleDetails.not_eligible_reason:type_name -> google.ads.googleads.v22.enums.SmartCampaignNotEligibleReasonEnum.SmartCampaignNotEligibleReason + 12, // 1: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.smart_campaign_status:type_name -> google.ads.googleads.v22.enums.SmartCampaignStatusEnum.SmartCampaignStatus + 1, // 2: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.not_eligible_details:type_name -> google.ads.googleads.v22.services.SmartCampaignNotEligibleDetails + 2, // 3: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.eligible_details:type_name -> google.ads.googleads.v22.services.SmartCampaignEligibleDetails + 3, // 4: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.paused_details:type_name -> google.ads.googleads.v22.services.SmartCampaignPausedDetails + 4, // 5: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.removed_details:type_name -> google.ads.googleads.v22.services.SmartCampaignRemovedDetails + 5, // 6: google.ads.googleads.v22.services.GetSmartCampaignStatusResponse.ended_details:type_name -> google.ads.googleads.v22.services.SmartCampaignEndedDetails + 8, // 7: google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest.operations:type_name -> google.ads.googleads.v22.services.SmartCampaignSettingOperation + 13, // 8: google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest.response_content_type:type_name -> google.ads.googleads.v22.enums.ResponseContentTypeEnum.ResponseContentType + 14, // 9: google.ads.googleads.v22.services.SmartCampaignSettingOperation.update:type_name -> google.ads.googleads.v22.resources.SmartCampaignSetting + 15, // 10: google.ads.googleads.v22.services.SmartCampaignSettingOperation.update_mask:type_name -> google.protobuf.FieldMask + 16, // 11: google.ads.googleads.v22.services.MutateSmartCampaignSettingsResponse.partial_failure_error:type_name -> google.rpc.Status + 10, // 12: google.ads.googleads.v22.services.MutateSmartCampaignSettingsResponse.results:type_name -> google.ads.googleads.v22.services.MutateSmartCampaignSettingResult + 14, // 13: google.ads.googleads.v22.services.MutateSmartCampaignSettingResult.smart_campaign_setting:type_name -> google.ads.googleads.v22.resources.SmartCampaignSetting + 0, // 14: google.ads.googleads.v22.services.SmartCampaignSettingService.GetSmartCampaignStatus:input_type -> google.ads.googleads.v22.services.GetSmartCampaignStatusRequest + 7, // 15: google.ads.googleads.v22.services.SmartCampaignSettingService.MutateSmartCampaignSettings:input_type -> google.ads.googleads.v22.services.MutateSmartCampaignSettingsRequest + 6, // 16: google.ads.googleads.v22.services.SmartCampaignSettingService.GetSmartCampaignStatus:output_type -> google.ads.googleads.v22.services.GetSmartCampaignStatusResponse + 9, // 17: google.ads.googleads.v22.services.SmartCampaignSettingService.MutateSmartCampaignSettings:output_type -> google.ads.googleads.v22.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 @@ -1067,17 +1067,17 @@ var file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_ 0, // [0:14] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_init() } -func file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_init() { - if File_google_ads_googleads_v21_services_smart_campaign_setting_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_init() } +func file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_init() { + if File_google_ads_googleads_v22_services_smart_campaign_setting_service_proto != nil { return } - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[1].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[3].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[4].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[5].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes[6].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[1].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[3].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[4].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[5].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes[6].OneofWrappers = []any{ (*GetSmartCampaignStatusResponse_NotEligibleDetails)(nil), (*GetSmartCampaignStatusResponse_EligibleDetails)(nil), (*GetSmartCampaignStatusResponse_PausedDetails)(nil), @@ -1088,17 +1088,17 @@ func file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_rawDesc)), NumEnums: 0, NumMessages: 11, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_smart_campaign_setting_service_proto = out.File - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_smart_campaign_setting_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_smart_campaign_setting_service_proto = out.File + file_google_ads_googleads_v22_services_smart_campaign_setting_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 5ea289cf..93cfecca 100644 --- a/services/smart_campaign_setting_service_grpc.pb.go +++ b/services/smart_campaign_setting_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/smart_campaign_setting_service.proto +// source: google/ads/googleads/v22/services/smart_campaign_setting_service.proto package services @@ -33,8 +33,8 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName = "/google.ads.googleads.v21.services.SmartCampaignSettingService/GetSmartCampaignStatus" - SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName = "/google.ads.googleads.v21.services.SmartCampaignSettingService/MutateSmartCampaignSettings" + SmartCampaignSettingService_GetSmartCampaignStatus_FullMethodName = "/google.ads.googleads.v22.services.SmartCampaignSettingService/GetSmartCampaignStatus" + SmartCampaignSettingService_MutateSmartCampaignSettings_FullMethodName = "/google.ads.googleads.v22.services.SmartCampaignSettingService/MutateSmartCampaignSettings" ) // SmartCampaignSettingServiceClient is the client API for SmartCampaignSettingService service. @@ -165,7 +165,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.v21.services.SmartCampaignSettingService", + ServiceName: "google.ads.googleads.v22.services.SmartCampaignSettingService", HandlerType: (*SmartCampaignSettingServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -178,5 +178,5 @@ var SmartCampaignSettingService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/smart_campaign_setting_service.proto", + Metadata: "google/ads/googleads/v22/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 95222101..9184cdec 100644 --- a/services/smart_campaign_suggest_service.pb.go +++ b/services/smart_campaign_suggest_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/smart_campaign_suggest_service.proto +// source: google/ads/googleads/v22/services/smart_campaign_suggest_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. +// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. type SuggestSmartCampaignBudgetOptionsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose budget options are to be suggested. @@ -59,7 +59,7 @@ type SuggestSmartCampaignBudgetOptionsRequest struct { func (x *SuggestSmartCampaignBudgetOptionsRequest) Reset() { *x = SuggestSmartCampaignBudgetOptionsRequest{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -71,7 +71,7 @@ func (x *SuggestSmartCampaignBudgetOptionsRequest) String() string { func (*SuggestSmartCampaignBudgetOptionsRequest) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -84,7 +84,7 @@ func (x *SuggestSmartCampaignBudgetOptionsRequest) ProtoReflect() protoreflect.M // Deprecated: Use SuggestSmartCampaignBudgetOptionsRequest.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_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{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188,7 +188,7 @@ func (x *SmartCampaignSuggestionInfo) String() string { func (*SmartCampaignSuggestionInfo) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201,7 +201,7 @@ func (x *SmartCampaignSuggestionInfo) ProtoReflect() protoreflect.Message { // Deprecated: Use SmartCampaignSuggestionInfo.ProtoReflect.Descriptor instead. func (*SmartCampaignSuggestionInfo) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1} } func (x *SmartCampaignSuggestionInfo) GetFinalUrl() string { @@ -328,7 +328,7 @@ func (*SmartCampaignSuggestionInfo_LocationList_) isSmartCampaignSuggestionInfo_ func (*SmartCampaignSuggestionInfo_Proximity) isSmartCampaignSuggestionInfo_GeoTarget() {} // Response message for -// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions]. +// [SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions][google.ads.googleads.v22.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 { @@ -345,7 +345,7 @@ type SuggestSmartCampaignBudgetOptionsResponse struct { func (x *SuggestSmartCampaignBudgetOptionsResponse) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -357,7 +357,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) String() string { func (*SuggestSmartCampaignBudgetOptionsResponse) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -370,7 +370,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) ProtoReflect() protoreflect. // Deprecated: Use SuggestSmartCampaignBudgetOptionsResponse.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2} } func (x *SuggestSmartCampaignBudgetOptionsResponse) GetLow() *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption { @@ -395,7 +395,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse) GetHigh() *SuggestSmartCampa } // Request message for -// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. +// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. type SuggestSmartCampaignAdRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -411,7 +411,7 @@ type SuggestSmartCampaignAdRequest struct { func (x *SuggestSmartCampaignAdRequest) Reset() { *x = SuggestSmartCampaignAdRequest{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -423,7 +423,7 @@ func (x *SuggestSmartCampaignAdRequest) String() string { func (*SuggestSmartCampaignAdRequest) ProtoMessage() {} func (x *SuggestSmartCampaignAdRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -436,7 +436,7 @@ func (x *SuggestSmartCampaignAdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestSmartCampaignAdRequest.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignAdRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{3} } func (x *SuggestSmartCampaignAdRequest) GetCustomerId() string { @@ -454,7 +454,7 @@ func (x *SuggestSmartCampaignAdRequest) GetSuggestionInfo() *SmartCampaignSugges } // Response message for -// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. +// [SmartCampaignSuggestService.SuggestSmartCampaignAd][google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignAd]. type SuggestSmartCampaignAdResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Optional. Ad info includes 3 creative headlines and 2 creative @@ -466,7 +466,7 @@ type SuggestSmartCampaignAdResponse struct { func (x *SuggestSmartCampaignAdResponse) Reset() { *x = SuggestSmartCampaignAdResponse{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -478,7 +478,7 @@ func (x *SuggestSmartCampaignAdResponse) String() string { func (*SuggestSmartCampaignAdResponse) ProtoMessage() {} func (x *SuggestSmartCampaignAdResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -491,7 +491,7 @@ func (x *SuggestSmartCampaignAdResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestSmartCampaignAdResponse.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignAdResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{4} } func (x *SuggestSmartCampaignAdResponse) GetAdInfo() *common.SmartCampaignAdInfo { @@ -502,7 +502,7 @@ func (x *SuggestSmartCampaignAdResponse) GetAdInfo() *common.SmartCampaignAdInfo } // Request message for -// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestKeywordThemes]. +// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestKeywordThemes]. type SuggestKeywordThemesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -524,7 +524,7 @@ type SuggestKeywordThemesRequest struct { func (x *SuggestKeywordThemesRequest) Reset() { *x = SuggestKeywordThemesRequest{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[5] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -536,7 +536,7 @@ func (x *SuggestKeywordThemesRequest) String() string { func (*SuggestKeywordThemesRequest) ProtoMessage() {} func (x *SuggestKeywordThemesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[5] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[5] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -549,7 +549,7 @@ func (x *SuggestKeywordThemesRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestKeywordThemesRequest.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{5} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{5} } func (x *SuggestKeywordThemesRequest) GetCustomerId() string { @@ -567,7 +567,7 @@ func (x *SuggestKeywordThemesRequest) GetSuggestionInfo() *SmartCampaignSuggesti } // Response message for -// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestKeywordThemes]. +// [SmartCampaignSuggestService.SuggestKeywordThemes][google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestKeywordThemes]. type SuggestKeywordThemesResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Smart campaign keyword theme suggestions. @@ -578,7 +578,7 @@ type SuggestKeywordThemesResponse struct { func (x *SuggestKeywordThemesResponse) Reset() { *x = SuggestKeywordThemesResponse{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[6] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -590,7 +590,7 @@ func (x *SuggestKeywordThemesResponse) String() string { func (*SuggestKeywordThemesResponse) ProtoMessage() {} func (x *SuggestKeywordThemesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[6] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[6] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -603,7 +603,7 @@ func (x *SuggestKeywordThemesResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestKeywordThemesResponse.ProtoReflect.Descriptor instead. func (*SuggestKeywordThemesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6} } func (x *SuggestKeywordThemesResponse) GetKeywordThemes() []*SuggestKeywordThemesResponse_KeywordTheme { @@ -624,7 +624,7 @@ type SmartCampaignSuggestionInfo_LocationList struct { func (x *SmartCampaignSuggestionInfo_LocationList) Reset() { *x = SmartCampaignSuggestionInfo_LocationList{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[7] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -636,7 +636,7 @@ func (x *SmartCampaignSuggestionInfo_LocationList) String() string { func (*SmartCampaignSuggestionInfo_LocationList) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo_LocationList) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[7] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[7] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -649,7 +649,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_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 0} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 0} } func (x *SmartCampaignSuggestionInfo_LocationList) GetLocations() []*common.LocationInfo { @@ -670,7 +670,7 @@ type SmartCampaignSuggestionInfo_BusinessContext struct { func (x *SmartCampaignSuggestionInfo_BusinessContext) Reset() { *x = SmartCampaignSuggestionInfo_BusinessContext{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[8] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -682,7 +682,7 @@ func (x *SmartCampaignSuggestionInfo_BusinessContext) String() string { func (*SmartCampaignSuggestionInfo_BusinessContext) ProtoMessage() {} func (x *SmartCampaignSuggestionInfo_BusinessContext) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[8] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[8] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -695,7 +695,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_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 1} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{1, 1} } func (x *SmartCampaignSuggestionInfo_BusinessContext) GetBusinessName() string { @@ -718,7 +718,7 @@ type SuggestSmartCampaignBudgetOptionsResponse_Metrics struct { func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse_Metrics{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[9] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -730,7 +730,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) String() string { func (*SuggestSmartCampaignBudgetOptionsResponse_Metrics) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[9] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[9] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -743,7 +743,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_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 0} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 0} } func (x *SuggestSmartCampaignBudgetOptionsResponse_Metrics) GetMinDailyClicks() int64 { @@ -776,7 +776,7 @@ type SuggestSmartCampaignBudgetOptionsResponse_BudgetOption struct { func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) Reset() { *x = SuggestSmartCampaignBudgetOptionsResponse_BudgetOption{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[10] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -788,7 +788,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) String() string func (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoMessage() {} func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[10] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[10] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -801,7 +801,7 @@ func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) ProtoReflect() // Deprecated: Use SuggestSmartCampaignBudgetOptionsResponse_BudgetOption.ProtoReflect.Descriptor instead. func (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 1} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{2, 1} } func (x *SuggestSmartCampaignBudgetOptionsResponse_BudgetOption) GetDailyAmountMicros() int64 { @@ -834,7 +834,7 @@ type SuggestKeywordThemesResponse_KeywordTheme struct { func (x *SuggestKeywordThemesResponse_KeywordTheme) Reset() { *x = SuggestKeywordThemesResponse_KeywordTheme{} - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[11] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -846,7 +846,7 @@ func (x *SuggestKeywordThemesResponse_KeywordTheme) String() string { func (*SuggestKeywordThemesResponse_KeywordTheme) ProtoMessage() {} func (x *SuggestKeywordThemesResponse_KeywordTheme) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[11] + mi := &file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[11] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -859,7 +859,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_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6, 0} + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP(), []int{6, 0} } func (x *SuggestKeywordThemesResponse_KeywordTheme) GetKeywordTheme() isSuggestKeywordThemesResponse_KeywordTheme_KeywordTheme { @@ -907,24 +907,24 @@ func (*SuggestKeywordThemesResponse_KeywordTheme_KeywordThemeConstant) isSuggest func (*SuggestKeywordThemesResponse_KeywordTheme_FreeFormKeywordTheme) isSuggestKeywordThemesResponse_KeywordTheme_KeywordTheme() { } -var File_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x33, 0x67, 0x6f, 0x6f, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, 0x61, 0x64, 0x5f, + 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -947,7 +947,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x6d, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -961,19 +961,19 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -985,7 +985,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -993,13 +993,13 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x50, 0x72, 0x6f, 0x78, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1013,7 +1013,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x32, 0x32, 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, @@ -1021,7 +1021,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x32, 0x32, 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, @@ -1029,7 +1029,7 @@ var file_google_ads_googleads_v21_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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, 0x67, 0x67, + 0x32, 0x32, 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, @@ -1046,7 +1046,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1060,7 +1060,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1069,7 +1069,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x53, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1079,7 +1079,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1088,7 +1088,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1097,7 +1097,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -1111,48 +1111,48 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x53, 0x75, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x01, 0x2a, 0x22, 0x40, 0x2f, 0x76, 0x32, 0x32, 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, 0xfd, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x5e, 0xda, 0x41, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x3a, 0x3a, 0x01, 0x2a, 0x22, 0x35, 0x2f, - 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, 0xf5, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x5c, 0xda, 0x41, 0x1b, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x2c, 0x73, 0x75, 0x67, 0x67, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x66, 0x6f, 0x82, 0xd3, - 0xe4, 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x31, 0x2f, 0x63, 0x75, + 0xe4, 0x93, 0x02, 0x38, 0x3a, 0x01, 0x2a, 0x22, 0x33, 0x2f, 0x76, 0x32, 0x32, 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, @@ -1162,80 +1162,80 @@ var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_ 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x20, 0x53, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, - 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, 0x25, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) -var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_goTypes = []any{ - (*SuggestSmartCampaignBudgetOptionsRequest)(nil), // 0: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRequest - (*SmartCampaignSuggestionInfo)(nil), // 1: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo - (*SuggestSmartCampaignBudgetOptionsResponse)(nil), // 2: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse - (*SuggestSmartCampaignAdRequest)(nil), // 3: google.ads.googleads.v21.services.SuggestSmartCampaignAdRequest - (*SuggestSmartCampaignAdResponse)(nil), // 4: google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse - (*SuggestKeywordThemesRequest)(nil), // 5: google.ads.googleads.v21.services.SuggestKeywordThemesRequest - (*SuggestKeywordThemesResponse)(nil), // 6: google.ads.googleads.v21.services.SuggestKeywordThemesResponse - (*SmartCampaignSuggestionInfo_LocationList)(nil), // 7: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.LocationList - (*SmartCampaignSuggestionInfo_BusinessContext)(nil), // 8: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.BusinessContext - (*SuggestSmartCampaignBudgetOptionsResponse_Metrics)(nil), // 9: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics - (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption)(nil), // 10: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - (*SuggestKeywordThemesResponse_KeywordTheme)(nil), // 11: google.ads.googleads.v21.services.SuggestKeywordThemesResponse.KeywordTheme - (*common.AdScheduleInfo)(nil), // 12: google.ads.googleads.v21.common.AdScheduleInfo - (*common.KeywordThemeInfo)(nil), // 13: google.ads.googleads.v21.common.KeywordThemeInfo - (*common.ProximityInfo)(nil), // 14: google.ads.googleads.v21.common.ProximityInfo - (*common.SmartCampaignAdInfo)(nil), // 15: google.ads.googleads.v21.common.SmartCampaignAdInfo - (*common.LocationInfo)(nil), // 16: google.ads.googleads.v21.common.LocationInfo - (*resources.KeywordThemeConstant)(nil), // 17: google.ads.googleads.v21.resources.KeywordThemeConstant -} -var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRequest.suggestion_info:type_name -> google.ads.googleads.v21.services.SmartCampaignSuggestionInfo - 12, // 1: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.ad_schedules:type_name -> google.ads.googleads.v21.common.AdScheduleInfo - 13, // 2: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.keyword_themes:type_name -> google.ads.googleads.v21.common.KeywordThemeInfo - 8, // 3: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.business_context:type_name -> google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.BusinessContext - 7, // 4: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.location_list:type_name -> google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.LocationList - 14, // 5: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.proximity:type_name -> google.ads.googleads.v21.common.ProximityInfo - 10, // 6: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.low:type_name -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 10, // 7: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.recommended:type_name -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 10, // 8: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.high:type_name -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption - 1, // 9: google.ads.googleads.v21.services.SuggestSmartCampaignAdRequest.suggestion_info:type_name -> google.ads.googleads.v21.services.SmartCampaignSuggestionInfo - 15, // 10: google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse.ad_info:type_name -> google.ads.googleads.v21.common.SmartCampaignAdInfo - 1, // 11: google.ads.googleads.v21.services.SuggestKeywordThemesRequest.suggestion_info:type_name -> google.ads.googleads.v21.services.SmartCampaignSuggestionInfo - 11, // 12: google.ads.googleads.v21.services.SuggestKeywordThemesResponse.keyword_themes:type_name -> google.ads.googleads.v21.services.SuggestKeywordThemesResponse.KeywordTheme - 16, // 13: google.ads.googleads.v21.services.SmartCampaignSuggestionInfo.LocationList.locations:type_name -> google.ads.googleads.v21.common.LocationInfo - 9, // 14: google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption.metrics:type_name -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics - 17, // 15: google.ads.googleads.v21.services.SuggestKeywordThemesResponse.KeywordTheme.keyword_theme_constant:type_name -> google.ads.googleads.v21.resources.KeywordThemeConstant - 0, // 16: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:input_type -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsRequest - 3, // 17: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:input_type -> google.ads.googleads.v21.services.SuggestSmartCampaignAdRequest - 5, // 18: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestKeywordThemes:input_type -> google.ads.googleads.v21.services.SuggestKeywordThemesRequest - 2, // 19: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:output_type -> google.ads.googleads.v21.services.SuggestSmartCampaignBudgetOptionsResponse - 4, // 20: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:output_type -> google.ads.googleads.v21.services.SuggestSmartCampaignAdResponse - 6, // 21: google.ads.googleads.v21.services.SmartCampaignSuggestService.SuggestKeywordThemes:output_type -> google.ads.googleads.v21.services.SuggestKeywordThemesResponse + return file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes = make([]protoimpl.MessageInfo, 12) +var file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_goTypes = []any{ + (*SuggestSmartCampaignBudgetOptionsRequest)(nil), // 0: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRequest + (*SmartCampaignSuggestionInfo)(nil), // 1: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo + (*SuggestSmartCampaignBudgetOptionsResponse)(nil), // 2: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse + (*SuggestSmartCampaignAdRequest)(nil), // 3: google.ads.googleads.v22.services.SuggestSmartCampaignAdRequest + (*SuggestSmartCampaignAdResponse)(nil), // 4: google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse + (*SuggestKeywordThemesRequest)(nil), // 5: google.ads.googleads.v22.services.SuggestKeywordThemesRequest + (*SuggestKeywordThemesResponse)(nil), // 6: google.ads.googleads.v22.services.SuggestKeywordThemesResponse + (*SmartCampaignSuggestionInfo_LocationList)(nil), // 7: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.LocationList + (*SmartCampaignSuggestionInfo_BusinessContext)(nil), // 8: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.BusinessContext + (*SuggestSmartCampaignBudgetOptionsResponse_Metrics)(nil), // 9: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics + (*SuggestSmartCampaignBudgetOptionsResponse_BudgetOption)(nil), // 10: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + (*SuggestKeywordThemesResponse_KeywordTheme)(nil), // 11: google.ads.googleads.v22.services.SuggestKeywordThemesResponse.KeywordTheme + (*common.AdScheduleInfo)(nil), // 12: google.ads.googleads.v22.common.AdScheduleInfo + (*common.KeywordThemeInfo)(nil), // 13: google.ads.googleads.v22.common.KeywordThemeInfo + (*common.ProximityInfo)(nil), // 14: google.ads.googleads.v22.common.ProximityInfo + (*common.SmartCampaignAdInfo)(nil), // 15: google.ads.googleads.v22.common.SmartCampaignAdInfo + (*common.LocationInfo)(nil), // 16: google.ads.googleads.v22.common.LocationInfo + (*resources.KeywordThemeConstant)(nil), // 17: google.ads.googleads.v22.resources.KeywordThemeConstant +} +var file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRequest.suggestion_info:type_name -> google.ads.googleads.v22.services.SmartCampaignSuggestionInfo + 12, // 1: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.ad_schedules:type_name -> google.ads.googleads.v22.common.AdScheduleInfo + 13, // 2: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.keyword_themes:type_name -> google.ads.googleads.v22.common.KeywordThemeInfo + 8, // 3: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.business_context:type_name -> google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.BusinessContext + 7, // 4: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.location_list:type_name -> google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.LocationList + 14, // 5: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.proximity:type_name -> google.ads.googleads.v22.common.ProximityInfo + 10, // 6: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.low:type_name -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 10, // 7: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.recommended:type_name -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 10, // 8: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.high:type_name -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption + 1, // 9: google.ads.googleads.v22.services.SuggestSmartCampaignAdRequest.suggestion_info:type_name -> google.ads.googleads.v22.services.SmartCampaignSuggestionInfo + 15, // 10: google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse.ad_info:type_name -> google.ads.googleads.v22.common.SmartCampaignAdInfo + 1, // 11: google.ads.googleads.v22.services.SuggestKeywordThemesRequest.suggestion_info:type_name -> google.ads.googleads.v22.services.SmartCampaignSuggestionInfo + 11, // 12: google.ads.googleads.v22.services.SuggestKeywordThemesResponse.keyword_themes:type_name -> google.ads.googleads.v22.services.SuggestKeywordThemesResponse.KeywordTheme + 16, // 13: google.ads.googleads.v22.services.SmartCampaignSuggestionInfo.LocationList.locations:type_name -> google.ads.googleads.v22.common.LocationInfo + 9, // 14: google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.BudgetOption.metrics:type_name -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse.Metrics + 17, // 15: google.ads.googleads.v22.services.SuggestKeywordThemesResponse.KeywordTheme.keyword_theme_constant:type_name -> google.ads.googleads.v22.resources.KeywordThemeConstant + 0, // 16: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:input_type -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsRequest + 3, // 17: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:input_type -> google.ads.googleads.v22.services.SuggestSmartCampaignAdRequest + 5, // 18: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestKeywordThemes:input_type -> google.ads.googleads.v22.services.SuggestKeywordThemesRequest + 2, // 19: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignBudgetOptions:output_type -> google.ads.googleads.v22.services.SuggestSmartCampaignBudgetOptionsResponse + 4, // 20: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestSmartCampaignAd:output_type -> google.ads.googleads.v22.services.SuggestSmartCampaignAdResponse + 6, // 21: google.ads.googleads.v22.services.SmartCampaignSuggestService.SuggestKeywordThemes:output_type -> google.ads.googleads.v22.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 @@ -1243,23 +1243,23 @@ var file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_ 0, // [0:16] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_init() } -func file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_init() { - if File_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_init() } +func file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_init() { + if File_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto != nil { return } - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[0].OneofWrappers = []any{ (*SuggestSmartCampaignBudgetOptionsRequest_Campaign)(nil), (*SuggestSmartCampaignBudgetOptionsRequest_SuggestionInfo)(nil), } - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[1].OneofWrappers = []any{ (*SmartCampaignSuggestionInfo_BusinessContext_)(nil), (*SmartCampaignSuggestionInfo_BusinessProfileLocation)(nil), (*SmartCampaignSuggestionInfo_LocationList_)(nil), (*SmartCampaignSuggestionInfo_Proximity)(nil), } - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[2].OneofWrappers = []any{} - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes[11].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes[11].OneofWrappers = []any{ (*SuggestKeywordThemesResponse_KeywordTheme_KeywordThemeConstant)(nil), (*SuggestKeywordThemesResponse_KeywordTheme_FreeFormKeywordTheme)(nil), } @@ -1267,17 +1267,17 @@ func file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_rawDesc)), NumEnums: 0, NumMessages: 12, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto = out.File - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_smart_campaign_suggest_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto = out.File + file_google_ads_googleads_v22_services_smart_campaign_suggest_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 579242ab..383a4bbc 100644 --- a/services/smart_campaign_suggest_service_grpc.pb.go +++ b/services/smart_campaign_suggest_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/smart_campaign_suggest_service.proto +// source: google/ads/googleads/v22/services/smart_campaign_suggest_service.proto package services @@ -33,9 +33,9 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName = "/google.ads.googleads.v21.services.SmartCampaignSuggestService/SuggestSmartCampaignBudgetOptions" - SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName = "/google.ads.googleads.v21.services.SmartCampaignSuggestService/SuggestSmartCampaignAd" - SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName = "/google.ads.googleads.v21.services.SmartCampaignSuggestService/SuggestKeywordThemes" + SmartCampaignSuggestService_SuggestSmartCampaignBudgetOptions_FullMethodName = "/google.ads.googleads.v22.services.SmartCampaignSuggestService/SuggestSmartCampaignBudgetOptions" + SmartCampaignSuggestService_SuggestSmartCampaignAd_FullMethodName = "/google.ads.googleads.v22.services.SmartCampaignSuggestService/SuggestSmartCampaignAd" + SmartCampaignSuggestService_SuggestKeywordThemes_FullMethodName = "/google.ads.googleads.v22.services.SmartCampaignSuggestService/SuggestKeywordThemes" ) // SmartCampaignSuggestServiceClient is the client API for SmartCampaignSuggestService service. @@ -203,7 +203,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.v21.services.SmartCampaignSuggestService", + ServiceName: "google.ads.googleads.v22.services.SmartCampaignSuggestService", HandlerType: (*SmartCampaignSuggestServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -220,5 +220,5 @@ var SmartCampaignSuggestService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/smart_campaign_suggest_service.proto", + Metadata: "google/ads/googleads/v22/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 5ffa46c6..92c416ef 100644 --- a/services/third_party_app_analytics_link_service.pb.go +++ b/services/third_party_app_analytics_link_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/third_party_app_analytics_link_service.proto +// source: google/ads/googleads/v22/services/third_party_app_analytics_link_service.proto package services @@ -37,7 +37,7 @@ const ( ) // Request message for -// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v21.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. +// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. type RegenerateShareableLinkIdRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Resource name of the third party app analytics link. @@ -48,7 +48,7 @@ type RegenerateShareableLinkIdRequest struct { func (x *RegenerateShareableLinkIdRequest) Reset() { *x = RegenerateShareableLinkIdRequest{} - mi := &file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -60,7 +60,7 @@ func (x *RegenerateShareableLinkIdRequest) String() string { func (*RegenerateShareableLinkIdRequest) ProtoMessage() {} func (x *RegenerateShareableLinkIdRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -73,7 +73,7 @@ func (x *RegenerateShareableLinkIdRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use RegenerateShareableLinkIdRequest.ProtoReflect.Descriptor instead. func (*RegenerateShareableLinkIdRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{0} } func (x *RegenerateShareableLinkIdRequest) GetResourceName() string { @@ -84,7 +84,7 @@ func (x *RegenerateShareableLinkIdRequest) GetResourceName() string { } // Response message for -// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v21.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. +// [ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId][google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId]. type RegenerateShareableLinkIdResponse struct { state protoimpl.MessageState `protogen:"open.v1"` unknownFields protoimpl.UnknownFields @@ -93,7 +93,7 @@ type RegenerateShareableLinkIdResponse struct { func (x *RegenerateShareableLinkIdResponse) Reset() { *x = RegenerateShareableLinkIdResponse{} - mi := &file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -105,7 +105,7 @@ func (x *RegenerateShareableLinkIdResponse) String() string { func (*RegenerateShareableLinkIdResponse) ProtoMessage() {} func (x *RegenerateShareableLinkIdResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -118,19 +118,19 @@ func (x *RegenerateShareableLinkIdResponse) ProtoReflect() protoreflect.Message // Deprecated: Use RegenerateShareableLinkIdResponse.ProtoReflect.Descriptor instead. func (*RegenerateShareableLinkIdResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescGZIP(), []int{1} } -var File_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -152,15 +152,15 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, - 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x52, 0x65, 0x67, 0x65, + 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x7b, + 0xd3, 0xe4, 0x93, 0x02, 0x5d, 0x3a, 0x01, 0x2a, 0x22, 0x58, 0x2f, 0x76, 0x32, 0x32, 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, @@ -172,45 +172,45 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDescData + return file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) -var file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_goTypes = []any{ - (*RegenerateShareableLinkIdRequest)(nil), // 0: google.ads.googleads.v21.services.RegenerateShareableLinkIdRequest - (*RegenerateShareableLinkIdResponse)(nil), // 1: google.ads.googleads.v21.services.RegenerateShareableLinkIdResponse +var file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes = make([]protoimpl.MessageInfo, 2) +var file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_goTypes = []any{ + (*RegenerateShareableLinkIdRequest)(nil), // 0: google.ads.googleads.v22.services.RegenerateShareableLinkIdRequest + (*RegenerateShareableLinkIdResponse)(nil), // 1: google.ads.googleads.v22.services.RegenerateShareableLinkIdResponse } -var file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_depIdxs = []int32{ - 0, // 0: google.ads.googleads.v21.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:input_type -> google.ads.googleads.v21.services.RegenerateShareableLinkIdRequest - 1, // 1: google.ads.googleads.v21.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:output_type -> google.ads.googleads.v21.services.RegenerateShareableLinkIdResponse +var file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_depIdxs = []int32{ + 0, // 0: google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:input_type -> google.ads.googleads.v22.services.RegenerateShareableLinkIdRequest + 1, // 1: google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService.RegenerateShareableLinkId:output_type -> google.ads.googleads.v22.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 @@ -219,27 +219,27 @@ var file_google_ads_googleads_v21_services_third_party_app_analytics_link_servic } func init() { - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_init() + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_init() } -func file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_init() { - if File_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto != nil { +func file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_init() { + if File_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_rawDesc)), NumEnums: 0, NumMessages: 2, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto = out.File - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_third_party_app_analytics_link_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto = out.File + file_google_ads_googleads_v22_services_third_party_app_analytics_link_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 7eefbb2a..e35bda67 100644 --- a/services/third_party_app_analytics_link_service_grpc.pb.go +++ b/services/third_party_app_analytics_link_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/third_party_app_analytics_link_service.proto +// source: google/ads/googleads/v22/services/third_party_app_analytics_link_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName = "/google.ads.googleads.v21.services.ThirdPartyAppAnalyticsLinkService/RegenerateShareableLinkId" + ThirdPartyAppAnalyticsLinkService_RegenerateShareableLinkId_FullMethodName = "/google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService/RegenerateShareableLinkId" ) // ThirdPartyAppAnalyticsLinkServiceClient is the client API for ThirdPartyAppAnalyticsLinkService service. @@ -151,7 +151,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.v21.services.ThirdPartyAppAnalyticsLinkService", + ServiceName: "google.ads.googleads.v22.services.ThirdPartyAppAnalyticsLinkService", HandlerType: (*ThirdPartyAppAnalyticsLinkServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -160,5 +160,5 @@ var ThirdPartyAppAnalyticsLinkService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/third_party_app_analytics_link_service.proto", + Metadata: "google/ads/googleads/v22/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 5b8bae34..edf49c0a 100644 --- a/services/travel_asset_suggestion_service.pb.go +++ b/services/travel_asset_suggestion_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/travel_asset_suggestion_service.proto +// source: google/ads/googleads/v22/services/travel_asset_suggestion_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v21.services.TravelAssetSuggestionService.SuggestTravelAssets]. +// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v22.services.TravelAssetSuggestionService.SuggestTravelAssets]. type SuggestTravelAssetsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer. @@ -57,7 +57,7 @@ type SuggestTravelAssetsRequest struct { func (x *SuggestTravelAssetsRequest) Reset() { *x = SuggestTravelAssetsRequest{} - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *SuggestTravelAssetsRequest) String() string { func (*SuggestTravelAssetsRequest) ProtoMessage() {} func (x *SuggestTravelAssetsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *SuggestTravelAssetsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestTravelAssetsRequest.ProtoReflect.Descriptor instead. func (*SuggestTravelAssetsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{0} } func (x *SuggestTravelAssetsRequest) GetCustomerId() string { @@ -107,7 +107,7 @@ func (x *SuggestTravelAssetsRequest) GetPlaceIds() []string { } // Response message for -// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v21.services.TravelAssetSuggestionService.SuggestTravelAssets]. +// [TravelAssetSuggestionService.SuggestTravelAssets][google.ads.googleads.v22.services.TravelAssetSuggestionService.SuggestTravelAssets]. type SuggestTravelAssetsResponse struct { state protoimpl.MessageState `protogen:"open.v1"` // Asset suggestions for each place ID submitted in the request. @@ -118,7 +118,7 @@ type SuggestTravelAssetsResponse struct { func (x *SuggestTravelAssetsResponse) Reset() { *x = SuggestTravelAssetsResponse{} - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -130,7 +130,7 @@ func (x *SuggestTravelAssetsResponse) String() string { func (*SuggestTravelAssetsResponse) ProtoMessage() {} func (x *SuggestTravelAssetsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -143,7 +143,7 @@ func (x *SuggestTravelAssetsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use SuggestTravelAssetsResponse.ProtoReflect.Descriptor instead. func (*SuggestTravelAssetsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{1} } func (x *SuggestTravelAssetsResponse) GetHotelAssetSuggestions() []*HotelAssetSuggestion { @@ -163,20 +163,20 @@ 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.v21.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.v22.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.v21.enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus" json:"status,omitempty"` + Status enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus `protobuf:"varint,7,opt,name=status,proto3,enum=google.ads.googleads.v22.enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus" json:"status,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelAssetSuggestion) Reset() { *x = HotelAssetSuggestion{} - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -188,7 +188,7 @@ func (x *HotelAssetSuggestion) String() string { func (*HotelAssetSuggestion) ProtoMessage() {} func (x *HotelAssetSuggestion) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -201,7 +201,7 @@ func (x *HotelAssetSuggestion) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelAssetSuggestion.ProtoReflect.Descriptor instead. func (*HotelAssetSuggestion) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{2} } func (x *HotelAssetSuggestion) GetPlaceId() string { @@ -259,14 +259,14 @@ 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.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelTextAsset) Reset() { *x = HotelTextAsset{} - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -278,7 +278,7 @@ func (x *HotelTextAsset) String() string { func (*HotelTextAsset) ProtoMessage() {} func (x *HotelTextAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -291,7 +291,7 @@ func (x *HotelTextAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelTextAsset.ProtoReflect.Descriptor instead. func (*HotelTextAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{3} } func (x *HotelTextAsset) GetText() string { @@ -315,14 +315,14 @@ 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.v21.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.v22.enums.AssetFieldTypeEnum_AssetFieldType" json:"asset_field_type,omitempty"` unknownFields protoimpl.UnknownFields sizeCache protoimpl.SizeCache } func (x *HotelImageAsset) Reset() { *x = HotelImageAsset{} - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[4] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -334,7 +334,7 @@ func (x *HotelImageAsset) String() string { func (*HotelImageAsset) ProtoMessage() {} func (x *HotelImageAsset) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes[4] + mi := &file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes[4] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -347,7 +347,7 @@ func (x *HotelImageAsset) ProtoReflect() protoreflect.Message { // Deprecated: Use HotelImageAsset.ProtoReflect.Descriptor instead. func (*HotelImageAsset) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{4} + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP(), []int{4} } func (x *HotelImageAsset) GetUri() string { @@ -364,25 +364,25 @@ func (x *HotelImageAsset) GetAssetFieldType() enums.AssetFieldTypeEnum_AssetFiel return enums.AssetFieldTypeEnum_AssetFieldType(0) } -var File_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x35, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x61, 0x73, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2f, 0x68, 0x6f, + 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -405,7 +405,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x48, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -418,24 +418,24 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x65, 0x6e, + 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -446,7 +446,7 @@ var file_google_ads_googleads_v21_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, 0x32, - 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, 0x46, 0x69, 0x65, + 0x32, 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, @@ -455,7 +455,7 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x65, 0x6e, 0x75, 0x6d, 0x73, 0x2e, 0x41, 0x73, 0x73, 0x65, 0x74, + 0x2e, 0x76, 0x32, 0x32, 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, @@ -463,17 +463,17 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, + 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, + 0x76, 0x32, 0x32, 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, @@ -482,57 +482,57 @@ var file_google_ads_googleads_v21_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, + 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, + 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) -var file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_goTypes = []any{ - (*SuggestTravelAssetsRequest)(nil), // 0: google.ads.googleads.v21.services.SuggestTravelAssetsRequest - (*SuggestTravelAssetsResponse)(nil), // 1: google.ads.googleads.v21.services.SuggestTravelAssetsResponse - (*HotelAssetSuggestion)(nil), // 2: google.ads.googleads.v21.services.HotelAssetSuggestion - (*HotelTextAsset)(nil), // 3: google.ads.googleads.v21.services.HotelTextAsset - (*HotelImageAsset)(nil), // 4: google.ads.googleads.v21.services.HotelImageAsset - (enums.CallToActionTypeEnum_CallToActionType)(0), // 5: google.ads.googleads.v21.enums.CallToActionTypeEnum.CallToActionType - (enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 6: google.ads.googleads.v21.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus - (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 7: google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType -} -var file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_depIdxs = []int32{ - 2, // 0: google.ads.googleads.v21.services.SuggestTravelAssetsResponse.hotel_asset_suggestions:type_name -> google.ads.googleads.v21.services.HotelAssetSuggestion - 5, // 1: google.ads.googleads.v21.services.HotelAssetSuggestion.call_to_action:type_name -> google.ads.googleads.v21.enums.CallToActionTypeEnum.CallToActionType - 3, // 2: google.ads.googleads.v21.services.HotelAssetSuggestion.text_assets:type_name -> google.ads.googleads.v21.services.HotelTextAsset - 4, // 3: google.ads.googleads.v21.services.HotelAssetSuggestion.image_assets:type_name -> google.ads.googleads.v21.services.HotelImageAsset - 6, // 4: google.ads.googleads.v21.services.HotelAssetSuggestion.status:type_name -> google.ads.googleads.v21.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus - 7, // 5: google.ads.googleads.v21.services.HotelTextAsset.asset_field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 7, // 6: google.ads.googleads.v21.services.HotelImageAsset.asset_field_type:type_name -> google.ads.googleads.v21.enums.AssetFieldTypeEnum.AssetFieldType - 0, // 7: google.ads.googleads.v21.services.TravelAssetSuggestionService.SuggestTravelAssets:input_type -> google.ads.googleads.v21.services.SuggestTravelAssetsRequest - 1, // 8: google.ads.googleads.v21.services.TravelAssetSuggestionService.SuggestTravelAssets:output_type -> google.ads.googleads.v21.services.SuggestTravelAssetsResponse + return file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes = make([]protoimpl.MessageInfo, 5) +var file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_goTypes = []any{ + (*SuggestTravelAssetsRequest)(nil), // 0: google.ads.googleads.v22.services.SuggestTravelAssetsRequest + (*SuggestTravelAssetsResponse)(nil), // 1: google.ads.googleads.v22.services.SuggestTravelAssetsResponse + (*HotelAssetSuggestion)(nil), // 2: google.ads.googleads.v22.services.HotelAssetSuggestion + (*HotelTextAsset)(nil), // 3: google.ads.googleads.v22.services.HotelTextAsset + (*HotelImageAsset)(nil), // 4: google.ads.googleads.v22.services.HotelImageAsset + (enums.CallToActionTypeEnum_CallToActionType)(0), // 5: google.ads.googleads.v22.enums.CallToActionTypeEnum.CallToActionType + (enums.HotelAssetSuggestionStatusEnum_HotelAssetSuggestionStatus)(0), // 6: google.ads.googleads.v22.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus + (enums.AssetFieldTypeEnum_AssetFieldType)(0), // 7: google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType +} +var file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_depIdxs = []int32{ + 2, // 0: google.ads.googleads.v22.services.SuggestTravelAssetsResponse.hotel_asset_suggestions:type_name -> google.ads.googleads.v22.services.HotelAssetSuggestion + 5, // 1: google.ads.googleads.v22.services.HotelAssetSuggestion.call_to_action:type_name -> google.ads.googleads.v22.enums.CallToActionTypeEnum.CallToActionType + 3, // 2: google.ads.googleads.v22.services.HotelAssetSuggestion.text_assets:type_name -> google.ads.googleads.v22.services.HotelTextAsset + 4, // 3: google.ads.googleads.v22.services.HotelAssetSuggestion.image_assets:type_name -> google.ads.googleads.v22.services.HotelImageAsset + 6, // 4: google.ads.googleads.v22.services.HotelAssetSuggestion.status:type_name -> google.ads.googleads.v22.enums.HotelAssetSuggestionStatusEnum.HotelAssetSuggestionStatus + 7, // 5: google.ads.googleads.v22.services.HotelTextAsset.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 7, // 6: google.ads.googleads.v22.services.HotelImageAsset.asset_field_type:type_name -> google.ads.googleads.v22.enums.AssetFieldTypeEnum.AssetFieldType + 0, // 7: google.ads.googleads.v22.services.TravelAssetSuggestionService.SuggestTravelAssets:input_type -> google.ads.googleads.v22.services.SuggestTravelAssetsRequest + 1, // 8: google.ads.googleads.v22.services.TravelAssetSuggestionService.SuggestTravelAssets:output_type -> google.ads.googleads.v22.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 @@ -540,26 +540,26 @@ var file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto 0, // [0:7] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_init() } -func file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_init() { - if File_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_init() } +func file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_init() { + if File_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto != nil { return } type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_rawDesc)), NumEnums: 0, NumMessages: 5, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto = out.File - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_travel_asset_suggestion_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto = out.File + file_google_ads_googleads_v22_services_travel_asset_suggestion_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 9aa757e8..87c0affe 100644 --- a/services/travel_asset_suggestion_service_grpc.pb.go +++ b/services/travel_asset_suggestion_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/travel_asset_suggestion_service.proto +// source: google/ads/googleads/v22/services/travel_asset_suggestion_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName = "/google.ads.googleads.v21.services.TravelAssetSuggestionService/SuggestTravelAssets" + TravelAssetSuggestionService_SuggestTravelAssets_FullMethodName = "/google.ads.googleads.v22.services.TravelAssetSuggestionService/SuggestTravelAssets" ) // TravelAssetSuggestionServiceClient is the client API for TravelAssetSuggestionService service. @@ -135,7 +135,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.v21.services.TravelAssetSuggestionService", + ServiceName: "google.ads.googleads.v22.services.TravelAssetSuggestionService", HandlerType: (*TravelAssetSuggestionServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -144,5 +144,5 @@ var TravelAssetSuggestionService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/travel_asset_suggestion_service.proto", + Metadata: "google/ads/googleads/v22/services/travel_asset_suggestion_service.proto", } diff --git a/services/user_data_service.pb.go b/services/user_data_service.pb.go index 2f0c2195..6d052504 100644 --- a/services/user_data_service.pb.go +++ b/services/user_data_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_data_service.proto +// source: google/ads/googleads/v22/services/user_data_service.proto package services @@ -38,7 +38,7 @@ const ( ) // Request message for -// [UserDataService.UploadUserData][google.ads.googleads.v21.services.UserDataService.UploadUserData] +// [UserDataService.UploadUserData][google.ads.googleads.v22.services.UserDataService.UploadUserData] type UploadUserDataRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer for which to update the user data. @@ -57,7 +57,7 @@ type UploadUserDataRequest struct { func (x *UploadUserDataRequest) Reset() { *x = UploadUserDataRequest{} - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -69,7 +69,7 @@ func (x *UploadUserDataRequest) String() string { func (*UploadUserDataRequest) ProtoMessage() {} func (x *UploadUserDataRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -82,7 +82,7 @@ func (x *UploadUserDataRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadUserDataRequest.ProtoReflect.Descriptor instead. func (*UploadUserDataRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_data_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_user_data_service_proto_rawDescGZIP(), []int{0} } func (x *UploadUserDataRequest) GetCustomerId() string { @@ -142,7 +142,7 @@ type UserDataOperation struct { func (x *UserDataOperation) Reset() { *x = UserDataOperation{} - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -154,7 +154,7 @@ func (x *UserDataOperation) String() string { func (*UserDataOperation) ProtoMessage() {} func (x *UserDataOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -167,7 +167,7 @@ func (x *UserDataOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use UserDataOperation.ProtoReflect.Descriptor instead. func (*UserDataOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_data_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_user_data_service_proto_rawDescGZIP(), []int{1} } func (x *UserDataOperation) GetOperation() isUserDataOperation_Operation { @@ -214,7 +214,7 @@ func (*UserDataOperation_Create) isUserDataOperation_Operation() {} func (*UserDataOperation_Remove) isUserDataOperation_Operation() {} // Response message for -// [UserDataService.UploadUserData][google.ads.googleads.v21.services.UserDataService.UploadUserData] +// [UserDataService.UploadUserData][google.ads.googleads.v22.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 { @@ -230,7 +230,7 @@ type UploadUserDataResponse struct { func (x *UploadUserDataResponse) Reset() { *x = UploadUserDataResponse{} - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -242,7 +242,7 @@ func (x *UploadUserDataResponse) String() string { func (*UploadUserDataResponse) ProtoMessage() {} func (x *UploadUserDataResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -255,7 +255,7 @@ func (x *UploadUserDataResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use UploadUserDataResponse.ProtoReflect.Descriptor instead. func (*UploadUserDataResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_data_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_user_data_service_proto_rawDescGZIP(), []int{2} } func (x *UploadUserDataResponse) GetUploadDateTime() string { @@ -272,17 +272,17 @@ func (x *UploadUserDataResponse) GetReceivedOperationsCount() int32 { return 0 } -var File_google_ads_googleads_v21_services_user_data_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_user_data_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_user_data_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x37, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2f, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -296,7 +296,7 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -304,7 +304,7 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = str 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, 0x32, - 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, + 0x32, 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, @@ -313,11 +313,11 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x55, 0x73, 0x65, 0x72, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -335,14 +335,14 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, + 0x02, 0x32, 0x3a, 0x01, 0x2a, 0x22, 0x2d, 0x2f, 0x76, 0x32, 0x32, 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, @@ -351,51 +351,51 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, + 0x6c, 0x65, 0x41, 0x64, 0x73, 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, + 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, + 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_user_data_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_user_data_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_user_data_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_user_data_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_user_data_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_user_data_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_user_data_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_user_data_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_user_data_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_user_data_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_data_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_data_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_user_data_service_proto_rawDescData -} - -var file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) -var file_google_ads_googleads_v21_services_user_data_service_proto_goTypes = []any{ - (*UploadUserDataRequest)(nil), // 0: google.ads.googleads.v21.services.UploadUserDataRequest - (*UserDataOperation)(nil), // 1: google.ads.googleads.v21.services.UserDataOperation - (*UploadUserDataResponse)(nil), // 2: google.ads.googleads.v21.services.UploadUserDataResponse - (*common.CustomerMatchUserListMetadata)(nil), // 3: google.ads.googleads.v21.common.CustomerMatchUserListMetadata - (*common.UserData)(nil), // 4: google.ads.googleads.v21.common.UserData -} -var file_google_ads_googleads_v21_services_user_data_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.UploadUserDataRequest.operations:type_name -> google.ads.googleads.v21.services.UserDataOperation - 3, // 1: google.ads.googleads.v21.services.UploadUserDataRequest.customer_match_user_list_metadata:type_name -> google.ads.googleads.v21.common.CustomerMatchUserListMetadata - 4, // 2: google.ads.googleads.v21.services.UserDataOperation.create:type_name -> google.ads.googleads.v21.common.UserData - 4, // 3: google.ads.googleads.v21.services.UserDataOperation.remove:type_name -> google.ads.googleads.v21.common.UserData - 0, // 4: google.ads.googleads.v21.services.UserDataService.UploadUserData:input_type -> google.ads.googleads.v21.services.UploadUserDataRequest - 2, // 5: google.ads.googleads.v21.services.UserDataService.UploadUserData:output_type -> google.ads.googleads.v21.services.UploadUserDataResponse + return file_google_ads_googleads_v22_services_user_data_service_proto_rawDescData +} + +var file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes = make([]protoimpl.MessageInfo, 3) +var file_google_ads_googleads_v22_services_user_data_service_proto_goTypes = []any{ + (*UploadUserDataRequest)(nil), // 0: google.ads.googleads.v22.services.UploadUserDataRequest + (*UserDataOperation)(nil), // 1: google.ads.googleads.v22.services.UserDataOperation + (*UploadUserDataResponse)(nil), // 2: google.ads.googleads.v22.services.UploadUserDataResponse + (*common.CustomerMatchUserListMetadata)(nil), // 3: google.ads.googleads.v22.common.CustomerMatchUserListMetadata + (*common.UserData)(nil), // 4: google.ads.googleads.v22.common.UserData +} +var file_google_ads_googleads_v22_services_user_data_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.UploadUserDataRequest.operations:type_name -> google.ads.googleads.v22.services.UserDataOperation + 3, // 1: google.ads.googleads.v22.services.UploadUserDataRequest.customer_match_user_list_metadata:type_name -> google.ads.googleads.v22.common.CustomerMatchUserListMetadata + 4, // 2: google.ads.googleads.v22.services.UserDataOperation.create:type_name -> google.ads.googleads.v22.common.UserData + 4, // 3: google.ads.googleads.v22.services.UserDataOperation.remove:type_name -> google.ads.googleads.v22.common.UserData + 0, // 4: google.ads.googleads.v22.services.UserDataService.UploadUserData:input_type -> google.ads.googleads.v22.services.UploadUserDataRequest + 2, // 5: google.ads.googleads.v22.services.UserDataService.UploadUserData:output_type -> google.ads.googleads.v22.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 @@ -403,34 +403,34 @@ var file_google_ads_googleads_v21_services_user_data_service_proto_depIdxs = []i 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_user_data_service_proto_init() } -func file_google_ads_googleads_v21_services_user_data_service_proto_init() { - if File_google_ads_googleads_v21_services_user_data_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_user_data_service_proto_init() } +func file_google_ads_googleads_v22_services_user_data_service_proto_init() { + if File_google_ads_googleads_v22_services_user_data_service_proto != nil { return } - file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[0].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[0].OneofWrappers = []any{ (*UploadUserDataRequest_CustomerMatchUserListMetadata)(nil), } - file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[1].OneofWrappers = []any{ (*UserDataOperation_Create)(nil), (*UserDataOperation_Remove)(nil), } - file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes[2].OneofWrappers = []any{} + file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes[2].OneofWrappers = []any{} type x struct{} out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_data_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_data_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_data_service_proto_rawDesc)), NumEnums: 0, NumMessages: 3, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_user_data_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_user_data_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_user_data_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_user_data_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_user_data_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_user_data_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_user_data_service_proto = out.File - file_google_ads_googleads_v21_services_user_data_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_user_data_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_user_data_service_proto = out.File + file_google_ads_googleads_v22_services_user_data_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 17aae8c6..66f5c36f 100644 --- a/services/user_data_service_grpc.pb.go +++ b/services/user_data_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_data_service.proto +// source: google/ads/googleads/v22/services/user_data_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - UserDataService_UploadUserData_FullMethodName = "/google.ads.googleads.v21.services.UserDataService/UploadUserData" + UserDataService_UploadUserData_FullMethodName = "/google.ads.googleads.v22.services.UserDataService/UploadUserData" ) // UserDataServiceClient is the client API for UserDataService service. @@ -166,7 +166,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.v21.services.UserDataService", + ServiceName: "google.ads.googleads.v22.services.UserDataService", HandlerType: (*UserDataServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -175,5 +175,5 @@ var UserDataService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/user_data_service.proto", + Metadata: "google/ads/googleads/v22/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 index 7d34d157..466e75c0 100644 --- a/services/user_list_customer_type_service.pb.go +++ b/services/user_list_customer_type_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_list_customer_type_service.proto +// source: google/ads/googleads/v22/services/user_list_customer_type_service.proto package services @@ -39,7 +39,7 @@ const ( ) // Request message for -// [UserListCustomerTypeService.MutateUserListCustomerTypes][google.ads.googleads.v21.services.UserListCustomerTypeService.MutateUserListCustomerTypes]. +// [UserListCustomerTypeService.MutateUserListCustomerTypes][google.ads.googleads.v22.services.UserListCustomerTypeService.MutateUserListCustomerTypes]. type MutateUserListCustomerTypesRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose user list customer types are being @@ -62,7 +62,7 @@ type MutateUserListCustomerTypesRequest struct { func (x *MutateUserListCustomerTypesRequest) Reset() { *x = MutateUserListCustomerTypesRequest{} - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -74,7 +74,7 @@ func (x *MutateUserListCustomerTypesRequest) String() string { func (*MutateUserListCustomerTypesRequest) ProtoMessage() {} func (x *MutateUserListCustomerTypesRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -87,7 +87,7 @@ func (x *MutateUserListCustomerTypesRequest) ProtoReflect() protoreflect.Message // Deprecated: Use MutateUserListCustomerTypesRequest.ProtoReflect.Descriptor instead. func (*MutateUserListCustomerTypesRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{0} } func (x *MutateUserListCustomerTypesRequest) GetCustomerId() string { @@ -134,7 +134,7 @@ type UserListCustomerTypeOperation struct { func (x *UserListCustomerTypeOperation) Reset() { *x = UserListCustomerTypeOperation{} - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -146,7 +146,7 @@ func (x *UserListCustomerTypeOperation) String() string { func (*UserListCustomerTypeOperation) ProtoMessage() {} func (x *UserListCustomerTypeOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -159,7 +159,7 @@ func (x *UserListCustomerTypeOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListCustomerTypeOperation.ProtoReflect.Descriptor instead. func (*UserListCustomerTypeOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{1} } func (x *UserListCustomerTypeOperation) GetOperation() isUserListCustomerTypeOperation_Operation { @@ -226,7 +226,7 @@ type MutateUserListCustomerTypesResponse struct { func (x *MutateUserListCustomerTypesResponse) Reset() { *x = MutateUserListCustomerTypesResponse{} - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -238,7 +238,7 @@ func (x *MutateUserListCustomerTypesResponse) String() string { func (*MutateUserListCustomerTypesResponse) ProtoMessage() {} func (x *MutateUserListCustomerTypesResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -251,7 +251,7 @@ func (x *MutateUserListCustomerTypesResponse) ProtoReflect() protoreflect.Messag // Deprecated: Use MutateUserListCustomerTypesResponse.ProtoReflect.Descriptor instead. func (*MutateUserListCustomerTypesResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{2} } func (x *MutateUserListCustomerTypesResponse) GetPartialFailureError() *status.Status { @@ -279,7 +279,7 @@ type MutateUserListCustomerTypeResult struct { func (x *MutateUserListCustomerTypeResult) Reset() { *x = MutateUserListCustomerTypeResult{} - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -291,7 +291,7 @@ func (x *MutateUserListCustomerTypeResult) String() string { func (*MutateUserListCustomerTypeResult) ProtoMessage() {} func (x *MutateUserListCustomerTypeResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -304,7 +304,7 @@ func (x *MutateUserListCustomerTypeResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListCustomerTypeResult.ProtoReflect.Descriptor instead. func (*MutateUserListCustomerTypeResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescGZIP(), []int{3} } func (x *MutateUserListCustomerTypeResult) GetResourceName() string { @@ -314,18 +314,18 @@ func (x *MutateUserListCustomerTypeResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_user_list_customer_type_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_user_list_customer_type_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x40, 0x67, 0x6f, + 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, + 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -344,7 +344,7 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -358,7 +358,7 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x73, 0x2e, 0x55, 0x73, + 0x76, 0x32, 0x32, 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, @@ -376,7 +376,7 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, 0x75, 0x74, + 0x76, 0x32, 0x32, 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, @@ -392,17 +392,17 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto 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, 0x32, 0x31, 0x2e, 0x73, + 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, 0x4d, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x63, 0x75, 0x73, + 0x93, 0x02, 0x40, 0x3a, 0x01, 0x2a, 0x22, 0x3b, 0x2f, 0x76, 0x32, 0x32, 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, @@ -412,53 +412,53 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x3b, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x32, 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, 0x32, 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, + 0x2e, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, + 0x65, 0x41, 0x64, 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, + 0x3a, 0x47, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDescData + return file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_goTypes = []any{ - (*MutateUserListCustomerTypesRequest)(nil), // 0: google.ads.googleads.v21.services.MutateUserListCustomerTypesRequest - (*UserListCustomerTypeOperation)(nil), // 1: google.ads.googleads.v21.services.UserListCustomerTypeOperation - (*MutateUserListCustomerTypesResponse)(nil), // 2: google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse - (*MutateUserListCustomerTypeResult)(nil), // 3: google.ads.googleads.v21.services.MutateUserListCustomerTypeResult - (*resources.UserListCustomerType)(nil), // 4: google.ads.googleads.v21.resources.UserListCustomerType +var file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_goTypes = []any{ + (*MutateUserListCustomerTypesRequest)(nil), // 0: google.ads.googleads.v22.services.MutateUserListCustomerTypesRequest + (*UserListCustomerTypeOperation)(nil), // 1: google.ads.googleads.v22.services.UserListCustomerTypeOperation + (*MutateUserListCustomerTypesResponse)(nil), // 2: google.ads.googleads.v22.services.MutateUserListCustomerTypesResponse + (*MutateUserListCustomerTypeResult)(nil), // 3: google.ads.googleads.v22.services.MutateUserListCustomerTypeResult + (*resources.UserListCustomerType)(nil), // 4: google.ads.googleads.v22.resources.UserListCustomerType (*status.Status)(nil), // 5: google.rpc.Status } -var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateUserListCustomerTypesRequest.operations:type_name -> google.ads.googleads.v21.services.UserListCustomerTypeOperation - 4, // 1: google.ads.googleads.v21.services.UserListCustomerTypeOperation.create:type_name -> google.ads.googleads.v21.resources.UserListCustomerType - 5, // 2: google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 3: google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse.results:type_name -> google.ads.googleads.v21.services.MutateUserListCustomerTypeResult - 0, // 4: google.ads.googleads.v21.services.UserListCustomerTypeService.MutateUserListCustomerTypes:input_type -> google.ads.googleads.v21.services.MutateUserListCustomerTypesRequest - 2, // 5: google.ads.googleads.v21.services.UserListCustomerTypeService.MutateUserListCustomerTypes:output_type -> google.ads.googleads.v21.services.MutateUserListCustomerTypesResponse +var file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateUserListCustomerTypesRequest.operations:type_name -> google.ads.googleads.v22.services.UserListCustomerTypeOperation + 4, // 1: google.ads.googleads.v22.services.UserListCustomerTypeOperation.create:type_name -> google.ads.googleads.v22.resources.UserListCustomerType + 5, // 2: google.ads.googleads.v22.services.MutateUserListCustomerTypesResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 3: google.ads.googleads.v22.services.MutateUserListCustomerTypesResponse.results:type_name -> google.ads.googleads.v22.services.MutateUserListCustomerTypeResult + 0, // 4: google.ads.googleads.v22.services.UserListCustomerTypeService.MutateUserListCustomerTypes:input_type -> google.ads.googleads.v22.services.MutateUserListCustomerTypesRequest + 2, // 5: google.ads.googleads.v22.services.UserListCustomerTypeService.MutateUserListCustomerTypes:output_type -> google.ads.googleads.v22.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 @@ -466,12 +466,12 @@ var file_google_ads_googleads_v21_services_user_list_customer_type_service_proto 0, // [0:4] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_init() } -func file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_init() { - if File_google_ads_googleads_v21_services_user_list_customer_type_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_init() } +func file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_init() { + if File_google_ads_googleads_v22_services_user_list_customer_type_service_proto != nil { return } - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes[1].OneofWrappers = []any{ (*UserListCustomerTypeOperation_Create)(nil), (*UserListCustomerTypeOperation_Remove)(nil), } @@ -479,17 +479,17 @@ func file_google_ads_googleads_v21_services_user_list_customer_type_service_prot out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_user_list_customer_type_service_proto = out.File - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_user_list_customer_type_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_user_list_customer_type_service_proto = out.File + file_google_ads_googleads_v22_services_user_list_customer_type_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 index 495d9e02..0c9be7b8 100644 --- a/services/user_list_customer_type_service_grpc.pb.go +++ b/services/user_list_customer_type_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_list_customer_type_service.proto +// source: google/ads/googleads/v22/services/user_list_customer_type_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - UserListCustomerTypeService_MutateUserListCustomerTypes_FullMethodName = "/google.ads.googleads.v21.services.UserListCustomerTypeService/MutateUserListCustomerTypes" + UserListCustomerTypeService_MutateUserListCustomerTypes_FullMethodName = "/google.ads.googleads.v22.services.UserListCustomerTypeService/MutateUserListCustomerTypes" ) // UserListCustomerTypeServiceClient is the client API for UserListCustomerTypeService service. @@ -151,7 +151,7 @@ func _UserListCustomerTypeService_MutateUserListCustomerTypes_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 UserListCustomerTypeService_ServiceDesc = grpc.ServiceDesc{ - ServiceName: "google.ads.googleads.v21.services.UserListCustomerTypeService", + ServiceName: "google.ads.googleads.v22.services.UserListCustomerTypeService", HandlerType: (*UserListCustomerTypeServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -160,5 +160,5 @@ var UserListCustomerTypeService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/user_list_customer_type_service.proto", + Metadata: "google/ads/googleads/v22/services/user_list_customer_type_service.proto", } diff --git a/services/user_list_service.pb.go b/services/user_list_service.pb.go index abc6c0a7..c08c54de 100644 --- a/services/user_list_service.pb.go +++ b/services/user_list_service.pb.go @@ -16,7 +16,7 @@ // versions: // protoc-gen-go v1.36.5 // protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_list_service.proto +// source: google/ads/googleads/v22/services/user_list_service.proto package services @@ -40,7 +40,7 @@ const ( ) // Request message for -// [UserListService.MutateUserLists][google.ads.googleads.v21.services.UserListService.MutateUserLists]. +// [UserListService.MutateUserLists][google.ads.googleads.v22.services.UserListService.MutateUserLists]. type MutateUserListsRequest struct { state protoimpl.MessageState `protogen:"open.v1"` // Required. The ID of the customer whose user lists are being modified. @@ -61,7 +61,7 @@ type MutateUserListsRequest struct { func (x *MutateUserListsRequest) Reset() { *x = MutateUserListsRequest{} - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[0] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -73,7 +73,7 @@ func (x *MutateUserListsRequest) String() string { func (*MutateUserListsRequest) ProtoMessage() {} func (x *MutateUserListsRequest) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[0] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[0] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -86,7 +86,7 @@ func (x *MutateUserListsRequest) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListsRequest.ProtoReflect.Descriptor instead. func (*MutateUserListsRequest) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_service_proto_rawDescGZIP(), []int{0} + return file_google_ads_googleads_v22_services_user_list_service_proto_rawDescGZIP(), []int{0} } func (x *MutateUserListsRequest) GetCustomerId() string { @@ -136,7 +136,7 @@ type UserListOperation struct { func (x *UserListOperation) Reset() { *x = UserListOperation{} - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[1] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -148,7 +148,7 @@ func (x *UserListOperation) String() string { func (*UserListOperation) ProtoMessage() {} func (x *UserListOperation) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[1] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[1] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -161,7 +161,7 @@ func (x *UserListOperation) ProtoReflect() protoreflect.Message { // Deprecated: Use UserListOperation.ProtoReflect.Descriptor instead. func (*UserListOperation) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_service_proto_rawDescGZIP(), []int{1} + return file_google_ads_googleads_v22_services_user_list_service_proto_rawDescGZIP(), []int{1} } func (x *UserListOperation) GetUpdateMask() *fieldmaskpb.FieldMask { @@ -250,7 +250,7 @@ type MutateUserListsResponse struct { func (x *MutateUserListsResponse) Reset() { *x = MutateUserListsResponse{} - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[2] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -262,7 +262,7 @@ func (x *MutateUserListsResponse) String() string { func (*MutateUserListsResponse) ProtoMessage() {} func (x *MutateUserListsResponse) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[2] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[2] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -275,7 +275,7 @@ func (x *MutateUserListsResponse) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListsResponse.ProtoReflect.Descriptor instead. func (*MutateUserListsResponse) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_service_proto_rawDescGZIP(), []int{2} + return file_google_ads_googleads_v22_services_user_list_service_proto_rawDescGZIP(), []int{2} } func (x *MutateUserListsResponse) GetPartialFailureError() *status.Status { @@ -303,7 +303,7 @@ type MutateUserListResult struct { func (x *MutateUserListResult) Reset() { *x = MutateUserListResult{} - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[3] ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) ms.StoreMessageInfo(mi) } @@ -315,7 +315,7 @@ func (x *MutateUserListResult) String() string { func (*MutateUserListResult) ProtoMessage() {} func (x *MutateUserListResult) ProtoReflect() protoreflect.Message { - mi := &file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[3] + mi := &file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[3] if x != nil { ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x)) if ms.LoadMessageInfo() == nil { @@ -328,7 +328,7 @@ func (x *MutateUserListResult) ProtoReflect() protoreflect.Message { // Deprecated: Use MutateUserListResult.ProtoReflect.Descriptor instead. func (*MutateUserListResult) Descriptor() ([]byte, []int) { - return file_google_ads_googleads_v21_services_user_list_service_proto_rawDescGZIP(), []int{3} + return file_google_ads_googleads_v22_services_user_list_service_proto_rawDescGZIP(), []int{3} } func (x *MutateUserListResult) GetResourceName() string { @@ -338,17 +338,17 @@ func (x *MutateUserListResult) GetResourceName() string { return "" } -var File_google_ads_googleads_v21_services_user_list_service_proto protoreflect.FileDescriptor +var File_google_ads_googleads_v22_services_user_list_service_proto protoreflect.FileDescriptor -var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = string([]byte{ +var file_google_ads_googleads_v22_services_user_list_service_proto_rawDesc = string([]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, 0x32, 0x31, 0x2f, 0x73, 0x65, 0x72, 0x76, 0x69, + 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x1a, 0x32, + 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, @@ -367,7 +367,7 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = str 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -383,11 +383,11 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x72, 0x65, 0x73, 0x6f, 0x75, 0x72, 0x63, + 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, + 0x64, 0x73, 0x2e, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -403,7 +403,7 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, + 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, @@ -416,16 +416,16 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, + 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x2e, + 0x64, 0x73, 0x2e, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2f, 0x63, 0x75, 0x73, 0x74, 0x6f, 0x6d, 0x65, 0x72, 0x73, 0x2f, 0x7b, 0x63, 0x75, 0x73, + 0x32, 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, @@ -434,54 +434,54 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc = str 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, 0x32, 0x31, 0x2e, 0x73, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x42, 0x14, 0x55, + 0x2e, 0x76, 0x32, 0x32, 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, 0x32, 0x31, 0x2f, 0x73, + 0x2f, 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x61, 0x64, 0x73, 0x2f, 0x76, 0x32, 0x32, 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, 0x32, - 0x31, 0x2e, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xca, 0x02, 0x21, 0x47, 0x6f, 0x6f, + 0x32, 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, 0x32, 0x31, 0x5c, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0xea, 0x02, + 0x73, 0x5c, 0x56, 0x32, 0x32, 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, 0x32, 0x31, 0x3a, 0x3a, 0x53, 0x65, + 0x6f, 0x67, 0x6c, 0x65, 0x41, 0x64, 0x73, 0x3a, 0x3a, 0x56, 0x32, 0x32, 0x3a, 0x3a, 0x53, 0x65, 0x72, 0x76, 0x69, 0x63, 0x65, 0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33, }) var ( - file_google_ads_googleads_v21_services_user_list_service_proto_rawDescOnce sync.Once - file_google_ads_googleads_v21_services_user_list_service_proto_rawDescData []byte + file_google_ads_googleads_v22_services_user_list_service_proto_rawDescOnce sync.Once + file_google_ads_googleads_v22_services_user_list_service_proto_rawDescData []byte ) -func file_google_ads_googleads_v21_services_user_list_service_proto_rawDescGZIP() []byte { - file_google_ads_googleads_v21_services_user_list_service_proto_rawDescOnce.Do(func() { - file_google_ads_googleads_v21_services_user_list_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc))) +func file_google_ads_googleads_v22_services_user_list_service_proto_rawDescGZIP() []byte { + file_google_ads_googleads_v22_services_user_list_service_proto_rawDescOnce.Do(func() { + file_google_ads_googleads_v22_services_user_list_service_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_list_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_list_service_proto_rawDesc))) }) - return file_google_ads_googleads_v21_services_user_list_service_proto_rawDescData + return file_google_ads_googleads_v22_services_user_list_service_proto_rawDescData } -var file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) -var file_google_ads_googleads_v21_services_user_list_service_proto_goTypes = []any{ - (*MutateUserListsRequest)(nil), // 0: google.ads.googleads.v21.services.MutateUserListsRequest - (*UserListOperation)(nil), // 1: google.ads.googleads.v21.services.UserListOperation - (*MutateUserListsResponse)(nil), // 2: google.ads.googleads.v21.services.MutateUserListsResponse - (*MutateUserListResult)(nil), // 3: google.ads.googleads.v21.services.MutateUserListResult +var file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes = make([]protoimpl.MessageInfo, 4) +var file_google_ads_googleads_v22_services_user_list_service_proto_goTypes = []any{ + (*MutateUserListsRequest)(nil), // 0: google.ads.googleads.v22.services.MutateUserListsRequest + (*UserListOperation)(nil), // 1: google.ads.googleads.v22.services.UserListOperation + (*MutateUserListsResponse)(nil), // 2: google.ads.googleads.v22.services.MutateUserListsResponse + (*MutateUserListResult)(nil), // 3: google.ads.googleads.v22.services.MutateUserListResult (*fieldmaskpb.FieldMask)(nil), // 4: google.protobuf.FieldMask - (*resources.UserList)(nil), // 5: google.ads.googleads.v21.resources.UserList + (*resources.UserList)(nil), // 5: google.ads.googleads.v22.resources.UserList (*status.Status)(nil), // 6: google.rpc.Status } -var file_google_ads_googleads_v21_services_user_list_service_proto_depIdxs = []int32{ - 1, // 0: google.ads.googleads.v21.services.MutateUserListsRequest.operations:type_name -> google.ads.googleads.v21.services.UserListOperation - 4, // 1: google.ads.googleads.v21.services.UserListOperation.update_mask:type_name -> google.protobuf.FieldMask - 5, // 2: google.ads.googleads.v21.services.UserListOperation.create:type_name -> google.ads.googleads.v21.resources.UserList - 5, // 3: google.ads.googleads.v21.services.UserListOperation.update:type_name -> google.ads.googleads.v21.resources.UserList - 6, // 4: google.ads.googleads.v21.services.MutateUserListsResponse.partial_failure_error:type_name -> google.rpc.Status - 3, // 5: google.ads.googleads.v21.services.MutateUserListsResponse.results:type_name -> google.ads.googleads.v21.services.MutateUserListResult - 0, // 6: google.ads.googleads.v21.services.UserListService.MutateUserLists:input_type -> google.ads.googleads.v21.services.MutateUserListsRequest - 2, // 7: google.ads.googleads.v21.services.UserListService.MutateUserLists:output_type -> google.ads.googleads.v21.services.MutateUserListsResponse +var file_google_ads_googleads_v22_services_user_list_service_proto_depIdxs = []int32{ + 1, // 0: google.ads.googleads.v22.services.MutateUserListsRequest.operations:type_name -> google.ads.googleads.v22.services.UserListOperation + 4, // 1: google.ads.googleads.v22.services.UserListOperation.update_mask:type_name -> google.protobuf.FieldMask + 5, // 2: google.ads.googleads.v22.services.UserListOperation.create:type_name -> google.ads.googleads.v22.resources.UserList + 5, // 3: google.ads.googleads.v22.services.UserListOperation.update:type_name -> google.ads.googleads.v22.resources.UserList + 6, // 4: google.ads.googleads.v22.services.MutateUserListsResponse.partial_failure_error:type_name -> google.rpc.Status + 3, // 5: google.ads.googleads.v22.services.MutateUserListsResponse.results:type_name -> google.ads.googleads.v22.services.MutateUserListResult + 0, // 6: google.ads.googleads.v22.services.UserListService.MutateUserLists:input_type -> google.ads.googleads.v22.services.MutateUserListsRequest + 2, // 7: google.ads.googleads.v22.services.UserListService.MutateUserLists:output_type -> google.ads.googleads.v22.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 @@ -489,12 +489,12 @@ var file_google_ads_googleads_v21_services_user_list_service_proto_depIdxs = []i 0, // [0:6] is the sub-list for field type_name } -func init() { file_google_ads_googleads_v21_services_user_list_service_proto_init() } -func file_google_ads_googleads_v21_services_user_list_service_proto_init() { - if File_google_ads_googleads_v21_services_user_list_service_proto != nil { +func init() { file_google_ads_googleads_v22_services_user_list_service_proto_init() } +func file_google_ads_googleads_v22_services_user_list_service_proto_init() { + if File_google_ads_googleads_v22_services_user_list_service_proto != nil { return } - file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes[1].OneofWrappers = []any{ + file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes[1].OneofWrappers = []any{ (*UserListOperation_Create)(nil), (*UserListOperation_Update)(nil), (*UserListOperation_Remove)(nil), @@ -503,17 +503,17 @@ func file_google_ads_googleads_v21_services_user_list_service_proto_init() { out := protoimpl.TypeBuilder{ File: protoimpl.DescBuilder{ GoPackagePath: reflect.TypeOf(x{}).PkgPath(), - RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc), len(file_google_ads_googleads_v21_services_user_list_service_proto_rawDesc)), + RawDescriptor: unsafe.Slice(unsafe.StringData(file_google_ads_googleads_v22_services_user_list_service_proto_rawDesc), len(file_google_ads_googleads_v22_services_user_list_service_proto_rawDesc)), NumEnums: 0, NumMessages: 4, NumExtensions: 0, NumServices: 1, }, - GoTypes: file_google_ads_googleads_v21_services_user_list_service_proto_goTypes, - DependencyIndexes: file_google_ads_googleads_v21_services_user_list_service_proto_depIdxs, - MessageInfos: file_google_ads_googleads_v21_services_user_list_service_proto_msgTypes, + GoTypes: file_google_ads_googleads_v22_services_user_list_service_proto_goTypes, + DependencyIndexes: file_google_ads_googleads_v22_services_user_list_service_proto_depIdxs, + MessageInfos: file_google_ads_googleads_v22_services_user_list_service_proto_msgTypes, }.Build() - File_google_ads_googleads_v21_services_user_list_service_proto = out.File - file_google_ads_googleads_v21_services_user_list_service_proto_goTypes = nil - file_google_ads_googleads_v21_services_user_list_service_proto_depIdxs = nil + File_google_ads_googleads_v22_services_user_list_service_proto = out.File + file_google_ads_googleads_v22_services_user_list_service_proto_goTypes = nil + file_google_ads_googleads_v22_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 71e969fb..af050bf6 100644 --- a/services/user_list_service_grpc.pb.go +++ b/services/user_list_service_grpc.pb.go @@ -16,7 +16,7 @@ // versions: // - protoc-gen-go-grpc v1.5.1 // - protoc v4.24.4 -// source: google/ads/googleads/v21/services/user_list_service.proto +// source: google/ads/googleads/v22/services/user_list_service.proto package services @@ -33,7 +33,7 @@ import ( const _ = grpc.SupportPackageIsVersion9 const ( - UserListService_MutateUserLists_FullMethodName = "/google.ads.googleads.v21.services.UserListService/MutateUserLists" + UserListService_MutateUserLists_FullMethodName = "/google.ads.googleads.v22.services.UserListService/MutateUserLists" ) // UserListServiceClient is the client API for UserListService service. @@ -174,7 +174,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.v21.services.UserListService", + ServiceName: "google.ads.googleads.v22.services.UserListService", HandlerType: (*UserListServiceServer)(nil), Methods: []grpc.MethodDesc{ { @@ -183,5 +183,5 @@ var UserListService_ServiceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "google/ads/googleads/v21/services/user_list_service.proto", + Metadata: "google/ads/googleads/v22/services/user_list_service.proto", }